From e490a64a805f4c537abb4aa471092a548e6a18a9 Mon Sep 17 00:00:00 2001 From: Rose Heart Date: Wed, 20 Mar 2024 23:26:04 +0000 Subject: [PATCH] Bug fixes. Changes to be committed: modified: Base/CCXT-PlaceOrder.future modified: Base/CCXT-PlaceOrder.margin modified: Base/CCXT-PlaceOrder.spot modified: Base/CCXT-PlaceOrder.swap modified: Base/JackrabbitOliverTwist modified: Base/Library/CONDoanda.py modified: Base/Library/JRRccxt.py modified: Base/Library/JRRmimic.py modified: Base/Library/JRRoanda.py modified: Base/MIMIC-PlaceOrder modified: Extras/AnalyzeAsset modified: Extras/CodeProofs/BuyEveryMinute new file: Extras/CodeProofs/readProxyMarkets deleted: Extras/CodeProofs/timedList modified: Extras/ListMarkets modified: Extras/otcWatch --- Base/CCXT-PlaceOrder.future | 2 +- Base/CCXT-PlaceOrder.margin | 2 +- Base/CCXT-PlaceOrder.spot | 2 +- Base/CCXT-PlaceOrder.swap | 2 +- Base/JROT.ALPHA | 559 ---- Base/{JROT.SAFE => JTROT.SAFE} | 53 +- Base/JackrabbitOliverTwist | 301 +- Base/Library/CONDoanda.py | 1 + Base/Library/JRRccxt.py | 12 +- Base/Library/JRRmimic.py | 10 +- Base/Library/JRRoanda.py | 12 +- Base/MIMIC-PlaceOrder | 2 +- Bybit.Markets.txt | 4770 ++++++++++++++++++++++++++++ Extras/AnalyzeAsset | 22 +- Extras/CodeProofs/BuyEveryMinute | 2 +- Extras/CodeProofs/readProxyMarkets | 31 + Extras/CodeProofs/timedList | 0 Extras/ListMarkets | 4 +- Extras/otcWatch | 2 +- FutureRequirements.txt | 2 - scan | 1 + 21 files changed, 4954 insertions(+), 838 deletions(-) delete mode 100755 Base/JROT.ALPHA rename Base/{JROT.SAFE => JTROT.SAFE} (91%) create mode 100644 Bybit.Markets.txt create mode 100755 Extras/CodeProofs/readProxyMarkets delete mode 100644 Extras/CodeProofs/timedList delete mode 100644 FutureRequirements.txt create mode 100644 scan diff --git a/Base/CCXT-PlaceOrder.future b/Base/CCXT-PlaceOrder.future index 5f295c6..1a29078 100755 --- a/Base/CCXT-PlaceOrder.future +++ b/Base/CCXT-PlaceOrder.future @@ -127,7 +127,7 @@ def main(): if "permissions" in relay.Markets[relay.Order['Asset']]['info']: marketType=' '.join(relay.Markets[relay.Order['Asset']]['info']['permissions']).lower() - if relay.Order['Market'] not in marketType: + if relay.Order['Market'].lower() not in marketType: relay.JRLog.Error(relay.Exchange, f"wrong market type: {relay.Order['Market']}, asset is {marketType}") # Check for order type override diff --git a/Base/CCXT-PlaceOrder.margin b/Base/CCXT-PlaceOrder.margin index 0a5134a..de00b1d 100755 --- a/Base/CCXT-PlaceOrder.margin +++ b/Base/CCXT-PlaceOrder.margin @@ -127,7 +127,7 @@ def main(): if "permissions" in relay.Markets[relay.Order['Asset']]['info']: marketType=' '.join(relay.Markets[relay.Order['Asset']]['info']['permissions']).lower() - if relay.Order['Market'] not in marketType: + if relay.Order['Market'].lower() not in marketType: relay.JRLog.Error(relay.Exchange, f"wrong market type: {relay.Order['Market']}, asset is {marketType}") # Check for order type override diff --git a/Base/CCXT-PlaceOrder.spot b/Base/CCXT-PlaceOrder.spot index a0f3cfc..517fb3f 100755 --- a/Base/CCXT-PlaceOrder.spot +++ b/Base/CCXT-PlaceOrder.spot @@ -137,7 +137,7 @@ def main(): if "permissions" in relay.Markets[relay.Order['Asset']]['info']: marketType=' '.join(relay.Markets[relay.Order['Asset']]['info']['permissions']).lower() - if relay.Order['Market'] not in marketType: + if relay.Order['Market'].lower() not in marketType: relay.JRLog.Error(relay.Exchange, f"wrong market type: {relay.Order['Market']}, asset is {marketType}") # Check for order type override diff --git a/Base/CCXT-PlaceOrder.swap b/Base/CCXT-PlaceOrder.swap index be06739..f181fb7 100755 --- a/Base/CCXT-PlaceOrder.swap +++ b/Base/CCXT-PlaceOrder.swap @@ -127,7 +127,7 @@ def main(): if "permissions" in relay.Markets[relay.Order['Asset']]['info']: marketType=' '.join(relay.Markets[relay.Order['Asset']]['info']['permissions']).lower() - if relay.Order['Market'] not in marketType: + if relay.Order['Market'].lower() not in marketType: relay.JRLog.Error(relay.Exchange, f"wrong market type: {relay.Order['Market']}, asset is {marketType}") # Check for order type override diff --git a/Base/JROT.ALPHA b/Base/JROT.ALPHA deleted file mode 100755 index f9babdf..0000000 --- a/Base/JROT.ALPHA +++ /dev/null @@ -1,559 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# -# Jackrabbit OliverTwist -# 2021 Copyright © Robert APM Darin -# All rights reserved unconditionally. - -# This is the Jackrabbit limit/conditional order manager. Its purpose is to track and maintain "orphaned" orders. -# Orphan orders are limit order that the parent or order initiator does not wat a response for. TradingView is an -# example, but the situation applies to any process that does not manage or maintain limit orders on their own. - -# IMPORTANT: Under no circumstances should THIS program manage an individual order. It is to be managed by a -# separate process, called an orphan manager. This is simply because there is no way on knowing how many -# exchanges/brokers might be used simultaneously. The memory of a single process managing a thousand orders would -# be absolutely thrashed. The orphan manager will follow the same conventions of the PlaceOrder program, ie: - -# Orphan.ccxt -# Orphan.oanda -# Conditional.ccxt -# Conditional.oanda -# Conditional.mimic - -# ANY order (direct orphan or conditional) is an ORPHAN at all times with this THIS framework. - -# IMPORTANT: This framework treats conditionals the same as orphans. The separation and distinction takes place in -# the transactor. While this has plenty of issues to be aware of, it is the most effecient way of handling the -# situation since at this level (dispatcher), they are syntactically the same. - -# Framework identification, along with any other order verification, is done in the PlaceOrder - -# Now we get to the crazy stuff. This program now uses multiple layers of parent/child layering as follows: - -# Global/Parent -> This is the global level that tracks the various storehouses (orders for (exchange/account/asset) - -# Child -> Reads the list of orders for a given storehouse. This is multiprocess. - -# Grandchild -> Processes individual orders using inherieted globals from it parent (Child). Grandparent (Parent) -# has no role here and primary locks need to be overridden with parent (Child) locks. - -import sys -# Needed to find Relay libraries -sys.path.append('/home/JackrabbitRelay2/Base/Library') -import os -import importlib -import time -import json -import random - -import JRRsupport -import JackrabbitRelay as JRR - -Version="0.0.0.1.730" -BaseDirectory='/home/JackrabbitRelay2/Base' -DataDirectory='/home/JackrabbitRelay2/Data' -ConfigDirectory='/home/JackrabbitRelay2/Config' -LogDirectory='/home/JackrabbitRelay2/Logs' -StorageDirectory=DataDirectory+'/OliverTwist' - -NumberProcesses=os.cpu_count() - -# Set up the logging system - -JRLog=JRR.JackrabbitLog() - -# Set up signal interceptor - -interceptor=JRRsupport.SignalInterceptor(Log=JRLog) - -# The timeout setting for the memory locks. If it takes longer then 15 minutes to -# check the status of an order, there is a major problem with the exchange/broker. -# Testing has show that only a few seconds is actually requred. The extended amount -# is just to compensate for an overloaded server. - -OliverTwistTimeout=86400 - -# This lock guards the lists. Both PlaceOrder.olivertwist and -# JackrabbitOliverTwist will access this file. Collisions must not be allowed to -# happen. - -OrphanLock={} -StorehouseLock={} - -# The list of orphaned/conditional orders to track and manage. Must be global, but after compare function -# declared. - -OrphanList={} -OrphanMemory={} - -StorehouseMemory={} - -# Generate a random ID - -def GetID(): - letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" - llen=len(letters) - - pw="" - oc="" - - for i in range(20): - done=False - while not done: - for z in range(random.randrange(73,237)): - c=random.randrange(llen) - if pw=="" or (len(pw)>0 and letters[c]!=oc): - done=True - oc=letters[c] - pw+=oc - return pw - -# Convert old format to new format -### TERMPORARY... Will remove in several generations. - -def ConvertIndividualFile(fn): - if os.path.exists(fn): - buffer=JRRsupport.ReadFile(fn).strip() - if buffer!=None and buffer!='': - # Remove the receiver after we load it - os.remove(fn) - - # Process all the orphans - - Orphans=buffer.split('\n') - for Entry in Orphans: - if Entry.strip()=='': - continue - - try: - Orphan=json.loads(Entry) - except: - JRLog.Write(f"Broken: {Entry}") - continue - - if 'Order' in Orphan: - if type(Orphan['Order'])==str: - order=json.loads(Orphan['Order']) - order.pop('Identity',None) - Orphan['Order']=order - if 'Response' in Orphan: - if type(Orphan['Response'])==str: - resp=json.loads(Orphan['Response']) - Orphan['Response']=resp - - if 'Key' not in Orphan: - Orphan['Key']=Orphan['DateTime'].replace(' ','.')+'.'+GetID() - - f=Orphan['Framework'] - e=Orphan['Order']['Exchange'] - a=Orphan['Order']['Account'] - nsf=f"{StorageDirectory}/{f}.{e}.{a}" - JRRsupport.AppendFile(nsf,json.dumps(Orphan)+'\n') - -def ConvertOld2New(): - if not os.path.exists(StorageDirectory): - JRRsupport.mkdir(StorageDirectory) - - files=['OliverTwist.Conditional.Receiver','OliverTwist.Orphan.Receiver','OliverTwist.Conditional.Storehouse','OliverTwist.Orphans.Storehouse','OliverTwist.Storehouse'] - - for fh in files: - fn=DataDirectory+'/'+fh - ConvertIndividualFile(fn) - -# Check the receiver file for new orders. - -def ReceiveOrphans(Storehouse,): - # Required as the globals are modified - global StorehouseLock - global OrphanList - global OrphanMemory - global JRLog - - # The key is the time of payload and random ID - - WorkingReceiver=StorageDirectory+'/'+Storehouse+'.receiver' - - StorehouseLock[Storehouse].Lock() - if os.path.exists(WorkingReceiver): - buffer=JRRsupport.ReadFile(WorkingReceiver).strip() - if buffer!=None and buffer!='': - # Remove the receiver after we load it - os.remove(WorkingReceiver) - - # Process all the orphans - - Orphans=buffer.split('\n') - for Entry in Orphans: - if Entry.strip()=='': - continue - - try: - Orphan=json.loads(Entry) - except: - JRLog.Write(f"Broken: {Entry}") - continue - - if 'Order' in Orphan: - if type(Orphan['Order'])==str: - order=json.loads(Orphan['Order']) - order.pop('Identity',None) - Orphan['Order']=order - if 'Response' in Orphan: - if type(Orphan['Response'])==str: - resp=json.loads(Orphan['Response']) - Orphan['Response']=resp - - Orphan['Key']=Orphan['DateTime'].replace(' ','.')+'.'+GetID() - - # Double check for duplicates. - if 'Key' in Orphan and Orphan['Key'] in OrphanList: - continue - - OrphanLock[Orphan['Key']]=JRRsupport.Locker(f"OliverTwist.{Orphan['Key']}.orphan") - OrphanMemory[Orphan['Key']]=JRRsupport.Locker(f"OliverTwist.{Orphan['Key']}.memory") - OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout,"Waiting") - - Orphan['lID']=OrphanLock[Orphan['Key']].ID - Orphan['mID']=OrphanMemory[Orphan['Key']].ID - - OrphanList[Orphan['Key']]=json.dumps(Orphan) - WriteOrphanList(Storehouse) - StorehouseLock[Storehouse].Unlock() - -# Read the complete list stored on disk, if it exists. Supports both orphans and conditionals. - -def ReadOrphanList(Storehouse): - # Required as the globals are modified - global StorehouseLock - global OrphanList - global OrphanMemory - global JRLog - - WorkingStorehouse=StorageDirectory+'/'+Storehouse - - # Wait until we have the lock - while StorehouseLock[Storehouse].Lock()!='locked': - JRRsupport.ElasticSleep(1) - - if os.path.exists(WorkingStorehouse): - buffer=JRRsupport.ReadFile(WorkingStorehouse).strip() - if buffer!=None and buffer!='': - Orphans=buffer.split('\n') - for Entry in Orphans: - # Force set InMotion to False - Entry=Entry.strip() - if Entry=='': - continue - - # Break down entry and set up memory locker - try: - Orphan=json.loads(Entry) - except: -# JRLog.Write(f"Bad orphan: {Entry}") - continue - - # Double check for duplicates. - if 'Key' in Orphan and Orphan['Key'].replace(' ','.') in OrphanList: - continue - - if 'Order' in Orphan: - if type(Orphan['Order'])==str: - order=json.loads(Orphan['Order']) - order.pop('Identity',None) - Orphan['Order']=order - if 'Response' in Orphan: - if type(Orphan['Response'])==str: - resp=json.loads(Orphan['Response']) - Orphan['Response']=resp - - if 'Key' not in Orphan: - Orphan['Key']=Orphan['DateTime'].replace(' ','.')+'.'+GetID() - else: - Orphan['Key']=Orphan['Key'].replace(' ','.') - - OrphanLock[Orphan['Key']]=JRRsupport.Locker(f"OliverTwist.{Orphan['Key']}.orphan") - OrphanMemory[Orphan['Key']]=JRRsupport.Locker(f"OliverTwist.{Orphan['Key']}.memory") - OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout,"Waiting") - - Orphan['lID']=OrphanLock[Orphan['Key']].ID - Orphan['mID']=OrphanMemory[Orphan['Key']].ID - - OrphanList[Orphan['Key']]=json.dumps(Orphan) - StorehouseLock[Storehouse].Unlock() - -# Write only when there are changes. -# Locking is done in the processor as the orphan list is being modified before saving. - -def WriteOrphanList(Storehouse): - global OrphanList - - DelList=[] - DeleteStorehouse=StorageDirectory+'/'+Storehouse+'.delete' - if os.path.exists(DeleteStorehouse): - DelList=JRRsupport.ReadFile(DeleteStorehouse).strip().split('\n') - - WorkingStorehouse=StorageDirectory+'/'+Storehouse - - interceptor.Critical(True) - - fh=open(WorkingStorehouse,'w') - for cur in OrphanList: - data=json.loads(OrphanList[cur]) - if data['Key'] not in DelList: - data.pop('lID',None) - data.pop('mID',None) - data.pop('slID',None) - data.pop('smID',None) - fh.write(json.dumps(data)+'\n') - fh.close() - - if os.path.exists(DeleteStorehouse): - os.remove(DeleteStorehouse) - - interceptor.Critical(False) - - # Process any signals received during critical section - interceptor.SafeExit() - -# This spins up the orphan manager to ensure each orphan is handled. This is NOT part of the main process, but rather a child -# process. NONE o the global or main variables are available. The ONLY information know is what is EXPLICTLY given. - -# An Orphan transactor will process orphans. A relatively easy process compared to the Conditional transactor. The Condiional -# transactor will need to back feed orders into Relay, usingsimilat techniques compared to the PlaceOrder system. The -# Conditional framework will be a logistical nightmare. Emphasis has to be on speed in processing the conditions. - -def ProcessOrphan(**kwargs): - global JRLog - - # The entire kwargs payload is the orphan JSON... - Orphan=kwargs - State='Waiting' - - try: - # Figure out which order processor is needed - if Orphan['Class']=='Orphan': - Processor=importlib.import_module(f"ORPHAN{Orphan['Framework']}") - else: - Processor=importlib.import_module(f"COND{Orphan['Framework']}") - - State=Processor.OrderProcessor(Orphan) - except: - JRLog.Write(f"Broke: {Orphan['Key']}") - - # Finish up and set the state for this order - OrphanLock=JRRsupport.Locker(f"OliverTwist.{Orphan['Key']}.orphan",ID=Orphan['lID']) - OrphanMemory=JRRsupport.Locker(f"OliverTwist.{Orphan['Key']}.memory",ID=Orphan['mID']) - OrphanLock.Lock() - OrphanMemory.Put(OliverTwistTimeout,State) - OrphanLock.Unlock() - print("2B:",Orphan['Key'],State) - return None - -# Process each storehouse. Handles both orphans and conditionals - -def ProcessStorehouseOrder(cur): - global NumberProcesses -# global StorehouseLock -# global OrphanLock -# global OrphanMemory -# global OrphanList - global JRLog - - data=json.loads(cur) - - # Determine storehouse and set the lock to it. - Storehouse=f"{data['Framework']}.{data['Order']['Exchange']}.{data['Order']['Account']}" - - # Setup locks and memory - - StorehouseLock=JRRsupport.Locker(f"OliverTwist.{Storehouse}.storehouse",ID=data['slID']) - StorehouseMemory=JRRsupport.Locker(f"OliverTwist.{Storehouse}.memory",ID=data['smID']) - - OrphanLock=JRRsupport.Locker(f"OliverTwist.{data['Key']}.orphan",ID=data['lID']) - OrphanMemory=JRRsupport.Locker(f"OliverTwist.{data['Key']}.memory",ID=data['mID']) - - # Get result from Locker - - OrphanLock.Lock() - sData=json.loads(OrphanMemory.Get()) - OrphanLock.Unlock() - - if 'DataStore' in sData: - status=sData['DataStore'].lower() - else: - status=sData['Status'].lower() - - print("2:",data['Key'],sData) - - # This check must contain all possible expected values. - - if status!='delete' and status!='running' and status!='notowner': - if status=='done' \ - or status=='notfound' \ - or status=='waiting': - status='waiting' - else: - JRLog.Error("Corruption",f"{data['Key']}: {sData}") - -### -> Rething this situation without globals - - if status=='delete': - StorehouseLock.Lock() - WorkingStorehouse=StorageDirectory+'/'+Storehouse+'.delete' - JRRsupport.AppendFile(WorkingStorehouse,data['Key']+'\n') - StorehouseLock.Unlock() - - JRLog.Write(f"Processed {data['Class'].lower()}: {data['Key']}") - else: - # Only run if not already running. It is possible for this state to - # occur, especially if there are only a few orders to process or a - # very fast broker. - - # ID *MUST* be dynamic for security. Howver, the child process has - # to have it in order to access the data store. orphan lock and - # orphan memory IDs will be different. - - OrphanLock.Lock() - if status=='waiting': - OrphanMemory.Put(OliverTwistTimeout,"Running") - if NumberProcesses>1: - interceptor.StartProcess(ProcessOrphan,kwargs=data) - else: - ProcessOrphan(**data) - OrphanLock.Unlock() - - # Process any signals received during critical section - interceptor.SafeExit() - -# Process a single storehouse. OrphanList is global so it can be passed to its children during the forking -# process. Process each order. - -def ProcessStorehouse(*args): - global interceptor - global NumberProcesses - global StorehouseLock - global OrphanList - global OrphanMemory - global JRLog - - # Track signals for THIS child - interceptor=JRRsupport.SignalInterceptor(Log=JRLog) - - Storehouse=args[0] - lID=args[1] - mID=args[2] - - # Load saved orphans into memory - ReadOrphanList(Storehouse) - - print("1A:",Storehouse,len(OrphanList)) - OrphanKeys=list(OrphanList.keys()) - for cur in OrphanKeys: - ReceiveOrphans(Storehouse) - data=json.loads(OrphanList[cur]) - - # Process a single entry - data['slID']=lID - data['smID']=mID - ProcessStorehouseOrder(json.dumps(data)) - - # Process any signals received during critical section - interceptor.SafeExit() - - # Only allow "NumberProcesses" children to run as once. - - while interceptor.GetChildren()>(NumberProcesses-1): - JRRsupport.ElasticSleep(1) - - # Wait for all orders to process - while interceptor.GetChildren()>0: - JRRsupport.ElasticSleep(1) - - # This storehouse is finished - stl=JRRsupport.Locker(f"OliverTwist.{Storehouse}.storehouse",ID=lID) - stm=JRRsupport.Locker(f"OliverTwist.{Storehouse}.memory",ID=mID) - DeleteStorehouse=StorageDirectory+'/'+Storehouse+'.delete' - if os.path.exists(DeleteStorehouse): - WriteOrphanList(Storehouse) - stl.Lock() - stm.Put(OliverTwistTimeout,"Waiting") - stl.Unlock() - print("1B:",Storehouse,'Waiting') - -### -### Main driver -### - -def main(): - global NumberProcesses - global StorehouseLock - global OrphanList - global OrphanMemory - global JRLog - - JRLog.Write('OliverTwist '+Version) - - if len(sys.argv)>1: - NumberProcesses=int(sys.argv[1]) - - ConvertOld2New() - JRLog.Write(f'Spawning {NumberProcesses} sub-processes per framework/exchange/account') - - while True: - StorehouseList=os.listdir('/home/JackrabbitRelay2/Data/OliverTwist') - - for Storehouse in StorehouseList: - # Initialize storehouse locker - if Storehouse not in StorehouseLock: -# print(">>> Initialize",Storehouse) - StorehouseLock[Storehouse]=JRRsupport.Locker(f"OliverTwist.{Storehouse}.storehouse") - StorehouseMemory[Storehouse]=JRRsupport.Locker(f"OliverTwist.{Storehouse}.memory") - StorehouseMemory[Storehouse].Put(OliverTwistTimeout,"Waiting") - - # Get result from Locker - StorehouseLock[Storehouse].Lock() - sData=json.loads(StorehouseMemory[Storehouse].Get()) - StorehouseLock[Storehouse].Unlock() - - if 'DataStore' in sData: - status=sData['DataStore'].lower() - else: - status=sData['Status'].lower() - - print("1:",Storehouse,sData) - - # This check must contain all possible expected values. - - if status!='running' and status!='notowner': - if status=='done' \ - or status=='notfound' \ - or status=='waiting': - status='waiting' - else: - JRLog.Error("Corruption",f"{Storehouse}: {sData}") - - # Only run if not already running. It is possible for this state to - # occur, especially if there are only a few orders to process or a - # very fast broker. - - # ID *MUST* be dynamic for security. Howver, the child process has - # to have it in order to access the data store. orphan lock and - # orphan memory IDs will be different. - - StorehouseLock[Storehouse].Lock() - if status=='waiting' and 'oanda' in Storehouse: - StorehouseMemory[Storehouse].Put(OliverTwistTimeout,"Running") - lID=StorehouseLock[Storehouse].ID - mID=StorehouseMemory[Storehouse].ID - if NumberProcesses>1: - interceptor.StartProcess(ProcessStorehouse,args=[Storehouse,lID,mID]) - else: - ProcessStorehouse(Storehouse,lID,mID) - StorehouseLock[Storehouse].Unlock() - - # Process any signals received during critical section - interceptor.SafeExit() - JRRsupport.ElasticSleep(1) - -if __name__ == '__main__': - main() diff --git a/Base/JROT.SAFE b/Base/JTROT.SAFE similarity index 91% rename from Base/JROT.SAFE rename to Base/JTROT.SAFE index 7c8342f..da75cd2 100755 --- a/Base/JROT.SAFE +++ b/Base/JTROT.SAFE @@ -18,6 +18,7 @@ # Orphan.oanda # Conditional.ccxt # Conditional.oanda +# Conditional.mimic # ANY order (direct orphan or conditional) is an ORPHAN at all times withis THIS framework. @@ -30,6 +31,7 @@ import sys sys.path.append('/home/JackrabbitRelay2/Base/Library') import os +import importlib import time import json import random @@ -38,7 +40,7 @@ import subprocess import JRRsupport import JackrabbitRelay as JRR -Version="0.0.0.1.510" +Version="0.0.0.1.770" BaseDirectory='/home/JackrabbitRelay2/Base' DataDirectory='/home/JackrabbitRelay2/Data' ConfigDirectory='/home/JackrabbitRelay2/Config' @@ -207,12 +209,14 @@ def WriteOrphanList(cl): global OrphanList global ConditionalList + sTime=time.time() interceptor.Critical(True) - OliverTwistLock.Lock() buffer='' if cl=='Orphan': + dList=OrphanList cur=OrphanList.GetHead() else: + dList=ConditionalList cur=ConditionalList.GetHead() while cur!=None: buffer+=cur.GetData()+'\n' @@ -224,8 +228,8 @@ def WriteOrphanList(cl): WorkingStorehouse=ConditionalStorehouse JRRsupport.WriteFile(WorkingStorehouse,buffer) - OliverTwistLock.Unlock() interceptor.Critical(False) + print(f"Written {dList.Length()} records in {time.time()-sTime:.2f} seconds") # Process any signals received during critical section interceptor.SafeExit() @@ -318,38 +322,18 @@ def ProcessOrphan(**kwargs): # The entire kwargs payload is the orphan JSON... Orphan=kwargs + State='Waiting' - # Figure out which transactor is needed - if Orphan['Class']=='Orphan': - OrphanManager=BaseDirectory+'/Orphan.'+Orphan['Framework'] - else: - OrphanManager=BaseDirectory+'/Conditional.'+Orphan['Framework'] - - # Diagnostics only - # fn=f"/tmp/{Orphan['Framework']},{Orphan['Key']}.OliverTwist" - # if not os.path.exists(fn): - # JRRsupport.WriteFile(fn,json.dumps(Orphan)+'\n') - - if os.path.exists(OrphanManager): - transactor=[ OrphanManager ] - - # Time to get down to business - - try: - payload=json.dumps(Orphan).encode() - #JRRsupport.AppendFile("/home/trap.txt",json.dumps(Orphan)+"\n") - - subp=subprocess.Popen(transactor,stdin=subprocess.PIPE,stdout=subprocess.PIPE,stderr=subprocess.PIPE) - subp.stdin.write(payload) - subp.communicate() # [0].decode().strip() + try: + # Figure out which order processor is needed + if Orphan['Class']=='Orphan': + Processor=importlib.import_module(f"ORPHAN{Orphan['Framework']}") + else: + Processor=importlib.import_module(f"COND{Orphan['Framework']}") - # response will be in Jackrabbit Locker as a memory element - return None - except Exception as e: - # This should never happen, but if it dowes, go back to waiting state. Class doesn't matter here - Memory=JRRsupport.Locker(Orphan['Key'],ID=Orphan['mID']) - Memory.Put(OliverTwistTimeout*100,"Waiting") - return None + State=Processor.OrderProcessor(Orphan) + except: + JRLog.Write(f"Broke: {Orphan['Key']}") # This should never happen, but if it dowes, go back to waiting state. Class doesn't matter here Memory=JRRsupport.Locker(Orphan['Key'],ID=Orphan['mID']) @@ -463,13 +447,14 @@ def main(): while True: # Inner loop cycles conditional orders for every single orphan - ReceiveOrphans('Conditional') cor=ConditionalList.GetHead() while cor!=None: + ReceiveOrphans('Conditional') ConditionalList,cor,ConditionalListChanged=ProcessChild(ConditionalList,cor,ConditionalMemory,ConditionalListChanged) # Update Conditional storehouse, if needed if ConditionalListChanged==True: + print("ConditionalListChanged") OliverTwistLock.Lock() WriteOrphanList('Conditional') ConditionalListChanged=False diff --git a/Base/JackrabbitOliverTwist b/Base/JackrabbitOliverTwist index 8963356..f67d9de 100755 --- a/Base/JackrabbitOliverTwist +++ b/Base/JackrabbitOliverTwist @@ -46,11 +46,8 @@ DataDirectory='/home/JackrabbitRelay2/Data' ConfigDirectory='/home/JackrabbitRelay2/Config' LogDirectory="/home/JackrabbitRelay2/Logs" -ConditionalReceiver=DataDirectory+'/OliverTwist.Conditional.Receiver' -OrphanReceiver=DataDirectory+'/OliverTwist.Orphan.Receiver' - -ConditionalStorehouse=DataDirectory+'/OliverTwist.Conditional.Storehouse' -OrphanStorehouse=DataDirectory+'/OliverTwist.Orphans.Storehouse' +Receiver=DataDirectory+'/OliverTwist.Receiver' +Storehouse=DataDirectory+'/OliverTwist.Storehouse' NumberProcesses=os.cpu_count() @@ -68,6 +65,7 @@ interceptor=JRRsupport.SignalInterceptor(Log=JRLog) # is just to compensate for an overloaded server. OliverTwistTimeout=(15*60) +OliverTwistCount=1 # This lock guards the lists. Both PlaceOrder.olivertwist and # JackrabbitOliverTwist will access this file. Collisions must not be allowed to @@ -75,38 +73,11 @@ OliverTwistTimeout=(15*60) OliverTwistLock=JRRsupport.Locker("OliverTwist") -# Compare orphan IDs - -def compareListKey(node,dz): - nData=node.GetData() - - d2=json.loads(nData)['Key'] - d1=json.loads(dz)['Key'] - - if d1d2: - r=1 - else: - r=0 - - return r - # The list of orphaned orders to track and manage. Must be global, but after # compare function declared. -OrphanList=JRRsupport.DList(Compare=compareListKey) +OrphanList={} OrphanMemory={} -OrphanListChanged=False - -# The list of conditional orders to track and manage. Must be global, but after -# compare function declared. - -ConditionalList=JRRsupport.DList(Compare=compareListKey) -ConditionalMemory={} -ConditionalListChanged=False - -# We only want to write to disk when there is an actual change in the OrphanList # Generate a random ID @@ -132,31 +103,30 @@ def GetID(): def ReadOrphanList(cl=None): # Required as the blobals are modified + global OliverTwictCount global OliverTwistLock global OrphanList global OrphanMemory - global OrphanListChanged - global ConditionalList - global ConditionalMemory - global ConditionalListChanged global JRLog - - if cl==None: - JRLog.Error("Storehouse","Storehouse not provided") + global Orphan # Setup mechanism to switch between orphan and conditional storehouses if cl=='Orphan': - WorkingStorehouse=OrphanStorehouse + WorkingStorehouse=DataDirectory+'/OliverTwist.Orphans.Storehouse' + elif cl=='Conditional': + WorkingStorehouse=DataDirectory+'/OliverTwist.Conditional.Storehouse' else: - WorkingStorehouse=ConditionalStorehouse + WorkingStorehouse=Storehouse while OliverTwistLock.Lock()!='locked': JRRsupport.ElasticSleep(1) + rc=0 if os.path.exists(WorkingStorehouse): - buffer=JRRsupport.ReadFile(WorkingStorehouse) + buffer=JRRsupport.ReadFile(WorkingStorehouse).strip() if buffer!=None and buffer!='': Orphans=buffer.split('\n') + OliverTwictCount=len(Orphans) for Entry in Orphans: # Force set InMotion to False Entry=Entry.strip() @@ -164,9 +134,14 @@ def ReadOrphanList(cl=None): continue # Break down entry and set up memory locker try: - Orphan=json.loads(Entry) + Orphan=Entry + while type(Orphan)==str: + Orphan=json.loads(Orphan) except: -# JRLog.Write(f"Bad orphan: {Entry}") + JRLog.Write(f"Broken: {Entry}") + continue + + if Orphan['Key'] in OrphanList: continue if 'Order' in Orphan: @@ -181,97 +156,72 @@ def ReadOrphanList(cl=None): if cl=='Orphan': Orphan['Class']='Orphan' - OrphanList.insert(json.dumps(Orphan)) - - OrphanMemory[Orphan['Key']]=JRRsupport.Locker(Orphan['Key']) - OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout*100,"Waiting") - - OrphanListChanged=True elif cl=='Conditional': Orphan['Class']='Conditional' - ConditionalList.insert(json.dumps(Orphan)) - ConditionalMemory[Orphan['Key']]=JRRsupport.Locker(Orphan['Key']) - ConditionalMemory[Orphan['Key']].Put(OliverTwistTimeout*100,"Waiting") + OrphanList[Orphan['Key']]=Orphan - ConditionalListChanged=True + OrphanMemory[Orphan['Key']]=JRRsupport.Locker(Orphan['Key']) + OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout*OliverTwictCount,"Waiting") + rc+=1 - if cl=='Orphan': - JRLog.Write(f"{OrphanList.size} {cl.lower()}(s) read") - else: - JRLog.Write(f"{ConditionalList.size} {cl.lower()}(s) read") + if rc>0: + JRLog.Write(f"{rc} record(s) read") OliverTwistLock.Unlock() # Write only when there are changes. -def WriteOrphanList(cl): +def WriteOrphanList(): global OliverTwistLock global OrphanList global ConditionalList interceptor.Critical(True) - OliverTwistLock.Lock() - buffer='' - if cl=='Orphan': - cur=OrphanList.GetHead() - else: - cur=ConditionalList.GetHead() - while cur!=None: - buffer+=cur.GetData()+'\n' - cur=cur.GetNext() - if cl=='Orphan': - WorkingStorehouse=OrphanStorehouse - else: - WorkingStorehouse=ConditionalStorehouse + fh=open(Storehouse,"w") + for cur in OrphanList: + fh.write(json.dumps(OrphanList[cur])+'\n') + fh.close() - JRRsupport.WriteFile(WorkingStorehouse,buffer) - OliverTwistLock.Unlock() interceptor.Critical(False) - # Process any signals received during critical section - interceptor.SafeExit() - # Check the receiver file for new orders. -def ReceiveOrphans(cl): - # Required as the blobals are modified +def ReceiveOrphans(cl=None): + # Required as the globals are modified + global OliverTwictCount global OliverTwistLock global OrphanList global OrphanMemory - global OrphanListChanged - global ConditionalList - global ConditionalMemory - global ConditionalListChanged global JRLog - if cl==None: - JRLog.Error("Receiver","Storehouse not provided") - - # The key is the time of payload and random ID - + # Setup mechanism to switch between orphan and conditional storehouses if cl=='Orphan': - WorkingReceiver=OrphanReceiver + WorkingReceiver=DataDirectory+'/OliverTwist.Orphans.Receiver' + elif cl=='Conditional': + WorkingReceiver=DataDirectory+'/OliverTwist.Conditional.Receiver' else: - WorkingReceiver=ConditionalReceiver + WorkingReceiver=Receiver + rc=0 OliverTwistLock.Lock() if os.path.exists(WorkingReceiver): - buffer=JRRsupport.ReadFile(WorkingReceiver) + buffer=JRRsupport.ReadFile(WorkingReceiver).strip() if buffer!=None and buffer!='': # Remove the receiver after we load it os.remove(WorkingReceiver) # Process all the orphans - rc=0 Orphans=buffer.split('\n') for Entry in Orphans: if Entry.strip()=='': continue try: - Orphan=json.loads(Entry) + Orphan=Entry + while type(Orphan)==str: + Orphan=json.loads(Orphan) except: JRLog.Write(f"Broken: {Entry}") continue @@ -286,36 +236,36 @@ def ReceiveOrphans(cl): resp=json.loads(Orphan['Response']) Orphan['Response']=resp - Orphan['Key']=Orphan['DateTime']+'.'+GetID() + Orphan['Key']=Orphan['DateTime'].replace(' ','.')+'.'+GetID() if cl=='Orphan': Orphan['Class']='Orphan' - OrphanList.insert(json.dumps(Orphan)) - - OrphanMemory[Orphan['Key']]=JRRsupport.Locker(Orphan['Key']) - OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout*100,"Waiting") - OrphanListChanged=True - else: + elif cl=='Conditional': Orphan['Class']='Conditional' - ConditionalList.insert(json.dumps(Orphan)) - ConditionalMemory[Orphan['Key']]=JRRsupport.Locker(Orphan['Key']) - ConditionalMemory[Orphan['Key']].Put(OliverTwistTimeout*100,"Waiting") - ConditionalListChanged=True + OrphanList[Orphan['Key']]=Orphan + + OrphanMemory[Orphan['Key']]=JRRsupport.Locker(Orphan['Key']) + OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout*OliverTwictCount,"Waiting") rc+=1 if rc>0: - JRLog.Write(f"{rc} {cl.lower()}n(s) received") + JRLog.Write(f"{rc} order(s) received") + if cl==None: + WriteOrphanList() OliverTwistLock.Unlock() -# This spins up the orphan manager to ensure each orphan is handled. This is NOT part of the main process, but rather a child -# process. NONE o the global or main variables are available. The ONLY information know is what is EXPLICTLY given. +# This spins up the orphan manager to ensure each orphan is handled. This is NOT part of the main process, but +# rather a child process. NONE o the global or main variables are available. The ONLY information know is what is +# EXPLICTLY given. -# An Orphan transactor will process orphans. A relatively easy process compared to the Conditional transactor. The Condiional -# transactor will need to back feed orders into Relay, usingsimilat techniques compared to the PlaceOrder system. The -# Conditional framework will be a logistical nightmare. Emphasis has to be on speed in processing the conditions. +# An Orphan transactor will process orphans. A relatively easy process compared to the Conditional transactor. +# The Condiional transactor will need to back feed orders into Relay, usingsimilat techniques compared to the +# PlaceOrder system. The Conditional framework will be a logistical nightmare. Emphasis has to be on speed in +# processing the conditions. def ProcessOrphan(**kwargs): + global OliverTwictCount global JRLog # The entire kwargs payload is the orphan JSON... @@ -326,29 +276,37 @@ def ProcessOrphan(**kwargs): # Figure out which order processor is needed if Orphan['Class']=='Orphan': Processor=importlib.import_module(f"ORPHAN{Orphan['Framework']}") - else: + elif Orphan['Class']=='Conditional': Processor=importlib.import_module(f"COND{Orphan['Framework']}") State=Processor.OrderProcessor(Orphan) except: JRLog.Write(f"Broke: {Orphan['Key']}") - # This should never happen, but if it dowes, go back to waiting state. Class doesn't matter here + otLock=JRRsupport.Locker("OliverTwist",ID=Orphan['lID']) Memory=JRRsupport.Locker(Orphan['Key'],ID=Orphan['mID']) - Memory.Put(OliverTwistTimeout*100,"Waiting") + otLock.Lock() + Memory.Put(OliverTwistTimeout*OliverTwictCount,State) + otLock.Unlock() return None # Process each child. Handles both orphans and conditionals -# -# memData will be eithewr OrphanMemory or ConfitionalMemory -def ProcessChild(CurList,cur,memData,CurListChanged): - data=json.loads(cur.GetData()) +# IMPORTANT: Deletes aren't removed from the storehouse in realtime, but rather on the next list sweep. + +def ProcessChild(Orphan): + # Required as the globals are modified + global NumberProcesses + global OliverTwictCount + global OliverTwistLock + global OrphanList + global OrphanMemory + global JRLog # Get result from Locker OliverTwistLock.Lock() - sData=json.loads(memData[data['Key']].Get()) + sData=json.loads(OrphanMemory[Orphan['Key']].Get()) OliverTwistLock.Unlock() if 'DataStore' in sData: @@ -365,28 +323,20 @@ def ProcessChild(CurList,cur,memData,CurListChanged): or status=='waiting': status='waiting' else: - JRLog.Error("Corruption",f"{data['Key']}: {sData}") + JRLog.Error("Corruption",f"{Orphan['Key']}: {sData}") if status=='delete': - # This is the ONLY way to properly handle deletions that - # won't risk trashing memory, as this part of the program is - # huarenteed to be non-parrellel. The next pointer must be - # fetched BEFORE this orphan is removed to maintain the list - # scan integrity. + # This is the ONLY way to properly handle deletions that won't risk trashing memory, as this part of the + # program is guarenteed to be non-parrellel. OliverTwistLock.Lock() - # Get next orphan - cNext=cur.GetNext() - # Remove THIS orphan - memData[data['Key']].Erase() - memData.pop(data['Key'],None) - CurList.delete(cur.GetData()) - # Set the next orphan - cur=cNext - CurListChanged=True + OrphanMemory[Orphan['Key']].Erase() + OrphanMemory.pop(Orphan['Key'],None) + OrphanList.pop(Orphan['Key'],None) + WriteOrphanList() OliverTwistLock.Unlock() - JRLog.Write(f"Processed {data['Class'].lower()}: {data['Key']}") + JRLog.Write(f"Processed {Orphan['Class'].lower()}: {Orphan['Key']}") else: OliverTwistLock.Lock() @@ -399,34 +349,23 @@ def ProcessChild(CurList,cur,memData,CurListChanged): # orphan memory IDs will be different. if status=='waiting': - data['lID']=OliverTwistLock.ID - data['mID']=memData[data['Key']].ID - memData[data['Key']].Put(OliverTwistTimeout*100,"Running") - interceptor.StartProcess(ProcessOrphan,kwargs=data) + Orphan['lID']=OliverTwistLock.ID + Orphan['mID']=OrphanMemory[Orphan['Key']].ID + OrphanMemory[Orphan['Key']].Put(OliverTwistTimeout*OliverTwictCount,"Running") + interceptor.StartProcess(ProcessOrphan,kwargs=Orphan) - cur=cur.GetNext() OliverTwistLock.Unlock() # Process any signals received during critical section interceptor.SafeExit() - # Return the updated list information - - return CurList,cur,CurListChanged - -### -### Main driver -### - def main(): + # Required as the globals are modified global NumberProcesses + global OliverTwistCount global OliverTwistLock global OrphanList global OrphanMemory - global OrphanListChanged - global ConditionalList - global ConditionalMemory - global ConditionalListChanged global JRLog JRLog.Write('OliverTwist '+Version) @@ -435,27 +374,25 @@ def main(): NumberProcesses=int(sys.argv[1]) JRLog.Write(f'Spawning {NumberProcesses} sub-processes') - # Load saved orphans into memory + ReadOrphanList() ReadOrphanList('Orphan') ReadOrphanList('Conditional') - # Outter loop, cycles orphans + ReceiveOrphans('Orphan') + ReceiveOrphans('Conditional') - cur=None while True: - # Inner loop cycles conditional orders for every single orphan + # Dynamic factor for memory timeouts + OliverTwistCount=len(OrphanList) - cor=ConditionalList.GetHead() - while cor!=None: - ReceiveOrphans('Conditional') - ConditionalList,cor,ConditionalListChanged=ProcessChild(ConditionalList,cor,ConditionalMemory,ConditionalListChanged) + # Deleted will break the system otherwise. + keyList=list(OrphanList.keys()) + for cur in keyList: + ReceiveOrphans() - # Update Conditional storehouse, if needed - if ConditionalListChanged==True: - OliverTwistLock.Lock() - WriteOrphanList('Conditional') - ConditionalListChanged=False - OliverTwistLock.Unlock() + # Process each order + + ProcessChild(OrphanList[cur]) # Process any signals received during critical section interceptor.SafeExit() @@ -465,36 +402,6 @@ def main(): while interceptor.GetChildren()>(NumberProcesses-1): JRRsupport.ElasticSleep(1) - # Check for new orphans - ReceiveOrphans('Orphan') - - # Walk the list of orphans one by one. - if cur==None: - cur=OrphanList.GetHead() - - # Make sure we actuallyhave orphans to process - - if cur!=None: - OrphanList,cur,OrphanListChanged=ProcessChild(OrphanList,cur,OrphanMemory,OrphanListChanged) - - # Save the orphan list to disk, ONLY IF it actually changed - - if OrphanListChanged==True: - OliverTwistLock.Lock() - WriteOrphanList('Orphan') - OrphanListChanged=False - OliverTwistLock.Unlock() - - # Only allow "NumberProcesses" children to run as once. - - while interceptor.GetChildren()>(NumberProcesses-1): - JRRsupport.ElasticSleep(1) - - # Process any signals received during critical section - interceptor.SafeExit() - - # Brief rest to maintain control over server - JRRsupport.ElasticSleep(1) - if __name__ == '__main__': main() + diff --git a/Base/Library/CONDoanda.py b/Base/Library/CONDoanda.py index 10e7330..2de66e7 100755 --- a/Base/Library/CONDoanda.py +++ b/Base/Library/CONDoanda.py @@ -149,6 +149,7 @@ def OrderProcessor(Orphan): # Handle OANDa's weird order id sequencing id=Orphan['ID'] orderDetail=relay.GetOrderDetails(OrderID=Orphan['ID']) + # Figure out a way to handle when an order ID nolong exists. cid=orderDetail[-1]['id'] saction=relay.Order['SellAction'].lower() diff --git a/Base/Library/JRRccxt.py b/Base/Library/JRRccxt.py index 69d501e..5ad7ab6 100755 --- a/Base/Library/JRRccxt.py +++ b/Base/Library/JRRccxt.py @@ -686,11 +686,7 @@ def MakeOrphanOrder(self,id,Order): Orphan['Order']=json.dumps(Order) Orphan['Class']='Orphan' -# f=Orphan['Framework'] -# e=Orphan['Order']['Exchange'] -# a=Orphan['Order']['Account'] -# nsf=f"{DataDirectory}/OliverTwist/{f}.{e}.{a}.receiver" - nsf=f"{self.DataDirectory}/OliverTwist.Orphan.Receiver" + nsf=f"{self.DataDirectory}/OliverTwist.Receiver" orphanLock.Lock() JRRsupport.AppendFile(nsf,json.dumps(Orphan)+'\n') @@ -720,11 +716,7 @@ def MakeConditionalOrder(self,id,Order): Conditional['Response']=resp Conditional['Class']='Conditional' -# f=Orphan['Framework'] -# e=Orphan['Order']['Exchange'] -# a=Orphan['Order']['Account'] -# nsf=f"{DataDirectory}/OliverTwist/{f}.{e}.{a}.receiver" - nsf=f"{self.DataDirectory}/OliverTwist.Conditional.Receiver" + nsf=f"{self.DataDirectory}/OliverTwist.Receiver" orphanLock.Lock() JRRsupport.AppendFile(nsf,json.dumps(Conditional)+'\n') diff --git a/Base/Library/JRRmimic.py b/Base/Library/JRRmimic.py index 62de6c5..277bc40 100644 --- a/Base/Library/JRRmimic.py +++ b/Base/Library/JRRmimic.py @@ -187,7 +187,7 @@ def GetWallet(self,**kwargs): self.PutWallet() else: - self.Wallet=json.loads(JRRsupport.ReadFile(self.walletFile)) + self.Wallet=json.loads(JRRsupport.ReadFile(self.walletFile).strip().split('\n')[0]) return self.Wallet @@ -252,7 +252,7 @@ def UpdateWallet(self,action,asset,amount,price,fee_rate=0): # Time to F* with the trader. Simulate dust. # It is very rare that an order is filled exactly as requested. rpct=random.uniform(0, 1) - mda=amount*0.0031 + mda=amount*0.0013 dust=abs(mda)*rpct if amount<0: # short actualAmount=amount+dust @@ -481,11 +481,7 @@ def MakeConditionalOrder(self,id,Order): Conditional['Response']=resp Conditional['Class']='Conditional' -# f=Orphan['Framework'] -# e=Orphan['Order']['Exchange'] -# a=Orphan['Order']['Account'] -# nsf=f"{DataDirectory}/OliverTwist/{f}.{e}.{a}.receiver" - nsf=f"{self.DataDirectory}/OliverTwist.Conditional.Receiver" + nsf=f"{self.DataDirectory}/OliverTwist.Receiver" orphanLock.Lock() JRRsupport.AppendFile(nsf,json.dumps(Conditional)+'\n') diff --git a/Base/Library/JRRoanda.py b/Base/Library/JRRoanda.py index 73e1e8b..2bbd75a 100644 --- a/Base/Library/JRRoanda.py +++ b/Base/Library/JRRoanda.py @@ -543,11 +543,7 @@ def MakeOrphanOrder(self,id,Order): Orphan['Order']=json.dumps(Order) Orphan['Class']='Orphan' -# f=Orphan['Framework'] -# e=Orphan['Order']['Exchange'] -# a=Orphan['Order']['Account'] -# nsf=f"{DataDirectory}/OliverTwist/{f}.{e}.{a}.receiver" - nsf=f"{self.DataDirectory}/OliverTwist.Orphan.Receiver" + nsf=f"{self.DataDirectory}/OliverTwist.Receiver" orphanLock.Lock() JRRsupport.AppendFile(nsf,json.dumps(Orphan)+'\n') @@ -574,11 +570,7 @@ def MakeConditionalOrder(self,id,Order): Conditional['Response']=resp Conditional['Class']='Conditional' -# f=Orphan['Framework'] -# e=Orphan['Order']['Exchange'] -# a=Orphan['Order']['Account'] -# nsf=f"{DataDirectory}/OliverTwist/{f}.{e}.{a}.receiver" - nsf=f"{self.DataDirectory}/OliverTwist.Conditional.Receiver" + nsf=f"{self.DataDirectory}/OliverTwist.Receiver" orphanLock.Lock() JRRsupport.AppendFile(nsf,json.dumps(Conditional)+'\n') diff --git a/Base/MIMIC-PlaceOrder b/Base/MIMIC-PlaceOrder index 098d894..b459776 100755 --- a/Base/MIMIC-PlaceOrder +++ b/Base/MIMIC-PlaceOrder @@ -127,7 +127,7 @@ def main(): if "permissions" in relay.Markets[relay.Order['Asset']]['info']: marketType=' '.join(relay.Markets[relay.Order['Asset']]['info']['permissions']).lower() - if relay.Order['Market'] not in marketType: + if relay.Order['Market'].lower() not in marketType: relay.JRLog.Error(relay.Exchange, f"wrong market type: {relay.Order['Market']}, asset is {marketType}") ticker=relay.GetTicker(symbol=relay.Order['Asset']) diff --git a/Bybit.Markets.txt b/Bybit.Markets.txt new file mode 100644 index 0000000..6b4cfa4 --- /dev/null +++ b/Bybit.Markets.txt @@ -0,0 +1,4770 @@ +{'id': 'BTCUSDT', 'lowercaseId': None, 'symbol': 'BTC/USDT', 'base': 'BTC', 'quote': 'USDT', 'settle': None, 'baseId': 'BTC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-06, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.8e-05, 'max': 71.73956243}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'BTCUSDT', 'baseCoin': 'BTC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.000001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.000048', 'maxOrderQty': '71.73956243', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSDT', 'lowercaseId': None, 'symbol': 'ETH/USDT', 'base': 'ETH', 'quote': 'USDT', 'settle': None, 'baseId': 'ETH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00062, 'max': 1229.2336343}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'ETHUSDT', 'baseCoin': 'ETH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00062', 'maxOrderQty': '1229.2336343', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPUSDT', 'lowercaseId': None, 'symbol': 'XRP/USDT', 'base': 'XRP', 'quote': 'USDT', 'settle': None, 'baseId': 'XRP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.63, 'max': 4169272.461955}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'XRPUSDT', 'baseCoin': 'XRP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.63', 'maxOrderQty': '4169272.461955', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EOSUSDT', 'lowercaseId': None, 'symbol': 'EOS/USDT', 'base': 'EOS', 'quote': 'USDT', 'settle': None, 'baseId': 'EOS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.78, 'max': 785751.702462}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'EOSUSDT', 'baseCoin': 'EOS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.78', 'maxOrderQty': '785751.702462', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHBTC', 'lowercaseId': None, 'symbol': 'ETH/BTC', 'base': 'ETH', 'quote': 'BTC', 'settle': None, 'baseId': 'ETH', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.003, 'max': 271.90273271}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0002, 'max': 13.91}}, 'created': None, 'info': {'symbol': 'ETHBTC', 'baseCoin': 'ETH', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.000000001', 'minOrderQty': '0.003', 'maxOrderQty': '271.90273271', 'minOrderAmt': '0.0002', 'maxOrderAmt': '13.91'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPBTC', 'lowercaseId': None, 'symbol': 'XRP/BTC', 'base': 'XRP', 'quote': 'BTC', 'settle': None, 'baseId': 'XRP', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5.0, 'max': 922509.225092251}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'XRPBTC', 'baseCoin': 'XRP', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '5', 'maxOrderQty': '922509.225092251', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOTUSDT', 'lowercaseId': None, 'symbol': 'DOT/USDT', 'base': 'DOT', 'quote': 'USDT', 'settle': None, 'baseId': 'DOT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.107, 'max': 486618.004866}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'DOTUSDT', 'baseCoin': 'DOT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.000001', 'minOrderQty': '0.107', 'maxOrderQty': '486618.004866', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XLMUSDT', 'lowercaseId': None, 'symbol': 'XLM/USDT', 'base': 'XLM', 'quote': 'USDT', 'settle': None, 'baseId': 'XLM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 7.9, 'max': 5670005.670006}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'XLMUSDT', 'baseCoin': 'XLM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '7.9', 'maxOrderQty': '5670005.670006', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTCUSDT', 'lowercaseId': None, 'symbol': 'LTC/USDT', 'base': 'LTC', 'quote': 'USDT', 'settle': None, 'baseId': 'LTC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01617, 'max': 33377.8371162}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'LTCUSDT', 'baseCoin': 'LTC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.01617', 'maxOrderQty': '33377.8371162', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOGEUSDT', 'lowercaseId': None, 'symbol': 'DOGE/USDT', 'base': 'DOGE', 'quote': 'USDT', 'settle': None, 'baseId': 'DOGE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 6.9, 'max': 36449790.413705}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'DOGEUSDT', 'baseCoin': 'DOGE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '6.9', 'maxOrderQty': '36449790.413705', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CHZUSDT', 'lowercaseId': None, 'symbol': 'CHZ/USDT', 'base': 'CHZ', 'quote': 'USDT', 'settle': None, 'baseId': 'CHZ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 21.28, 'max': 3656307.129799}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CHZUSDT', 'baseCoin': 'CHZ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '21.28', 'maxOrderQty': '3656307.129799', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AXSUSDT', 'lowercaseId': None, 'symbol': 'AXS/USDT', 'base': 'AXS', 'quote': 'USDT', 'settle': None, 'baseId': 'AXS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.16, 'max': 34979.099988}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AXSUSDT', 'baseCoin': 'AXS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.16', 'maxOrderQty': '34979.099988', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANAUSDT', 'lowercaseId': None, 'symbol': 'MANA/USDT', 'base': 'MANA', 'quote': 'USDT', 'settle': None, 'baseId': 'MANA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.93, 'max': 2239641.657335}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'MANAUSDT', 'baseCoin': 'MANA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.93', 'maxOrderQty': '2239641.657335', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DYDXUSDT', 'lowercaseId': None, 'symbol': 'DYDX/USDT', 'base': 'DYDX', 'quote': 'USDT', 'settle': None, 'baseId': 'DYDX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.625, 'max': 112233.445567}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DYDXUSDT', 'baseCoin': 'DYDX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.000001', 'minOrderQty': '0.625', 'maxOrderQty': '112233.445567', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MKRUSDT', 'lowercaseId': None, 'symbol': 'MKR/USDT', 'base': 'MKR', 'quote': 'USDT', 'settle': None, 'baseId': 'MKR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0038, 'max': 287.60426}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MKRUSDT', 'baseCoin': 'MKR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00001', 'minOrderQty': '0.0038', 'maxOrderQty': '287.60426', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.1'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COMPUSDT', 'lowercaseId': None, 'symbol': 'COMP/USDT', 'base': 'COMP', 'quote': 'USDT', 'settle': None, 'baseId': 'COMP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.027, 'max': 7194.2446}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'COMPUSDT', 'baseCoin': 'COMP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00001', 'minOrderQty': '0.027', 'maxOrderQty': '7194.2446', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AAVEUSDT', 'lowercaseId': None, 'symbol': 'AAVE/USDT', 'base': 'AAVE', 'quote': 'USDT', 'settle': None, 'baseId': 'AAVE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.009, 'max': 3812.9881816}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AAVEUSDT', 'baseCoin': 'AAVE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.009', 'maxOrderQty': '3812.9881816', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'YFIUSDT', 'lowercaseId': None, 'symbol': 'YFI/USDT', 'base': 'YFI', 'quote': 'USDT', 'settle': None, 'baseId': 'YFI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00025, 'max': 35.4421407}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'YFIUSDT', 'baseCoin': 'YFI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00025', 'maxOrderQty': '35.4421407', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINKUSDT', 'lowercaseId': None, 'symbol': 'LINK/USDT', 'base': 'LINK', 'quote': 'USDT', 'settle': None, 'baseId': 'LINK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.111, 'max': 125934.0105785}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'LINKUSDT', 'baseCoin': 'LINK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.111', 'maxOrderQty': '125934.0105785', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUSHIUSDT', 'lowercaseId': None, 'symbol': 'SUSHI/USDT', 'base': 'SUSHI', 'quote': 'USDT', 'settle': None, 'baseId': 'SUSHI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.633, 'max': 407331.97556}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SUSHIUSDT', 'baseCoin': 'SUSHI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.000001', 'minOrderQty': '0.633', 'maxOrderQty': '407331.97556', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'UNIUSDT', 'lowercaseId': None, 'symbol': 'UNI/USDT', 'base': 'UNI', 'quote': 'USDT', 'settle': None, 'baseId': 'UNI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.109, 'max': 505382.3217264}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'UNIUSDT', 'baseCoin': 'UNI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.109', 'maxOrderQty': '505382.3217264', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KSMUSDT', 'lowercaseId': None, 'symbol': 'KSM/USDT', 'base': 'KSM', 'quote': 'USDT', 'settle': None, 'baseId': 'KSM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.042, 'max': 9090.8677688}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KSMUSDT', 'baseCoin': 'KSM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.042', 'maxOrderQty': '9090.8677688', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ICPUSDT', 'lowercaseId': None, 'symbol': 'ICP/USDT', 'base': 'ICP', 'quote': 'USDT', 'settle': None, 'baseId': 'ICP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.12, 'max': 191699.415317}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ICPUSDT', 'baseCoin': 'ICP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.12', 'maxOrderQty': '191699.415317', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADAUSDT', 'lowercaseId': None, 'symbol': 'ADA/USDT', 'base': 'ADA', 'quote': 'USDT', 'settle': None, 'baseId': 'ADA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.86, 'max': 7923930.269414}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'ADAUSDT', 'baseCoin': 'ADA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.86', 'maxOrderQty': '7923930.269414', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETCUSDT', 'lowercaseId': None, 'symbol': 'ETC/USDT', 'base': 'ETC', 'quote': 'USDT', 'settle': None, 'baseId': 'ETC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.03, 'max': 45592.7052}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ETCUSDT', 'baseCoin': 'ETC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0001', 'minOrderQty': '0.03', 'maxOrderQty': '45592.7052', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KLAYUSDT', 'lowercaseId': None, 'symbol': 'KLAY/USDT', 'base': 'KLAY', 'quote': 'USDT', 'settle': None, 'baseId': 'KLAY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5.88, 'max': 1844507.977497}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KLAYUSDT', 'baseCoin': 'KLAY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '5.88', 'maxOrderQty': '1844507.977497', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XTZUSDT', 'lowercaseId': None, 'symbol': 'XTZ/USDT', 'base': 'XTZ', 'quote': 'USDT', 'settle': None, 'baseId': 'XTZ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.59, 'max': 276128.675963}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XTZUSDT', 'baseCoin': 'XTZ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.59', 'maxOrderQty': '276128.675963', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BCHUSDT', 'lowercaseId': None, 'symbol': 'BCH/USDT', 'base': 'BCH', 'quote': 'USDT', 'settle': None, 'baseId': 'BCH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.017, 'max': 4834.8106}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'BCHUSDT', 'baseCoin': 'BCH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0001', 'minOrderQty': '0.017', 'maxOrderQty': '4834.8106', 'minOrderAmt': '10', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.1'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SRMUSDT', 'lowercaseId': None, 'symbol': 'SRM/USDT', 'base': 'SRM', 'quote': 'USDT', 'settle': None, 'baseId': 'SRM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.75, 'max': 6006006.006006}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SRMUSDT', 'baseCoin': 'SRM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.75', 'maxOrderQty': '6006006.006006', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QNTUSDT', 'lowercaseId': None, 'symbol': 'QNT/USDT', 'base': 'QNT', 'quote': 'USDT', 'settle': None, 'baseId': 'QNT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.009, 'max': 4987.5312}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'QNTUSDT', 'baseCoin': 'QNT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0001', 'minOrderQty': '0.009', 'maxOrderQty': '4987.5312', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.1'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDCUSDT', 'lowercaseId': None, 'symbol': 'USDC/USDT', 'base': 'USDC', 'quote': 'USDT', 'settle': None, 'baseId': 'USDC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2496045.89}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'USDCUSDT', 'baseCoin': 'USDC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '2496045.89', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.01', 'marketParameter': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GRTUSDT', 'lowercaseId': None, 'symbol': 'GRT/USDT', 'base': 'GRT', 'quote': 'USDT', 'settle': None, 'baseId': 'GRT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 15.87, 'max': 6497022.1981592}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'GRTUSDT', 'baseCoin': 'GRT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '15.87', 'maxOrderQty': '6497022.1981592', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLUSDT', 'lowercaseId': None, 'symbol': 'SOL/USDT', 'base': 'SOL', 'quote': 'USDT', 'settle': None, 'baseId': 'SOL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.023, 'max': 148148.14815}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'SOLUSDT', 'baseCoin': 'SOL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00001', 'minOrderQty': '0.023', 'maxOrderQty': '148148.14815', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FILUSDT', 'lowercaseId': None, 'symbol': 'FIL/USDT', 'base': 'FIL', 'quote': 'USDT', 'settle': None, 'baseId': 'FIL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.14, 'max': 163889.64764}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'FILUSDT', 'baseCoin': 'FIL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.14', 'maxOrderQty': '163889.64764', 'minOrderAmt': '10', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OMGUSDT', 'lowercaseId': None, 'symbol': 'OMG/USDT', 'base': 'OMG', 'quote': 'USDT', 'settle': None, 'baseId': 'OMG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.877, 'max': 464037.12297}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'OMGUSDT', 'baseCoin': 'OMG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.000001', 'minOrderQty': '0.877', 'maxOrderQty': '464037.12297', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRIBEUSDT', 'lowercaseId': None, 'symbol': 'TRIBE/USDT', 'base': 'TRIBE', 'quote': 'USDT', 'settle': None, 'baseId': 'TRIBE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.99, 'max': 708215.29745}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'TRIBEUSDT', 'baseCoin': 'TRIBE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '10.99', 'maxOrderQty': '708215.29745', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BATUSDT', 'lowercaseId': None, 'symbol': 'BAT/USDT', 'base': 'BAT', 'quote': 'USDT', 'settle': None, 'baseId': 'BAT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 9.62, 'max': 1041666.666667}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BATUSDT', 'baseCoin': 'BAT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '9.62', 'maxOrderQty': '1041666.666667', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZRXUSDT', 'lowercaseId': None, 'symbol': 'ZRX/USDT', 'base': 'ZRX', 'quote': 'USDT', 'settle': None, 'baseId': 'ZRX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 7.81, 'max': 1017811.704835}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ZRXUSDT', 'baseCoin': 'ZRX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '7.81', 'maxOrderQty': '1017811.704835', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CRVUSDT', 'lowercaseId': None, 'symbol': 'CRV/USDT', 'base': 'CRV', 'quote': 'USDT', 'settle': None, 'baseId': 'CRV', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.61, 'max': 446627.95891}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CRVUSDT', 'baseCoin': 'CRV', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.61', 'maxOrderQty': '446627.95891', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGLDUSDT', 'lowercaseId': None, 'symbol': 'AGLD/USDT', 'base': 'AGLD', 'quote': 'USDT', 'settle': None, 'baseId': 'AGLD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.1, 'max': 414421.881475}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AGLDUSDT', 'baseCoin': 'AGLD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.1', 'maxOrderQty': '414421.881475', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ANKRUSDT', 'lowercaseId': None, 'symbol': 'ANKR/USDT', 'base': 'ANKR', 'quote': 'USDT', 'settle': None, 'baseId': 'ANKR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 73.6, 'max': 8628127.69629}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ANKRUSDT', 'baseCoin': 'ANKR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '73.6', 'maxOrderQty': '8628127.69629', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PERPUSDT', 'lowercaseId': None, 'symbol': 'PERP/USDT', 'base': 'PERP', 'quote': 'USDT', 'settle': None, 'baseId': 'PERP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.75, 'max': 454235.748353}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PERPUSDT', 'baseCoin': 'PERP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.75', 'maxOrderQty': '454235.748353', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATICUSDT', 'lowercaseId': None, 'symbol': 'MATIC/USDT', 'base': 'MATIC', 'quote': 'USDT', 'settle': None, 'baseId': 'MATIC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.07, 'max': 2725166.916474}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'MATICUSDT', 'baseCoin': 'MATIC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.07', 'maxOrderQty': '2725166.916474', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WAVESUSDT', 'lowercaseId': None, 'symbol': 'WAVES/USDT', 'base': 'WAVES', 'quote': 'USDT', 'settle': None, 'baseId': 'WAVES', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.16, 'max': 146380.736295}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'WAVESUSDT', 'baseCoin': 'WAVES', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.16', 'maxOrderQty': '146380.736295', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LUNCUSDT', 'lowercaseId': None, 'symbol': 'LUNC/USDT', 'base': 'LUNC', 'quote': 'USDT', 'settle': None, 'baseId': 'LUNC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.227, 'max': 2948982601.002654}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LUNCUSDT', 'baseCoin': 'LUNC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00000000001', 'minOrderQty': '0.227', 'maxOrderQty': '2948982601.00265408', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SPELLUSDT', 'lowercaseId': None, 'symbol': 'SPELL/USDT', 'base': 'SPELL', 'quote': 'USDT', 'settle': None, 'baseId': 'SPELL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1180.9, 'max': 391910957.8303809}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SPELLUSDT', 'baseCoin': 'SPELL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '1180.9', 'maxOrderQty': '391910957.83038094', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SHIBUSDT', 'lowercaseId': None, 'symbol': 'SHIB/USDT', 'base': 'SHIB', 'quote': 'USDT', 'settle': None, 'baseId': 'SHIB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 127388.5, 'max': 277073549173.6281}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'SHIBUSDT', 'baseCoin': 'SHIB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000000001', 'minOrderQty': '127388.5', 'maxOrderQty': '277073549173.6281395897', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FTMUSDT', 'lowercaseId': None, 'symbol': 'FTM/USDT', 'base': 'FTM', 'quote': 'USDT', 'settle': None, 'baseId': 'FTM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.7, 'max': 2975452.5167369}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'FTMUSDT', 'baseCoin': 'FTM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '3.7', 'maxOrderQty': '2975452.5167369', 'minOrderAmt': '10', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ATOMUSDT', 'lowercaseId': None, 'symbol': 'ATOM/USDT', 'base': 'ATOM', 'quote': 'USDT', 'settle': None, 'baseId': 'ATOM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.083, 'max': 82008.6655823}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ATOMUSDT', 'baseCoin': 'ATOM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.083', 'maxOrderQty': '82008.6655823', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALGOUSDT', 'lowercaseId': None, 'symbol': 'ALGO/USDT', 'base': 'ALGO', 'quote': 'USDT', 'settle': None, 'baseId': 'ALGO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5.56, 'max': 6282064.7052665}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ALGOUSDT', 'baseCoin': 'ALGO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '5.56', 'maxOrderQty': '6282064.7052665', 'minOrderAmt': '10', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ENJUSDT', 'lowercaseId': None, 'symbol': 'ENJ/USDT', 'base': 'ENJ', 'quote': 'USDT', 'settle': None, 'baseId': 'ENJ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.7, 'max': 938967.1361502}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ENJUSDT', 'baseCoin': 'ENJ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '3.7', 'maxOrderQty': '938967.1361502', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CBXUSDT', 'lowercaseId': None, 'symbol': 'CBX/USDT', 'base': 'CBX', 'quote': 'USDT', 'settle': None, 'baseId': 'CBX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 25.09, 'max': 2981514.6094216}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CBXUSDT', 'baseCoin': 'CBX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '25.09', 'maxOrderQty': '2981514.6094216', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SANDUSDT', 'lowercaseId': None, 'symbol': 'SAND/USDT', 'base': 'SAND', 'quote': 'USDT', 'settle': None, 'baseId': 'SAND', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.53, 'max': 2135231.316726}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'SANDUSDT', 'baseCoin': 'SAND', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '0.53', 'maxOrderQty': '2135231.316726', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AVAXUSDT', 'lowercaseId': None, 'symbol': 'AVAX/USDT', 'base': 'AVAX', 'quote': 'USDT', 'settle': None, 'baseId': 'AVAX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.034, 'max': 173160.1731602}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'AVAXUSDT', 'baseCoin': 'AVAX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.034', 'maxOrderQty': '173160.1731602', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WOOUSDT', 'lowercaseId': None, 'symbol': 'WOO/USDT', 'base': 'WOO', 'quote': 'USDT', 'settle': None, 'baseId': 'WOO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 8.0, 'max': 431595.19}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 54042.0}}, 'created': None, 'info': {'symbol': 'WOOUSDT', 'baseCoin': 'WOO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '8', 'maxOrderQty': '431595.19', 'minOrderAmt': '10', 'maxOrderAmt': '54042'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FTTUSDT', 'lowercaseId': None, 'symbol': 'FTT/USDT', 'base': 'FTT', 'quote': 'USDT', 'settle': None, 'baseId': 'FTT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.172, 'max': 260213.3749675}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FTTUSDT', 'baseCoin': 'FTT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.172', 'maxOrderQty': '260213.3749675', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GODSUSDT', 'lowercaseId': None, 'symbol': 'GODS/USDT', 'base': 'GODS', 'quote': 'USDT', 'settle': None, 'baseId': 'GODS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.85, 'max': 2169197.3969631}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GODSUSDT', 'baseCoin': 'GODS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '3.85', 'maxOrderQty': '2169197.3969631', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IMXUSDT', 'lowercaseId': None, 'symbol': 'IMX/USDT', 'base': 'IMX', 'quote': 'USDT', 'settle': None, 'baseId': 'IMX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.0, 'max': 290845.6336799}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'IMXUSDT', 'baseCoin': 'IMX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '2', 'maxOrderQty': '290845.6336799', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ENSUSDT', 'lowercaseId': None, 'symbol': 'ENS/USDT', 'base': 'ENS', 'quote': 'USDT', 'settle': None, 'baseId': 'ENS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.25, 'max': 23041.47465}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ENSUSDT', 'baseCoin': 'ENS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.25', 'maxOrderQty': '23041.47465', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMUSDT', 'lowercaseId': None, 'symbol': 'GM/USDT', 'base': 'GM', 'quote': 'USDT', 'settle': None, 'baseId': 'GM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 236955.6, 'max': 87404947120.00699}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GMUSDT', 'baseCoin': 'GM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000000001', 'minOrderQty': '236955.6', 'maxOrderQty': '87404947120.00699239577', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CWARUSDT', 'lowercaseId': None, 'symbol': 'CWAR/USDT', 'base': 'CWAR', 'quote': 'USDT', 'settle': None, 'baseId': 'CWAR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 69.78, 'max': 28208744.7108604}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CWARUSDT', 'baseCoin': 'CWAR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '69.78', 'maxOrderQty': '28208744.7108604', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CAKEUSDT', 'lowercaseId': None, 'symbol': 'CAKE/USDT', 'base': 'CAKE', 'quote': 'USDT', 'settle': None, 'baseId': 'CAKE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.526, 'max': 185580.4027095}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CAKEUSDT', 'baseCoin': 'CAKE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.526', 'maxOrderQty': '185580.4027095', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STETHUSDT', 'lowercaseId': None, 'symbol': 'STETH/USDT', 'base': 'STETH', 'quote': 'USDT', 'settle': None, 'baseId': 'STETH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00214, 'max': 1079.447323}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'STETHUSDT', 'baseCoin': 'STETH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00214', 'maxOrderQty': '1079.447323', 'minOrderAmt': '10', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GALFTUSDT', 'lowercaseId': None, 'symbol': 'GALFT/USDT', 'base': 'GALFT', 'quote': 'USDT', 'settle': None, 'baseId': 'GALFT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.39, 'max': 102153.9153042}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GALFTUSDT', 'baseCoin': 'GALFT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1.39', 'maxOrderQty': '102153.9153042', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LFWUSDT', 'lowercaseId': None, 'symbol': 'LFW/USDT', 'base': 'LFW', 'quote': 'USDT', 'settle': None, 'baseId': 'LFW', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 127.88, 'max': 25876568.7669815}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LFWUSDT', 'baseCoin': 'LFW', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '127.88', 'maxOrderQty': '25876568.7669815', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SLPUSDT', 'lowercaseId': None, 'symbol': 'SLP/USDT', 'base': 'SLP', 'quote': 'USDT', 'settle': None, 'baseId': 'SLP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 397.3, 'max': 110558319.5135434}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SLPUSDT', 'baseCoin': 'SLP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000001', 'minOrderQty': '397.3', 'maxOrderQty': '110558319.5135434', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'C98USDT', 'lowercaseId': None, 'symbol': 'C98/USDT', 'base': 'C98', 'quote': 'USDT', 'settle': None, 'baseId': 'C98', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.22, 'max': 1620745.54295}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'C98USDT', 'baseCoin': 'C98', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.22', 'maxOrderQty': '1620745.54295', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PSPUSDT', 'lowercaseId': None, 'symbol': 'PSP/USDT', 'base': 'PSP', 'quote': 'USDT', 'settle': None, 'baseId': 'PSP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 35.71, 'max': 10303436.19597136}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PSPUSDT', 'baseCoin': 'PSP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '35.71', 'maxOrderQty': '10303436.19597136', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GENEUSDT', 'lowercaseId': None, 'symbol': 'GENE/USDT', 'base': 'GENE', 'quote': 'USDT', 'settle': None, 'baseId': 'GENE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.78, 'max': 381679.389313}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'GENEUSDT', 'baseCoin': 'GENE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.78', 'maxOrderQty': '381679.389313', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AVAUSDT', 'lowercaseId': None, 'symbol': 'AVA/USDT', 'base': 'AVA', 'quote': 'USDT', 'settle': None, 'baseId': 'AVA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.38, 'max': 493461.633358}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AVAUSDT', 'baseCoin': 'AVA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.38', 'maxOrderQty': '493461.633358', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ONEUSDT', 'lowercaseId': None, 'symbol': 'ONE/USDT', 'base': 'ONE', 'quote': 'USDT', 'settle': None, 'baseId': 'ONE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 71.53, 'max': 22099447.5138122}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ONEUSDT', 'baseCoin': 'ONE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '71.53', 'maxOrderQty': '22099447.5138122', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PTUUSDT', 'lowercaseId': None, 'symbol': 'PTU/USDT', 'base': 'PTU', 'quote': 'USDT', 'settle': None, 'baseId': 'PTU', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.876, 'max': 196078.4313725}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PTUUSDT', 'baseCoin': 'PTU', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '1.876', 'maxOrderQty': '196078.4313725', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SHILLUSDT', 'lowercaseId': None, 'symbol': 'SHILL/USDT', 'base': 'SHILL', 'quote': 'USDT', 'settle': None, 'baseId': 'SHILL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 57.97, 'max': 27285129.6043656}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SHILLUSDT', 'baseCoin': 'SHILL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '57.97', 'maxOrderQty': '27285129.6043656', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XYMUSDT', 'lowercaseId': None, 'symbol': 'XYM/USDT', 'base': 'XYM', 'quote': 'USDT', 'settle': None, 'baseId': 'XYM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 31.78, 'max': 9029345.3724605}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XYMUSDT', 'baseCoin': 'XYM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '31.78', 'maxOrderQty': '9029345.3724605', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BOBAUSDT', 'lowercaseId': None, 'symbol': 'BOBA/USDT', 'base': 'BOBA', 'quote': 'USDT', 'settle': None, 'baseId': 'BOBA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5.36, 'max': 1323626.73726}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BOBAUSDT', 'baseCoin': 'BOBA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '5.36', 'maxOrderQty': '1323626.73726', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JASMYUSDT', 'lowercaseId': None, 'symbol': 'JASMY/USDT', 'base': 'JASMY', 'quote': 'USDT', 'settle': None, 'baseId': 'JASMY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 259.74, 'max': 57836899.9421631}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'JASMYUSDT', 'baseCoin': 'JASMY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '259.74', 'maxOrderQty': '57836899.9421631', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GALAUSDT', 'lowercaseId': None, 'symbol': 'GALA/USDT', 'base': 'GALA', 'quote': 'USDT', 'settle': None, 'baseId': 'GALA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.62, 'max': 12217470.9835064}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GALAUSDT', 'baseCoin': 'GALA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '2.62', 'maxOrderQty': '12217470.9835064', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RNDRUSDT', 'lowercaseId': None, 'symbol': 'RNDR/USDT', 'base': 'RNDR', 'quote': 'USDT', 'settle': None, 'baseId': 'RNDR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.02, 'max': 155255.395125}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RNDRUSDT', 'baseCoin': 'RNDR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.02', 'maxOrderQty': '155255.395125', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRVLUSDT', 'lowercaseId': None, 'symbol': 'TRVL/USDT', 'base': 'TRVL', 'quote': 'USDT', 'settle': None, 'baseId': 'TRVL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 29.07, 'max': 2189717.08855216}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TRVLUSDT', 'baseCoin': 'TRVL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '29.07', 'maxOrderQty': '2189717.08855216', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WEMIXUSDT', 'lowercaseId': None, 'symbol': 'WEMIX/USDT', 'base': 'WEMIX', 'quote': 'USDT', 'settle': None, 'baseId': 'WEMIX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.703, 'max': 361663.6528029}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'WEMIXUSDT', 'baseCoin': 'WEMIX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.703', 'maxOrderQty': '361663.6528029', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XEMUSDT', 'lowercaseId': None, 'symbol': 'XEM/USDT', 'base': 'XEM', 'quote': 'USDT', 'settle': None, 'baseId': 'XEM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 32.16, 'max': 7423904.9740163}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XEMUSDT', 'baseCoin': 'XEM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '32.16', 'maxOrderQty': '7423904.9740163', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BICOUSDT', 'lowercaseId': None, 'symbol': 'BICO/USDT', 'base': 'BICO', 'quote': 'USDT', 'settle': None, 'baseId': 'BICO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.17, 'max': 800000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BICOUSDT', 'baseCoin': 'BICO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.17', 'maxOrderQty': '800000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CELUSDT', 'lowercaseId': None, 'symbol': 'CEL/USDT', 'base': 'CEL', 'quote': 'USDT', 'settle': None, 'baseId': 'CEL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.26, 'max': 1457725.947522}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CELUSDT', 'baseCoin': 'CEL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.26', 'maxOrderQty': '1457725.947522', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'UMAUSDT', 'lowercaseId': None, 'symbol': 'UMA/USDT', 'base': 'UMA', 'quote': 'USDT', 'settle': None, 'baseId': 'UMA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.602, 'max': 146627.5659824}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'UMAUSDT', 'baseCoin': 'UMA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.602', 'maxOrderQty': '146627.5659824', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HOTUSDT', 'lowercaseId': None, 'symbol': 'HOT/USDT', 'base': 'HOT', 'quote': 'USDT', 'settle': None, 'baseId': 'HOT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 648.1, 'max': 155763239.8753894}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HOTUSDT', 'baseCoin': 'HOT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000001', 'minOrderQty': '648.1', 'maxOrderQty': '155763239.8753894', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NEXOUSDT', 'lowercaseId': None, 'symbol': 'NEXO/USDT', 'base': 'NEXO', 'quote': 'USDT', 'settle': None, 'baseId': 'NEXO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.4, 'max': 306044.376435}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'NEXOUSDT', 'baseCoin': 'NEXO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.4', 'maxOrderQty': '306044.376435', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BNTUSDT', 'lowercaseId': None, 'symbol': 'BNT/USDT', 'base': 'BNT', 'quote': 'USDT', 'settle': None, 'baseId': 'BNT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.78, 'max': 534902.380316}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BNTUSDT', 'baseCoin': 'BNT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.78', 'maxOrderQty': '534902.380316', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SNXUSDT', 'lowercaseId': None, 'symbol': 'SNX/USDT', 'base': 'SNX', 'quote': 'USDT', 'settle': None, 'baseId': 'SNX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.56, 'max': 113584.734212}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SNXUSDT', 'baseCoin': 'SNX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.56', 'maxOrderQty': '113584.734212', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RENUSDT', 'lowercaseId': None, 'symbol': 'REN/USDT', 'base': 'REN', 'quote': 'USDT', 'settle': None, 'baseId': 'REN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 12.71, 'max': 4491354.1432742}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RENUSDT', 'baseCoin': 'REN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '12.71', 'maxOrderQty': '4491354.1432742', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1INCHUSDT', 'lowercaseId': None, 'symbol': '1INCH/USDT', 'base': '1INCH', 'quote': 'USDT', 'settle': None, 'baseId': '1INCH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.94, 'max': 863930.885529}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': '1INCHUSDT', 'baseCoin': '1INCH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.94', 'maxOrderQty': '863930.885529', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TELUSDT', 'lowercaseId': None, 'symbol': 'TEL/USDT', 'base': 'TEL', 'quote': 'USDT', 'settle': None, 'baseId': 'TEL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 478.5, 'max': 189753320.683112}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'TELUSDT', 'baseCoin': 'TEL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000001', 'minOrderQty': '478.5', 'maxOrderQty': '189753320.683112', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SISUSDT', 'lowercaseId': None, 'symbol': 'SIS/USDT', 'base': 'SIS', 'quote': 'USDT', 'settle': None, 'baseId': 'SIS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 13.99, 'max': 404858.299595}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SISUSDT', 'baseCoin': 'SIS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '13.99', 'maxOrderQty': '404858.299595', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LRCUSDT', 'lowercaseId': None, 'symbol': 'LRC/USDT', 'base': 'LRC', 'quote': 'USDT', 'settle': None, 'baseId': 'LRC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.1, 'max': 851063.829787}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LRCUSDT', 'baseCoin': 'LRC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.1', 'maxOrderQty': '851063.829787', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LDOUSDT', 'lowercaseId': None, 'symbol': 'LDO/USDT', 'base': 'LDO', 'quote': 'USDT', 'settle': None, 'baseId': 'LDO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.26, 'max': 351802.990325}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'LDOUSDT', 'baseCoin': 'LDO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.26', 'maxOrderQty': '351802.990325', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'REALUSDT', 'lowercaseId': None, 'symbol': 'REAL/USDT', 'base': 'REAL', 'quote': 'USDT', 'settle': None, 'baseId': 'REAL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 9.34, 'max': 5617977.5280899}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'REALUSDT', 'baseCoin': 'REAL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '9.34', 'maxOrderQty': '5617977.5280899', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KRLUSDT', 'lowercaseId': None, 'symbol': 'KRL/USDT', 'base': 'KRL', 'quote': 'USDT', 'settle': None, 'baseId': 'KRL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.41, 'max': 1142857.142857}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KRLUSDT', 'baseCoin': 'KRL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.41', 'maxOrderQty': '1142857.142857', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DEVTUSDT', 'lowercaseId': None, 'symbol': 'DEVT/USDT', 'base': 'DEVT', 'quote': 'USDT', 'settle': None, 'baseId': 'DEVT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 500.0, 'max': 161290322.58064517}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DEVTUSDT', 'baseCoin': 'DEVT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '500', 'maxOrderQty': '161290322.580645161', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSDC', 'lowercaseId': None, 'symbol': 'ETH/USDC', 'base': 'ETH', 'quote': 'USDC', 'settle': None, 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00224, 'max': 1077.9927774}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'ETHUSDC', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00224', 'maxOrderQty': '1077.9927774', 'minOrderAmt': '10', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCUSDC', 'lowercaseId': None, 'symbol': 'BTC/USDC', 'base': 'BTC', 'quote': 'USDC', 'settle': None, 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-06, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.000198, 'max': 71.71029043}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'BTCUSDC', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.000001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.000198', 'maxOrderQty': '71.71029043', 'minOrderAmt': '10', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1SOLUSDT', 'lowercaseId': None, 'symbol': '1SOL/USDT', 'base': '1SOL', 'quote': 'USDT', 'settle': None, 'baseId': '1SOL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 156.25, 'max': 173913043.47826087}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': '1SOLUSDT', 'baseCoin': '1SOL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '156.25', 'maxOrderQty': '173913043.47826087', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PLTUSDT', 'lowercaseId': None, 'symbol': 'PLT/USDT', 'base': 'PLT', 'quote': 'USDT', 'settle': None, 'baseId': 'PLT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 14.24, 'max': 3882741.215298}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PLTUSDT', 'baseCoin': 'PLT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '14.24', 'maxOrderQty': '3882741.215298', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IZIUSDT', 'lowercaseId': None, 'symbol': 'IZI/USDT', 'base': 'IZI', 'quote': 'USDT', 'settle': None, 'baseId': 'IZI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 50.3, 'max': 7500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 60000.0}}, 'created': None, 'info': {'symbol': 'IZIUSDT', 'baseCoin': 'IZI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '50.3', 'maxOrderQty': '7500000', 'minOrderAmt': '1', 'maxOrderAmt': '60000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QTUMUSDT', 'lowercaseId': None, 'symbol': 'QTUM/USDT', 'base': 'QTUM', 'quote': 'USDT', 'settle': None, 'baseId': 'QTUM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.498, 'max': 96946.1948619}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'QTUMUSDT', 'baseCoin': 'QTUM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.498', 'maxOrderQty': '96946.1948619', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DCRUSDT', 'lowercaseId': None, 'symbol': 'DCR/USDT', 'base': 'DCR', 'quote': 'USDT', 'settle': None, 'baseId': 'DCR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.051, 'max': 14720.9280073}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DCRUSDT', 'baseCoin': 'DCR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.051', 'maxOrderQty': '14720.9280073', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZENUSDT', 'lowercaseId': None, 'symbol': 'ZEN/USDT', 'base': 'ZEN', 'quote': 'USDT', 'settle': None, 'baseId': 'ZEN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.092, 'max': 28934.3479645}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ZENUSDT', 'baseCoin': 'ZEN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.092', 'maxOrderQty': '28934.3479645', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'THETAUSDT', 'lowercaseId': None, 'symbol': 'THETA/USDT', 'base': 'THETA', 'quote': 'USDT', 'settle': None, 'baseId': 'THETA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.13, 'max': 283245.99915}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'THETAUSDT', 'baseCoin': 'THETA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.13', 'maxOrderQty': '283245.99915', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MXUSDT', 'lowercaseId': None, 'symbol': 'MX/USDT', 'base': 'MX', 'quote': 'USDT', 'settle': None, 'baseId': 'MX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.1, 'max': 225250.591283}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MXUSDT', 'baseCoin': 'MX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.1', 'maxOrderQty': '225250.591283', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DGBUSDT', 'lowercaseId': None, 'symbol': 'DGB/USDT', 'base': 'DGB', 'quote': 'USDT', 'settle': None, 'baseId': 'DGB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 147.43, 'max': 32717160.15049894}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DGBUSDT', 'baseCoin': 'DGB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '147.43', 'maxOrderQty': '32717160.15049894', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RVNUSDT', 'lowercaseId': None, 'symbol': 'RVN/USDT', 'base': 'RVN', 'quote': 'USDT', 'settle': None, 'baseId': 'RVN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.8, 'max': 11764705.882353}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RVNUSDT', 'baseCoin': 'RVN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '10.8', 'maxOrderQty': '11764705.882353', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EGLDUSDT', 'lowercaseId': None, 'symbol': 'EGLD/USDT', 'base': 'EGLD', 'quote': 'USDT', 'settle': None, 'baseId': 'EGLD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.023, 'max': 22066.93637}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'EGLDUSDT', 'baseCoin': 'EGLD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00001', 'minOrderQty': '0.023', 'maxOrderQty': '22066.93637', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RUNEUSDT', 'lowercaseId': None, 'symbol': 'RUNE/USDT', 'base': 'RUNE', 'quote': 'USDT', 'settle': None, 'baseId': 'RUNE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.84, 'max': 188146.754468}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RUNEUSDT', 'baseCoin': 'RUNE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.84', 'maxOrderQty': '188146.754468', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XLMBTC', 'lowercaseId': None, 'symbol': 'XLM/BTC', 'base': 'XLM', 'quote': 'BTC', 'settle': None, 'baseId': 'XLM', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 19.5, 'max': 3949759.0646970533}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'XLMBTC', 'baseCoin': 'XLM', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000000001', 'minOrderQty': '19.5', 'maxOrderQty': '3949759.06469705348', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XLMUSDC', 'lowercaseId': None, 'symbol': 'XLM/USDC', 'base': 'XLM', 'quote': 'USDC', 'settle': None, 'baseId': 'XLM', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 37.1, 'max': 5664652.567976}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'XLMUSDC', 'baseCoin': 'XLM', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '37.1', 'maxOrderQty': '5664652.567976', 'minOrderAmt': '10', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLUSDC', 'lowercaseId': None, 'symbol': 'SOL/USDC', 'base': 'SOL', 'quote': 'USDC', 'settle': None, 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.071, 'max': 148367.95252}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'SOLUSDC', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00001', 'minOrderQty': '0.071', 'maxOrderQty': '148367.95252', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPUSDC', 'lowercaseId': None, 'symbol': 'XRP/USDC', 'base': 'XRP', 'quote': 'USDC', 'settle': None, 'baseId': 'XRP', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.66, 'max': 3916193.459957}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'XRPUSDC', 'baseCoin': 'XRP', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.66', 'maxOrderQty': '3916193.459957', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALGOBTC', 'lowercaseId': None, 'symbol': 'ALGO/BTC', 'base': 'ALGO', 'quote': 'BTC', 'settle': None, 'baseId': 'ALGO', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.4, 'max': 2906976.74418605}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'ALGOBTC', 'baseCoin': 'ALGO', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '3.4', 'maxOrderQty': '2906976.74418605', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLBTC', 'lowercaseId': None, 'symbol': 'SOL/BTC', 'base': 'SOL', 'quote': 'BTC', 'settle': None, 'baseId': 'SOL', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.12, 'max': 13687.380235423}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'SOLBTC', 'baseCoin': 'SOL', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '0.12', 'maxOrderQty': '13687.380235423', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RAINUSDT', 'lowercaseId': None, 'symbol': 'RAIN/USDT', 'base': 'RAIN', 'quote': 'USDT', 'settle': None, 'baseId': 'RAIN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 100.0, 'max': 246002460.0246002}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RAINUSDT', 'baseCoin': 'RAIN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000001', 'minOrderQty': '100', 'maxOrderQty': '246002460.0246002', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XECUSDT', 'lowercaseId': None, 'symbol': 'XEC/USDT', 'base': 'XEC', 'quote': 'USDT', 'settle': None, 'baseId': 'XEC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 28248.6, 'max': 9587727708.533077}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XECUSDT', 'baseCoin': 'XEC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '28248.6', 'maxOrderQty': '9587727708.53307766', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ICXUSDT', 'lowercaseId': None, 'symbol': 'ICX/USDT', 'base': 'ICX', 'quote': 'USDT', 'settle': None, 'baseId': 'ICX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 6.5, 'max': 1177995.0524208}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ICXUSDT', 'baseCoin': 'ICX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '6.5', 'maxOrderQty': '1177995.0524208', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XDCUSDT', 'lowercaseId': None, 'symbol': 'XDC/USDT', 'base': 'XDC', 'quote': 'USDT', 'settle': None, 'baseId': 'XDC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 39.6, 'max': 4897159.647405}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XDCUSDT', 'baseCoin': 'XDC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '39.6', 'maxOrderQty': '4897159.647405', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HNTUSDT', 'lowercaseId': None, 'symbol': 'HNT/USDT', 'base': 'HNT', 'quote': 'USDT', 'settle': None, 'baseId': 'HNT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.373, 'max': 148754.1837114}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HNTUSDT', 'baseCoin': 'HNT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.373', 'maxOrderQty': '148754.1837114', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTGUSDT', 'lowercaseId': None, 'symbol': 'BTG/USDT', 'base': 'BTG', 'quote': 'USDT', 'settle': None, 'baseId': 'BTG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.071, 'max': 19607.8431373}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BTGUSDT', 'baseCoin': 'BTG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.071', 'maxOrderQty': '19607.8431373', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZILUSDT', 'lowercaseId': None, 'symbol': 'ZIL/USDT', 'base': 'ZIL', 'quote': 'USDT', 'settle': None, 'baseId': 'ZIL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 47.8, 'max': 10432968.179447}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ZILUSDT', 'baseCoin': 'ZIL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '47.8', 'maxOrderQty': '10432968.179447', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HBARUSDT', 'lowercaseId': None, 'symbol': 'HBAR/USDT', 'base': 'HBAR', 'quote': 'USDT', 'settle': None, 'baseId': 'HBAR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 21.17, 'max': 13904982.6187717}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'HBARUSDT', 'baseCoin': 'HBAR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '21.17', 'maxOrderQty': '13904982.6187717', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLOWUSDT', 'lowercaseId': None, 'symbol': 'FLOW/USDT', 'base': 'FLOW', 'quote': 'USDT', 'settle': None, 'baseId': 'FLOW', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.14, 'max': 491038.546526}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FLOWUSDT', 'baseCoin': 'FLOW', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.14', 'maxOrderQty': '491038.546526', 'minOrderAmt': '10', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOSUSDT', 'lowercaseId': None, 'symbol': 'SOS/USDT', 'base': 'SOS', 'quote': 'USDT', 'settle': None, 'baseId': 'SOS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-11, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5780347.0, 'max': 13937282229965.156}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SOSUSDT', 'baseCoin': 'SOS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000000001', 'minOrderQty': '5780347', 'maxOrderQty': '13937282229965.156794425087', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KASTAUSDT', 'lowercaseId': None, 'symbol': 'KASTA/USDT', 'base': 'KASTA', 'quote': 'USDT', 'settle': None, 'baseId': 'KASTA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 40.0, 'max': 3636363.636364}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'KASTAUSDT', 'baseCoin': 'KASTA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000001', 'minOrderQty': '40', 'maxOrderQty': '3636363.636364', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STXUSDT', 'lowercaseId': None, 'symbol': 'STX/USDT', 'base': 'STX', 'quote': 'USDT', 'settle': None, 'baseId': 'STX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.51, 'max': 1135610.8640106}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'STXUSDT', 'baseCoin': 'STX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '4.51', 'maxOrderQty': '1135610.8640106', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SIDUSUSDT', 'lowercaseId': None, 'symbol': 'SIDUS/USDT', 'base': 'SIDUS', 'quote': 'USDT', 'settle': None, 'baseId': 'SIDUS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 741.29, 'max': 244349419.6701283}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SIDUSUSDT', 'baseCoin': 'SIDUS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '741.29', 'maxOrderQty': '244349419.670128283', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VPADUSDT', 'lowercaseId': None, 'symbol': 'VPAD/USDT', 'base': 'VPAD', 'quote': 'USDT', 'settle': None, 'baseId': 'VPAD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 26.6, 'max': 9661835.7487923}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'VPADUSDT', 'baseCoin': 'VPAD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '26.6', 'maxOrderQty': '9661835.7487923', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GGMUSDT', 'lowercaseId': None, 'symbol': 'GGM/USDT', 'base': 'GGM', 'quote': 'USDT', 'settle': None, 'baseId': 'GGM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 142.65, 'max': 27777777.77777778}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'GGMUSDT', 'baseCoin': 'GGM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '142.65', 'maxOrderQty': '27777777.77777778', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LOOKSUSDT', 'lowercaseId': None, 'symbol': 'LOOKS/USDT', 'base': 'LOOKS', 'quote': 'USDT', 'settle': None, 'baseId': 'LOOKS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 7.35, 'max': 4739336.492891}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LOOKSUSDT', 'baseCoin': 'LOOKS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '7.35', 'maxOrderQty': '4739336.492891', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MBSUSDT', 'lowercaseId': None, 'symbol': 'MBS/USDT', 'base': 'MBS', 'quote': 'USDT', 'settle': None, 'baseId': 'MBS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 11.44, 'max': 13650945.32796396}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MBSUSDT', 'baseCoin': 'MBS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '11.44', 'maxOrderQty': '13650945.32796396', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DAIUSDT', 'lowercaseId': None, 'symbol': 'DAI/USDT', 'base': 'DAI', 'quote': 'USDT', 'settle': None, 'baseId': 'DAI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2002202.422665}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'DAIUSDT', 'baseCoin': 'DAI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '2002202.422665', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.01', 'marketParameter': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ACAUSDT', 'lowercaseId': None, 'symbol': 'ACA/USDT', 'base': 'ACA', 'quote': 'USDT', 'settle': None, 'baseId': 'ACA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 8.9, 'max': 4434589.800443}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ACAUSDT', 'baseCoin': 'ACA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '8.9', 'maxOrderQty': '4434589.800443', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MVUSDT', 'lowercaseId': None, 'symbol': 'MV/USDT', 'base': 'MV', 'quote': 'USDT', 'settle': None, 'baseId': 'MV', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5.53, 'max': 1229105.2114061}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MVUSDT', 'baseCoin': 'MV', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '5.53', 'maxOrderQty': '1229105.2114061', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MIXUSDT', 'lowercaseId': None, 'symbol': 'MIX/USDT', 'base': 'MIX', 'quote': 'USDT', 'settle': None, 'baseId': 'MIX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 393.55, 'max': 246609124.53760788}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MIXUSDT', 'baseCoin': 'MIX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '393.55', 'maxOrderQty': '246609124.53760789', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTCUSDC', 'lowercaseId': None, 'symbol': 'LTC/USDC', 'base': 'LTC', 'quote': 'USDC', 'settle': None, 'baseId': 'LTC', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0176, 'max': 33333.3333333}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'LTCUSDC', 'baseCoin': 'LTC', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.0176', 'maxOrderQty': '33333.3333333', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANABTC', 'lowercaseId': None, 'symbol': 'MANA/BTC', 'base': 'MANA', 'quote': 'BTC', 'settle': None, 'baseId': 'MANA', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.3, 'max': 1025641.025641026}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'MANABTC', 'baseCoin': 'MANA', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '1.3', 'maxOrderQty': '1025641.025641026', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATICBTC', 'lowercaseId': None, 'symbol': 'MATIC/BTC', 'base': 'MATIC', 'quote': 'BTC', 'settle': None, 'baseId': 'MATIC', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.2, 'max': 570776.255707763}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'MATICBTC', 'baseCoin': 'MATIC', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '2.2', 'maxOrderQty': '570776.255707763', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTCBTC', 'lowercaseId': None, 'symbol': 'LTC/BTC', 'base': 'LTC', 'quote': 'BTC', 'settle': None, 'baseId': 'LTC', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.03, 'max': 7087.17221828}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'LTCBTC', 'baseCoin': 'LTC', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '0.03', 'maxOrderQty': '7087.17221828', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOTBTC', 'lowercaseId': None, 'symbol': 'DOT/BTC', 'base': 'DOT', 'quote': 'BTC', 'settle': None, 'baseId': 'DOT', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.33, 'max': 67773.6360555744}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'DOTBTC', 'baseCoin': 'DOT', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000000001', 'minOrderQty': '0.33', 'maxOrderQty': '67773.6360555744', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SANDBTC', 'lowercaseId': None, 'symbol': 'SAND/BTC', 'base': 'SAND', 'quote': 'BTC', 'settle': None, 'baseId': 'SAND', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 988142.292490119}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'SANDBTC', 'baseCoin': 'SAND', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '1', 'maxOrderQty': '988142.292490119', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANAUSDC', 'lowercaseId': None, 'symbol': 'MANA/USDC', 'base': 'MANA', 'quote': 'USDC', 'settle': None, 'baseId': 'MANA', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.29, 'max': 2223045.572434}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'MANAUSDC', 'baseCoin': 'MANA', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.29', 'maxOrderQty': '2223045.572434', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATICUSDC', 'lowercaseId': None, 'symbol': 'MATIC/USDC', 'base': 'MATIC', 'quote': 'USDC', 'settle': None, 'baseId': 'MATIC', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.09, 'max': 2725166.916474}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'MATICUSDC', 'baseCoin': 'MATIC', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.09', 'maxOrderQty': '2725166.916474', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SANDUSDC', 'lowercaseId': None, 'symbol': 'SAND/USDC', 'base': 'SAND', 'quote': 'USDC', 'settle': None, 'baseId': 'SAND', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.71, 'max': 2127206.9772389}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'SANDUSDC', 'baseCoin': 'SAND', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1.71', 'maxOrderQty': '2127206.9772389', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOTUSDC', 'lowercaseId': None, 'symbol': 'DOT/USDC', 'base': 'DOT', 'quote': 'USDC', 'settle': None, 'baseId': 'DOT', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.172, 'max': 486499.635125}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'DOTUSDC', 'baseCoin': 'DOT', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.000001', 'minOrderQty': '0.172', 'maxOrderQty': '486499.635125', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LUNCUSDC', 'lowercaseId': None, 'symbol': 'LUNC/USDC', 'base': 'LUNC', 'quote': 'USDC', 'settle': None, 'baseId': 'LUNC', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5795.086, 'max': 3678499172.337686}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LUNCUSDC', 'baseCoin': 'LUNC', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00000000001', 'minOrderQty': '5795.086', 'maxOrderQty': '3678499172.33768622', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RSS3USDT', 'lowercaseId': None, 'symbol': 'RSS3/USDT', 'base': 'RSS3', 'quote': 'USDT', 'settle': None, 'baseId': 'RSS3', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 8.12, 'max': 1874062.9685157}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RSS3USDT', 'baseCoin': 'RSS3', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '8.12', 'maxOrderQty': '1874062.9685157', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SYNRUSDT', 'lowercaseId': None, 'symbol': 'SYNR/USDT', 'base': 'SYNR', 'quote': 'USDT', 'settle': None, 'baseId': 'SYNR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2400.0, 'max': 268817204.3010753}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SYNRUSDT', 'baseCoin': 'SYNR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '2400', 'maxOrderQty': '268817204.30107527', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TAPUSDT', 'lowercaseId': None, 'symbol': 'TAP/USDT', 'base': 'TAP', 'quote': 'USDT', 'settle': None, 'baseId': 'TAP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 225.28, 'max': 18775816.74802854}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TAPUSDT', 'baseCoin': 'TAP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '225.28', 'maxOrderQty': '18775816.74802854', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ERTHAUSDT', 'lowercaseId': None, 'symbol': 'ERTHA/USDT', 'base': 'ERTHA', 'quote': 'USDT', 'settle': None, 'baseId': 'ERTHA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 313.48, 'max': 221238938.05309734}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ERTHAUSDT', 'baseCoin': 'ERTHA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '313.48', 'maxOrderQty': '221238938.05309735', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMXUSDT', 'lowercaseId': None, 'symbol': 'GMX/USDT', 'base': 'GMX', 'quote': 'USDT', 'settle': None, 'baseId': 'GMX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.02, 'max': 6034.547786}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GMXUSDT', 'baseCoin': 'GMX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.02', 'maxOrderQty': '6034.547786', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TUSDT', 'lowercaseId': None, 'symbol': 'T/USDT', 'base': 'T', 'quote': 'USDT', 'settle': None, 'baseId': 'T', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 61.65, 'max': 8496176.7204758}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'TUSDT', 'baseCoin': 'T', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '61.65', 'maxOrderQty': '8496176.7204758', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ACHUSDT', 'lowercaseId': None, 'symbol': 'ACH/USDT', 'base': 'ACH', 'quote': 'USDT', 'settle': None, 'baseId': 'ACH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 104.7, 'max': 13509862.1994056}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ACHUSDT', 'baseCoin': 'ACH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000001', 'minOrderQty': '104.7', 'maxOrderQty': '13509862.1994056', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JSTUSDT', 'lowercaseId': None, 'symbol': 'JST/USDT', 'base': 'JST', 'quote': 'USDT', 'settle': None, 'baseId': 'JST', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 48.85, 'max': 7369196.7575534}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'JSTUSDT', 'baseCoin': 'JST', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '48.85', 'maxOrderQty': '7369196.7575534', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUNUSDT', 'lowercaseId': None, 'symbol': 'SUN/USDT', 'base': 'SUN', 'quote': 'USDT', 'settle': None, 'baseId': 'SUN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 200.0, 'max': 32589212.97050676}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SUNUSDT', 'baseCoin': 'SUN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '200', 'maxOrderQty': '32589212.97050676', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTTUSDT', 'lowercaseId': None, 'symbol': 'BTT/USDT', 'base': 'BTT', 'quote': 'USDT', 'settle': None, 'baseId': 'BTT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1483459.0, 'max': 497388709276.29944}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BTTUSDT', 'baseCoin': 'BTT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '1', 'quotePrecision': '0.0000000001', 'minOrderQty': '1483459', 'maxOrderQty': '497388709276.299428003', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRXUSDT', 'lowercaseId': None, 'symbol': 'TRX/USDT', 'base': 'TRX', 'quote': 'USDT', 'settle': None, 'baseId': 'TRX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 14.14, 'max': 30422878.0042592}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'TRXUSDT', 'baseCoin': 'TRX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '14.14', 'maxOrderQty': '30422878.0042592', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NFTUSDT', 'lowercaseId': None, 'symbol': 'NFT/USDT', 'base': 'NFT', 'quote': 'USDT', 'settle': None, 'baseId': 'NFT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1979806.0, 'max': 870322019147.0845}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'NFTUSDT', 'baseCoin': 'NFT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '1', 'quotePrecision': '0.0000000001', 'minOrderQty': '1979806', 'maxOrderQty': '870322019147.0844212359', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'POKTUSDT', 'lowercaseId': None, 'symbol': 'POKT/USDT', 'base': 'POKT', 'quote': 'USDT', 'settle': None, 'baseId': 'POKT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 22.6, 'max': 7069635.9137504}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'POKTUSDT', 'baseCoin': 'POKT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '22.6', 'maxOrderQty': '7069635.9137504', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SCRTUSDT', 'lowercaseId': None, 'symbol': 'SCRT/USDT', 'base': 'SCRT', 'quote': 'USDT', 'settle': None, 'baseId': 'SCRT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.63, 'max': 683293.474547}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SCRTUSDT', 'baseCoin': 'SCRT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.63', 'maxOrderQty': '683293.474547', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PSTAKEUSDT', 'lowercaseId': None, 'symbol': 'PSTAKE/USDT', 'base': 'PSTAKE', 'quote': 'USDT', 'settle': None, 'baseId': 'PSTAKE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 15.42, 'max': 7371913.0114265}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PSTAKEUSDT', 'baseCoin': 'PSTAKE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '15.42', 'maxOrderQty': '7371913.0114265', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SONUSDT', 'lowercaseId': None, 'symbol': 'SON/USDT', 'base': 'SON', 'quote': 'USDT', 'settle': None, 'baseId': 'SON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4016.06, 'max': 196001568.0125441}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SONUSDT', 'baseCoin': 'SON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '4016.06', 'maxOrderQty': '196001568.0125441', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HEROUSDT', 'lowercaseId': None, 'symbol': 'HERO/USDT', 'base': 'HERO', 'quote': 'USDT', 'settle': None, 'baseId': 'HERO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 259.34, 'max': 65509335.08024894}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HEROUSDT', 'baseCoin': 'HERO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '259.34', 'maxOrderQty': '65509335.08024894', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOMEUSDT', 'lowercaseId': None, 'symbol': 'DOME/USDT', 'base': 'DOME', 'quote': 'USDT', 'settle': None, 'baseId': 'DOME', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 450.05, 'max': 362976406.5335753}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DOMEUSDT', 'baseCoin': 'DOME', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '450.05', 'maxOrderQty': '362976406.53357532', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USTCUSDT', 'lowercaseId': None, 'symbol': 'USTC/USDT', 'base': 'USTC', 'quote': 'USDT', 'settle': None, 'baseId': 'USTC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 43.44, 'max': 25667351.1293634}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'USTCUSDT', 'baseCoin': 'USTC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '43.44', 'maxOrderQty': '25667351.1293634', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BNBUSDT', 'lowercaseId': None, 'symbol': 'BNB/USDT', 'base': 'BNB', 'quote': 'USDT', 'settle': None, 'baseId': 'BNB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00262, 'max': 9689.856754848}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'BNBUSDT', 'baseCoin': 'BNB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.000000001', 'minOrderQty': '0.00262', 'maxOrderQty': '9689.856754848', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NEARUSDT', 'lowercaseId': None, 'symbol': 'NEAR/USDT', 'base': 'NEAR', 'quote': 'USDT', 'settle': None, 'baseId': 'NEAR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.06, 'max': 458610.410456}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'NEARUSDT', 'baseCoin': 'NEAR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.06', 'maxOrderQty': '458610.410456', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PAXGUSDT', 'lowercaseId': None, 'symbol': 'PAXG/USDT', 'base': 'PAXG', 'quote': 'USDT', 'settle': None, 'baseId': 'PAXG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.001, 'max': 98.9891623}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PAXGUSDT', 'baseCoin': 'PAXG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.001', 'maxOrderQty': '98.9891623', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SDUSDT', 'lowercaseId': None, 'symbol': 'SD/USDT', 'base': 'SD', 'quote': 'USDT', 'settle': None, 'baseId': 'SD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.51, 'max': 379578.667679}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SDUSDT', 'baseCoin': 'SD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.51', 'maxOrderQty': '379578.667679', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APEUSDT', 'lowercaseId': None, 'symbol': 'APE/USDT', 'base': 'APE', 'quote': 'USDT', 'settle': None, 'baseId': 'APE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.14, 'max': 485829.959514}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'APEUSDT', 'baseCoin': 'APE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.14', 'maxOrderQty': '485829.959514', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC3SUSDT', 'lowercaseId': None, 'symbol': 'BTC3S/USDT', 'base': 'BTC3S', 'quote': 'USDT', 'settle': None, 'baseId': 'BTC3S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0542, 'max': 144092.21902017}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 30000.0}}, 'created': None, 'info': {'symbol': 'BTC3SUSDT', 'baseCoin': 'BTC3S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.0542', 'maxOrderQty': '144092.21902017', 'minOrderAmt': '1', 'maxOrderAmt': '30000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC3LUSDT', 'lowercaseId': None, 'symbol': 'BTC3L/USDT', 'base': 'BTC3L', 'quote': 'USDT', 'settle': None, 'baseId': 'BTC3L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.7996, 'max': 92079.15}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 40000.0}}, 'created': None, 'info': {'symbol': 'BTC3LUSDT', 'baseCoin': 'BTC3L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '2.7996', 'maxOrderQty': '92079.15', 'minOrderAmt': '1', 'maxOrderAmt': '40000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FIDAUSDT', 'lowercaseId': None, 'symbol': 'FIDA/USDT', 'base': 'FIDA', 'quote': 'USDT', 'settle': None, 'baseId': 'FIDA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.1, 'max': 1131221.719457}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FIDAUSDT', 'baseCoin': 'FIDA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.1', 'maxOrderQty': '1131221.719457', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MINAUSDT', 'lowercaseId': None, 'symbol': 'MINA/USDT', 'base': 'MINA', 'quote': 'USDT', 'settle': None, 'baseId': 'MINA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.87, 'max': 411268.764137}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MINAUSDT', 'baseCoin': 'MINA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.87', 'maxOrderQty': '411268.764137', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SCUSDT', 'lowercaseId': None, 'symbol': 'SC/USDT', 'base': 'SC', 'quote': 'USDT', 'settle': None, 'baseId': 'SC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 442.48, 'max': 70497003.8773352}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SCUSDT', 'baseCoin': 'SC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '442.48', 'maxOrderQty': '70497003.87733521', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RACAUSDT', 'lowercaseId': None, 'symbol': 'RACA/USDT', 'base': 'RACA', 'quote': 'USDT', 'settle': None, 'baseId': 'RACA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4820.67, 'max': 2038735983.690112}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RACAUSDT', 'baseCoin': 'RACA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000000001', 'minOrderQty': '4820.67', 'maxOrderQty': '2038735983.69011213', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CAPSUSDT', 'lowercaseId': None, 'symbol': 'CAPS/USDT', 'base': 'CAPS', 'quote': 'USDT', 'settle': None, 'baseId': 'CAPS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 131.23, 'max': 17136492.16005484}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CAPSUSDT', 'baseCoin': 'CAPS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '131.23', 'maxOrderQty': '17136492.16005484', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STGUSDT', 'lowercaseId': None, 'symbol': 'STG/USDT', 'base': 'STG', 'quote': 'USDT', 'settle': None, 'baseId': 'STG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.62, 'max': 363636.363636}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'STGUSDT', 'baseCoin': 'STG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.62', 'maxOrderQty': '363636.363636', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GLMRUSDT', 'lowercaseId': None, 'symbol': 'GLMR/USDT', 'base': 'GLMR', 'quote': 'USDT', 'settle': None, 'baseId': 'GLMR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.81, 'max': 1206272.617612}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GLMRUSDT', 'baseCoin': 'GLMR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.81', 'maxOrderQty': '1206272.617612', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MOVRUSDT', 'lowercaseId': None, 'symbol': 'MOVR/USDT', 'base': 'MOVR', 'quote': 'USDT', 'settle': None, 'baseId': 'MOVR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.12, 'max': 54794.520548}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MOVRUSDT', 'baseCoin': 'MOVR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.12', 'maxOrderQty': '54794.520548', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZAMUSDT', 'lowercaseId': None, 'symbol': 'ZAM/USDT', 'base': 'ZAM', 'quote': 'USDT', 'settle': None, 'baseId': 'ZAM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 329.49, 'max': 122699386.50306748}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ZAMUSDT', 'baseCoin': 'ZAM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '329.49', 'maxOrderQty': '122699386.50306748', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHDAI', 'lowercaseId': None, 'symbol': 'ETH/DAI', 'base': 'ETH', 'quote': 'DAI', 'settle': None, 'baseId': 'ETH', 'quoteId': 'DAI', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00345, 'max': 1077.9753467}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'ETHDAI', 'baseCoin': 'ETH', 'quoteCoin': 'DAI', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00345', 'maxOrderQty': '1077.9753467', 'minOrderAmt': '10', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCDAI', 'lowercaseId': None, 'symbol': 'BTC/DAI', 'base': 'BTC', 'quote': 'DAI', 'settle': None, 'baseId': 'BTC', 'quoteId': 'DAI', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-06, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.000244, 'max': 1.25016096}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BTCDAI', 'baseCoin': 'BTC', 'quoteCoin': 'DAI', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.000001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.000244', 'maxOrderQty': '1.25016096', 'minOrderAmt': '10', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WBTCUSDT', 'lowercaseId': None, 'symbol': 'WBTC/USDT', 'base': 'WBTC', 'quote': 'USDT', 'settle': None, 'baseId': 'WBTC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-06, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0001, 'max': 21.45540601}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'WBTCUSDT', 'baseCoin': 'WBTC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.000001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.0001', 'maxOrderQty': '21.45540601', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XAVAUSDT', 'lowercaseId': None, 'symbol': 'XAVA/USDT', 'base': 'XAVA', 'quote': 'USDT', 'settle': None, 'baseId': 'XAVA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 6.0, 'max': 1230012.300123}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XAVAUSDT', 'baseCoin': 'XAVA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '6', 'maxOrderQty': '1230012.300123', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MELOSUSDT', 'lowercaseId': None, 'symbol': 'MELOS/USDT', 'base': 'MELOS', 'quote': 'USDT', 'settle': None, 'baseId': 'MELOS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 126.9, 'max': 108754758.0206634}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MELOSUSDT', 'baseCoin': 'MELOS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '126.9', 'maxOrderQty': '108754758.0206634', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMTUSDT', 'lowercaseId': None, 'symbol': 'GMT/USDT', 'base': 'GMT', 'quote': 'USDT', 'settle': None, 'baseId': 'GMT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.45, 'max': 1205545.509343}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GMTUSDT', 'baseCoin': 'GMT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.45', 'maxOrderQty': '1205545.509343', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GSTUSDT', 'lowercaseId': None, 'symbol': 'GST/USDT', 'base': 'GST', 'quote': 'USDT', 'settle': None, 'baseId': 'GST', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 42.02, 'max': 22598870.0564972}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GSTUSDT', 'baseCoin': 'GST', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '42.02', 'maxOrderQty': '22598870.0564972', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CELOUSDT', 'lowercaseId': None, 'symbol': 'CELO/USDT', 'base': 'CELO', 'quote': 'USDT', 'settle': None, 'baseId': 'CELO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.41, 'max': 455892.409391}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CELOUSDT', 'baseCoin': 'CELO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.41', 'maxOrderQty': '455892.409391', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SFUNDUSDT', 'lowercaseId': None, 'symbol': 'SFUND/USDT', 'base': 'SFUND', 'quote': 'USDT', 'settle': None, 'baseId': 'SFUND', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.85, 'max': 259740.2597403}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SFUNDUSDT', 'baseCoin': 'SFUND', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '0.85', 'maxOrderQty': '259740.2597403', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ELTUSDT', 'lowercaseId': None, 'symbol': 'ELT/USDT', 'base': 'ELT', 'quote': 'USDT', 'settle': None, 'baseId': 'ELT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 246.91, 'max': 2985074626.8656716}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ELTUSDT', 'baseCoin': 'ELT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '246.91', 'maxOrderQty': '2985074626.865671642', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LGXUSDT', 'lowercaseId': None, 'symbol': 'LGX/USDT', 'base': 'LGX', 'quote': 'USDT', 'settle': None, 'baseId': 'LGX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 205.59, 'max': 102301790.28132991}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LGXUSDT', 'baseCoin': 'LGX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '205.59', 'maxOrderQty': '102301790.28132992', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APEXUSDT', 'lowercaseId': None, 'symbol': 'APEX/USDT', 'base': 'APEX', 'quote': 'USDT', 'settle': None, 'baseId': 'APEX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 316255.534472}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'APEXUSDT', 'baseCoin': 'APEX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '316255.534472', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CTCUSDT', 'lowercaseId': None, 'symbol': 'CTC/USDT', 'base': 'CTC', 'quote': 'USDT', 'settle': None, 'baseId': 'CTC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.73, 'max': 1244075.09237258}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CTCUSDT', 'baseCoin': 'CTC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '2.73', 'maxOrderQty': '1244075.09237258', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.1', 'marketParameter': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COTUSDT', 'lowercaseId': None, 'symbol': 'COT/USDT', 'base': 'COT', 'quote': 'USDT', 'settle': None, 'baseId': 'COT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 27.22, 'max': 12405408.75821858}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'COTUSDT', 'baseCoin': 'COT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '27.22', 'maxOrderQty': '12405408.75821858', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KMONUSDT', 'lowercaseId': None, 'symbol': 'KMON/USDT', 'base': 'KMON', 'quote': 'USDT', 'settle': None, 'baseId': 'KMON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 90.35, 'max': 34837136.38738896}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KMONUSDT', 'baseCoin': 'KMON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '90.35', 'maxOrderQty': '34837136.38738896', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PLYUSDT', 'lowercaseId': None, 'symbol': 'PLY/USDT', 'base': 'PLY', 'quote': 'USDT', 'settle': None, 'baseId': 'PLY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2061.86, 'max': 666666666.6666666}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PLYUSDT', 'baseCoin': 'PLY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '2061.86', 'maxOrderQty': '666666666.666666667', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XWGUSDT', 'lowercaseId': None, 'symbol': 'XWG/USDT', 'base': 'XWG', 'quote': 'USDT', 'settle': None, 'baseId': 'XWG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 821.02, 'max': 184672206.83287165}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XWGUSDT', 'baseCoin': 'XWG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '821.02', 'maxOrderQty': '184672206.832871653', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FITFIUSDT', 'lowercaseId': None, 'symbol': 'FITFI/USDT', 'base': 'FITFI', 'quote': 'USDT', 'settle': None, 'baseId': 'FITFI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 25.91, 'max': 62853551.22564425}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FITFIUSDT', 'baseCoin': 'FITFI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '25.91', 'maxOrderQty': '62853551.22564425', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STRMUSDT', 'lowercaseId': None, 'symbol': 'STRM/USDT', 'base': 'STRM', 'quote': 'USDT', 'settle': None, 'baseId': 'STRM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 56.5, 'max': 83472454.09015025}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'STRMUSDT', 'baseCoin': 'STRM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '56.5', 'maxOrderQty': '83472454.09015025', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GALUSDT', 'lowercaseId': None, 'symbol': 'GAL/USDT', 'base': 'GAL', 'quote': 'USDT', 'settle': None, 'baseId': 'GAL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.33, 'max': 164609.053498}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GALUSDT', 'baseCoin': 'GAL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.33', 'maxOrderQty': '164609.053498', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH3SUSDT', 'lowercaseId': None, 'symbol': 'ETH3S/USDT', 'base': 'ETH3S', 'quote': 'USDT', 'settle': None, 'baseId': 'ETH3S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1641497.045305318}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ETH3SUSDT', 'baseCoin': 'ETH3S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.000000001', 'minOrderQty': '1', 'maxOrderQty': '1641497.045305318', 'minOrderAmt': '10', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH3LUSDT', 'lowercaseId': None, 'symbol': 'ETH3L/USDT', 'base': 'ETH3L', 'quote': 'USDT', 'settle': None, 'baseId': 'ETH3L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.456, 'max': 70412.61794114}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 30000.0}}, 'created': None, 'info': {'symbol': 'ETH3LUSDT', 'baseCoin': 'ETH3L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1.456', 'maxOrderQty': '70412.61794114', 'minOrderAmt': '1', 'maxOrderAmt': '30000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KOKUSDT', 'lowercaseId': None, 'symbol': 'KOK/USDT', 'base': 'KOK', 'quote': 'USDT', 'settle': None, 'baseId': 'KOK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.33, 'max': 31250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KOKUSDT', 'baseCoin': 'KOK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '0.33', 'maxOrderQty': '31250000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FAMEUSDT', 'lowercaseId': None, 'symbol': 'FAME/USDT', 'base': 'FAME', 'quote': 'USDT', 'settle': None, 'baseId': 'FAME', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 336.81, 'max': 371747211.8959108}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FAMEUSDT', 'baseCoin': 'FAME', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '336.81', 'maxOrderQty': '371747211.89591078', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRP3SUSDT', 'lowercaseId': None, 'symbol': 'XRP3S/USDT', 'base': 'XRP3S', 'quote': 'USDT', 'settle': None, 'baseId': 'XRP3S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2462447.672986949}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'XRP3SUSDT', 'baseCoin': 'XRP3S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.0000000001', 'minOrderQty': '1', 'maxOrderQty': '2462447.672986949', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRP3LUSDT', 'lowercaseId': None, 'symbol': 'XRP3L/USDT', 'base': 'XRP3L', 'quote': 'USDT', 'settle': None, 'baseId': 'XRP3L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2385, 'max': 18309.65284898}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'XRP3LUSDT', 'baseCoin': 'XRP3L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.2385', 'maxOrderQty': '18309.65284898', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDDUSDT', 'lowercaseId': None, 'symbol': 'USDD/USDT', 'base': 'USDD', 'quote': 'USDT', 'settle': None, 'baseId': 'USDD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 202470.135655}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'USDDUSDT', 'baseCoin': 'USDD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '202470.135655', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.01', 'marketParameter': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OPUSDT', 'lowercaseId': None, 'symbol': 'OP/USDT', 'base': 'OP', 'quote': 'USDT', 'settle': None, 'baseId': 'OP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 171306.20985}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'OPUSDT', 'baseCoin': 'OP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '171306.20985', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LUNAUSDT', 'lowercaseId': None, 'symbol': 'LUNA/USDT', 'base': 'LUNA', 'quote': 'USDT', 'settle': None, 'baseId': 'LUNA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1e-05, 'max': 554477.405045744}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LUNAUSDT', 'baseCoin': 'LUNA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.000000001', 'minOrderQty': '0.00001', 'maxOrderQty': '554477.405045744', 'minOrderAmt': '0.0001', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DFIUSDT', 'lowercaseId': None, 'symbol': 'DFI/USDT', 'base': 'DFI', 'quote': 'USDT', 'settle': None, 'baseId': 'DFI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.06, 'max': 2014098.690836}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DFIUSDT', 'baseCoin': 'DFI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.06', 'maxOrderQty': '2014098.690836', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MOVEZUSDT', 'lowercaseId': None, 'symbol': 'MOVEZ/USDT', 'base': 'MOVEZ', 'quote': 'USDT', 'settle': None, 'baseId': 'MOVEZ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 495.79, 'max': 433839479.39262474}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MOVEZUSDT', 'baseCoin': 'MOVEZ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '495.79', 'maxOrderQty': '433839479.39262473', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'THNUSDT', 'lowercaseId': None, 'symbol': 'THN/USDT', 'base': 'THN', 'quote': 'USDT', 'settle': None, 'baseId': 'THN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 342.23, 'max': 24691358.02469136}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'THNUSDT', 'baseCoin': 'THN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '342.23', 'maxOrderQty': '24691358.02469136', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOT3SUSDT', 'lowercaseId': None, 'symbol': 'DOT3S/USDT', 'base': 'DOT3S', 'quote': 'USDT', 'settle': None, 'baseId': 'DOT3S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1785, 'max': 628259.0940503865}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'DOT3SUSDT', 'baseCoin': 'DOT3S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.0000000001', 'minOrderQty': '0.1785', 'maxOrderQty': '628259.0940503864', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOT3LUSDT', 'lowercaseId': None, 'symbol': 'DOT3L/USDT', 'base': 'DOT3L', 'quote': 'USDT', 'settle': None, 'baseId': 'DOT3L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 134480.90371167}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'DOT3LUSDT', 'baseCoin': 'DOT3L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '134480.90371167', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VINUUSDT', 'lowercaseId': None, 'symbol': 'VINU/USDT', 'base': 'VINU', 'quote': 'USDT', 'settle': None, 'baseId': 'VINU', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-12, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 71530758.23, 'max': 24125452352231.605}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'VINUUSDT', 'baseCoin': 'VINU', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000000000001', 'minOrderQty': '71530758.23', 'maxOrderQty': '24125452352231.6043425814234', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BELUSDT', 'lowercaseId': None, 'symbol': 'BEL/USDT', 'base': 'BEL', 'quote': 'USDT', 'settle': None, 'baseId': 'BEL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.49, 'max': 322164.948454}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BELUSDT', 'baseCoin': 'BEL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.49', 'maxOrderQty': '322164.948454', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FORTUSDT', 'lowercaseId': None, 'symbol': 'FORT/USDT', 'base': 'FORT', 'quote': 'USDT', 'settle': None, 'baseId': 'FORT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 6.73, 'max': 1702127.659574}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FORTUSDT', 'baseCoin': 'FORT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '6.73', 'maxOrderQty': '1702127.659574', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AVAX2SUSDT', 'lowercaseId': None, 'symbol': 'AVAX2S/USDT', 'base': 'AVAX2S', 'quote': 'USDT', 'settle': None, 'baseId': 'AVAX2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1978630.7874950534}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'AVAX2SUSDT', 'baseCoin': 'AVAX2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.0000000001', 'minOrderQty': '1', 'maxOrderQty': '1978630.7874950534', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AVAX2LUSDT', 'lowercaseId': None, 'symbol': 'AVAX2L/USDT', 'base': 'AVAX2L', 'quote': 'USDT', 'settle': None, 'baseId': 'AVAX2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2154, 'max': 32030.74951954}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'AVAX2LUSDT', 'baseCoin': 'AVAX2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.2154', 'maxOrderQty': '32030.74951954', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADA2SUSDT', 'lowercaseId': None, 'symbol': 'ADA2S/USDT', 'base': 'ADA2S', 'quote': 'USDT', 'settle': None, 'baseId': 'ADA2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1228, 'max': 63653.72374284}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'ADA2SUSDT', 'baseCoin': 'ADA2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.1228', 'maxOrderQty': '63653.72374284', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADA2LUSDT', 'lowercaseId': None, 'symbol': 'ADA2L/USDT', 'base': 'ADA2L', 'quote': 'USDT', 'settle': None, 'baseId': 'ADA2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2687, 'max': 37458.79532514}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'ADA2LUSDT', 'baseCoin': 'ADA2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.2687', 'maxOrderQty': '37458.79532514', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WLKNUSDT', 'lowercaseId': None, 'symbol': 'WLKN/USDT', 'base': 'WLKN', 'quote': 'USDT', 'settle': None, 'baseId': 'WLKN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 27.93, 'max': 13024225.05860901}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'WLKNUSDT', 'baseCoin': 'WLKN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '27.93', 'maxOrderQty': '13024225.05860901', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KONUSDT', 'lowercaseId': None, 'symbol': 'KON/USDT', 'base': 'KON', 'quote': 'USDT', 'settle': None, 'baseId': 'KON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 40.0, 'max': 187617260.7879925}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KONUSDT', 'baseCoin': 'KON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '40', 'maxOrderQty': '187617260.7879925', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTC2SUSDT', 'lowercaseId': None, 'symbol': 'LTC2S/USDT', 'base': 'LTC2S', 'quote': 'USDT', 'settle': None, 'baseId': 'LTC2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2729, 'max': 86340.87376964}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'LTC2SUSDT', 'baseCoin': 'LTC2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.2729', 'maxOrderQty': '86340.87376964', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTC2LUSDT', 'lowercaseId': None, 'symbol': 'LTC2L/USDT', 'base': 'LTC2L', 'quote': 'USDT', 'settle': None, 'baseId': 'LTC2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0891, 'max': 3077.26394308}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'LTC2LUSDT', 'baseCoin': 'LTC2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.0891', 'maxOrderQty': '3077.26394308', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SAND2SUSDT', 'lowercaseId': None, 'symbol': 'SAND2S/USDT', 'base': 'SAND2S', 'quote': 'USDT', 'settle': None, 'baseId': 'SAND2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1787, 'max': 64308.68167203}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'SAND2SUSDT', 'baseCoin': 'SAND2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.1787', 'maxOrderQty': '64308.68167203', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SAND2LUSDT', 'lowercaseId': None, 'symbol': 'SAND2L/USDT', 'base': 'SAND2L', 'quote': 'USDT', 'settle': None, 'baseId': 'SAND2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.4362, 'max': 140567.89429294}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'SAND2LUSDT', 'baseCoin': 'SAND2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.4362', 'maxOrderQty': '140567.89429294', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OBXUSDT', 'lowercaseId': None, 'symbol': 'OBX/USDT', 'base': 'OBX', 'quote': 'USDT', 'settle': None, 'baseId': 'OBX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 348.43, 'max': 520833333.3333333}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'OBXUSDT', 'baseCoin': 'OBX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '348.43', 'maxOrderQty': '520833333.333333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SEORUSDT', 'lowercaseId': None, 'symbol': 'SEOR/USDT', 'base': 'SEOR', 'quote': 'USDT', 'settle': None, 'baseId': 'SEOR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 116.39, 'max': 152555301.29672006}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SEORUSDT', 'baseCoin': 'SEOR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '116.39', 'maxOrderQty': '152555301.29672006', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MNZUSDT', 'lowercaseId': None, 'symbol': 'MNZ/USDT', 'base': 'MNZ', 'quote': 'USDT', 'settle': None, 'baseId': 'MNZ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 591.02, 'max': 1614205004.0355124}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MNZUSDT', 'baseCoin': 'MNZ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '591.02', 'maxOrderQty': '1614205004.03551251', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CULTUSDT', 'lowercaseId': None, 'symbol': 'CULT/USDT', 'base': 'CULT', 'quote': 'USDT', 'settle': None, 'baseId': 'CULT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-09, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 175162.02, 'max': 127795527156.54951}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CULTUSDT', 'baseCoin': 'CULT', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000000001', 'minOrderQty': '175162.02', 'maxOrderQty': '127795527156.54952076677', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOGEUSDC', 'lowercaseId': None, 'symbol': 'DOGE/USDC', 'base': 'DOGE', 'quote': 'USDC', 'settle': None, 'baseId': 'DOGE', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 11.7, 'max': 36536353.671904}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'DOGEUSDC', 'baseCoin': 'DOGE', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000001', 'minOrderQty': '11.7', 'maxOrderQty': '36536353.671904', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EOSUSDC', 'lowercaseId': None, 'symbol': 'EOS/USDC', 'base': 'EOS', 'quote': 'USDC', 'settle': None, 'baseId': 'EOS', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.1, 'max': 1157854.110382}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'EOSUSDC', 'baseCoin': 'EOS', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.1', 'maxOrderQty': '1157854.110382', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CUSDUSDT', 'lowercaseId': None, 'symbol': 'CUSD/USDT', 'base': 'CUSD', 'quote': 'USDT', 'settle': None, 'baseId': 'CUSD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 201065.647934}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CUSDUSDT', 'baseCoin': 'CUSD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '201065.647934', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SLGUSDT', 'lowercaseId': None, 'symbol': 'SLG/USDT', 'base': 'SLG', 'quote': 'USDT', 'settle': None, 'baseId': 'SLG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 65.14, 'max': 3701510.2161682}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SLGUSDT', 'baseCoin': 'SLG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '65.14', 'maxOrderQty': '3701510.2161682', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CMPUSDT', 'lowercaseId': None, 'symbol': 'CMP/USDT', 'base': 'CMP', 'quote': 'USDT', 'settle': None, 'baseId': 'CMP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.37, 'max': 17937219.7309417}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CMPUSDT', 'baseCoin': 'CMP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10.37', 'maxOrderQty': '17937219.7309417', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KUNCIUSDT', 'lowercaseId': None, 'symbol': 'KUNCI/USDT', 'base': 'KUNCI', 'quote': 'USDT', 'settle': None, 'baseId': 'KUNCI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 34.23, 'max': 36948087.93644929}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KUNCIUSDT', 'baseCoin': 'KUNCI', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '34.23', 'maxOrderQty': '36948087.93644929', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GSTSUSDT', 'lowercaseId': None, 'symbol': 'GSTS/USDT', 'base': 'GSTS', 'quote': 'USDT', 'settle': None, 'baseId': 'GSTS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 61.74, 'max': 187617260.7879925}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GSTSUSDT', 'baseCoin': 'GSTS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '61.74', 'maxOrderQty': '187617260.7879925', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XETAUSDT', 'lowercaseId': None, 'symbol': 'XETA/USDT', 'base': 'XETA', 'quote': 'USDT', 'settle': None, 'baseId': 'XETA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 20.66, 'max': 24630541.8719212}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XETAUSDT', 'baseCoin': 'XETA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '20.66', 'maxOrderQty': '24630541.8719212', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AZYUSDT', 'lowercaseId': None, 'symbol': 'AZY/USDT', 'base': 'AZY', 'quote': 'USDT', 'settle': None, 'baseId': 'AZY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 48.4, 'max': 42372881.3559322}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AZYUSDT', 'baseCoin': 'AZY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '48.4', 'maxOrderQty': '42372881.3559322', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MMCUSDT', 'lowercaseId': None, 'symbol': 'MMC/USDT', 'base': 'MMC', 'quote': 'USDT', 'settle': None, 'baseId': 'MMC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.0, 'max': 2451340.88346325}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MMCUSDT', 'baseCoin': 'MMC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '3', 'maxOrderQty': '2451340.88346325', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLOKIUSDT', 'lowercaseId': None, 'symbol': 'FLOKI/USDT', 'base': 'FLOKI', 'quote': 'USDT', 'settle': None, 'baseId': 'FLOKI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-09, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 135758.9, 'max': 8864069494.304836}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FLOKIUSDT', 'baseCoin': 'FLOKI', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000000001', 'minOrderQty': '135758.9', 'maxOrderQty': '8864069494.3048353499', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BABYDOGEUSDT', 'lowercaseId': None, 'symbol': 'BABYDOGE/USDT', 'base': 'BABYDOGE', 'quote': 'USDT', 'settle': None, 'baseId': 'BABYDOGE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-12, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 357270453.7, 'max': 37993920972644.375}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BABYDOGEUSDT', 'baseCoin': 'BABYDOGE', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000000000001', 'minOrderQty': '357270453.7', 'maxOrderQty': '37993920972644.3768996960486', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STATUSDT', 'lowercaseId': None, 'symbol': 'STAT/USDT', 'base': 'STAT', 'quote': 'USDT', 'settle': None, 'baseId': 'STAT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.05, 'max': 3338898.163606}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'STATUSDT', 'baseCoin': 'STAT', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.05', 'maxOrderQty': '3338898.163606', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATIC2SUSDT', 'lowercaseId': None, 'symbol': 'MATIC2S/USDT', 'base': 'MATIC2S', 'quote': 'USDT', 'settle': None, 'baseId': 'MATIC2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.3324, 'max': 67159.16722633}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'MATIC2SUSDT', 'baseCoin': 'MATIC2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.3324', 'maxOrderQty': '67159.16722633', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATIC2LUSDT', 'lowercaseId': None, 'symbol': 'MATIC2L/USDT', 'base': 'MATIC2L', 'quote': 'USDT', 'settle': None, 'baseId': 'MATIC2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1026, 'max': 21206.20917805}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'MATIC2LUSDT', 'baseCoin': 'MATIC2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.1026', 'maxOrderQty': '21206.20917805', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETC2SUSDT', 'lowercaseId': None, 'symbol': 'ETC2S/USDT', 'base': 'ETC2S', 'quote': 'USDT', 'settle': None, 'baseId': 'ETC2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.112, 'max': 48192.77108434}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'ETC2SUSDT', 'baseCoin': 'ETC2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.112', 'maxOrderQty': '48192.77108434', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETC2LUSDT', 'lowercaseId': None, 'symbol': 'ETC2L/USDT', 'base': 'ETC2L', 'quote': 'USDT', 'settle': None, 'baseId': 'ETC2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 47874.37763309}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'ETC2LUSDT', 'baseCoin': 'ETC2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '47874.37763309', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DICEUSDT', 'lowercaseId': None, 'symbol': 'DICE/USDT', 'base': 'DICE', 'quote': 'USDT', 'settle': None, 'baseId': 'DICE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 29.3, 'max': 16891891.8918919}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DICEUSDT', 'baseCoin': 'DICE', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '29.3', 'maxOrderQty': '16891891.8918919', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WAXPUSDT', 'lowercaseId': None, 'symbol': 'WAXP/USDT', 'base': 'WAXP', 'quote': 'USDT', 'settle': None, 'baseId': 'WAXP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 19.48, 'max': 4000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'WAXPUSDT', 'baseCoin': 'WAXP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '19.48', 'maxOrderQty': '4000000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARUSDT', 'lowercaseId': None, 'symbol': 'AR/USDT', 'base': 'AR', 'quote': 'USDT', 'settle': None, 'baseId': 'AR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.07, 'max': 36036.036036}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ARUSDT', 'baseCoin': 'AR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.07', 'maxOrderQty': '36036.036036', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KDAUSDT', 'lowercaseId': None, 'symbol': 'KDA/USDT', 'base': 'KDA', 'quote': 'USDT', 'settle': None, 'baseId': 'KDA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.09, 'max': 468713.381767}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KDAUSDT', 'baseCoin': 'KDA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.09', 'maxOrderQty': '468713.381767', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ROSEUSDT', 'lowercaseId': None, 'symbol': 'ROSE/USDT', 'base': 'ROSE', 'quote': 'USDT', 'settle': None, 'baseId': 'ROSE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 21.48, 'max': 5192107.9958463}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ROSEUSDT', 'baseCoin': 'ROSE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '21.48', 'maxOrderQty': '5192107.9958463', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SLGUSDC', 'lowercaseId': None, 'symbol': 'SLG/USDC', 'base': 'SLG', 'quote': 'USDC', 'settle': None, 'baseId': 'SLG', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 65.14, 'max': 3713055.10173771}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SLGUSDC', 'baseCoin': 'SLG', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '65.14', 'maxOrderQty': '3713055.10173771', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APE2SUSDT', 'lowercaseId': None, 'symbol': 'APE2S/USDT', 'base': 'APE2S', 'quote': 'USDT', 'settle': None, 'baseId': 'APE2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0846, 'max': 23532.73403304}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'APE2SUSDT', 'baseCoin': 'APE2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.0846', 'maxOrderQty': '23532.73403304', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APE2LUSDT', 'lowercaseId': None, 'symbol': 'APE2L/USDT', 'base': 'APE2L', 'quote': 'USDT', 'settle': None, 'baseId': 'APE2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 69223.31441229}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'APE2LUSDT', 'baseCoin': 'APE2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '69223.31441229', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMT2SUSDT', 'lowercaseId': None, 'symbol': 'GMT2S/USDT', 'base': 'GMT2S', 'quote': 'USDT', 'settle': None, 'baseId': 'GMT2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.062, 'max': 64977.25795971}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'GMT2SUSDT', 'baseCoin': 'GMT2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.062', 'maxOrderQty': '64977.25795971', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMT2LUSDT', 'lowercaseId': None, 'symbol': 'GMT2L/USDT', 'base': 'GMT2L', 'quote': 'USDT', 'settle': None, 'baseId': 'GMT2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 482625.48262548}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'GMT2LUSDT', 'baseCoin': 'GMT2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.0000000001', 'minOrderQty': '1', 'maxOrderQty': '482625.48262548', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DEFYUSDT', 'lowercaseId': None, 'symbol': 'DEFY/USDT', 'base': 'DEFY', 'quote': 'USDT', 'settle': None, 'baseId': 'DEFY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 82.1, 'max': 55617352.61401557}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DEFYUSDT', 'baseCoin': 'DEFY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '82.1', 'maxOrderQty': '55617352.61401557', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PSGUSDT', 'lowercaseId': None, 'symbol': 'PSG/USDT', 'base': 'PSG', 'quote': 'USDT', 'settle': None, 'baseId': 'PSG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.11, 'max': 57177.163441}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PSGUSDT', 'baseCoin': 'PSG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.11', 'maxOrderQty': '57177.163441', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BARUSDT', 'lowercaseId': None, 'symbol': 'BAR/USDT', 'base': 'BAR', 'quote': 'USDT', 'settle': None, 'baseId': 'BAR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.25, 'max': 75754.706261}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BARUSDT', 'baseCoin': 'BAR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.25', 'maxOrderQty': '75754.706261', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JUVUSDT', 'lowercaseId': None, 'symbol': 'JUV/USDT', 'base': 'JUV', 'quote': 'USDT', 'settle': None, 'baseId': 'JUV', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.32, 'max': 78131.103992}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'JUVUSDT', 'baseCoin': 'JUV', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.32', 'maxOrderQty': '78131.103992', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ACMUSDT', 'lowercaseId': None, 'symbol': 'ACM/USDT', 'base': 'ACM', 'quote': 'USDT', 'settle': None, 'baseId': 'ACM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.42, 'max': 121936.349226}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ACMUSDT', 'baseCoin': 'ACM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.42', 'maxOrderQty': '121936.349226', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'INTERUSDT', 'lowercaseId': None, 'symbol': 'INTER/USDT', 'base': 'INTER', 'quote': 'USDT', 'settle': None, 'baseId': 'INTER', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.44, 'max': 131130.343562}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'INTERUSDT', 'baseCoin': 'INTER', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.44', 'maxOrderQty': '131130.343562', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AFCUSDT', 'lowercaseId': None, 'symbol': 'AFC/USDT', 'base': 'AFC', 'quote': 'USDT', 'settle': None, 'baseId': 'AFC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.57, 'max': 150364.634238}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AFCUSDT', 'baseCoin': 'AFC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.57', 'maxOrderQty': '150364.634238', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CITYUSDT', 'lowercaseId': None, 'symbol': 'CITY/USDT', 'base': 'CITY', 'quote': 'USDT', 'settle': None, 'baseId': 'CITY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.17, 'max': 63570.77016}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CITYUSDT', 'baseCoin': 'CITY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.17', 'maxOrderQty': '63570.77016', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINK2LUSDT', 'lowercaseId': None, 'symbol': 'LINK2L/USDT', 'base': 'LINK2L', 'quote': 'USDT', 'settle': None, 'baseId': 'LINK2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2217, 'max': 35375.68982595}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'LINK2LUSDT', 'baseCoin': 'LINK2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.2217', 'maxOrderQty': '35375.68982595', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINK2SUSDT', 'lowercaseId': None, 'symbol': 'LINK2S/USDT', 'base': 'LINK2S', 'quote': 'USDT', 'settle': None, 'baseId': 'LINK2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1428, 'max': 149031.29657228}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'LINK2SUSDT', 'baseCoin': 'LINK2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.000000001', 'minOrderQty': '0.1428', 'maxOrderQty': '149031.29657228', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FTM2LUSDT', 'lowercaseId': None, 'symbol': 'FTM2L/USDT', 'base': 'FTM2L', 'quote': 'USDT', 'settle': None, 'baseId': 'FTM2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 29536.86200378}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'FTM2LUSDT', 'baseCoin': 'FTM2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '29536.86200378', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FTM2SUSDT', 'lowercaseId': None, 'symbol': 'FTM2S/USDT', 'base': 'FTM2S', 'quote': 'USDT', 'settle': None, 'baseId': 'FTM2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0503, 'max': 1579030.4752881732}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'FTM2SUSDT', 'baseCoin': 'FTM2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.0000000001', 'minOrderQty': '0.0503', 'maxOrderQty': '1579030.4752881731', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLOUSDT', 'lowercaseId': None, 'symbol': 'SOLO/USDT', 'base': 'SOLO', 'quote': 'USDT', 'settle': None, 'baseId': 'SOLO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.36, 'max': 1958863.858962}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SOLOUSDT', 'baseCoin': 'SOLO', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '4.36', 'maxOrderQty': '1958863.858962', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WBTCBTC', 'lowercaseId': None, 'symbol': 'WBTC/BTC', 'base': 'WBTC', 'quote': 'BTC', 'settle': None, 'baseId': 'WBTC', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0001, 'max': 9.97705278}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 10.0}}, 'created': None, 'info': {'symbol': 'WBTCBTC', 'baseCoin': 'WBTC', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.0001', 'maxOrderQty': '9.97705278', 'minOrderAmt': '0.0001', 'maxOrderAmt': '10'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AVAXUSDC', 'lowercaseId': None, 'symbol': 'AVAX/USDC', 'base': 'AVAX', 'quote': 'USDC', 'settle': None, 'baseId': 'AVAX', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.076, 'max': 173316.2327984}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'AVAXUSDC', 'baseCoin': 'AVAX', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.076', 'maxOrderQty': '173316.2327984', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADAUSDC', 'lowercaseId': None, 'symbol': 'ADA/USDC', 'base': 'ADA', 'quote': 'USDC', 'settle': None, 'baseId': 'ADA', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.98, 'max': 7905138.339921}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'ADAUSDC', 'baseCoin': 'ADA', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.98', 'maxOrderQty': '7905138.339921', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OPUSDC', 'lowercaseId': None, 'symbol': 'OP/USDC', 'base': 'OP', 'quote': 'USDC', 'settle': None, 'baseId': 'OP', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.87, 'max': 170590.242238}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'OPUSDC', 'baseCoin': 'OP', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.87', 'maxOrderQty': '170590.242238', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOGE2SUSDT', 'lowercaseId': None, 'symbol': 'DOGE2S/USDT', 'base': 'DOGE2S', 'quote': 'USDT', 'settle': None, 'baseId': 'DOGE2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 549450.54945055}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'DOGE2SUSDT', 'baseCoin': 'DOGE2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '549450.54945055', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOGE2LUSDT', 'lowercaseId': None, 'symbol': 'DOGE2L/USDT', 'base': 'DOGE2L', 'quote': 'USDT', 'settle': None, 'baseId': 'DOGE2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1072, 'max': 19235.94813988}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'DOGE2LUSDT', 'baseCoin': 'DOGE2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.1072', 'maxOrderQty': '19235.94813988', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ATOM2SUSDT', 'lowercaseId': None, 'symbol': 'ATOM2S/USDT', 'base': 'ATOM2S', 'quote': 'USDT', 'settle': None, 'baseId': 'ATOM2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 15595.27151368}, 'price': {'min': None, 'max': None}, 'cost': {'min': 10.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'ATOM2SUSDT', 'baseCoin': 'ATOM2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '15595.27151368', 'minOrderAmt': '10', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ATOM2LUSDT', 'lowercaseId': None, 'symbol': 'ATOM2L/USDT', 'base': 'ATOM2L', 'quote': 'USDT', 'settle': None, 'baseId': 'ATOM2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.133, 'max': 23366.66978222}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'ATOM2LUSDT', 'baseCoin': 'ATOM2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.133', 'maxOrderQty': '23366.66978222', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APEXUSDC', 'lowercaseId': None, 'symbol': 'APEX/USDC', 'base': 'APEX', 'quote': 'USDC', 'settle': None, 'baseId': 'APEX', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.19, 'max': 357142.857143}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'APEXUSDC', 'baseCoin': 'APEX', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.19', 'maxOrderQty': '357142.857143', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRXUSDC', 'lowercaseId': None, 'symbol': 'TRX/USDC', 'base': 'TRX', 'quote': 'USDC', 'settle': None, 'baseId': 'TRX', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 20.15, 'max': 30446034.4040189}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'TRXUSDC', 'baseCoin': 'TRX', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '20.15', 'maxOrderQty': '30446034.4040189', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ICPUSDC', 'lowercaseId': None, 'symbol': 'ICP/USDC', 'base': 'ICP', 'quote': 'USDC', 'settle': None, 'baseId': 'ICP', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.25, 'max': 186694.878337}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ICPUSDC', 'baseCoin': 'ICP', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.25', 'maxOrderQty': '186694.878337', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINKUSDC', 'lowercaseId': None, 'symbol': 'LINK/USDC', 'base': 'LINK', 'quote': 'USDC', 'settle': None, 'baseId': 'LINK', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.16, 'max': 127456.1869357}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'LINKUSDC', 'baseCoin': 'LINK', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.16', 'maxOrderQty': '127456.1869357', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMTUSDC', 'lowercaseId': None, 'symbol': 'GMT/USDC', 'base': 'GMT', 'quote': 'USDC', 'settle': None, 'baseId': 'GMT', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.64, 'max': 1221001.221001}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GMTUSDC', 'baseCoin': 'GMT', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.64', 'maxOrderQty': '1221001.221001', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CHZUSDC', 'lowercaseId': None, 'symbol': 'CHZ/USDC', 'base': 'CHZ', 'quote': 'USDC', 'settle': None, 'baseId': 'CHZ', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.0, 'max': 3590664.27289}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CHZUSDC', 'baseCoin': 'CHZ', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4', 'maxOrderQty': '3590664.27289', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SHIBUSDC', 'lowercaseId': None, 'symbol': 'SHIB/USDC', 'base': 'SHIB', 'quote': 'USDC', 'settle': None, 'baseId': 'SHIB', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 127388.5, 'max': 283129715879.33014}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'SHIBUSDC', 'baseCoin': 'SHIB', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000000001', 'minOrderQty': '127388.5', 'maxOrderQty': '283129715879.3301150922', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LDOUSDC', 'lowercaseId': None, 'symbol': 'LDO/USDC', 'base': 'LDO', 'quote': 'USDC', 'settle': None, 'baseId': 'LDO', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.89, 'max': 350795.135641}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'LDOUSDC', 'baseCoin': 'LDO', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.89', 'maxOrderQty': '350795.135641', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APEUSDC', 'lowercaseId': None, 'symbol': 'APE/USDC', 'base': 'APE', 'quote': 'USDC', 'settle': None, 'baseId': 'APE', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.34, 'max': 489556.13577}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'APEUSDC', 'baseCoin': 'APE', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.34', 'maxOrderQty': '489556.13577', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FILUSDC', 'lowercaseId': None, 'symbol': 'FIL/USDC', 'base': 'FIL', 'quote': 'USDC', 'settle': None, 'baseId': 'FIL', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.23, 'max': 162866.44951}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'FILUSDC', 'baseCoin': 'FIL', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.23', 'maxOrderQty': '162866.44951', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CHRPUSDT', 'lowercaseId': None, 'symbol': 'CHRP/USDT', 'base': 'CHRP', 'quote': 'USDT', 'settle': None, 'baseId': 'CHRP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 362.84, 'max': 73937153.41959335}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'CHRPUSDT', 'baseCoin': 'CHRP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '362.84', 'maxOrderQty': '73937153.41959335', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EOS2SUSDT', 'lowercaseId': None, 'symbol': 'EOS2S/USDT', 'base': 'EOS2S', 'quote': 'USDT', 'settle': None, 'baseId': 'EOS2S', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.0906, 'max': 13248.19162184}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'EOS2SUSDT', 'baseCoin': 'EOS2S', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.0906', 'maxOrderQty': '13248.19162184', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EOS2LUSDT', 'lowercaseId': None, 'symbol': 'EOS2L/USDT', 'base': 'EOS2L', 'quote': 'USDT', 'settle': None, 'baseId': 'EOS2L', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2777, 'max': 50694.51485349}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 10000.0}}, 'created': None, 'info': {'symbol': 'EOS2LUSDT', 'baseCoin': 'EOS2L', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.0001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.2777', 'maxOrderQty': '50694.51485349', 'minOrderAmt': '1', 'maxOrderAmt': '10000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WWYUSDT', 'lowercaseId': None, 'symbol': 'WWY/USDT', 'base': 'WWY', 'quote': 'USDT', 'settle': None, 'baseId': 'WWY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 153.14, 'max': 68917987.59476224}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'WWYUSDT', 'baseCoin': 'WWY', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '153.14', 'maxOrderQty': '68917987.59476223', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINGUSDT', 'lowercaseId': None, 'symbol': 'LING/USDT', 'base': 'LING', 'quote': 'USDT', 'settle': None, 'baseId': 'LING', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 241.49, 'max': 61957868.64931846}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LINGUSDT', 'baseCoin': 'LING', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '241.49', 'maxOrderQty': '61957868.64931846', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SWEATUSDT', 'lowercaseId': None, 'symbol': 'SWEAT/USDT', 'base': 'SWEAT', 'quote': 'USDT', 'settle': None, 'baseId': 'SWEAT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 33715441.67228591}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SWEATUSDT', 'baseCoin': 'SWEAT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '0.01', 'maxOrderQty': '33715441.67228591', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DLCUSDT', 'lowercaseId': None, 'symbol': 'DLC/USDT', 'base': 'DLC', 'quote': 'USDT', 'settle': None, 'baseId': 'DLC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 7.63, 'max': 566059.0965697}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DLCUSDT', 'baseCoin': 'DLC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '7.63', 'maxOrderQty': '566059.0965697', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OKGUSDT', 'lowercaseId': None, 'symbol': 'OKG/USDT', 'base': 'OKG', 'quote': 'USDT', 'settle': None, 'baseId': 'OKG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 83.19, 'max': 38461538.46153846}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'OKGUSDT', 'baseCoin': 'OKG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '83.19', 'maxOrderQty': '38461538.46153846', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHWUSDT', 'lowercaseId': None, 'symbol': 'ETHW/USDT', 'base': 'ETHW', 'quote': 'USDT', 'settle': None, 'baseId': 'ETHW', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.27, 'max': 136612.021858}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ETHWUSDT', 'baseCoin': 'ETHW', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.27', 'maxOrderQty': '136612.021858', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'INJUSDT', 'lowercaseId': None, 'symbol': 'INJ/USDT', 'base': 'INJ', 'quote': 'USDT', 'settle': None, 'baseId': 'INJ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.03, 'max': 34646.43315}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'INJUSDT', 'baseCoin': 'INJ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.03', 'maxOrderQty': '34646.43315', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MPLXUSDT', 'lowercaseId': None, 'symbol': 'MPLX/USDT', 'base': 'MPLX', 'quote': 'USDT', 'settle': None, 'baseId': 'MPLX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 18.05, 'max': 5788712.0115774}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MPLXUSDT', 'baseCoin': 'MPLX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '18.05', 'maxOrderQty': '5788712.0115774', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MIBRUSDT', 'lowercaseId': None, 'symbol': 'MIBR/USDT', 'base': 'MIBR', 'quote': 'USDT', 'settle': None, 'baseId': 'MIBR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.45, 'max': 226039.783002}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MIBRUSDT', 'baseCoin': 'MIBR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.45', 'maxOrderQty': '226039.783002', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COUSDT', 'lowercaseId': None, 'symbol': 'CO/USDT', 'base': 'CO', 'quote': 'USDT', 'settle': None, 'baseId': 'CO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 52.11, 'max': 60975609.75609756}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'COUSDT', 'baseCoin': 'CO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '52.11', 'maxOrderQty': '60975609.75609756', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGLAUSDT', 'lowercaseId': None, 'symbol': 'AGLA/USDT', 'base': 'AGLA', 'quote': 'USDT', 'settle': None, 'baseId': 'AGLA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 25.36, 'max': 2659574.4680851}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AGLAUSDT', 'baseCoin': 'AGLA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '25.36', 'maxOrderQty': '2659574.4680851', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RONDUSDT', 'lowercaseId': None, 'symbol': 'ROND/USDT', 'base': 'ROND', 'quote': 'USDT', 'settle': None, 'baseId': 'ROND', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 9.97, 'max': 200000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RONDUSDT', 'baseCoin': 'ROND', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '9.97', 'maxOrderQty': '200000000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QMALLUSDT', 'lowercaseId': None, 'symbol': 'QMALL/USDT', 'base': 'QMALL', 'quote': 'USDT', 'settle': None, 'baseId': 'QMALL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.4, 'max': 4395604.395604}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'QMALLUSDT', 'baseCoin': 'QMALL', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.4', 'maxOrderQty': '4395604.395604', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PUMLXUSDT', 'lowercaseId': None, 'symbol': 'PUMLX/USDT', 'base': 'PUMLX', 'quote': 'USDT', 'settle': None, 'baseId': 'PUMLX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 37.02, 'max': 5624296.9628796}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PUMLXUSDT', 'baseCoin': 'PUMLX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '37.02', 'maxOrderQty': '5624296.9628796', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GCAKEUSDT', 'lowercaseId': None, 'symbol': 'GCAKE/USDT', 'base': 'GCAKE', 'quote': 'USDT', 'settle': None, 'baseId': 'GCAKE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 5711022.27, 'max': 1379310344827.5862}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GCAKEUSDT', 'baseCoin': 'GCAKE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000000001', 'minOrderQty': '5711022.27', 'maxOrderQty': '1379310344827.586206896552', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APTUSDT', 'lowercaseId': None, 'symbol': 'APT/USDT', 'base': 'APT', 'quote': 'USDT', 'settle': None, 'baseId': 'APT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 100287.490807}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'APTUSDT', 'baseCoin': 'APT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '100287.490807', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APTUSDC', 'lowercaseId': None, 'symbol': 'APT/USDC', 'base': 'APT', 'quote': 'USDC', 'settle': None, 'baseId': 'APT', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.24, 'max': 121138.703816}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'APTUSDC', 'baseCoin': 'APT', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.24', 'maxOrderQty': '121138.703816', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDTEUR', 'lowercaseId': None, 'symbol': 'USDT/EUR', 'base': 'USDT', 'quote': 'EUR', 'settle': None, 'baseId': 'USDT', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 200000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'USDTEUR', 'baseCoin': 'USDT', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '200000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MTKUSDT', 'lowercaseId': None, 'symbol': 'MTK/USDT', 'base': 'MTK', 'quote': 'USDT', 'settle': None, 'baseId': 'MTK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 25.08, 'max': 312500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MTKUSDT', 'baseCoin': 'MTK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '25.08', 'maxOrderQty': '312500000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MCRTUSDT', 'lowercaseId': None, 'symbol': 'MCRT/USDT', 'base': 'MCRT', 'quote': 'USDT', 'settle': None, 'baseId': 'MCRT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 174.52, 'max': 201816347.12411705}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MCRTUSDT', 'baseCoin': 'MCRT', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '174.52', 'maxOrderQty': '201816347.12411705', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MASKUSDT', 'lowercaseId': None, 'symbol': 'MASK/USDT', 'base': 'MASK', 'quote': 'USDT', 'settle': None, 'baseId': 'MASK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2, 'max': 87823.299521}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MASKUSDT', 'baseCoin': 'MASK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.2', 'maxOrderQty': '87823.299521', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ECOXUSDT', 'lowercaseId': None, 'symbol': 'ECOX/USDT', 'base': 'ECOX', 'quote': 'USDT', 'settle': None, 'baseId': 'ECOX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.25, 'max': 862068.965517}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ECOXUSDT', 'baseCoin': 'ECOX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.25', 'maxOrderQty': '862068.965517', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HFTUSDC', 'lowercaseId': None, 'symbol': 'HFT/USDC', 'base': 'HFT', 'quote': 'USDC', 'settle': None, 'baseId': 'HFT', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.5, 'max': 741564.70152}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HFTUSDC', 'baseCoin': 'HFT', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.5', 'maxOrderQty': '741564.70152', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HFTUSDT', 'lowercaseId': None, 'symbol': 'HFT/USDT', 'base': 'HFT', 'quote': 'USDT', 'settle': None, 'baseId': 'HFT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.5, 'max': 738825.267824}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HFTUSDT', 'baseCoin': 'HFT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.5', 'maxOrderQty': '738825.267824', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KCALUSDT', 'lowercaseId': None, 'symbol': 'KCAL/USDT', 'base': 'KCAL', 'quote': 'USDT', 'settle': None, 'baseId': 'KCAL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.5, 'max': 1850138.760407}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'KCALUSDT', 'baseCoin': 'KCAL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.5', 'maxOrderQty': '1850138.760407', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PEOPLEUSDT', 'lowercaseId': None, 'symbol': 'PEOPLE/USDT', 'base': 'PEOPLE', 'quote': 'USDT', 'settle': None, 'baseId': 'PEOPLE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 46.77, 'max': 19704433.4975369}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PEOPLEUSDT', 'baseCoin': 'PEOPLE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '46.77', 'maxOrderQty': '19704433.4975369', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TWTUSDT', 'lowercaseId': None, 'symbol': 'TWT/USDT', 'base': 'TWT', 'quote': 'USDT', 'settle': None, 'baseId': 'TWT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.44, 'max': 244768.082242}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'TWTUSDT', 'baseCoin': 'TWT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.44', 'maxOrderQty': '244768.082242', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ORTUSDT', 'lowercaseId': None, 'symbol': 'ORT/USDT', 'base': 'ORT', 'quote': 'USDT', 'settle': None, 'baseId': 'ORT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 63171193.93556538}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ORTUSDT', 'baseCoin': 'ORT', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '0.01', 'maxOrderQty': '63171193.93556538', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HOOKUSDT', 'lowercaseId': None, 'symbol': 'HOOK/USDT', 'base': 'HOOK', 'quote': 'USDT', 'settle': None, 'baseId': 'HOOK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 263157.894737}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HOOKUSDT', 'baseCoin': 'HOOK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '263157.894737', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PRIMALUSDT', 'lowercaseId': None, 'symbol': 'PRIMAL/USDT', 'base': 'PRIMAL', 'quote': 'USDT', 'settle': None, 'baseId': 'PRIMAL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 200.0, 'max': 595238095.2380953}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PRIMALUSDT', 'baseCoin': 'PRIMAL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '200', 'maxOrderQty': '595238095.23809524', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MCTUSDT', 'lowercaseId': None, 'symbol': 'MCT/USDT', 'base': 'MCT', 'quote': 'USDT', 'settle': None, 'baseId': 'MCT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 14316392.2691482}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MCTUSDT', 'baseCoin': 'MCT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '14316392.2691482', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OASUSDT', 'lowercaseId': None, 'symbol': 'OAS/USDT', 'base': 'OAS', 'quote': 'USDT', 'settle': None, 'baseId': 'OAS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 100.0, 'max': 3450834.23917732}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'OASUSDT', 'baseCoin': 'OAS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '100', 'maxOrderQty': '3450834.23917732', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MAGICUSDT', 'lowercaseId': None, 'symbol': 'MAGIC/USDT', 'base': 'MAGIC', 'quote': 'USDT', 'settle': None, 'baseId': 'MAGIC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.27, 'max': 341122.292342}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MAGICUSDT', 'baseCoin': 'MAGIC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.27', 'maxOrderQty': '341122.292342', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MEEUSDT', 'lowercaseId': None, 'symbol': 'MEE/USDT', 'base': 'MEE', 'quote': 'USDT', 'settle': None, 'baseId': 'MEE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 12642225.03160556}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MEEUSDT', 'baseCoin': 'MEE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '0.01', 'maxOrderQty': '12642225.03160556', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TONUSDT', 'lowercaseId': None, 'symbol': 'TON/USDT', 'base': 'TON', 'quote': 'USDT', 'settle': None, 'baseId': 'TON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.36, 'max': 136211.945788}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'TONUSDT', 'baseCoin': 'TON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.36', 'maxOrderQty': '136211.945788', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BONKUSDT', 'lowercaseId': None, 'symbol': 'BONK/USDT', 'base': 'BONK', 'quote': 'USDT', 'settle': None, 'baseId': 'BONK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 703729.7, 'max': 794596742153.3572}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BONKUSDT', 'baseCoin': 'BONK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000000001', 'minOrderQty': '703729.7', 'maxOrderQty': '794596742153.3571712356', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLRUSDT', 'lowercaseId': None, 'symbol': 'FLR/USDT', 'base': 'FLR', 'quote': 'USDT', 'settle': None, 'baseId': 'FLR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 19212295.8693564}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FLRUSDT', 'baseCoin': 'FLR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '19212295.8693564', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TIMEUSDT', 'lowercaseId': None, 'symbol': 'TIME/USDT', 'base': 'TIME', 'quote': 'USDT', 'settle': None, 'baseId': 'TIME', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 12500.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'TIMEUSDT', 'baseCoin': 'TIME', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '12500', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '3PUSDT', 'lowercaseId': None, 'symbol': '3P/USDT', 'base': '3P', 'quote': 'USDT', 'settle': None, 'baseId': '3P', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-12, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 20000000.0, 'max': 38759689922480.62}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': '3PUSDT', 'baseCoin': '3P', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000000000001', 'minOrderQty': '20000000', 'maxOrderQty': '38759689922480.6201550387597', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RPLUSDT', 'lowercaseId': None, 'symbol': 'RPL/USDT', 'base': 'RPL', 'quote': 'USDT', 'settle': None, 'baseId': 'RPL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.03, 'max': 9876.54321}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RPLUSDT', 'baseCoin': 'RPL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.03', 'maxOrderQty': '9876.54321', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SSVUSDT', 'lowercaseId': None, 'symbol': 'SSV/USDT', 'base': 'SSV', 'quote': 'USDT', 'settle': None, 'baseId': 'SSV', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.06, 'max': 11987.820374}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SSVUSDT', 'baseCoin': 'SSV', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.06', 'maxOrderQty': '11987.820374', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FXSUSDT', 'lowercaseId': None, 'symbol': 'FXS/USDT', 'base': 'FXS', 'quote': 'USDT', 'settle': None, 'baseId': 'FXS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.11, 'max': 31673.634866}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FXSUSDT', 'baseCoin': 'FXS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.11', 'maxOrderQty': '31673.634866', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COREUSDT', 'lowercaseId': None, 'symbol': 'CORE/USDT', 'base': 'CORE', 'quote': 'USDT', 'settle': None, 'baseId': 'CORE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 447427.293065}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'COREUSDT', 'baseCoin': 'CORE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.01', 'maxOrderQty': '447427.293065', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RDNTUSDT', 'lowercaseId': None, 'symbol': 'RDNT/USDT', 'base': 'RDNT', 'quote': 'USDT', 'settle': None, 'baseId': 'RDNT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.32, 'max': 928936.367859}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'RDNTUSDT', 'baseCoin': 'RDNT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.32', 'maxOrderQty': '928936.367859', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BLURUSDT', 'lowercaseId': None, 'symbol': 'BLUR/USDT', 'base': 'BLUR', 'quote': 'USDT', 'settle': None, 'baseId': 'BLUR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1434240.0917914}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 300000.0}}, 'created': None, 'info': {'symbol': 'BLURUSDT', 'baseCoin': 'BLUR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1434240.0917914', 'minOrderAmt': '1', 'maxOrderAmt': '300000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LISUSDT', 'lowercaseId': None, 'symbol': 'LIS/USDT', 'base': 'LIS', 'quote': 'USDT', 'settle': None, 'baseId': 'LIS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 28563267.63781777}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LISUSDT', 'baseCoin': 'LIS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '10', 'maxOrderQty': '28563267.63781777', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGIXUSDT', 'lowercaseId': None, 'symbol': 'AGIX/USDT', 'base': 'AGIX', 'quote': 'USDT', 'settle': None, 'baseId': 'AGIX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.22, 'max': 1140901.312037}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'AGIXUSDT', 'baseCoin': 'AGIX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.22', 'maxOrderQty': '1140901.312037', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MDAOUSDT', 'lowercaseId': None, 'symbol': 'MDAO/USDT', 'base': 'MDAO', 'quote': 'USDT', 'settle': None, 'baseId': 'MDAO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 2254791.431793}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'MDAOUSDT', 'baseCoin': 'MDAO', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '0.01', 'maxOrderQty': '2254791.431793', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ACSUSDT', 'lowercaseId': None, 'symbol': 'ACS/USDT', 'base': 'ACS', 'quote': 'USDT', 'settle': None, 'baseId': 'ACS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 109200109.2001092}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ACSUSDT', 'baseCoin': 'ACS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '1', 'maxOrderQty': '109200109.2001092', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HVHUSDT', 'lowercaseId': None, 'symbol': 'HVH/USDT', 'base': 'HVH', 'quote': 'USDT', 'settle': None, 'baseId': 'HVH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 15835312.7474268}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'HVHUSDT', 'baseCoin': 'HVH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '15835312.7474268', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GNSUSDT', 'lowercaseId': None, 'symbol': 'GNS/USDT', 'base': 'GNS', 'quote': 'USDT', 'settle': None, 'baseId': 'GNS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.09, 'max': 63351.282863}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GNSUSDT', 'baseCoin': 'GNS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.09', 'maxOrderQty': '63351.282863', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DPXUSDT', 'lowercaseId': None, 'symbol': 'DPX/USDT', 'base': 'DPX', 'quote': 'USDT', 'settle': None, 'baseId': 'DPX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.003, 'max': 4584.00183}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DPXUSDT', 'baseCoin': 'DPX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00001', 'minOrderQty': '0.003', 'maxOrderQty': '4584.00183', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PIPUSDT', 'lowercaseId': None, 'symbol': 'PIP/USDT', 'base': 'PIP', 'quote': 'USDT', 'settle': None, 'baseId': 'PIP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 3763643.206624}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PIPUSDT', 'baseCoin': 'PIP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '3763643.206624', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PRIMEUSDT', 'lowercaseId': None, 'symbol': 'PRIME/USDT', 'base': 'PRIME', 'quote': 'USDT', 'settle': None, 'baseId': 'PRIME', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.267, 'max': 138504.15512}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PRIMEUSDT', 'baseCoin': 'PRIME', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.267', 'maxOrderQty': '138504.15512', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EVERUSDT', 'lowercaseId': None, 'symbol': 'EVER/USDT', 'base': 'EVER', 'quote': 'USDT', 'settle': None, 'baseId': 'EVER', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 7238508.8671734}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'EVERUSDT', 'baseCoin': 'EVER', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '7238508.8671734', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VRAUSDT', 'lowercaseId': None, 'symbol': 'VRA/USDT', 'base': 'VRA', 'quote': 'USDT', 'settle': None, 'baseId': 'VRA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 159.49, 'max': 49309664.69428008}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'VRAUSDT', 'baseCoin': 'VRA', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '159.49', 'maxOrderQty': '49309664.69428008', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GPTUSDT', 'lowercaseId': None, 'symbol': 'GPT/USDT', 'base': 'GPT', 'quote': 'USDT', 'settle': None, 'baseId': 'GPT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 22550456.6467471}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'GPTUSDT', 'baseCoin': 'GPT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '22550456.6467471', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FBUSDT', 'lowercaseId': None, 'symbol': 'FB/USDT', 'base': 'FB', 'quote': 'USDT', 'settle': None, 'baseId': 'FB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.69, 'max': 213219.6162}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'FBUSDT', 'baseCoin': 'FB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.69', 'maxOrderQty': '213219.6162', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DZOOUSDT', 'lowercaseId': None, 'symbol': 'DZOO/USDT', 'base': 'DZOO', 'quote': 'USDT', 'settle': None, 'baseId': 'DZOO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 15.0, 'max': 86956521.73913044}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DZOOUSDT', 'baseCoin': 'DZOO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '15', 'maxOrderQty': '86956521.73913043', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IDUSDT', 'lowercaseId': None, 'symbol': 'ID/USDT', 'base': 'ID', 'quote': 'USDT', 'settle': None, 'baseId': 'ID', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'IDUSDT', 'baseCoin': 'ID', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2000000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARBUSDC', 'lowercaseId': None, 'symbol': 'ARB/USDC', 'base': 'ARB', 'quote': 'USDC', 'settle': None, 'baseId': 'ARB', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 749063.67041}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ARBUSDC', 'baseCoin': 'ARB', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '1', 'maxOrderQty': '749063.67041', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARBUSDT', 'lowercaseId': None, 'symbol': 'ARB/USDT', 'base': 'ARB', 'quote': 'USDT', 'settle': None, 'baseId': 'ARB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 749063.67041}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 600000.0}}, 'created': None, 'info': {'symbol': 'ARBUSDT', 'baseCoin': 'ARB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '1', 'maxOrderQty': '749063.67041', 'minOrderAmt': '1', 'maxOrderAmt': '600000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.03', 'marketParameter': '0.03'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XCADUSDT', 'lowercaseId': None, 'symbol': 'XCAD/USDT', 'base': 'XCAD', 'quote': 'USDT', 'settle': None, 'baseId': 'XCAD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.53, 'max': 289897.086534}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XCADUSDT', 'baseCoin': 'XCAD', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.53', 'maxOrderQty': '289897.086534', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MBXUSDT', 'lowercaseId': None, 'symbol': 'MBX/USDT', 'base': 'MBX', 'quote': 'USDT', 'settle': None, 'baseId': 'MBX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.34, 'max': 57208.23799}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MBXUSDT', 'baseCoin': 'MBX', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.34', 'maxOrderQty': '57208.23799', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AXLUSDT', 'lowercaseId': None, 'symbol': 'AXL/USDT', 'base': 'AXL', 'quote': 'USDT', 'settle': None, 'baseId': 'AXL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 126230.749811}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AXLUSDT', 'baseCoin': 'AXL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '126230.749811', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CGPTUSDT', 'lowercaseId': None, 'symbol': 'CGPT/USDT', 'base': 'CGPT', 'quote': 'USDT', 'settle': None, 'baseId': 'CGPT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 6250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CGPTUSDT', 'baseCoin': 'CGPT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '10', 'maxOrderQty': '6250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PLAYUSDT', 'lowercaseId': None, 'symbol': 'PLAY/USDT', 'base': 'PLAY', 'quote': 'USDT', 'settle': None, 'baseId': 'PLAY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 25641025.6410256}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PLAYUSDT', 'baseCoin': 'PLAY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '25641025.6410256', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGIUSDT', 'lowercaseId': None, 'symbol': 'AGI/USDT', 'base': 'AGI', 'quote': 'USDT', 'settle': None, 'baseId': 'AGI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 3424657.5342466}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AGIUSDT', 'baseCoin': 'AGI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '3424657.5342466', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RLTMUSDT', 'lowercaseId': None, 'symbol': 'RLTM/USDT', 'base': 'RLTM', 'quote': 'USDT', 'settle': None, 'baseId': 'RLTM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 7407407.4074074}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'RLTMUSDT', 'baseCoin': 'RLTM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '7407407.4074074', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUIUSDT', 'lowercaseId': None, 'symbol': 'SUI/USDT', 'base': 'SUI', 'quote': 'USDT', 'settle': None, 'baseId': 'SUI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SUIUSDT', 'baseCoin': 'SUI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '2000000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUIUSDC', 'lowercaseId': None, 'symbol': 'SUI/USDC', 'base': 'SUI', 'quote': 'USDC', 'settle': None, 'baseId': 'SUI', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SUIUSDC', 'baseCoin': 'SUI', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '2000000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TAMAUSDT', 'lowercaseId': None, 'symbol': 'TAMA/USDT', 'base': 'TAMA', 'quote': 'USDT', 'settle': None, 'baseId': 'TAMA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 16891891.8918919}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TAMAUSDT', 'baseCoin': 'TAMA', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '16891891.8918919', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MVLUSDT', 'lowercaseId': None, 'symbol': 'MVL/USDT', 'base': 'MVL', 'quote': 'USDT', 'settle': None, 'baseId': 'MVL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 18896447.46787604}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MVLUSDT', 'baseCoin': 'MVL', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '10', 'maxOrderQty': '18896447.46787604', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PEPEUSDT', 'lowercaseId': None, 'symbol': 'PEPE/USDT', 'base': 'PEPE', 'quote': 'USDT', 'settle': None, 'baseId': 'PEPE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 280000.0, 'max': 288142918887.7683}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'PEPEUSDT', 'baseCoin': 'PEPE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '1', 'quotePrecision': '0.0000000001', 'minOrderQty': '280000', 'maxOrderQty': '288142918887.7683330932', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LADYSUSDT', 'lowercaseId': None, 'symbol': 'LADYS/USDT', 'base': 'LADYS', 'quote': 'USDT', 'settle': None, 'baseId': 'LADYS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-11, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 6738544.5, 'max': 2747252747252.747}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'LADYSUSDT', 'baseCoin': 'LADYS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000000001', 'minOrderQty': '6738544.5', 'maxOrderQty': '2747252747252.74725274725', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LMWRUSDT', 'lowercaseId': None, 'symbol': 'LMWR/USDT', 'base': 'LMWR', 'quote': 'USDT', 'settle': None, 'baseId': 'LMWR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 573394.495413}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'LMWRUSDT', 'baseCoin': 'LMWR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '573394.495413', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BOBUSDT', 'lowercaseId': None, 'symbol': 'BOB/USDT', 'base': 'BOB', 'quote': 'USDT', 'settle': None, 'baseId': 'BOB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10000.0, 'max': 11261261261.261261}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BOBUSDT', 'baseCoin': 'BOB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.000000001', 'minOrderQty': '10000', 'maxOrderQty': '11261261261.261261261', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TOMIUSDT', 'lowercaseId': None, 'symbol': 'TOMI/USDT', 'base': 'TOMI', 'quote': 'USDT', 'settle': None, 'baseId': 'TOMI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.28, 'max': 49900.1996}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TOMIUSDT', 'baseCoin': 'TOMI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.28', 'maxOrderQty': '49900.1996', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KARATEUSDT', 'lowercaseId': None, 'symbol': 'KARATE/USDT', 'base': 'KARATE', 'quote': 'USDT', 'settle': None, 'baseId': 'KARATE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 100.0, 'max': 183351669.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'KARATEUSDT', 'baseCoin': 'KARATE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '100', 'maxOrderQty': '183351669', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUIAUSDT', 'lowercaseId': None, 'symbol': 'SUIA/USDT', 'base': 'SUIA', 'quote': 'USDT', 'settle': None, 'baseId': 'SUIA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 943396.226415}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SUIAUSDT', 'baseCoin': 'SUIA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '943396.226415', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TURBOSUSDT', 'lowercaseId': None, 'symbol': 'TURBOS/USDT', 'base': 'TURBOS', 'quote': 'USDT', 'settle': None, 'baseId': 'TURBOS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 52246603.9707419}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TURBOSUSDT', 'baseCoin': 'TURBOS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '10', 'maxOrderQty': '52246603.9707419', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FMBUSDT', 'lowercaseId': None, 'symbol': 'FMB/USDT', 'base': 'FMB', 'quote': 'USDT', 'settle': None, 'baseId': 'FMB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 5000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FMBUSDT', 'baseCoin': 'FMB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '5000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CAPOUSDT', 'lowercaseId': None, 'symbol': 'CAPO/USDT', 'base': 'CAPO', 'quote': 'USDT', 'settle': None, 'baseId': 'CAPO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 87.95, 'max': 78740157.48031496}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CAPOUSDT', 'baseCoin': 'CAPO', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '87.95', 'maxOrderQty': '78740157.48031496', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TENETUSDT', 'lowercaseId': None, 'symbol': 'TENET/USDT', 'base': 'TENET', 'quote': 'USDT', 'settle': None, 'baseId': 'TENET', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 2500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TENETUSDT', 'baseCoin': 'TENET', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10', 'maxOrderQty': '2500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VELOUSDT', 'lowercaseId': None, 'symbol': 'VELO/USDT', 'base': 'VELO', 'quote': 'USDT', 'settle': None, 'baseId': 'VELO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 200.0, 'max': 19944156.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VELOUSDT', 'baseCoin': 'VELO', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '200', 'maxOrderQty': '19944156', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ELDAUSDT', 'lowercaseId': None, 'symbol': 'ELDA/USDT', 'base': 'ELDA', 'quote': 'USDT', 'settle': None, 'baseId': 'ELDA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 17699115.04424779}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ELDAUSDT', 'baseCoin': 'ELDA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '10', 'maxOrderQty': '17699115.04424779', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CANDYUSDT', 'lowercaseId': None, 'symbol': 'CANDY/USDT', 'base': 'CANDY', 'quote': 'USDT', 'settle': None, 'baseId': 'CANDY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 3021148.0362538}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CANDYUSDT', 'baseCoin': 'CANDY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '3021148.0362538', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FONUSDT', 'lowercaseId': None, 'symbol': 'FON/USDT', 'base': 'FON', 'quote': 'USDT', 'settle': None, 'baseId': 'FON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.7, 'max': 390625.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FONUSDT', 'baseCoin': 'FON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.7', 'maxOrderQty': '390625', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OMNUSDT', 'lowercaseId': None, 'symbol': 'OMN/USDT', 'base': 'OMN', 'quote': 'USDT', 'settle': None, 'baseId': 'OMN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 100.0, 'max': 11337868.4807256}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'OMNUSDT', 'baseCoin': 'OMN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '100', 'maxOrderQty': '11337868.4807256', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TOMSUSDT', 'lowercaseId': None, 'symbol': 'TOMS/USDT', 'base': 'TOMS', 'quote': 'USDT', 'settle': None, 'baseId': 'TOMS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 450.86, 'max': 52192066.80584551}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TOMSUSDT', 'baseCoin': 'TOMS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '450.86', 'maxOrderQty': '52192066.80584551', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VELAUSDT', 'lowercaseId': None, 'symbol': 'VELA/USDT', 'base': 'VELA', 'quote': 'USDT', 'settle': None, 'baseId': 'VELA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.35, 'max': 95657.164722}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VELAUSDT', 'baseCoin': 'VELA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.35', 'maxOrderQty': '95657.164722', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDTBRZ', 'lowercaseId': None, 'symbol': 'USDT/BRZ', 'base': 'USDT', 'quote': 'BRZ', 'settle': None, 'baseId': 'USDT', 'quoteId': 'BRZ', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.1, 'max': 37729.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'USDTBRZ', 'baseCoin': 'USDT', 'quoteCoin': 'BRZ', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00001', 'minOrderQty': '0.1', 'maxOrderQty': '37729', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCBRZ', 'lowercaseId': None, 'symbol': 'BTC/BRZ', 'base': 'BTC', 'quote': 'BRZ', 'settle': None, 'baseId': 'BTC', 'quoteId': 'BRZ', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1e-05, 'max': 1.5}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BTCBRZ', 'baseCoin': 'BTC', 'quoteCoin': 'BRZ', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.000001', 'minOrderQty': '0.00001', 'maxOrderQty': '1.5', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.1'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PENDLEUSDT', 'lowercaseId': None, 'symbol': 'PENDLE/USDT', 'base': 'PENDLE', 'quote': 'USDT', 'settle': None, 'baseId': 'PENDLE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.86, 'max': 98853.3017}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PENDLEUSDT', 'baseCoin': 'PENDLE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.86', 'maxOrderQty': '98853.3017', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EGOUSDT', 'lowercaseId': None, 'symbol': 'EGO/USDT', 'base': 'EGO', 'quote': 'USDT', 'settle': None, 'baseId': 'EGO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1878287.0022539}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'EGOUSDT', 'baseCoin': 'EGO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1878287.0022539', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NYMUSDT', 'lowercaseId': None, 'symbol': 'NYM/USDT', 'base': 'NYM', 'quote': 'USDT', 'settle': None, 'baseId': 'NYM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 358166.189112}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'NYMUSDT', 'baseCoin': 'NYM', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '358166.189112', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MNTUSDT', 'lowercaseId': None, 'symbol': 'MNT/USDT', 'base': 'MNT', 'quote': 'USDT', 'settle': None, 'baseId': 'MNT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1539408.866995}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 500000.0}}, 'created': None, 'info': {'symbol': 'MNTUSDT', 'baseCoin': 'MNT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '1539408.866995', 'minOrderAmt': '1', 'maxOrderAmt': '500000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MNTUSDC', 'lowercaseId': None, 'symbol': 'MNT/USDC', 'base': 'MNT', 'quote': 'USDC', 'settle': None, 'baseId': 'MNT', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1539882.968894}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 500000.0}}, 'created': None, 'info': {'symbol': 'MNTUSDC', 'baseCoin': 'MNT', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '1539882.968894', 'minOrderAmt': '1', 'maxOrderAmt': '500000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MNTBTC', 'lowercaseId': None, 'symbol': 'MNT/BTC', 'base': 'MNT', 'quote': 'BTC', 'settle': None, 'baseId': 'MNT', 'quoteId': 'BTC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1141408.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.0001, 'max': 18.0}}, 'created': None, 'info': {'symbol': 'MNTBTC', 'baseCoin': 'MNT', 'quoteCoin': 'BTC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000000001', 'minOrderQty': '1', 'maxOrderQty': '1141408', 'minOrderAmt': '0.0001', 'maxOrderAmt': '18'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GSWIFTUSDT', 'lowercaseId': None, 'symbol': 'GSWIFT/USDT', 'base': 'GSWIFT', 'quote': 'USDT', 'settle': None, 'baseId': 'GSWIFT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2793296.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'GSWIFTUSDT', 'baseCoin': 'GSWIFT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2793296', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SALDUSDT', 'lowercaseId': None, 'symbol': 'SALD/USDT', 'base': 'SALD', 'quote': 'USDT', 'settle': None, 'baseId': 'SALD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 9578544.0613027}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SALDUSDT', 'baseCoin': 'SALD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '9578544.0613027', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARKMUSDT', 'lowercaseId': None, 'symbol': 'ARKM/USDT', 'base': 'ARKM', 'quote': 'USDT', 'settle': None, 'baseId': 'ARKM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ARKMUSDT', 'baseCoin': 'ARKM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NEONUSDT', 'lowercaseId': None, 'symbol': 'NEON/USDT', 'base': 'NEON', 'quote': 'USDT', 'settle': None, 'baseId': 'NEON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 753125.4707034}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'NEONUSDT', 'baseCoin': 'NEON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '753125.4707034', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WLDUSDC', 'lowercaseId': None, 'symbol': 'WLD/USDC', 'base': 'WLD', 'quote': 'USDC', 'settle': None, 'baseId': 'WLD', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 6666666.666667}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'WLDUSDC', 'baseCoin': 'WLD', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '6666666.666667', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WLDUSDT', 'lowercaseId': None, 'symbol': 'WLD/USDT', 'base': 'WLD', 'quote': 'USDT', 'settle': None, 'baseId': 'WLD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1477213.974444}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 2000000.0}}, 'created': None, 'info': {'symbol': 'WLDUSDT', 'baseCoin': 'WLD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '1477213.974444', 'minOrderAmt': '1', 'maxOrderAmt': '2000000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PLANETUSDT', 'lowercaseId': None, 'symbol': 'PLANET/USDT', 'base': 'PLANET', 'quote': 'USDT', 'settle': None, 'baseId': 'PLANET', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-08, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1250000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PLANETUSDT', 'baseCoin': 'PLANET', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000000001', 'minOrderQty': '1', 'maxOrderQty': '1250000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DSRUNUSDT', 'lowercaseId': None, 'symbol': 'DSRUN/USDT', 'base': 'DSRUN', 'quote': 'USDT', 'settle': None, 'baseId': 'DSRUN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 5000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DSRUNUSDT', 'baseCoin': 'DSRUN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '5000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SPARTAUSDT', 'lowercaseId': None, 'symbol': 'SPARTA/USDT', 'base': 'SPARTA', 'quote': 'USDT', 'settle': None, 'baseId': 'SPARTA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 440528.634361}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SPARTAUSDT', 'baseCoin': 'SPARTA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '440528.634361', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TAVAUSDT', 'lowercaseId': None, 'symbol': 'TAVA/USDT', 'base': 'TAVA', 'quote': 'USDT', 'settle': None, 'baseId': 'TAVA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1086956.5217391}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TAVAUSDT', 'baseCoin': 'TAVA', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1086956.5217391', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SEILORUSDT', 'lowercaseId': None, 'symbol': 'SEILOR/USDT', 'base': 'SEILOR', 'quote': 'USDT', 'settle': None, 'baseId': 'SEILOR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 13873473.91786903}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SEILORUSDT', 'baseCoin': 'SEILOR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '13873473.91786903', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SEIUSDT', 'lowercaseId': None, 'symbol': 'SEI/USDT', 'base': 'SEI', 'quote': 'USDT', 'settle': None, 'baseId': 'SEI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 384319.754035}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SEIUSDT', 'baseCoin': 'SEI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '384319.754035', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CYBERUSDT', 'lowercaseId': None, 'symbol': 'CYBER/USDT', 'base': 'CYBER', 'quote': 'USDT', 'settle': None, 'baseId': 'CYBER', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 27778.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CYBERUSDT', 'baseCoin': 'CYBER', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'both', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '27778', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ORDIUSDT', 'lowercaseId': None, 'symbol': 'ORDI/USDT', 'base': 'ORDI', 'quote': 'USDT', 'settle': None, 'baseId': 'ORDI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.18, 'max': 13636.611575}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ORDIUSDT', 'baseCoin': 'ORDI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.18', 'maxOrderQty': '13636.611575', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KAVAUSDT', 'lowercaseId': None, 'symbol': 'KAVA/USDT', 'base': 'KAVA', 'quote': 'USDT', 'settle': None, 'baseId': 'KAVA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.21, 'max': 60408.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'KAVAUSDT', 'baseCoin': 'KAVA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.21', 'maxOrderQty': '60408', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VVUSDT', 'lowercaseId': None, 'symbol': 'VV/USDT', 'base': 'VV', 'quote': 'USDT', 'settle': None, 'baseId': 'VV', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 70.0, 'max': 16388069.48541462}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VVUSDT', 'baseCoin': 'VV', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '70', 'maxOrderQty': '16388069.48541462', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SAILUSDT', 'lowercaseId': None, 'symbol': 'SAIL/USDT', 'base': 'SAIL', 'quote': 'USDT', 'settle': None, 'baseId': 'SAIL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 15625000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SAILUSDT', 'baseCoin': 'SAIL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '15625000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PYUSDUSDT', 'lowercaseId': None, 'symbol': 'PYUSD/USDT', 'base': 'PYUSD', 'quote': 'USDT', 'settle': None, 'baseId': 'PYUSD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50050.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PYUSDUSDT', 'baseCoin': 'PYUSD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '50050', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLEUR', 'lowercaseId': None, 'symbol': 'SOL/EUR', 'base': 'SOL', 'quote': 'EUR', 'settle': None, 'baseId': 'SOL', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.052, 'max': 10471.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'SOLEUR', 'baseCoin': 'SOL', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.001', 'quotePrecision': '0.00001', 'minOrderQty': '0.052', 'maxOrderQty': '10471', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDCEUR', 'lowercaseId': None, 'symbol': 'USDC/EUR', 'base': 'USDC', 'quote': 'EUR', 'settle': None, 'baseId': 'USDC', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 200000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'USDCEUR', 'baseCoin': 'USDC', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '200000', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADAEUR', 'lowercaseId': None, 'symbol': 'ADA/EUR', 'base': 'ADA', 'quote': 'EUR', 'settle': None, 'baseId': 'ADA', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.13, 'max': 825083.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ADAEUR', 'baseCoin': 'ADA', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.13', 'maxOrderQty': '825083', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOGEEUR', 'lowercaseId': None, 'symbol': 'DOGE/EUR', 'base': 'DOGE', 'quote': 'EUR', 'settle': None, 'baseId': 'DOGE', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 17.34, 'max': 3468008.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'DOGEEUR', 'baseCoin': 'DOGE', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '17.34', 'maxOrderQty': '3468008', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTCEUR', 'lowercaseId': None, 'symbol': 'LTC/EUR', 'base': 'LTC', 'quote': 'EUR', 'settle': None, 'baseId': 'LTC', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01682, 'max': 3363.04}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'LTCEUR', 'baseCoin': 'LTC', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.01682', 'maxOrderQty': '3363.04', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPEUR', 'lowercaseId': None, 'symbol': 'XRP/EUR', 'base': 'XRP', 'quote': 'EUR', 'settle': None, 'baseId': 'XRP', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.09, 'max': 417973.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'XRPEUR', 'baseCoin': 'XRP', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.09', 'maxOrderQty': '417973', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHEUR', 'lowercaseId': None, 'symbol': 'ETH/EUR', 'base': 'ETH', 'quote': 'EUR', 'settle': None, 'baseId': 'ETH', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00065, 'max': 130.4}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'ETHEUR', 'baseCoin': 'ETH', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00065', 'maxOrderQty': '130.4', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCEUR', 'lowercaseId': None, 'symbol': 'BTC/EUR', 'base': 'BTC', 'quote': 'EUR', 'settle': None, 'baseId': 'BTC', 'quoteId': 'EUR', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-06, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.1e-05, 'max': 8.27}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 200000.0}}, 'created': None, 'info': {'symbol': 'BTCEUR', 'baseCoin': 'BTC', 'quoteCoin': 'EUR', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.000001', 'quotePrecision': '0.00000001', 'minOrderQty': '0.000041', 'maxOrderQty': '8.27', 'minOrderAmt': '1', 'maxOrderAmt': '200000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VEXTUSDT', 'lowercaseId': None, 'symbol': 'VEXT/USDT', 'base': 'VEXT', 'quote': 'USDT', 'settle': None, 'baseId': 'VEXT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 25.0, 'max': 1250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VEXTUSDT', 'baseCoin': 'VEXT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '25', 'maxOrderQty': '1250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CTTUSDT', 'lowercaseId': None, 'symbol': 'CTT/USDT', 'base': 'CTT', 'quote': 'USDT', 'settle': None, 'baseId': 'CTT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 15151515.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CTTUSDT', 'baseCoin': 'CTT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '15151515', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NEXTUSDT', 'lowercaseId': None, 'symbol': 'NEXT/USDT', 'base': 'NEXT', 'quote': 'USDT', 'settle': None, 'baseId': 'NEXT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'NEXTUSDT', 'baseCoin': 'NEXT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KASUSDT', 'lowercaseId': None, 'symbol': 'KAS/USDT', 'base': 'KAS', 'quote': 'USDT', 'settle': None, 'baseId': 'KAS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 29.64, 'max': 1481921.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'KASUSDT', 'baseCoin': 'KAS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '29.64', 'maxOrderQty': '1481921', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NESSUSDT', 'lowercaseId': None, 'symbol': 'NESS/USDT', 'base': 'NESS', 'quote': 'USDT', 'settle': None, 'baseId': 'NESS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'NESSUSDT', 'baseCoin': 'NESS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CATUSDT', 'lowercaseId': None, 'symbol': 'CAT/USDT', 'base': 'CAT', 'quote': 'USDT', 'settle': None, 'baseId': 'CAT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 82781456.95364238}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CATUSDT', 'baseCoin': 'CAT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '82781456.95364238', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FETUSDT', 'lowercaseId': None, 'symbol': 'FET/USDT', 'base': 'FET', 'quote': 'USDT', 'settle': None, 'baseId': 'FET', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.65, 'max': 232558.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FETUSDT', 'baseCoin': 'FET', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.65', 'maxOrderQty': '232558', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LEVERUSDT', 'lowercaseId': None, 'symbol': 'LEVER/USDT', 'base': 'LEVER', 'quote': 'USDT', 'settle': None, 'baseId': 'LEVER', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 336.93, 'max': 37993920.97264438}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'LEVERUSDT', 'baseCoin': 'LEVER', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '336.93', 'maxOrderQty': '37993920.97264438', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VEGAUSDT', 'lowercaseId': None, 'symbol': 'VEGA/USDT', 'base': 'VEGA', 'quote': 'USDT', 'settle': None, 'baseId': 'VEGA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.5, 'max': 57930.714865}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VEGAUSDT', 'baseCoin': 'VEGA', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.5', 'maxOrderQty': '57930.714865', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZTXUSDT', 'lowercaseId': None, 'symbol': 'ZTX/USDT', 'base': 'ZTX', 'quote': 'USDT', 'settle': None, 'baseId': 'ZTX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 5000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ZTXUSDT', 'baseCoin': 'ZTX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '5000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JEFFUSDT', 'lowercaseId': None, 'symbol': 'JEFF/USDT', 'base': 'JEFF', 'quote': 'USDT', 'settle': None, 'baseId': 'JEFF', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 3333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'JEFFUSDT', 'baseCoin': 'JEFF', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '3333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PPTUSDT', 'lowercaseId': None, 'symbol': 'PPT/USDT', 'base': 'PPT', 'quote': 'USDT', 'settle': None, 'baseId': 'PPT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PPTUSDT', 'baseCoin': 'PPT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TUSDUSDT', 'lowercaseId': None, 'symbol': 'TUSD/USDT', 'base': 'TUSD', 'quote': 'USDT', 'settle': None, 'baseId': 'TUSD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50050.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TUSDUSDT', 'baseCoin': 'TUSD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '50050', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BEAMUSDT', 'lowercaseId': None, 'symbol': 'BEAM/USDT', 'base': 'BEAM', 'quote': 'USDT', 'settle': None, 'baseId': 'BEAM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 213.22, 'max': 10660981.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BEAMUSDT', 'baseCoin': 'BEAM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '213.22', 'maxOrderQty': '10660981', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'POLUSDT', 'lowercaseId': None, 'symbol': 'POL/USDT', 'base': 'POL', 'quote': 'USDT', 'settle': None, 'baseId': 'POL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.61, 'max': 80451.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'POLUSDT', 'baseCoin': 'POL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.61', 'maxOrderQty': '80451', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TIAUSDT', 'lowercaseId': None, 'symbol': 'TIA/USDT', 'base': 'TIA', 'quote': 'USDT', 'settle': None, 'baseId': 'TIA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TIAUSDT', 'baseCoin': 'TIA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '50000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TOKENUSDT', 'lowercaseId': None, 'symbol': 'TOKEN/USDT', 'base': 'TOKEN', 'quote': 'USDT', 'settle': None, 'baseId': 'TOKEN', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 66.67, 'max': 3333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TOKENUSDT', 'baseCoin': 'TOKEN', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '66.67', 'maxOrderQty': '3333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MEMEUSDT', 'lowercaseId': None, 'symbol': 'MEME/USDT', 'base': 'MEME', 'quote': 'USDT', 'settle': None, 'baseId': 'MEME', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MEMEUSDT', 'baseCoin': 'MEME', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '50000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SHRAPUSDT', 'lowercaseId': None, 'symbol': 'SHRAP/USDT', 'base': 'SHRAP', 'quote': 'USDT', 'settle': None, 'baseId': 'SHRAP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1515152.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SHRAPUSDT', 'baseCoin': 'SHRAP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1515152', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RPKUSDT', 'lowercaseId': None, 'symbol': 'RPK/USDT', 'base': 'RPK', 'quote': 'USDT', 'settle': None, 'baseId': 'RPK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'RPKUSDT', 'baseCoin': 'RPK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLIPUSDT', 'lowercaseId': None, 'symbol': 'FLIP/USDT', 'base': 'FLIP', 'quote': 'USDT', 'settle': None, 'baseId': 'FLIP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FLIPUSDT', 'baseCoin': 'FLIP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '100000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CRDSUSDT', 'lowercaseId': None, 'symbol': 'CRDS/USDT', 'base': 'CRDS', 'quote': 'USDT', 'settle': None, 'baseId': 'CRDS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 625000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CRDSUSDT', 'baseCoin': 'CRDS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '625000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VRTXUSDT', 'lowercaseId': None, 'symbol': 'VRTX/USDT', 'base': 'VRTX', 'quote': 'USDT', 'settle': None, 'baseId': 'VRTX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VRTXUSDT', 'baseCoin': 'VRTX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ROOTUSDT', 'lowercaseId': None, 'symbol': 'ROOT/USDT', 'base': 'ROOT', 'quote': 'USDT', 'settle': None, 'baseId': 'ROOT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 11999040.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ROOTUSDT', 'baseCoin': 'ROOT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '11999040', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PYTHUSDT', 'lowercaseId': None, 'symbol': 'PYTH/USDT', 'base': 'PYTH', 'quote': 'USDT', 'settle': None, 'baseId': 'PYTH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 5000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PYTHUSDT', 'baseCoin': 'PYTH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '5000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MLKUSDT', 'lowercaseId': None, 'symbol': 'MLK/USDT', 'base': 'MLK', 'quote': 'USDT', 'settle': None, 'baseId': 'MLK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.0, 'max': 200000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MLKUSDT', 'baseCoin': 'MLK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4', 'maxOrderQty': '200000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TVKUSDT', 'lowercaseId': None, 'symbol': 'TVK/USDT', 'base': 'TVK', 'quote': 'USDT', 'settle': None, 'baseId': 'TVK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TVKUSDT', 'baseCoin': 'TVK', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KUBUSDT', 'lowercaseId': None, 'symbol': 'KUB/USDT', 'base': 'KUB', 'quote': 'USDT', 'settle': None, 'baseId': 'KUB', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.7, 'max': 34970.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'KUBUSDT', 'baseCoin': 'KUB', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.7', 'maxOrderQty': '34970', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '5IREUSDT', 'lowercaseId': None, 'symbol': '5IRE/USDT', 'base': '5IRE', 'quote': 'USDT', 'settle': None, 'baseId': '5IRE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 833333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': '5IREUSDT', 'baseCoin': '5IRE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '833333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KCSUSDT', 'lowercaseId': None, 'symbol': 'KCS/USDT', 'base': 'KCS', 'quote': 'USDT', 'settle': None, 'baseId': 'KCS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.13, 'max': 6290.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'KCSUSDT', 'baseCoin': 'KCS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.13', 'maxOrderQty': '6290', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VANRYUSDT', 'lowercaseId': None, 'symbol': 'VANRY/USDT', 'base': 'VANRY', 'quote': 'USDT', 'settle': None, 'baseId': 'VANRY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 16.11, 'max': 805283.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VANRYUSDT', 'baseCoin': 'VANRY', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '16.11', 'maxOrderQty': '805283', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'INSPUSDT', 'lowercaseId': None, 'symbol': 'INSP/USDT', 'base': 'INSP', 'quote': 'USDT', 'settle': None, 'baseId': 'INSP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 3333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'INSPUSDT', 'baseCoin': 'INSP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '3333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JTOUSDT', 'lowercaseId': None, 'symbol': 'JTO/USDT', 'base': 'JTO', 'quote': 'USDT', 'settle': None, 'baseId': 'JTO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1666667.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'JTOUSDT', 'baseCoin': 'JTO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1666667', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'METHUSDT', 'lowercaseId': None, 'symbol': 'METH/USDT', 'base': 'METH', 'quote': 'USDT', 'settle': None, 'baseId': 'METH', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00044, 'max': 22.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'METHUSDT', 'baseCoin': 'METH', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.0000001', 'minOrderQty': '0.00044', 'maxOrderQty': '22', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.01'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'METHETH', 'lowercaseId': None, 'symbol': 'METH/ETH', 'base': 'METH', 'quote': 'ETH', 'settle': None, 'baseId': 'METH', 'quoteId': 'ETH', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1e-05, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.00044, 'max': 22.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 0.00044, 'max': 22.0}}, 'created': None, 'info': {'symbol': 'METHETH', 'baseCoin': 'METH', 'quoteCoin': 'ETH', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.00001', 'quotePrecision': '0.000000001', 'minOrderQty': '0.00044', 'maxOrderQty': '22', 'minOrderAmt': '0.00044', 'maxOrderAmt': '22'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CBKUSDT', 'lowercaseId': None, 'symbol': 'CBK/USDT', 'base': 'CBK', 'quote': 'USDT', 'settle': None, 'baseId': 'CBK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.11, 'max': 55377.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CBKUSDT', 'baseCoin': 'CBK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.11', 'maxOrderQty': '55377', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZIGUSDT', 'lowercaseId': None, 'symbol': 'ZIG/USDT', 'base': 'ZIG', 'quote': 'USDT', 'settle': None, 'baseId': 'ZIG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 31.82, 'max': 1590837.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ZIGUSDT', 'baseCoin': 'ZIG', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '31.82', 'maxOrderQty': '1590837', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VPRUSDT', 'lowercaseId': None, 'symbol': 'VPR/USDT', 'base': 'VPR', 'quote': 'USDT', 'settle': None, 'baseId': 'VPR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 3333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VPRUSDT', 'baseCoin': 'VPR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '3333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRCUSDT', 'lowercaseId': None, 'symbol': 'TRC/USDT', 'base': 'TRC', 'quote': 'USDT', 'settle': None, 'baseId': 'TRC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.8, 'max': 830702.7745473}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'TRCUSDT', 'baseCoin': 'TRC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '10.8', 'maxOrderQty': '830702.7745473', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SEIUSDC', 'lowercaseId': None, 'symbol': 'SEI/USDC', 'base': 'SEI', 'quote': 'USDC', 'settle': None, 'baseId': 'SEI', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 4.37, 'max': 218341.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SEIUSDC', 'baseCoin': 'SEI', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '4.37', 'maxOrderQty': '218341', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FMCUSDT', 'lowercaseId': None, 'symbol': 'FMC/USDT', 'base': 'FMC', 'quote': 'USDT', 'settle': None, 'baseId': 'FMC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 138888889.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FMCUSDT', 'baseCoin': 'FMC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '138888889', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MYRIAUSDT', 'lowercaseId': None, 'symbol': 'MYRIA/USDT', 'base': 'MYRIA', 'quote': 'USDT', 'settle': None, 'baseId': 'MYRIA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 166.67, 'max': 8333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MYRIAUSDT', 'baseCoin': 'MYRIA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '166.67', 'maxOrderQty': '8333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AKIUSDT', 'lowercaseId': None, 'symbol': 'AKI/USDT', 'base': 'AKI', 'quote': 'USDT', 'settle': None, 'baseId': 'AKI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 5000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AKIUSDT', 'baseCoin': 'AKI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '5000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MBOXUSDT', 'lowercaseId': None, 'symbol': 'MBOX/USDT', 'base': 'MBOX', 'quote': 'USDT', 'settle': None, 'baseId': 'MBOX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 3.32, 'max': 165782.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MBOXUSDT', 'baseCoin': 'MBOX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '3.32', 'maxOrderQty': '165782', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IRLUSDT', 'lowercaseId': None, 'symbol': 'IRL/USDT', 'base': 'IRL', 'quote': 'USDT', 'settle': None, 'baseId': 'IRL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 833333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'IRLUSDT', 'baseCoin': 'IRL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '833333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARTYUSDT', 'lowercaseId': None, 'symbol': 'ARTY/USDT', 'base': 'ARTY', 'quote': 'USDT', 'settle': None, 'baseId': 'ARTY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 151515.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ARTYUSDT', 'baseCoin': 'ARTY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '151515', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GRAPEUSDT', 'lowercaseId': None, 'symbol': 'GRAPE/USDT', 'base': 'GRAPE', 'quote': 'USDT', 'settle': None, 'baseId': 'GRAPE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.01, 'max': 2105263.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'GRAPEUSDT', 'baseCoin': 'GRAPE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '1', 'quotePrecision': '0.0000001', 'minOrderQty': '0.01', 'maxOrderQty': '2105263', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COQUSDT', 'lowercaseId': None, 'symbol': 'COQ/USDT', 'base': 'COQ', 'quote': 'USDT', 'settle': None, 'baseId': 'COQ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-09, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 356252.2, 'max': 63532401524.77763}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'COQUSDT', 'baseCoin': 'COQ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.0000000001', 'minOrderQty': '356252.2', 'maxOrderQty': '63532401524.7776365947', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AIOZUSDT', 'lowercaseId': None, 'symbol': 'AIOZ/USDT', 'base': 'AIOZ', 'quote': 'USDT', 'settle': None, 'baseId': 'AIOZ', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 10.0, 'max': 388500.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AIOZUSDT', 'baseCoin': 'AIOZ', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '10', 'maxOrderQty': '388500', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GGUSDT', 'lowercaseId': None, 'symbol': 'GG/USDT', 'base': 'GG', 'quote': 'USDT', 'settle': None, 'baseId': 'GG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'GGUSDT', 'baseCoin': 'GG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VICUSDT', 'lowercaseId': None, 'symbol': 'VIC/USDT', 'base': 'VIC', 'quote': 'USDT', 'settle': None, 'baseId': 'VIC', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.2, 'max': 60694.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'VICUSDT', 'baseCoin': 'VIC', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1.2', 'maxOrderQty': '60694', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COMUSDT', 'lowercaseId': None, 'symbol': 'COM/USDT', 'base': 'COM', 'quote': 'USDT', 'settle': None, 'baseId': 'COM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.3, 'max': 29760.133325}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'COMUSDT', 'baseCoin': 'COM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.3', 'maxOrderQty': '29760.133325', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RATSUSDT', 'lowercaseId': None, 'symbol': 'RATS/USDT', 'base': 'RATS', 'quote': 'USDT', 'settle': None, 'baseId': 'RATS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2934.3, 'max': 232558139.5348837}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'RATSUSDT', 'baseCoin': 'RATS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '2934.3', 'maxOrderQty': '232558139.534883721', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SATSUSDT', 'lowercaseId': None, 'symbol': 'SATS/USDT', 'base': 'SATS', 'quote': 'USDT', 'settle': None, 'baseId': 'SATS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-10, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1194315.1, 'max': 135135135135.13513}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SATSUSDT', 'baseCoin': 'SATS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.1', 'quotePrecision': '0.00000000001', 'minOrderQty': '1194315.1', 'maxOrderQty': '135135135135.13513513514', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZKFUSDT', 'lowercaseId': None, 'symbol': 'ZKF/USDT', 'base': 'ZKF', 'quote': 'USDT', 'settle': None, 'baseId': 'ZKF', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ZKFUSDT', 'baseCoin': 'ZKF', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '50000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PORT3USDT', 'lowercaseId': None, 'symbol': 'PORT3/USDT', 'base': 'PORT3', 'quote': 'USDT', 'settle': None, 'baseId': 'PORT3', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1666667.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PORT3USDT', 'baseCoin': 'PORT3', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1666667', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XAIUSDT', 'lowercaseId': None, 'symbol': 'XAI/USDT', 'base': 'XAI', 'quote': 'USDT', 'settle': None, 'baseId': 'XAI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1428571.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'XAIUSDT', 'baseCoin': 'XAI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1428571', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ONDOUSDT', 'lowercaseId': None, 'symbol': 'ONDO/USDT', 'base': 'ONDO', 'quote': 'USDT', 'settle': None, 'baseId': 'ONDO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 909091.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ONDOUSDT', 'baseCoin': 'ONDO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '909091', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HONUSDT', 'lowercaseId': None, 'symbol': 'HON/USDT', 'base': 'HON', 'quote': 'USDT', 'settle': None, 'baseId': 'HON', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 3333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'HONUSDT', 'baseCoin': 'HON', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '3333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FARUSDT', 'lowercaseId': None, 'symbol': 'FAR/USDT', 'base': 'FAR', 'quote': 'USDT', 'settle': None, 'baseId': 'FAR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 12500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FARUSDT', 'baseCoin': 'FAR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '12500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SQRUSDT', 'lowercaseId': None, 'symbol': 'SQR/USDT', 'base': 'SQR', 'quote': 'USDT', 'settle': None, 'baseId': 'SQR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SQRUSDT', 'baseCoin': 'SQR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DUELUSDT', 'lowercaseId': None, 'symbol': 'DUEL/USDT', 'base': 'DUEL', 'quote': 'USDT', 'settle': None, 'baseId': 'DUEL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 25000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DUELUSDT', 'baseCoin': 'DUEL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '25000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APPUSDT', 'lowercaseId': None, 'symbol': 'APP/USDT', 'base': 'APP', 'quote': 'USDT', 'settle': None, 'baseId': 'APP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 7462687.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'APPUSDT', 'baseCoin': 'APP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '7462687', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SAROSUSDT', 'lowercaseId': None, 'symbol': 'SAROS/USDT', 'base': 'SAROS', 'quote': 'USDT', 'settle': None, 'baseId': 'SAROS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SAROSUSDT', 'baseCoin': 'SAROS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '50000000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDYUSDT', 'lowercaseId': None, 'symbol': 'USDY/USDT', 'base': 'USDY', 'quote': 'USDT', 'settle': None, 'baseId': 'USDY', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'USDYUSDT', 'baseCoin': 'USDY', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '50000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MUSDUSDT', 'lowercaseId': None, 'symbol': 'MUSD/USDT', 'base': 'MUSD', 'quote': 'USDT', 'settle': None, 'baseId': 'MUSD', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MUSDUSDT', 'baseCoin': 'MUSD', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '50000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANTAUSDT', 'lowercaseId': None, 'symbol': 'MANTA/USDT', 'base': 'MANTA', 'quote': 'USDT', 'settle': None, 'baseId': 'MANTA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MANTAUSDT', 'baseCoin': 'MANTA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'utaOnly', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '100000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MYROUSDT', 'lowercaseId': None, 'symbol': 'MYRO/USDT', 'base': 'MYRO', 'quote': 'USDT', 'settle': None, 'baseId': 'MYRO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.56, 'max': 1077586.206897}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MYROUSDT', 'baseCoin': 'MYRO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.56', 'maxOrderQty': '1077586.206897', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GTAIUSDT', 'lowercaseId': None, 'symbol': 'GTAI/USDT', 'base': 'GTAI', 'quote': 'USDT', 'settle': None, 'baseId': 'GTAI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'GTAIUSDT', 'baseCoin': 'GTAI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OMNIUSDT', 'lowercaseId': None, 'symbol': 'OMNI/USDT', 'base': 'OMNI', 'quote': 'USDT', 'settle': None, 'baseId': 'OMNI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 200.0, 'max': 151057401.81268883}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'OMNIUSDT', 'baseCoin': 'OMNI', 'quoteCoin': 'USDT', 'innovation': '1', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '200', 'maxOrderQty': '151057401.812688822', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DMAILUSDT', 'lowercaseId': None, 'symbol': 'DMAIL/USDT', 'base': 'DMAIL', 'quote': 'USDT', 'settle': None, 'baseId': 'DMAIL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 125000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DMAILUSDT', 'baseCoin': 'DMAIL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '125000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AFGUSDT', 'lowercaseId': None, 'symbol': 'AFG/USDT', 'base': 'AFG', 'quote': 'USDT', 'settle': None, 'baseId': 'AFG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1428571.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AFGUSDT', 'baseCoin': 'AFG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1428571', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DYMUSDT', 'lowercaseId': None, 'symbol': 'DYM/USDT', 'base': 'DYM', 'quote': 'USDT', 'settle': None, 'baseId': 'DYM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 12500.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DYMUSDT', 'baseCoin': 'DYM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '12500', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZETAUSDT', 'lowercaseId': None, 'symbol': 'ZETA/USDT', 'base': 'ZETA', 'quote': 'USDT', 'settle': None, 'baseId': 'ZETA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 350000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ZETAUSDT', 'baseCoin': 'ZETA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '350000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JUPUSDT', 'lowercaseId': None, 'symbol': 'JUP/USDT', 'base': 'JUP', 'quote': 'USDT', 'settle': None, 'baseId': 'JUP', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 166667.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'JUPUSDT', 'baseCoin': 'JUP', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '166667', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MXMUSDT', 'lowercaseId': None, 'symbol': 'MXM/USDT', 'base': 'MXM', 'quote': 'USDT', 'settle': None, 'baseId': 'MXM', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1111111.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MXMUSDT', 'baseCoin': 'MXM', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1111111', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DEFIUSDT', 'lowercaseId': None, 'symbol': 'DEFI/USDT', 'base': 'DEFI', 'quote': 'USDT', 'settle': None, 'baseId': 'DEFI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DEFIUSDT', 'baseCoin': 'DEFI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FIREUSDT', 'lowercaseId': None, 'symbol': 'FIRE/USDT', 'base': 'FIRE', 'quote': 'USDT', 'settle': None, 'baseId': 'FIRE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'FIREUSDT', 'baseCoin': 'FIRE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '100000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MINUUSDT', 'lowercaseId': None, 'symbol': 'MINU/USDT', 'base': 'MINU', 'quote': 'USDT', 'settle': None, 'baseId': 'MINU', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 109.46, 'max': 8219628.47279303}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MINUUSDT', 'baseCoin': 'MINU', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '109.46', 'maxOrderQty': '8219628.47279303', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MAVIAUSDT', 'lowercaseId': None, 'symbol': 'MAVIA/USDT', 'base': 'MAVIA', 'quote': 'USDT', 'settle': None, 'baseId': 'MAVIA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 125000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'MAVIAUSDT', 'baseCoin': 'MAVIA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '125000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PURSEUSDT', 'lowercaseId': None, 'symbol': 'PURSE/USDT', 'base': 'PURSE', 'quote': 'USDT', 'settle': None, 'baseId': 'PURSE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2150.0, 'max': 162074554.2949757}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PURSEUSDT', 'baseCoin': 'PURSE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000000001', 'minOrderQty': '2150', 'maxOrderQty': '162074554.294975689', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LENDSUSDT', 'lowercaseId': None, 'symbol': 'LENDS/USDT', 'base': 'LENDS', 'quote': 'USDT', 'settle': None, 'baseId': 'LENDS', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'LENDSUSDT', 'baseCoin': 'LENDS', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ROUTEUSDT', 'lowercaseId': None, 'symbol': 'ROUTE/USDT', 'base': 'ROUTE', 'quote': 'USDT', 'settle': None, 'baseId': 'ROUTE', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.2, 'max': 11086.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ROUTEUSDT', 'baseCoin': 'ROUTE', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.2', 'maxOrderQty': '11086', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BCUTUSDT', 'lowercaseId': None, 'symbol': 'BCUT/USDT', 'base': 'BCUT', 'quote': 'USDT', 'settle': None, 'baseId': 'BCUT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 625000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BCUTUSDT', 'baseCoin': 'BCUT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '625000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALTUSDT', 'lowercaseId': None, 'symbol': 'ALT/USDT', 'base': 'ALT', 'quote': 'USDT', 'settle': None, 'baseId': 'ALT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 2.31, 'max': 115607.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ALTUSDT', 'baseCoin': 'ALT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '2.31', 'maxOrderQty': '115607', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HTXUSDT', 'lowercaseId': None, 'symbol': 'HTX/USDT', 'base': 'HTX', 'quote': 'USDT', 'settle': None, 'baseId': 'HTX', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-09, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 639795.27, 'max': 31989763276.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'HTXUSDT', 'baseCoin': 'HTX', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000000001', 'minOrderQty': '639795.27', 'maxOrderQty': '31989763276', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CSPRUSDT', 'lowercaseId': None, 'symbol': 'CSPR/USDT', 'base': 'CSPR', 'quote': 'USDT', 'settle': None, 'baseId': 'CSPR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 26.03, 'max': 1301744.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CSPRUSDT', 'baseCoin': 'CSPR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '26.03', 'maxOrderQty': '1301744', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STRKUSDC', 'lowercaseId': None, 'symbol': 'STRK/USDC', 'base': 'STRK', 'quote': 'USDC', 'settle': None, 'baseId': 'STRK', 'quoteId': 'USDC', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.56, 'max': 27933.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'STRKUSDC', 'baseCoin': 'STRK', 'quoteCoin': 'USDC', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.56', 'maxOrderQty': '27933', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STRKUSDT', 'lowercaseId': None, 'symbol': 'STRK/USDT', 'base': 'STRK', 'quote': 'USDT', 'settle': None, 'baseId': 'STRK', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.56, 'max': 27933.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'STRKUSDT', 'baseCoin': 'STRK', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.56', 'maxOrderQty': '27933', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CPOOLUSDT', 'lowercaseId': None, 'symbol': 'CPOOL/USDT', 'base': 'CPOOL', 'quote': 'USDT', 'settle': None, 'baseId': 'CPOOL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1250000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'CPOOLUSDT', 'baseCoin': 'CPOOL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1250000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QORPOUSDT', 'lowercaseId': None, 'symbol': 'QORPO/USDT', 'base': 'QORPO', 'quote': 'USDT', 'settle': None, 'baseId': 'QORPO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1515152.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'QORPOUSDT', 'baseCoin': 'QORPO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1515152', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BBLUSDT', 'lowercaseId': None, 'symbol': 'BBL/USDT', 'base': 'BBL', 'quote': 'USDT', 'settle': None, 'baseId': 'BBL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1666667.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BBLUSDT', 'baseCoin': 'BBL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1666667', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DECHATUSDT', 'lowercaseId': None, 'symbol': 'DECHAT/USDT', 'base': 'DECHAT', 'quote': 'USDT', 'settle': None, 'baseId': 'DECHAT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 90909.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'DECHATUSDT', 'baseCoin': 'DECHAT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '90909', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SQTUSDT', 'lowercaseId': None, 'symbol': 'SQT/USDT', 'base': 'SQT', 'quote': 'USDT', 'settle': None, 'baseId': 'SQT', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 7142857.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SQTUSDT', 'baseCoin': 'SQT', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '1', 'maxOrderQty': '7142857', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PORTALUSDT', 'lowercaseId': None, 'symbol': 'PORTAL/USDT', 'base': 'PORTAL', 'quote': 'USDT', 'settle': None, 'baseId': 'PORTAL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 333333.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'PORTALUSDT', 'baseCoin': 'PORTAL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '333333', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AEGUSDT', 'lowercaseId': None, 'symbol': 'AEG/USDT', 'base': 'AEG', 'quote': 'USDT', 'settle': None, 'baseId': 'AEG', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AEGUSDT', 'baseCoin': 'AEG', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SCAUSDT', 'lowercaseId': None, 'symbol': 'SCA/USDT', 'base': 'SCA', 'quote': 'USDT', 'settle': None, 'baseId': 'SCA', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 416667.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'SCAUSDT', 'baseCoin': 'SCA', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '416667', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AEVOUSDT', 'lowercaseId': None, 'symbol': 'AEVO/USDT', 'base': 'AEVO', 'quote': 'USDT', 'settle': None, 'baseId': 'AEVO', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 50000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'AEVOUSDT', 'baseCoin': 'AEVO', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '1', 'maxOrderQty': '50000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NIBIUSDT', 'lowercaseId': None, 'symbol': 'NIBI/USDT', 'base': 'NIBI', 'quote': 'USDT', 'settle': None, 'baseId': 'NIBI', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1874766.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'NIBIUSDT', 'baseCoin': 'NIBI', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1874766', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STARUSDT', 'lowercaseId': None, 'symbol': 'STAR/USDT', 'base': 'STAR', 'quote': 'USDT', 'settle': None, 'baseId': 'STAR', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 2500000.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'STARUSDT', 'baseCoin': 'STAR', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '2500000', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NGLUSDT', 'lowercaseId': None, 'symbol': 'NGL/USDT', 'base': 'NGL', 'quote': 'USDT', 'settle': None, 'baseId': 'NGL', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 1.0, 'max': 1111111.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'NGLUSDT', 'baseCoin': 'NGL', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.0000001', 'minOrderQty': '1', 'maxOrderQty': '1111111', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.00001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZENDUSDT', 'lowercaseId': None, 'symbol': 'ZEND/USDT', 'base': 'ZEND', 'quote': 'USDT', 'settle': None, 'baseId': 'ZEND', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 0.3, 'max': 142857.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'ZENDUSDT', 'baseCoin': 'ZEND', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.000001', 'minOrderQty': '0.3', 'maxOrderQty': '142857', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.0001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BOMEUSDT', 'lowercaseId': None, 'symbol': 'BOME/USDT', 'base': 'BOME', 'quote': 'USDT', 'settle': None, 'baseId': 'BOME', 'quoteId': 'USDT', 'settleId': None, 'type': 'spot', 'spot': True, 'margin': None, 'swap': False, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': False, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.001, 'maker': 0.001, 'contractSize': None, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': None}, 'amount': {'min': 50.0, 'max': 3880180.0}, 'price': {'min': None, 'max': None}, 'cost': {'min': 1.0, 'max': 50000.0}}, 'created': None, 'info': {'symbol': 'BOMEUSDT', 'baseCoin': 'BOME', 'quoteCoin': 'USDT', 'innovation': '0', 'status': 'Trading', 'marginTrading': 'none', 'lotSizeFilter': {'basePrecision': '0.01', 'quotePrecision': '0.00000001', 'minOrderQty': '50', 'maxOrderQty': '3880180', 'minOrderAmt': '1', 'maxOrderAmt': '50000'}, 'priceFilter': {'tickSize': '0.000001'}, 'riskParameters': {'limitParameter': '0.05', 'marketParameter': '0.05'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000000AIDOGEUSDT', 'lowercaseId': None, 'symbol': '10000000AIDOGE/USDT:USDT', 'base': '10000000AIDOGE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000000AIDOGE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 25000000.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1709542899000, 'info': {'symbol': '10000000AIDOGEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000000AIDOGE', 'quoteCoin': 'USDT', 'launchTime': '1709542899000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '25000000', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '25000000', 'maxMktOrderQty': '5000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000COQUSDT', 'lowercaseId': None, 'symbol': '10000COQ/USDT:USDT', 'base': '10000COQ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000COQ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 2500000.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1710233332000, 'info': {'symbol': '10000COQUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000COQ', 'quoteCoin': 'USDT', 'launchTime': '1710233332000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2500000', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2500000', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000LADYSUSDT', 'lowercaseId': None, 'symbol': '10000LADYS/USDT:USDT', 'base': '10000LADYS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000LADYS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 19986400.0}, 'price': {'min': 1e-07, 'max': 0.1999998}, 'cost': {'min': None, 'max': None}}, 'created': 1683802102000, 'info': {'symbol': '10000LADYSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000LADYS', 'quoteCoin': 'USDT', 'launchTime': '1683802102000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000001', 'maxPrice': '0.1999998', 'tickSize': '0.0000001'}, 'lotSizeFilter': {'maxOrderQty': '19986400', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '19986400', 'maxMktOrderQty': '18000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000NFTUSDT', 'lowercaseId': None, 'symbol': '10000NFT/USDT:USDT', 'base': '10000NFT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000NFT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 2107460.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1643007175000, 'info': {'symbol': '10000NFTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000NFT', 'quoteCoin': 'USDT', 'launchTime': '1643007175000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '2107460', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2107460', 'maxMktOrderQty': '445100'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000SATSUSDT', 'lowercaseId': None, 'symbol': '10000SATS/USDT:USDT', 'base': '10000SATS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000SATS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 39030200.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1700127695000, 'info': {'symbol': '10000SATSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000SATS', 'quoteCoin': 'USDT', 'launchTime': '1700127695000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '39030200', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '39030200', 'maxMktOrderQty': '12000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000STARLUSDT', 'lowercaseId': None, 'symbol': '10000STARL/USDT:USDT', 'base': '10000STARL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000STARL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 10.0, 'max': 872160.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1697777803000, 'info': {'symbol': '10000STARLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000STARL', 'quoteCoin': 'USDT', 'launchTime': '1697777803000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '872160', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '872160', 'maxMktOrderQty': '600000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '10000WENUSDT', 'lowercaseId': None, 'symbol': '10000WEN/USDT:USDT', 'base': '10000WEN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '10000WEN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 15000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1706689209000, 'info': {'symbol': '10000WENUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '10000WEN', 'quoteCoin': 'USDT', 'launchTime': '1706689209000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '15000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '15000', 'maxMktOrderQty': '15000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000BONKUSDT', 'lowercaseId': None, 'symbol': '1000BONK/USDT:USDT', 'base': '1000BONK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000BONK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 11095600.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1672971039000, 'info': {'symbol': '1000BONKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000BONK', 'quoteCoin': 'USDT', 'launchTime': '1672971039000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000010', 'maxPrice': '1.9999980', 'tickSize': '0.0000010'}, 'lotSizeFilter': {'maxOrderQty': '11095600', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '11095600', 'maxMktOrderQty': '8000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000BTTUSDT', 'lowercaseId': None, 'symbol': '1000BTT/USDT:USDT', 'base': '1000BTT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000BTT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 49020700.0}, 'price': {'min': 1e-07, 'max': 0.1999998}, 'cost': {'min': None, 'max': None}}, 'created': 1645769298000, 'info': {'symbol': '1000BTTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000BTT', 'quoteCoin': 'USDT', 'launchTime': '1645769298000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000001', 'maxPrice': '0.1999998', 'tickSize': '0.0000001'}, 'lotSizeFilter': {'maxOrderQty': '49020700', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '49020700', 'maxMktOrderQty': '5000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000FLOKIUSDT', 'lowercaseId': None, 'symbol': '1000FLOKI/USDT:USDT', 'base': '1000FLOKI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000FLOKI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 3304355.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1677228986000, 'info': {'symbol': '1000FLOKIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000FLOKI', 'quoteCoin': 'USDT', 'launchTime': '1677228986000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '3304355', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3304355', 'maxMktOrderQty': '800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000LUNCUSDT', 'lowercaseId': None, 'symbol': '1000LUNC/USDT:USDT', 'base': '1000LUNC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000LUNC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 2317285.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1662681601000, 'info': {'symbol': '1000LUNCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000LUNC', 'quoteCoin': 'USDT', 'launchTime': '1662681601000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2317285', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '2317285', 'maxMktOrderQty': '270000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000PEPEUSDT', 'lowercaseId': None, 'symbol': '1000PEPE/USDT:USDT', 'base': '1000PEPE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000PEPE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 100.0, 'max': 133721300.0}, 'price': {'min': 1e-07, 'max': 0.1999998}, 'cost': {'min': None, 'max': None}}, 'created': 1683108271000, 'info': {'symbol': '1000PEPEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000PEPE', 'quoteCoin': 'USDT', 'launchTime': '1683108271000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000001', 'maxPrice': '0.1999998', 'tickSize': '0.0000001'}, 'lotSizeFilter': {'maxOrderQty': '133721300', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '133721300', 'maxMktOrderQty': '112500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000RATSUSDT', 'lowercaseId': None, 'symbol': '1000RATS/USDT:USDT', 'base': '1000RATS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000RATS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 10.0, 'max': 431360.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1700633654000, 'info': {'symbol': '1000RATSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000RATS', 'quoteCoin': 'USDT', 'launchTime': '1700633654000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '431360', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '431360', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000TURBOUSDT', 'lowercaseId': None, 'symbol': '1000TURBO/USDT:USDT', 'base': '1000TURBO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000TURBO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 75000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1709205139000, 'info': {'symbol': '1000TURBOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000TURBO', 'quoteCoin': 'USDT', 'launchTime': '1709205139000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '75000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '75000', 'maxMktOrderQty': '15000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1000XECUSDT', 'lowercaseId': None, 'symbol': '1000XEC/USDT:USDT', 'base': '1000XEC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1000XEC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 2212900.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1649820036000, 'info': {'symbol': '1000XECUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1000XEC', 'quoteCoin': 'USDT', 'launchTime': '1649820036000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2212900', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2212900', 'maxMktOrderQty': '800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1CATUSDT', 'lowercaseId': None, 'symbol': '1CAT/USDT:USDT', 'base': '1CAT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1CAT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 2366990.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1703668037000, 'info': {'symbol': '1CATUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1CAT', 'quoteCoin': 'USDT', 'launchTime': '1703668037000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '2366990', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2366990', 'maxMktOrderQty': '1500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': '1INCHUSDT', 'lowercaseId': None, 'symbol': '1INCH/USDT:USDT', 'base': '1INCH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': '1INCH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 537930.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638748800000, 'info': {'symbol': '1INCHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': '1INCH', 'quoteCoin': 'USDT', 'launchTime': '1638748800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '537930.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '537930.0', 'maxMktOrderQty': '100000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AAVEUSDT', 'lowercaseId': None, 'symbol': 'AAVE/USDT:USDT', 'base': 'AAVE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AAVE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 6085.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1620897660000, 'info': {'symbol': 'AAVEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AAVE', 'quoteCoin': 'USDT', 'launchTime': '1620897660000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '6085.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '6085.00', 'maxMktOrderQty': '1100.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ACEUSDT', 'lowercaseId': None, 'symbol': 'ACE/USDT:USDT', 'base': 'ACE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ACE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 16545.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1702882175000, 'info': {'symbol': 'ACEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ACE', 'quoteCoin': 'USDT', 'launchTime': '1702882175000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '16545.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '16545.0', 'maxMktOrderQty': '8000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ACHUSDT', 'lowercaseId': None, 'symbol': 'ACH/USDT:USDT', 'base': 'ACH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ACH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 3348390.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1649405257000, 'info': {'symbol': 'ACHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ACH', 'quoteCoin': 'USDT', 'launchTime': '1649405257000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '3348390', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '3348390', 'maxMktOrderQty': '920000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADAUSDT', 'lowercaseId': None, 'symbol': 'ADA/USDT:USDT', 'base': 'ADA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ADA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 1.0, 'max': 1945050.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1610668800000, 'info': {'symbol': 'ADAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ADA', 'quoteCoin': 'USDT', 'launchTime': '1610668800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '1945050', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1945050', 'maxMktOrderQty': '800200'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AERGOUSDT', 'lowercaseId': None, 'symbol': 'AERGO/USDT:USDT', 'base': 'AERGO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AERGO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 120000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1700129246000, 'info': {'symbol': 'AERGOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AERGO', 'quoteCoin': 'USDT', 'launchTime': '1700129246000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '120000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '120000', 'maxMktOrderQty': '120000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AEVOUSDT', 'lowercaseId': None, 'symbol': 'AEVO/USDT:USDT', 'base': 'AEVO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AEVO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 35000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1710327014000, 'info': {'symbol': 'AEVOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AEVO', 'quoteCoin': 'USDT', 'launchTime': '1710327014000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '35000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '35000.0', 'maxMktOrderQty': '7000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGIUSDT', 'lowercaseId': None, 'symbol': 'AGI/USDT:USDT', 'base': 'AGI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AGI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 122270.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1700209664000, 'info': {'symbol': 'AGIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AGI', 'quoteCoin': 'USDT', 'launchTime': '1700209664000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '122270', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '122270', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGIXUSDT', 'lowercaseId': None, 'symbol': 'AGIX/USDT:USDT', 'base': 'AGIX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AGIX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 702630.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1675929184000, 'info': {'symbol': 'AGIXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AGIX', 'quoteCoin': 'USDT', 'launchTime': '1675929184000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '702630', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '702630', 'maxMktOrderQty': '300000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AGLDUSDT', 'lowercaseId': None, 'symbol': 'AGLD/USDT:USDT', 'base': 'AGLD', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AGLD', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 61335.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1650608721000, 'info': {'symbol': 'AGLDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AGLD', 'quoteCoin': 'USDT', 'launchTime': '1650608721000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '61335.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '61335.0', 'maxMktOrderQty': '24000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AIUSDT', 'lowercaseId': None, 'symbol': 'AI/USDT:USDT', 'base': 'AI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 133630.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1705405869000, 'info': {'symbol': 'AIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AI', 'quoteCoin': 'USDT', 'launchTime': '1705405869000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '133630.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '133630.0', 'maxMktOrderQty': '60000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AKROUSDT', 'lowercaseId': None, 'symbol': 'AKRO/USDT:USDT', 'base': 'AKRO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AKRO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 8629100.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1653462381000, 'info': {'symbol': 'AKROUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AKRO', 'quoteCoin': 'USDT', 'launchTime': '1653462381000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '8629100', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '8629100', 'maxMktOrderQty': '1024700'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALGOUSDT', 'lowercaseId': None, 'symbol': 'ALGO/USDT:USDT', 'base': 'ALGO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ALGO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 2458445.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1632355200000, 'info': {'symbol': 'ALGOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ALGO', 'quoteCoin': 'USDT', 'launchTime': '1632355200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '2458445.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '2458445.0', 'maxMktOrderQty': '414200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALICEUSDT', 'lowercaseId': None, 'symbol': 'ALICE/USDT:USDT', 'base': 'ALICE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ALICE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 58820.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'ALICEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ALICE', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '58820.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '58820.0', 'maxMktOrderQty': '10240.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALPACAUSDT', 'lowercaseId': None, 'symbol': 'ALPACA/USDT:USDT', 'base': 'ALPACA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ALPACA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 180000.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1690957298000, 'info': {'symbol': 'ALPACAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ALPACA', 'quoteCoin': 'USDT', 'launchTime': '1690957298000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '180000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '180000', 'maxMktOrderQty': '180000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALPHAUSDT', 'lowercaseId': None, 'symbol': 'ALPHA/USDT:USDT', 'base': 'ALPHA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ALPHA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 337330.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1648626100000, 'info': {'symbol': 'ALPHAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ALPHA', 'quoteCoin': 'USDT', 'launchTime': '1648626100000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '337330', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '337330', 'maxMktOrderQty': '200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.04', 'lowerFundingRate': '-0.04'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ALTUSDT', 'lowercaseId': None, 'symbol': 'ALT/USDT:USDT', 'base': 'ALT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ALT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 364770.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1706181459000, 'info': {'symbol': 'ALTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ALT', 'quoteCoin': 'USDT', 'launchTime': '1706181459000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '364770', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '364770', 'maxMktOrderQty': '40000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AMBUSDT', 'lowercaseId': None, 'symbol': 'AMB/USDT:USDT', 'base': 'AMB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AMB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 9832240.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1685947506000, 'info': {'symbol': 'AMBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AMB', 'quoteCoin': 'USDT', 'launchTime': '1685947506000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '9832240', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '9832240', 'maxMktOrderQty': '1500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ANKRUSDT', 'lowercaseId': None, 'symbol': 'ANKR/USDT:USDT', 'base': 'ANKR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ANKR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 3611220.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1637712000000, 'info': {'symbol': 'ANKRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ANKR', 'quoteCoin': 'USDT', 'launchTime': '1637712000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '3611220', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3611220', 'maxMktOrderQty': '720000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ANTUSDT', 'lowercaseId': None, 'symbol': 'ANT/USDT:USDT', 'base': 'ANT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ANT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 19393.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1639672939000, 'info': {'symbol': 'ANTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ANT', 'quoteCoin': 'USDT', 'launchTime': '1639672939000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '19393.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '19393.0', 'maxMktOrderQty': '3800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APEUSDT', 'lowercaseId': None, 'symbol': 'APE/USDT:USDT', 'base': 'APE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'APE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 329435.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1647571477000, 'info': {'symbol': 'APEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'APE', 'quoteCoin': 'USDT', 'launchTime': '1647571477000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '329435.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '329435.0', 'maxMktOrderQty': '31950.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'API3USDT', 'lowercaseId': None, 'symbol': 'API3/USDT:USDT', 'base': 'API3', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'API3', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 102160.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1646019009000, 'info': {'symbol': 'API3USDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'API3', 'quoteCoin': 'USDT', 'launchTime': '1646019009000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '102160.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '102160.0', 'maxMktOrderQty': '12600.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'APTUSDT', 'lowercaseId': None, 'symbol': 'APT/USDT:USDT', 'base': 'APT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'APT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 41010.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1666107272000, 'info': {'symbol': 'APTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'APT', 'quoteCoin': 'USDT', 'launchTime': '1666107272000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '41010.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '41010.00', 'maxMktOrderQty': '39375.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARBUSDT', 'lowercaseId': None, 'symbol': 'ARB/USDT:USDT', 'base': 'ARB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ARB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 460830.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1679563660000, 'info': {'symbol': 'ARBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ARB', 'quoteCoin': 'USDT', 'launchTime': '1679563660000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '460830.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '460830.0', 'maxMktOrderQty': '180000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARKMUSDT', 'lowercaseId': None, 'symbol': 'ARKM/USDT:USDT', 'base': 'ARKM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ARKM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 139200.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1690508471000, 'info': {'symbol': 'ARKMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ARKM', 'quoteCoin': 'USDT', 'launchTime': '1690508471000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '139200', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '139200', 'maxMktOrderQty': '60000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARKUSDT', 'lowercaseId': None, 'symbol': 'ARK/USDT:USDT', 'base': 'ARK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ARK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 126750.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1690869317000, 'info': {'symbol': 'ARKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ARK', 'quoteCoin': 'USDT', 'launchTime': '1690869317000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '126750', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '126750', 'maxMktOrderQty': '120000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARPAUSDT', 'lowercaseId': None, 'symbol': 'ARPA/USDT:USDT', 'base': 'ARPA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ARPA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1211970.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1650369703000, 'info': {'symbol': 'ARPAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ARPA', 'quoteCoin': 'USDT', 'launchTime': '1650369703000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1211970', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1211970', 'maxMktOrderQty': '562500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ARUSDT', 'lowercaseId': None, 'symbol': 'AR/USDT:USDT', 'base': 'AR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 8430.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1639978762000, 'info': {'symbol': 'ARUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AR', 'quoteCoin': 'USDT', 'launchTime': '1639978762000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '8430.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '8430.0', 'maxMktOrderQty': '2200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ASTRUSDT', 'lowercaseId': None, 'symbol': 'ASTR/USDT:USDT', 'base': 'ASTR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ASTR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 1248510.0}, 'price': {'min': 5e-06, 'max': 9.99999}, 'cost': {'min': None, 'max': None}}, 'created': 1649044122000, 'info': {'symbol': 'ASTRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ASTR', 'quoteCoin': 'USDT', 'launchTime': '1649044122000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000005', 'maxPrice': '9.999990', 'tickSize': '0.000005'}, 'lotSizeFilter': {'maxOrderQty': '1248510', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1248510', 'maxMktOrderQty': '198000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ATAUSDT', 'lowercaseId': None, 'symbol': 'ATA/USDT:USDT', 'base': 'ATA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ATA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 600000.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1691483941000, 'info': {'symbol': 'ATAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ATA', 'quoteCoin': 'USDT', 'launchTime': '1691483941000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '600000', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '600000', 'maxMktOrderQty': '600000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ATOMUSDT', 'lowercaseId': None, 'symbol': 'ATOM/USDT:USDT', 'base': 'ATOM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ATOM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 116425.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1633910400000, 'info': {'symbol': 'ATOMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ATOM', 'quoteCoin': 'USDT', 'launchTime': '1633910400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '116425.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '116425.0', 'maxMktOrderQty': '14700.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AUCTIONUSDT', 'lowercaseId': None, 'symbol': 'AUCTION/USDT:USDT', 'base': 'AUCTION', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AUCTION', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 5580.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1690526070000, 'info': {'symbol': 'AUCTIONUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AUCTION', 'quoteCoin': 'USDT', 'launchTime': '1690526070000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '5580.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '5580.0', 'maxMktOrderQty': '5250.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AUDIOUSDT', 'lowercaseId': None, 'symbol': 'AUDIO/USDT:USDT', 'base': 'AUDIO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AUDIO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 0.1, 'max': 338010.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637884800000, 'info': {'symbol': 'AUDIOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AUDIO', 'quoteCoin': 'USDT', 'launchTime': '1637884800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '338010.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '338010.0', 'maxMktOrderQty': '100000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AVAXUSDT', 'lowercaseId': None, 'symbol': 'AVAX/USDT:USDT', 'base': 'AVAX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AVAX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 37495.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1631664000000, 'info': {'symbol': 'AVAXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AVAX', 'quoteCoin': 'USDT', 'launchTime': '1631664000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '37495.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '37495.0', 'maxMktOrderQty': '13100.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AXLUSDT', 'lowercaseId': None, 'symbol': 'AXL/USDT:USDT', 'base': 'AXL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AXL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 15000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1701941550000, 'info': {'symbol': 'AXLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AXL', 'quoteCoin': 'USDT', 'launchTime': '1701941550000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '15000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '15000', 'maxMktOrderQty': '15000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'AXSUSDT', 'lowercaseId': None, 'symbol': 'AXS/USDT:USDT', 'base': 'AXS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'AXS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 46795.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1628726400000, 'info': {'symbol': 'AXSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'AXS', 'quoteCoin': 'USDT', 'launchTime': '1628726400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '46795.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '46795.0', 'maxMktOrderQty': '9900.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BADGERUSDT', 'lowercaseId': None, 'symbol': 'BADGER/USDT:USDT', 'base': 'BADGER', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BADGER', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 22270.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1692174718000, 'info': {'symbol': 'BADGERUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BADGER', 'quoteCoin': 'USDT', 'launchTime': '1692174718000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '22270.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '22270.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BAKEUSDT', 'lowercaseId': None, 'symbol': 'BAKE/USDT:USDT', 'base': 'BAKE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BAKE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 401440.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1648794979000, 'info': {'symbol': 'BAKEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BAKE', 'quoteCoin': 'USDT', 'launchTime': '1648794979000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '401440.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '401440.0', 'maxMktOrderQty': '100000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BALUSDT', 'lowercaseId': None, 'symbol': 'BAL/USDT:USDT', 'base': 'BAL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BAL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 15120.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1649405651000, 'info': {'symbol': 'BALUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BAL', 'quoteCoin': 'USDT', 'launchTime': '1649405651000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '15120.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '15120.00', 'maxMktOrderQty': '3000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BANDUSDT', 'lowercaseId': None, 'symbol': 'BAND/USDT:USDT', 'base': 'BAND', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BAND', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 46075.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1645167116000, 'info': {'symbol': 'BANDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BAND', 'quoteCoin': 'USDT', 'launchTime': '1645167116000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '46075.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '46075.0', 'maxMktOrderQty': '25100.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BATUSDT', 'lowercaseId': None, 'symbol': 'BAT/USDT:USDT', 'base': 'BAT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BAT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 387230.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637712000000, 'info': {'symbol': 'BATUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BAT', 'quoteCoin': 'USDT', 'launchTime': '1637712000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '387230.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '387230.0', 'maxMktOrderQty': '50000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BCHUSDT', 'lowercaseId': None, 'symbol': 'BCH/USDT:USDT', 'base': 'BCH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BCH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 1935.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1514764800000, 'info': {'symbol': 'BCHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BCH', 'quoteCoin': 'USDT', 'launchTime': '1514764800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '1935.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '1935.00', 'maxMktOrderQty': '1000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BEAMUSDT', 'lowercaseId': None, 'symbol': 'BEAM/USDT:USDT', 'base': 'BEAM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BEAM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 100.0, 'max': 3516900.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1699955296000, 'info': {'symbol': 'BEAMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BEAM', 'quoteCoin': 'USDT', 'launchTime': '1699955296000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '3516900', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '3516900', 'maxMktOrderQty': '2800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BELUSDT', 'lowercaseId': None, 'symbol': 'BEL/USDT:USDT', 'base': 'BEL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BEL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 100340.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1655445585000, 'info': {'symbol': 'BELUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BEL', 'quoteCoin': 'USDT', 'launchTime': '1655445585000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '100340', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '100340', 'maxMktOrderQty': '56200'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BICOUSDT', 'lowercaseId': None, 'symbol': 'BICO/USDT:USDT', 'base': 'BICO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BICO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 129635.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638445217000, 'info': {'symbol': 'BICOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BICO', 'quoteCoin': 'USDT', 'launchTime': '1638445217000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '129635.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '129635.0', 'maxMktOrderQty': '80000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BIGTIMEUSDT', 'lowercaseId': None, 'symbol': 'BIGTIME/USDT:USDT', 'base': 'BIGTIME', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BIGTIME', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 427655.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1697099745000, 'info': {'symbol': 'BIGTIMEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BIGTIME', 'quoteCoin': 'USDT', 'launchTime': '1697099745000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '427655', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '427655', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BLURUSDT', 'lowercaseId': None, 'symbol': 'BLUR/USDT:USDT', 'base': 'BLUR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BLUR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 276635.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1676428387000, 'info': {'symbol': 'BLURUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BLUR', 'quoteCoin': 'USDT', 'launchTime': '1676428387000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '276635', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '276635', 'maxMktOrderQty': '200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BLZUSDT', 'lowercaseId': None, 'symbol': 'BLZ/USDT:USDT', 'base': 'BLZ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BLZ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 369005.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1654497673000, 'info': {'symbol': 'BLZUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BLZ', 'quoteCoin': 'USDT', 'launchTime': '1654497673000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '369005', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '369005', 'maxMktOrderQty': '220000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BNBPERP', 'lowercaseId': None, 'symbol': 'BNB/USDC:USDC', 'base': 'BNB', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BNB', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 250.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1664459242000, 'info': {'symbol': 'BNBPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BNB', 'quoteCoin': 'USDC', 'launchTime': '1664459242000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '250.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '250.00', 'maxMktOrderQty': '250.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BNBUSDT', 'lowercaseId': None, 'symbol': 'BNB/USDT:USDT', 'base': 'BNB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BNB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 3075.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1624951080000, 'info': {'symbol': 'BNBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BNB', 'quoteCoin': 'USDT', 'launchTime': '1624951080000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '3075.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '3075.00', 'maxMktOrderQty': '1300.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BNTUSDT', 'lowercaseId': None, 'symbol': 'BNT/USDT:USDT', 'base': 'BNT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BNT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 147209.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1691385533000, 'info': {'symbol': 'BNTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BNT', 'quoteCoin': 'USDT', 'launchTime': '1691385533000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '147209', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '147209', 'maxMktOrderQty': '75000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BNXUSDT', 'lowercaseId': None, 'symbol': 'BNX/USDT:USDT', 'base': 'BNX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BNX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 353023.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1677564318000, 'info': {'symbol': 'BNXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BNX', 'quoteCoin': 'USDT', 'launchTime': '1677564318000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '353023.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '353023.0', 'maxMktOrderQty': '70000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BOBAUSDT', 'lowercaseId': None, 'symbol': 'BOBA/USDT:USDT', 'base': 'BOBA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BOBA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 38735.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1649231761000, 'info': {'symbol': 'BOBAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BOBA', 'quoteCoin': 'USDT', 'launchTime': '1649231761000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '38735.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '38735.0', 'maxMktOrderQty': '14850.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.04', 'lowerFundingRate': '-0.04'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BOMEUSDT', 'lowercaseId': None, 'symbol': 'BOME/USDT:USDT', 'base': 'BOME', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BOME', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 12500000.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1710492745000, 'info': {'symbol': 'BOMEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BOME', 'quoteCoin': 'USDT', 'launchTime': '1710492745000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '12500000', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '12500000', 'maxMktOrderQty': '2500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BONDUSDT', 'lowercaseId': None, 'symbol': 'BOND/USDT:USDT', 'base': 'BOND', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BOND', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 36730.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1697435935000, 'info': {'symbol': 'BONDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BOND', 'quoteCoin': 'USDT', 'launchTime': '1697435935000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '36730.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '36730.0', 'maxMktOrderQty': '5000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BSVUSDT', 'lowercaseId': None, 'symbol': 'BSV/USDT:USDT', 'base': 'BSV', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BSV', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 3325.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1639105708000, 'info': {'symbol': 'BSVUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BSV', 'quoteCoin': 'USDT', 'launchTime': '1639105708000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '3325.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '3325.00', 'maxMktOrderQty': '270.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BSWUSDT', 'lowercaseId': None, 'symbol': 'BSW/USDT:USDT', 'base': 'BSW', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BSW', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 165485.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1648017126000, 'info': {'symbol': 'BSWUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BSW', 'quoteCoin': 'USDT', 'launchTime': '1648017126000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '165485', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '165485', 'maxMktOrderQty': '29250'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-05APR24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710489600000, 'info': {'symbol': 'BTC-05APR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1710489600000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-22MAR24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240322', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709280000000, 'info': {'symbol': 'BTC-22MAR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1709280000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706860800000, 'info': {'symbol': 'BTC-26APR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1706860800000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704441600000, 'info': {'symbol': 'BTC-27SEP24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1704441600000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696579200000, 'info': {'symbol': 'BTC-28JUN24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1696579200000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-29MAR24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240329', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1688716800000, 'info': {'symbol': 'BTC-29MAR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1688716800000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.001, 'max': 10.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709884800000, 'info': {'symbol': 'BTC-31MAY24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1709884800000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '10.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '10.000', 'maxMktOrderQty': '10.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCPERP', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 125.0}, 'amount': {'min': 0.001, 'max': 20.0}, 'price': {'min': 0.1, 'max': 199999.8}, 'cost': {'min': None, 'max': None}}, 'created': 1610604231000, 'info': {'symbol': 'BTCPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'launchTime': '1610604231000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '125.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.10', 'maxPrice': '199999.80', 'tickSize': '0.10'}, 'lotSizeFilter': {'maxOrderQty': '20.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '20.000', 'maxMktOrderQty': '20.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCUSDT', 'lowercaseId': None, 'symbol': 'BTC/USDT:USDT', 'base': 'BTC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'BTC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 0.001, 'max': 155.0}, 'price': {'min': 0.1, 'max': 199999.8}, 'cost': {'min': None, 'max': None}}, 'created': 1584230400000, 'info': {'symbol': 'BTCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDT', 'launchTime': '1584230400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.10', 'maxPrice': '199999.80', 'tickSize': '0.10'}, 'lotSizeFilter': {'maxOrderQty': '155.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '155.000', 'maxMktOrderQty': '100.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'C98USDT', 'lowercaseId': None, 'symbol': 'C98/USDT:USDT', 'base': 'C98', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'C98', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 408435.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'C98USDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'C98', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '408435.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '408435.0', 'maxMktOrderQty': '70200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CAKEUSDT', 'lowercaseId': None, 'symbol': 'CAKE/USDT:USDT', 'base': 'CAKE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CAKE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 81305.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1699005636000, 'info': {'symbol': 'CAKEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CAKE', 'quoteCoin': 'USDT', 'launchTime': '1699005636000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '81305.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '81305.0', 'maxMktOrderQty': '30000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CEEKUSDT', 'lowercaseId': None, 'symbol': 'CEEK/USDT:USDT', 'base': 'CEEK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CEEK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 164500.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1658127698000, 'info': {'symbol': 'CEEKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CEEK', 'quoteCoin': 'USDT', 'launchTime': '1658127698000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '164500', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '164500', 'maxMktOrderQty': '27300'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CELOUSDT', 'lowercaseId': None, 'symbol': 'CELO/USDT:USDT', 'base': 'CELO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CELO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 145080.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1641367582000, 'info': {'symbol': 'CELOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CELO', 'quoteCoin': 'USDT', 'launchTime': '1641367582000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '145080.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '145080.0', 'maxMktOrderQty': '40000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CELRUSDT', 'lowercaseId': None, 'symbol': 'CELR/USDT:USDT', 'base': 'CELR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CELR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 3450195.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'CELRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CELR', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '3450195', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3450195', 'maxMktOrderQty': '1200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CETUSUSDT', 'lowercaseId': None, 'symbol': 'CETUS/USDT:USDT', 'base': 'CETUS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CETUS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 486345.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1707104643000, 'info': {'symbol': 'CETUSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CETUS', 'quoteCoin': 'USDT', 'launchTime': '1707104643000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '486345', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '486345', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CFXUSDT', 'lowercaseId': None, 'symbol': 'CFX/USDT:USDT', 'base': 'CFX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CFX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 2251185.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1676883925000, 'info': {'symbol': 'CFXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CFX', 'quoteCoin': 'USDT', 'launchTime': '1676883925000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2251185', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '2251185', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CHRUSDT', 'lowercaseId': None, 'symbol': 'CHR/USDT:USDT', 'base': 'CHR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CHR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 342235.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637193600000, 'info': {'symbol': 'CHRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CHR', 'quoteCoin': 'USDT', 'launchTime': '1637193600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '342235.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '342235.0', 'maxMktOrderQty': '50200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CHZUSDT', 'lowercaseId': None, 'symbol': 'CHZ/USDT:USDT', 'base': 'CHZ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CHZ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 2948955.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1633996800000, 'info': {'symbol': 'CHZUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CHZ', 'quoteCoin': 'USDT', 'launchTime': '1633996800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2948955', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '2948955', 'maxMktOrderQty': '700000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CKBUSDT', 'lowercaseId': None, 'symbol': 'CKB/USDT:USDT', 'base': 'CKB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CKB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 12737850.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1644901148000, 'info': {'symbol': 'CKBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CKB', 'quoteCoin': 'USDT', 'launchTime': '1644901148000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '12737850', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '12737850', 'maxMktOrderQty': '2000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COMBOUSDT', 'lowercaseId': None, 'symbol': 'COMBO/USDT:USDT', 'base': 'COMBO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'COMBO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 86970.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1686210792000, 'info': {'symbol': 'COMBOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'COMBO', 'quoteCoin': 'USDT', 'launchTime': '1686210792000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '86970.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '86970.0', 'maxMktOrderQty': '18000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COMPUSDT', 'lowercaseId': None, 'symbol': 'COMP/USDT:USDT', 'base': 'COMP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'COMP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 4605.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1628726400000, 'info': {'symbol': 'COMPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'COMP', 'quoteCoin': 'USDT', 'launchTime': '1628726400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '4605.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '4605.00', 'maxMktOrderQty': '960.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COREUSDT', 'lowercaseId': None, 'symbol': 'CORE/USDT:USDT', 'base': 'CORE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CORE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 99737.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1675927514000, 'info': {'symbol': 'COREUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CORE', 'quoteCoin': 'USDT', 'launchTime': '1675927514000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '99737.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '99737.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COTIUSDT', 'lowercaseId': None, 'symbol': 'COTI/USDT:USDT', 'base': 'COTI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'COTI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1879515.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1638445117000, 'info': {'symbol': 'COTIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'COTI', 'quoteCoin': 'USDT', 'launchTime': '1638445117000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1879515', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1879515', 'maxMktOrderQty': '182000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'COVALUSDT', 'lowercaseId': None, 'symbol': 'COVAL/USDT:USDT', 'base': 'COVAL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'COVAL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 4000000.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1709879506000, 'info': {'symbol': 'COVALUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'COVAL', 'quoteCoin': 'USDT', 'launchTime': '1709879506000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '4000000', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '4000000', 'maxMktOrderQty': '800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CROUSDT', 'lowercaseId': None, 'symbol': 'CRO/USDT:USDT', 'base': 'CRO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CRO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 437490.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1637625600000, 'info': {'symbol': 'CROUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CRO', 'quoteCoin': 'USDT', 'launchTime': '1637625600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '437490', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '437490', 'maxMktOrderQty': '90000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.025', 'lowerFundingRate': '-0.025'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CRVUSDT', 'lowercaseId': None, 'symbol': 'CRV/USDT:USDT', 'base': 'CRV', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CRV', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 500235.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'CRVUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CRV', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '500235.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '500235.0', 'maxMktOrderQty': '70000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CTCUSDT', 'lowercaseId': None, 'symbol': 'CTC/USDT:USDT', 'base': 'CTC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CTC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 106819.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1652774270000, 'info': {'symbol': 'CTCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CTC', 'quoteCoin': 'USDT', 'launchTime': '1652774270000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '106819', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '106819', 'maxMktOrderQty': '5250'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.04', 'lowerFundingRate': '-0.04'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CTKUSDT', 'lowercaseId': None, 'symbol': 'CTK/USDT:USDT', 'base': 'CTK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CTK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 0.1, 'max': 75775.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638444847000, 'info': {'symbol': 'CTKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CTK', 'quoteCoin': 'USDT', 'launchTime': '1638444847000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '75775.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '75775.0', 'maxMktOrderQty': '17200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CTSIUSDT', 'lowercaseId': None, 'symbol': 'CTSI/USDT:USDT', 'base': 'CTSI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CTSI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 508860.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1648018511000, 'info': {'symbol': 'CTSIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CTSI', 'quoteCoin': 'USDT', 'launchTime': '1648018511000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '508860', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '508860', 'maxMktOrderQty': '156000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CVCUSDT', 'lowercaseId': None, 'symbol': 'CVC/USDT:USDT', 'base': 'CVC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CVC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 471385.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1638285651000, 'info': {'symbol': 'CVCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CVC', 'quoteCoin': 'USDT', 'launchTime': '1638285651000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '471385', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '471385', 'maxMktOrderQty': '91800'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CVXUSDT', 'lowercaseId': None, 'symbol': 'CVX/USDT:USDT', 'base': 'CVX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CVX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 21532.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1650440282000, 'info': {'symbol': 'CVXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CVX', 'quoteCoin': 'USDT', 'launchTime': '1650440282000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '21532.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '21532.00', 'maxMktOrderQty': '4000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'CYBERUSDT', 'lowercaseId': None, 'symbol': 'CYBER/USDT:USDT', 'base': 'CYBER', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'CYBER', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 19290.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1692124015000, 'info': {'symbol': 'CYBERUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'CYBER', 'quoteCoin': 'USDT', 'launchTime': '1692124015000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0010', 'maxPrice': '1999.9980', 'tickSize': '0.0010'}, 'lotSizeFilter': {'maxOrderQty': '19290.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '19290.0', 'maxMktOrderQty': '8000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DARUSDT', 'lowercaseId': None, 'symbol': 'DAR/USDT:USDT', 'base': 'DAR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DAR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 324770.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1651467113000, 'info': {'symbol': 'DARUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DAR', 'quoteCoin': 'USDT', 'launchTime': '1651467113000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '324770.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '324770.0', 'maxMktOrderQty': '150000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DASHUSDT', 'lowercaseId': None, 'symbol': 'DASH/USDT:USDT', 'base': 'DASH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DASH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 3685.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1633996800000, 'info': {'symbol': 'DASHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DASH', 'quoteCoin': 'USDT', 'launchTime': '1633996800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '3685.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '3685.00', 'maxMktOrderQty': '800.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DATAUSDT', 'lowercaseId': None, 'symbol': 'DATA/USDT:USDT', 'base': 'DATA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DATA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 289880.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1703054717000, 'info': {'symbol': 'DATAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DATA', 'quoteCoin': 'USDT', 'launchTime': '1703054717000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '289880', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '289880', 'maxMktOrderQty': '200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DENTUSDT', 'lowercaseId': None, 'symbol': 'DENT/USDT:USDT', 'base': 'DENT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DENT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 23903600.0}, 'price': {'min': 1e-07, 'max': 0.1999998}, 'cost': {'min': None, 'max': None}}, 'created': 1642068928000, 'info': {'symbol': 'DENTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DENT', 'quoteCoin': 'USDT', 'launchTime': '1642068928000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000001', 'maxPrice': '0.1999998', 'tickSize': '0.0000001'}, 'lotSizeFilter': {'maxOrderQty': '23903600', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '23903600', 'maxMktOrderQty': '9800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DGBUSDT', 'lowercaseId': None, 'symbol': 'DGB/USDT:USDT', 'base': 'DGB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DGB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 4771730.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1648452331000, 'info': {'symbol': 'DGBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DGB', 'quoteCoin': 'USDT', 'launchTime': '1648452331000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '4771730', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '4771730', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DODOUSDT', 'lowercaseId': None, 'symbol': 'DODO/USDT:USDT', 'base': 'DODO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DODO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 267080.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1650457800000, 'info': {'symbol': 'DODOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DODO', 'quoteCoin': 'USDT', 'launchTime': '1650457800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '267080', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '267080', 'maxMktOrderQty': '69000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOGEUSDT', 'lowercaseId': None, 'symbol': 'DOGE/USDT:USDT', 'base': 'DOGE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DOGE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 1.0, 'max': 18082950.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1622630640000, 'info': {'symbol': 'DOGEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DOGE', 'quoteCoin': 'USDT', 'launchTime': '1622630640000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '18082950', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '18082950', 'maxMktOrderQty': '10000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOTUSDT', 'lowercaseId': None, 'symbol': 'DOT/USDT:USDT', 'base': 'DOT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DOT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 91420.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1616060040000, 'info': {'symbol': 'DOTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DOT', 'quoteCoin': 'USDT', 'launchTime': '1616060040000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '91420.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '91420.0', 'maxMktOrderQty': '32900.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DUSKUSDT', 'lowercaseId': None, 'symbol': 'DUSK/USDT:USDT', 'base': 'DUSK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DUSK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 240620.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1639673130000, 'info': {'symbol': 'DUSKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DUSK', 'quoteCoin': 'USDT', 'launchTime': '1639673130000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '240620', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '240620', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DYDXUSDT', 'lowercaseId': None, 'symbol': 'DYDX/USDT:USDT', 'base': 'DYDX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DYDX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 407185.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1633910400000, 'info': {'symbol': 'DYDXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DYDX', 'quoteCoin': 'USDT', 'launchTime': '1633910400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '407185.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '407185.0', 'maxMktOrderQty': '45000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DYMUSDT', 'lowercaseId': None, 'symbol': 'DYM/USDT:USDT', 'base': 'DYM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'DYM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 80665.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1707273410000, 'info': {'symbol': 'DYMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'DYM', 'quoteCoin': 'USDT', 'launchTime': '1707273410000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '80665.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '80665.0', 'maxMktOrderQty': '5000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EDUUSDT', 'lowercaseId': None, 'symbol': 'EDU/USDT:USDT', 'base': 'EDU', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'EDU', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 116565.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1683273334000, 'info': {'symbol': 'EDUUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'EDU', 'quoteCoin': 'USDT', 'launchTime': '1683273334000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '116565.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '116565.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EGLDUSDT', 'lowercaseId': None, 'symbol': 'EGLD/USDT:USDT', 'base': 'EGLD', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'EGLD', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 5460.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1637596800000, 'info': {'symbol': 'EGLDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'EGLD', 'quoteCoin': 'USDT', 'launchTime': '1637596800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '5460.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '5460.00', 'maxMktOrderQty': '1300.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ENJUSDT', 'lowercaseId': None, 'symbol': 'ENJ/USDT:USDT', 'base': 'ENJ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ENJ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 370415.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1635696000000, 'info': {'symbol': 'ENJUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ENJ', 'quoteCoin': 'USDT', 'launchTime': '1635696000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '370415.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '370415.0', 'maxMktOrderQty': '116000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.01', 'lowerFundingRate': '-0.01'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ENSUSDT', 'lowercaseId': None, 'symbol': 'ENS/USDT:USDT', 'base': 'ENS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ENS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 5545.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1636675200000, 'info': {'symbol': 'ENSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ENS', 'quoteCoin': 'USDT', 'launchTime': '1636675200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '5545.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '5545.0', 'maxMktOrderQty': '1600.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EOSUSDT', 'lowercaseId': None, 'symbol': 'EOS/USDT:USDT', 'base': 'EOS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'EOS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 648735.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1624949940000, 'info': {'symbol': 'EOSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'EOS', 'quoteCoin': 'USDT', 'launchTime': '1624949940000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '648735.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '648735.0', 'maxMktOrderQty': '55000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETCPERP', 'lowercaseId': None, 'symbol': 'ETC/USDC:USDC', 'base': 'ETC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 1955.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1661990400000, 'info': {'symbol': 'ETCPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ETC', 'quoteCoin': 'USDC', 'launchTime': '1661990400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '1955.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '1955.0', 'maxMktOrderQty': '500.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETCUSDT', 'lowercaseId': None, 'symbol': 'ETC/USDT:USDT', 'base': 'ETC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ETC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 17010.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1624950240000, 'info': {'symbol': 'ETCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ETC', 'quoteCoin': 'USDT', 'launchTime': '1624950240000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '17010.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '17010.0', 'maxMktOrderQty': '10000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-05APR24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1710489600000, 'info': {'symbol': 'ETH-05APR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1710489600000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-22MAR24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240322', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1709280000000, 'info': {'symbol': 'ETH-22MAR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1709280000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1706860800000, 'info': {'symbol': 'ETH-26APR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1706860800000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1704441600000, 'info': {'symbol': 'ETH-27SEP24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1704441600000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1696579200000, 'info': {'symbol': 'ETH-28JUN24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1696579200000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1688716800000, 'info': {'symbol': 'ETH-29MAR24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1688716800000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 150.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1709884800000, 'info': {'symbol': 'ETH-31MAY24', 'contractType': 'LinearFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1709884800000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '150.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHPERP', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 66.67}, 'amount': {'min': 0.01, 'max': 400.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1659657600000, 'info': {'symbol': 'ETHPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'launchTime': '1659657600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '66.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '400.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '400.00', 'maxMktOrderQty': '400.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSDT', 'lowercaseId': None, 'symbol': 'ETH/USDT:USDT', 'base': 'ETH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ETH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 0.01, 'max': 1500.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1615766400000, 'info': {'symbol': 'ETHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDT', 'launchTime': '1615766400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '1500.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '1500.00', 'maxMktOrderQty': '1500.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHWUSDT', 'lowercaseId': None, 'symbol': 'ETHW/USDT:USDT', 'base': 'ETHW', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ETHW', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 26029.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1663286400000, 'info': {'symbol': 'ETHWUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ETHW', 'quoteCoin': 'USDT', 'launchTime': '1663286400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '26029.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '26029.00', 'maxMktOrderQty': '7500.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FETUSDT', 'lowercaseId': None, 'symbol': 'FET/USDT:USDT', 'base': 'FET', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FET', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 250000.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1675759851000, 'info': {'symbol': 'FETUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FET', 'quoteCoin': 'USDT', 'launchTime': '1675759851000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '250000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '250000', 'maxMktOrderQty': '250000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FILUSDT', 'lowercaseId': None, 'symbol': 'FIL/USDT:USDT', 'base': 'FIL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FIL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 47575.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1624950900000, 'info': {'symbol': 'FILUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FIL', 'quoteCoin': 'USDT', 'launchTime': '1624950900000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '47575.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '47575.0', 'maxMktOrderQty': '45000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FITFIUSDT', 'lowercaseId': None, 'symbol': 'FITFI/USDT:USDT', 'base': 'FITFI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FITFI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 5137930.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1652153037000, 'info': {'symbol': 'FITFIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FITFI', 'quoteCoin': 'USDT', 'launchTime': '1652153037000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '5137930', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '5137930', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.01', 'lowerFundingRate': '-0.01'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLMUSDT', 'lowercaseId': None, 'symbol': 'FLM/USDT:USDT', 'base': 'FLM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FLM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 1893540.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1651467612000, 'info': {'symbol': 'FLMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FLM', 'quoteCoin': 'USDT', 'launchTime': '1651467612000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1893540', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1893540', 'maxMktOrderQty': '163125'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLOWUSDT', 'lowercaseId': None, 'symbol': 'FLOW/USDT:USDT', 'base': 'FLOW', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FLOW', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 183560.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637856000000, 'info': {'symbol': 'FLOWUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FLOW', 'quoteCoin': 'USDT', 'launchTime': '1637856000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '183560.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '183560.0', 'maxMktOrderQty': '23000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FLRUSDT', 'lowercaseId': None, 'symbol': 'FLR/USDT:USDT', 'base': 'FLR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FLR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1795110.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1678953508000, 'info': {'symbol': 'FLRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FLR', 'quoteCoin': 'USDT', 'launchTime': '1678953508000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1795110', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1795110', 'maxMktOrderQty': '379680'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FORTHUSDT', 'lowercaseId': None, 'symbol': 'FORTH/USDT:USDT', 'base': 'FORTH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FORTH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 12000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1690868839000, 'info': {'symbol': 'FORTHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FORTH', 'quoteCoin': 'USDT', 'launchTime': '1690868839000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '12000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '12000.0', 'maxMktOrderQty': '12000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FRONTUSDT', 'lowercaseId': None, 'symbol': 'FRONT/USDT:USDT', 'base': 'FRONT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FRONT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 260103.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1695023419000, 'info': {'symbol': 'FRONTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FRONT', 'quoteCoin': 'USDT', 'launchTime': '1695023419000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '260103', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '260103', 'maxMktOrderQty': '200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FTMUSDT', 'lowercaseId': None, 'symbol': 'FTM/USDT:USDT', 'base': 'FTM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FTM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 1.0, 'max': 2448050.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1632355200000, 'info': {'symbol': 'FTMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FTM', 'quoteCoin': 'USDT', 'launchTime': '1632355200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '2448050', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '2448050', 'maxMktOrderQty': '360000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FUNUSDT', 'lowercaseId': None, 'symbol': 'FUN/USDT:USDT', 'base': 'FUN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FUN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 5470500.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1702541853000, 'info': {'symbol': 'FUNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FUN', 'quoteCoin': 'USDT', 'launchTime': '1702541853000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '5470500', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '5470500', 'maxMktOrderQty': '1500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'FXSUSDT', 'lowercaseId': None, 'symbol': 'FXS/USDT:USDT', 'base': 'FXS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'FXS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 18970.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1649044820000, 'info': {'symbol': 'FXSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'FXS', 'quoteCoin': 'USDT', 'launchTime': '1649044820000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '18970.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '18970.00', 'maxMktOrderQty': '2400.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GALAUSDT', 'lowercaseId': None, 'symbol': 'GALA/USDT:USDT', 'base': 'GALA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GALA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 1.0, 'max': 49513810.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1636416000000, 'info': {'symbol': 'GALAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GALA', 'quoteCoin': 'USDT', 'launchTime': '1636416000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '49513810', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '49513810', 'maxMktOrderQty': '3900000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GALUSDT', 'lowercaseId': None, 'symbol': 'GAL/USDT:USDT', 'base': 'GAL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GAL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 96740.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1651759278000, 'info': {'symbol': 'GALUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GAL', 'quoteCoin': 'USDT', 'launchTime': '1651759278000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '96740.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '96740.00', 'maxMktOrderQty': '20000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GASUSDT', 'lowercaseId': None, 'symbol': 'GAS/USDT:USDT', 'base': 'GAS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GAS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 49585.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1698044952000, 'info': {'symbol': 'GASUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GAS', 'quoteCoin': 'USDT', 'launchTime': '1698044952000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '49585.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '49585.0', 'maxMktOrderQty': '8000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GFTUSDT', 'lowercaseId': None, 'symbol': 'GFT/USDT:USDT', 'base': 'GFT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GFT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 1280205.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1676009998000, 'info': {'symbol': 'GFTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GFT', 'quoteCoin': 'USDT', 'launchTime': '1676009998000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1280205', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1280205', 'maxMktOrderQty': '400000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GLMRUSDT', 'lowercaseId': None, 'symbol': 'GLMR/USDT:USDT', 'base': 'GLMR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GLMR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 153505.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1648633250000, 'info': {'symbol': 'GLMRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GLMR', 'quoteCoin': 'USDT', 'launchTime': '1648633250000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '153505.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '153505.0', 'maxMktOrderQty': '18200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GLMUSDT', 'lowercaseId': None, 'symbol': 'GLM/USDT:USDT', 'base': 'GLM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GLM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 145418.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1691643479000, 'info': {'symbol': 'GLMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GLM', 'quoteCoin': 'USDT', 'launchTime': '1691643479000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '145418', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '145418', 'maxMktOrderQty': '112500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMTUSDT', 'lowercaseId': None, 'symbol': 'GMT/USDT:USDT', 'base': 'GMT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GMT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 3059695.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1647667511000, 'info': {'symbol': 'GMTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GMT', 'quoteCoin': 'USDT', 'launchTime': '1647667511000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '3059695', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3059695', 'maxMktOrderQty': '256400'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GMXUSDT', 'lowercaseId': None, 'symbol': 'GMX/USDT:USDT', 'base': 'GMX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GMX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 3670.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1665385570000, 'info': {'symbol': 'GMXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GMX', 'quoteCoin': 'USDT', 'launchTime': '1665385570000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '3670.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '3670.00', 'maxMktOrderQty': '440.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GODSUSDT', 'lowercaseId': None, 'symbol': 'GODS/USDT:USDT', 'base': 'GODS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GODS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 80000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1700629341000, 'info': {'symbol': 'GODSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GODS', 'quoteCoin': 'USDT', 'launchTime': '1700629341000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '80000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '80000', 'maxMktOrderQty': '80000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GPTUSDT', 'lowercaseId': None, 'symbol': 'GPT/USDT:USDT', 'base': 'GPT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GPT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 543735.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1678954438000, 'info': {'symbol': 'GPTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GPT', 'quoteCoin': 'USDT', 'launchTime': '1678954438000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '543735', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '543735', 'maxMktOrderQty': '150000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GRTUSDT', 'lowercaseId': None, 'symbol': 'GRT/USDT:USDT', 'base': 'GRT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GRT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 1857284.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1638748800000, 'info': {'symbol': 'GRTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GRT', 'quoteCoin': 'USDT', 'launchTime': '1638748800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1857284.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '1857284.0', 'maxMktOrderQty': '640000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'GTCUSDT', 'lowercaseId': None, 'symbol': 'GTC/USDT:USDT', 'base': 'GTC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'GTC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 41895.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1638144000000, 'info': {'symbol': 'GTCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'GTC', 'quoteCoin': 'USDT', 'launchTime': '1638144000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '41895.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '41895.0', 'maxMktOrderQty': '10000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HBARUSDT', 'lowercaseId': None, 'symbol': 'HBAR/USDT:USDT', 'base': 'HBAR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HBAR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 2495520.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'HBARUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HBAR', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2495520', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '2495520', 'maxMktOrderQty': '640000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HFTUSDT', 'lowercaseId': None, 'symbol': 'HFT/USDT:USDT', 'base': 'HFT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HFT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 204745.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1678776349000, 'info': {'symbol': 'HFTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HFT', 'quoteCoin': 'USDT', 'launchTime': '1678776349000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '204745', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '204745', 'maxMktOrderQty': '35000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HIFIUSDT', 'lowercaseId': None, 'symbol': 'HIFI/USDT:USDT', 'base': 'HIFI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HIFI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 233450.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1693210322000, 'info': {'symbol': 'HIFIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HIFI', 'quoteCoin': 'USDT', 'launchTime': '1693210322000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00010', 'maxPrice': '199.99980', 'tickSize': '0.00010'}, 'lotSizeFilter': {'maxOrderQty': '233450', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '233450', 'maxMktOrderQty': '110000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HIGHUSDT', 'lowercaseId': None, 'symbol': 'HIGH/USDT:USDT', 'base': 'HIGH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HIGH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 36440.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1675759370000, 'info': {'symbol': 'HIGHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HIGH', 'quoteCoin': 'USDT', 'launchTime': '1675759370000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '36440.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '36440.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HNTUSDT', 'lowercaseId': None, 'symbol': 'HNT/USDT:USDT', 'base': 'HNT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HNT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.01, 'max': 5000.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1643006840000, 'info': {'symbol': 'HNTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HNT', 'quoteCoin': 'USDT', 'launchTime': '1643006840000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '5000.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '5000.00', 'maxMktOrderQty': '5000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HOOKUSDT', 'lowercaseId': None, 'symbol': 'HOOK/USDT:USDT', 'base': 'HOOK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HOOK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 135515.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1675758352000, 'info': {'symbol': 'HOOKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HOOK', 'quoteCoin': 'USDT', 'launchTime': '1675758352000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '135515.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '135515.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'HOTUSDT', 'lowercaseId': None, 'symbol': 'HOT/USDT:USDT', 'base': 'HOT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'HOT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 27855700.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1648450156000, 'info': {'symbol': 'HOTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'HOT', 'quoteCoin': 'USDT', 'launchTime': '1648450156000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '27855700', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '27855700', 'maxMktOrderQty': '10000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ICPUSDT', 'lowercaseId': None, 'symbol': 'ICP/USDT:USDT', 'base': 'ICP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ICP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 50130.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1631664000000, 'info': {'symbol': 'ICPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ICP', 'quoteCoin': 'USDT', 'launchTime': '1631664000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '50130.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '50130.0', 'maxMktOrderQty': '6000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ICXUSDT', 'lowercaseId': None, 'symbol': 'ICX/USDT:USDT', 'base': 'ICX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ICX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 406105.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1649830935000, 'info': {'symbol': 'ICXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ICX', 'quoteCoin': 'USDT', 'launchTime': '1649830935000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '406105', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '406105', 'maxMktOrderQty': '92000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IDEXUSDT', 'lowercaseId': None, 'symbol': 'IDEX/USDT:USDT', 'base': 'IDEX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'IDEX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 927560.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1684822236000, 'info': {'symbol': 'IDEXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'IDEX', 'quoteCoin': 'USDT', 'launchTime': '1684822236000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '927560', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '927560', 'maxMktOrderQty': '450000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IDUSDT', 'lowercaseId': None, 'symbol': 'ID/USDT:USDT', 'base': 'ID', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ID', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 760200.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1679639388000, 'info': {'symbol': 'IDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ID', 'quoteCoin': 'USDT', 'launchTime': '1679639388000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '760200', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '760200', 'maxMktOrderQty': '150000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ILVUSDT', 'lowercaseId': None, 'symbol': 'ILV/USDT:USDT', 'base': 'ILV', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ILV', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 880.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1637884800000, 'info': {'symbol': 'ILVUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ILV', 'quoteCoin': 'USDT', 'launchTime': '1637884800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '880.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '880.00', 'maxMktOrderQty': '180.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IMXUSDT', 'lowercaseId': None, 'symbol': 'IMX/USDT:USDT', 'base': 'IMX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'IMX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 94905.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637712000000, 'info': {'symbol': 'IMXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'IMX', 'quoteCoin': 'USDT', 'launchTime': '1637712000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '94905.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '94905.0', 'maxMktOrderQty': '35100.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'INJUSDT', 'lowercaseId': None, 'symbol': 'INJ/USDT:USDT', 'base': 'INJ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'INJ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 20000.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1660694400000, 'info': {'symbol': 'INJUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'INJ', 'quoteCoin': 'USDT', 'launchTime': '1660694400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '20000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '20000.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IOSTUSDT', 'lowercaseId': None, 'symbol': 'IOST/USDT:USDT', 'base': 'IOST', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'IOST', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 17506955.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1633996800000, 'info': {'symbol': 'IOSTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'IOST', 'quoteCoin': 'USDT', 'launchTime': '1633996800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '17506955', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '17506955', 'maxMktOrderQty': '3000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IOTAUSDT', 'lowercaseId': None, 'symbol': 'IOTA/USDT:USDT', 'base': 'IOTA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'IOTA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 764810.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1640772993000, 'info': {'symbol': 'IOTAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'IOTA', 'quoteCoin': 'USDT', 'launchTime': '1640772993000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '764810.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '764810.0', 'maxMktOrderQty': '100000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'IOTXUSDT', 'lowercaseId': None, 'symbol': 'IOTX/USDT:USDT', 'base': 'IOTX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'IOTX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 3767350.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1636675200000, 'info': {'symbol': 'IOTXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'IOTX', 'quoteCoin': 'USDT', 'launchTime': '1636675200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '3767350', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3767350', 'maxMktOrderQty': '202500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JASMYUSDT', 'lowercaseId': None, 'symbol': 'JASMY/USDT:USDT', 'base': 'JASMY', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'JASMY', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 18027495.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1642574202000, 'info': {'symbol': 'JASMYUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'JASMY', 'quoteCoin': 'USDT', 'launchTime': '1642574202000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '18027495', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '18027495', 'maxMktOrderQty': '2450000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JOEUSDT', 'lowercaseId': None, 'symbol': 'JOE/USDT:USDT', 'base': 'JOE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'JOE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 312160.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1680062568000, 'info': {'symbol': 'JOEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'JOE', 'quoteCoin': 'USDT', 'launchTime': '1680062568000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '312160', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '312160', 'maxMktOrderQty': '50000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JSTUSDT', 'lowercaseId': None, 'symbol': 'JST/USDT:USDT', 'base': 'JST', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'JST', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 1604510.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1645166741000, 'info': {'symbol': 'JSTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'JST', 'quoteCoin': 'USDT', 'launchTime': '1645166741000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1604510', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1604510', 'maxMktOrderQty': '258400'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JTOUSDT', 'lowercaseId': None, 'symbol': 'JTO/USDT:USDT', 'base': 'JTO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'JTO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 176920.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1701978619000, 'info': {'symbol': 'JTOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'JTO', 'quoteCoin': 'USDT', 'launchTime': '1701978619000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '176920.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '176920.0', 'maxMktOrderQty': '8000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'JUPUSDT', 'lowercaseId': None, 'symbol': 'JUP/USDT:USDT', 'base': 'JUP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'JUP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 842125.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1706716267000, 'info': {'symbol': 'JUPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'JUP', 'quoteCoin': 'USDT', 'launchTime': '1706716267000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '842125', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '842125', 'maxMktOrderQty': '15000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KASUSDT', 'lowercaseId': None, 'symbol': 'KAS/USDT:USDT', 'base': 'KAS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KAS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1014660.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1691138081000, 'info': {'symbol': 'KASUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KAS', 'quoteCoin': 'USDT', 'launchTime': '1691138081000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1014660', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1014660', 'maxMktOrderQty': '562500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KAVAUSDT', 'lowercaseId': None, 'symbol': 'KAVA/USDT:USDT', 'base': 'KAVA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KAVA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 230640.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1641801287000, 'info': {'symbol': 'KAVAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KAVA', 'quoteCoin': 'USDT', 'launchTime': '1641801287000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '230640.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '230640.0', 'maxMktOrderQty': '28000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KDAUSDT', 'lowercaseId': None, 'symbol': 'KDA/USDT:USDT', 'base': 'KDA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KDA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 36870.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1647311832000, 'info': {'symbol': 'KDAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KDA', 'quoteCoin': 'USDT', 'launchTime': '1647311832000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '36870.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '36870.0', 'maxMktOrderQty': '4000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KEYUSDT', 'lowercaseId': None, 'symbol': 'KEY/USDT:USDT', 'base': 'KEY', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KEY', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 5e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 11118900.0}, 'price': {'min': 5e-07, 'max': 0.999999}, 'cost': {'min': None, 'max': None}}, 'created': 1685341922000, 'info': {'symbol': 'KEYUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KEY', 'quoteCoin': 'USDT', 'launchTime': '1685341922000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000005', 'maxPrice': '0.9999990', 'tickSize': '0.0000005'}, 'lotSizeFilter': {'maxOrderQty': '11118900', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '11118900', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KLAYUSDT', 'lowercaseId': None, 'symbol': 'KLAY/USDT:USDT', 'base': 'KLAY', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KLAY', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 788575.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1639106068000, 'info': {'symbol': 'KLAYUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KLAY', 'quoteCoin': 'USDT', 'launchTime': '1639106068000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '788575.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '788575.0', 'maxMktOrderQty': '100000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KNCUSDT', 'lowercaseId': None, 'symbol': 'KNC/USDT:USDT', 'base': 'KNC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KNC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 301269.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1641800434000, 'info': {'symbol': 'KNCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KNC', 'quoteCoin': 'USDT', 'launchTime': '1641800434000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '301269.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '301269.0', 'maxMktOrderQty': '72300.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'KSMUSDT', 'lowercaseId': None, 'symbol': 'KSM/USDT:USDT', 'base': 'KSM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'KSM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 3845.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1633996800000, 'info': {'symbol': 'KSMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'KSM', 'quoteCoin': 'USDT', 'launchTime': '1633996800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '3845.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '3845.00', 'maxMktOrderQty': '1000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LDOUSDT', 'lowercaseId': None, 'symbol': 'LDO/USDT:USDT', 'base': 'LDO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LDO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 174190.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1658300019000, 'info': {'symbol': 'LDOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LDO', 'quoteCoin': 'USDT', 'launchTime': '1658300019000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '174190.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '174190.0', 'maxMktOrderQty': '60000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LEVERUSDT', 'lowercaseId': None, 'symbol': 'LEVER/USDT:USDT', 'base': 'LEVER', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LEVER', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 57003100.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1685960641000, 'info': {'symbol': 'LEVERUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LEVER', 'quoteCoin': 'USDT', 'launchTime': '1685960641000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '57003100', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '57003100', 'maxMktOrderQty': '12000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINAUSDT', 'lowercaseId': None, 'symbol': 'LINA/USDT:USDT', 'base': 'LINA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LINA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 10398670.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1650439574000, 'info': {'symbol': 'LINAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LINA', 'quoteCoin': 'USDT', 'launchTime': '1650439574000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '10398670', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '10398670', 'maxMktOrderQty': '3205050'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LINKUSDT', 'lowercaseId': None, 'symbol': 'LINK/USDT:USDT', 'base': 'LINK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LINK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 85255.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1514764800000, 'info': {'symbol': 'LINKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LINK', 'quoteCoin': 'USDT', 'launchTime': '1514764800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '85255.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '85255.0', 'maxMktOrderQty': '36750.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LITUSDT', 'lowercaseId': None, 'symbol': 'LIT/USDT:USDT', 'base': 'LIT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LIT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 0.1, 'max': 48520.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638144000000, 'info': {'symbol': 'LITUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LIT', 'quoteCoin': 'USDT', 'launchTime': '1638144000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '48520.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '48520.0', 'maxMktOrderQty': '11800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LOOKSUSDT', 'lowercaseId': None, 'symbol': 'LOOKS/USDT:USDT', 'base': 'LOOKS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LOOKS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 307635.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1643006232000, 'info': {'symbol': 'LOOKSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LOOKS', 'quoteCoin': 'USDT', 'launchTime': '1643006232000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '307635.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '307635.0', 'maxMktOrderQty': '36000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LOOMUSDT', 'lowercaseId': None, 'symbol': 'LOOM/USDT:USDT', 'base': 'LOOM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LOOM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 10.0, 'max': 1065240.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1695276752000, 'info': {'symbol': 'LOOMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LOOM', 'quoteCoin': 'USDT', 'launchTime': '1695276752000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000010', 'maxPrice': '19.999980', 'tickSize': '0.000010'}, 'lotSizeFilter': {'maxOrderQty': '1065240', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1065240', 'maxMktOrderQty': '400000'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LPTUSDT', 'lowercaseId': None, 'symbol': 'LPT/USDT:USDT', 'base': 'LPT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LPT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 20000.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1639357959000, 'info': {'symbol': 'LPTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LPT', 'quoteCoin': 'USDT', 'launchTime': '1639357959000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '20000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '20000.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LQTYUSDT', 'lowercaseId': None, 'symbol': 'LQTY/USDT:USDT', 'base': 'LQTY', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LQTY', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 101230.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1678694760000, 'info': {'symbol': 'LQTYUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LQTY', 'quoteCoin': 'USDT', 'launchTime': '1678694760000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '101230.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '101230.0', 'maxMktOrderQty': '15000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LRCUSDT', 'lowercaseId': None, 'symbol': 'LRC/USDT:USDT', 'base': 'LRC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LRC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 595125.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1636588800000, 'info': {'symbol': 'LRCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LRC', 'quoteCoin': 'USDT', 'launchTime': '1636588800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '595125.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '595125.0', 'maxMktOrderQty': '100000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LSKUSDT', 'lowercaseId': None, 'symbol': 'LSK/USDT:USDT', 'base': 'LSK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LSK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 104585.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1704208975000, 'info': {'symbol': 'LSKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LSK', 'quoteCoin': 'USDT', 'launchTime': '1704208975000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '104585.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '104585.0', 'maxMktOrderQty': '8000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTCUSDT', 'lowercaseId': None, 'symbol': 'LTC/USDT:USDT', 'base': 'LTC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LTC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 18070.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1514764800000, 'info': {'symbol': 'LTCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LTC', 'quoteCoin': 'USDT', 'launchTime': '1514764800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '18070.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '18070.0', 'maxMktOrderQty': '5250.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LUNA2USDT', 'lowercaseId': None, 'symbol': 'LUNA2/USDT:USDT', 'base': 'LUNA2', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'LUNA2', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 257940.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1653983403000, 'info': {'symbol': 'LUNA2USDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'LUNA2', 'quoteCoin': 'USDT', 'launchTime': '1653983403000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '257940.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '257940.0', 'maxMktOrderQty': '18600.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MAGICUSDT', 'lowercaseId': None, 'symbol': 'MAGIC/USDT:USDT', 'base': 'MAGIC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MAGIC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 211270.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1670897921000, 'info': {'symbol': 'MAGICUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MAGIC', 'quoteCoin': 'USDT', 'launchTime': '1670897921000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '211270', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '211270', 'maxMktOrderQty': '75000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANAUSDT', 'lowercaseId': None, 'symbol': 'MANA/USDT:USDT', 'base': 'MANA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MANA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 616195.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1636329600000, 'info': {'symbol': 'MANAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MANA', 'quoteCoin': 'USDT', 'launchTime': '1636329600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '616195.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '616195.0', 'maxMktOrderQty': '142000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANTAUSDT', 'lowercaseId': None, 'symbol': 'MANTA/USDT:USDT', 'base': 'MANTA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MANTA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 196519.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1705575778000, 'info': {'symbol': 'MANTAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MANTA', 'quoteCoin': 'USDT', 'launchTime': '1705575778000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '196519.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '196519.0', 'maxMktOrderQty': '4500.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MASKUSDT', 'lowercaseId': None, 'symbol': 'MASK/USDT:USDT', 'base': 'MASK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MASK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 73365.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1638444542000, 'info': {'symbol': 'MASKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MASK', 'quoteCoin': 'USDT', 'launchTime': '1638444542000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '73365.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '73365.0', 'maxMktOrderQty': '42000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATICPERP', 'lowercaseId': None, 'symbol': 'MATIC/USDC:USDC', 'base': 'MATIC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'MATIC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 68400.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1661990400000, 'info': {'symbol': 'MATICPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MATIC', 'quoteCoin': 'USDC', 'launchTime': '1661990400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '68400', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '68400', 'maxMktOrderQty': '17500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MATICUSDT', 'lowercaseId': None, 'symbol': 'MATIC/USDT:USDT', 'base': 'MATIC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MATIC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 1.0, 'max': 1377990.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1610668800000, 'info': {'symbol': 'MATICUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MATIC', 'quoteCoin': 'USDT', 'launchTime': '1610668800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '1377990', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1377990', 'maxMktOrderQty': '660000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MAVIAUSDT', 'lowercaseId': None, 'symbol': 'MAVIA/USDT:USDT', 'base': 'MAVIA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MAVIA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 6445.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1707297146000, 'info': {'symbol': 'MAVIAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MAVIA', 'quoteCoin': 'USDT', 'launchTime': '1707297146000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '6445.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '6445.0', 'maxMktOrderQty': '3500.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MAVUSDT', 'lowercaseId': None, 'symbol': 'MAV/USDT:USDT', 'base': 'MAV', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MAV', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 312835.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1687945209000, 'info': {'symbol': 'MAVUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MAV', 'quoteCoin': 'USDT', 'launchTime': '1687945209000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '312835', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '312835', 'maxMktOrderQty': '120000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MBLUSDT', 'lowercaseId': None, 'symbol': 'MBL/USDT:USDT', 'base': 'MBL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MBL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 100.0, 'max': 11852200.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1699958425000, 'info': {'symbol': 'MBLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MBL', 'quoteCoin': 'USDT', 'launchTime': '1699958425000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '11852200', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '11852200', 'maxMktOrderQty': '3000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MBOXUSDT', 'lowercaseId': None, 'symbol': 'MBOX/USDT:USDT', 'base': 'MBOX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MBOX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 56055.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1705574743000, 'info': {'symbol': 'MBOXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MBOX', 'quoteCoin': 'USDT', 'launchTime': '1705574743000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '56055', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '56055', 'maxMktOrderQty': '40000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MDTUSDT', 'lowercaseId': None, 'symbol': 'MDT/USDT:USDT', 'base': 'MDT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MDT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 5e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1000000.0}, 'price': {'min': 5e-06, 'max': 9.99999}, 'cost': {'min': None, 'max': None}}, 'created': 1688112286000, 'info': {'symbol': 'MDTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MDT', 'quoteCoin': 'USDT', 'launchTime': '1688112286000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000005', 'maxPrice': '9.999990', 'tickSize': '0.000005'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MEMEUSDT', 'lowercaseId': None, 'symbol': 'MEME/USDT:USDT', 'base': 'MEME', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MEME', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 10.0, 'max': 9348960.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1699001325000, 'info': {'symbol': 'MEMEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MEME', 'quoteCoin': 'USDT', 'launchTime': '1699001325000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '9348960', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '9348960', 'maxMktOrderQty': '1700000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'METISUSDT', 'lowercaseId': None, 'symbol': 'METIS/USDT:USDT', 'base': 'METIS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'METIS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 1315.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1704207924000, 'info': {'symbol': 'METISUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'METIS', 'quoteCoin': 'USDT', 'launchTime': '1704207924000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '1315.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '1315.00', 'maxMktOrderQty': '150.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MINAUSDT', 'lowercaseId': None, 'symbol': 'MINA/USDT:USDT', 'base': 'MINA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MINA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 227150.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1649228613000, 'info': {'symbol': 'MINAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MINA', 'quoteCoin': 'USDT', 'launchTime': '1649228613000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '227150.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '227150.0', 'maxMktOrderQty': '40000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.04', 'lowerFundingRate': '-0.04'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MKRUSDT', 'lowercaseId': None, 'symbol': 'MKR/USDT:USDT', 'base': 'MKR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MKR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.001, 'max': 160.0}, 'price': {'min': 0.1, 'max': 199999.8}, 'cost': {'min': None, 'max': None}}, 'created': 1644900435000, 'info': {'symbol': 'MKRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MKR', 'quoteCoin': 'USDT', 'launchTime': '1644900435000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '1', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.1', 'maxPrice': '199999.8', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '160.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '160.000', 'maxMktOrderQty': '40.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MNTUSDT', 'lowercaseId': None, 'symbol': 'MNT/USDT:USDT', 'base': 'MNT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MNT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 264735.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1696225255000, 'info': {'symbol': 'MNTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MNT', 'quoteCoin': 'USDT', 'launchTime': '1696225255000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00010', 'maxPrice': '199.99980', 'tickSize': '0.00010'}, 'lotSizeFilter': {'maxOrderQty': '264735', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '264735', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MOBILEUSDT', 'lowercaseId': None, 'symbol': 'MOBILE/USDT:USDT', 'base': 'MOBILE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MOBILE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 12500000.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1708598361000, 'info': {'symbol': 'MOBILEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MOBILE', 'quoteCoin': 'USDT', 'launchTime': '1708598361000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '12500000', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '12500000', 'maxMktOrderQty': '2500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MOVRUSDT', 'lowercaseId': None, 'symbol': 'MOVR/USDT:USDT', 'base': 'MOVR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MOVR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 3545.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1700719762000, 'info': {'symbol': 'MOVRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MOVR', 'quoteCoin': 'USDT', 'launchTime': '1700719762000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '3545.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '3545.0', 'maxMktOrderQty': '2000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MTLUSDT', 'lowercaseId': None, 'symbol': 'MTL/USDT:USDT', 'base': 'MTL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MTL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 57340.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1649831690000, 'info': {'symbol': 'MTLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MTL', 'quoteCoin': 'USDT', 'launchTime': '1649831690000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '57340.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '57340.0', 'maxMktOrderQty': '16500.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MYRIAUSDT', 'lowercaseId': None, 'symbol': 'MYRIA/USDT:USDT', 'base': 'MYRIA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MYRIA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 1377170.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1702620879000, 'info': {'symbol': 'MYRIAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MYRIA', 'quoteCoin': 'USDT', 'launchTime': '1702620879000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '1377170', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1377170', 'maxMktOrderQty': '1200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MYROUSDT', 'lowercaseId': None, 'symbol': 'MYRO/USDT:USDT', 'base': 'MYRO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'MYRO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 497345.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1705585191000, 'info': {'symbol': 'MYROUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'MYRO', 'quoteCoin': 'USDT', 'launchTime': '1705585191000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '497345', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '497345', 'maxMktOrderQty': '60000'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NEARUSDT', 'lowercaseId': None, 'symbol': 'NEAR/USDT:USDT', 'base': 'NEAR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'NEAR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 81560.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1633910400000, 'info': {'symbol': 'NEARUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'NEAR', 'quoteCoin': 'USDT', 'launchTime': '1633910400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '81560.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '81560.0', 'maxMktOrderQty': '66000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NEOUSDT', 'lowercaseId': None, 'symbol': 'NEO/USDT:USDT', 'base': 'NEO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'NEO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.01, 'max': 11225.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1643509229000, 'info': {'symbol': 'NEOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'NEO', 'quoteCoin': 'USDT', 'launchTime': '1643509229000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '11225.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '11225.00', 'maxMktOrderQty': '2850.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NFPUSDT', 'lowercaseId': None, 'symbol': 'NFP/USDT:USDT', 'base': 'NFP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'NFP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 144595.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1703673025000, 'info': {'symbol': 'NFPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'NFP', 'quoteCoin': 'USDT', 'launchTime': '1703673025000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '144595.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '144595.0', 'maxMktOrderQty': '10000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NKNUSDT', 'lowercaseId': None, 'symbol': 'NKN/USDT:USDT', 'base': 'NKN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'NKN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 616849.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1676960331000, 'info': {'symbol': 'NKNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'NKN', 'quoteCoin': 'USDT', 'launchTime': '1676960331000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '616849', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '616849', 'maxMktOrderQty': '350000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NMRUSDT', 'lowercaseId': None, 'symbol': 'NMR/USDT:USDT', 'base': 'NMR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'NMR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 4035.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1693804592000, 'info': {'symbol': 'NMRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'NMR', 'quoteCoin': 'USDT', 'launchTime': '1693804592000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '4035.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '4035.0', 'maxMktOrderQty': '2025.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'NTRNUSDT', 'lowercaseId': None, 'symbol': 'NTRN/USDT:USDT', 'base': 'NTRN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'NTRN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 60000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1696936478000, 'info': {'symbol': 'NTRNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'NTRN', 'quoteCoin': 'USDT', 'launchTime': '1696936478000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '60000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '60000', 'maxMktOrderQty': '60000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OCEANUSDT', 'lowercaseId': None, 'symbol': 'OCEAN/USDT:USDT', 'base': 'OCEAN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'OCEAN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 212840.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1645581435000, 'info': {'symbol': 'OCEANUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OCEAN', 'quoteCoin': 'USDT', 'launchTime': '1645581435000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '212840', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '212840', 'maxMktOrderQty': '73500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OGNUSDT', 'lowercaseId': None, 'symbol': 'OGN/USDT:USDT', 'base': 'OGN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'OGN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 854305.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1647671419000, 'info': {'symbol': 'OGNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OGN', 'quoteCoin': 'USDT', 'launchTime': '1647671419000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '854305', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '854305', 'maxMktOrderQty': '163010'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OGUSDT', 'lowercaseId': None, 'symbol': 'OG/USDT:USDT', 'base': 'OG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'OG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 8250.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1693210797000, 'info': {'symbol': 'OGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OG', 'quoteCoin': 'USDT', 'launchTime': '1693210797000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '8250.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '8250.0', 'maxMktOrderQty': '8250.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OMGUSDT', 'lowercaseId': None, 'symbol': 'OMG/USDT:USDT', 'base': 'OMG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'OMG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 141905.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1633996800000, 'info': {'symbol': 'OMGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OMG', 'quoteCoin': 'USDT', 'launchTime': '1633996800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '141905.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '141905.0', 'maxMktOrderQty': '21600.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ONDOUSDT', 'lowercaseId': None, 'symbol': 'ONDO/USDT:USDT', 'base': 'ONDO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ONDO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 641960.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1705919392000, 'info': {'symbol': 'ONDOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ONDO', 'quoteCoin': 'USDT', 'launchTime': '1705919392000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '641960', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '641960', 'maxMktOrderQty': '50000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ONEUSDT', 'lowercaseId': None, 'symbol': 'ONE/USDT:USDT', 'base': 'ONE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ONE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 8399056.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'ONEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ONE', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '8399056', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '8399056', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ONGUSDT', 'lowercaseId': None, 'symbol': 'ONG/USDT:USDT', 'base': 'ONG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ONG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 154150.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1701155663000, 'info': {'symbol': 'ONGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ONG', 'quoteCoin': 'USDT', 'launchTime': '1701155663000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '154150', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '154150', 'maxMktOrderQty': '30000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ONTUSDT', 'lowercaseId': None, 'symbol': 'ONT/USDT:USDT', 'base': 'ONT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ONT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 620198.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1654497420000, 'info': {'symbol': 'ONTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ONT', 'quoteCoin': 'USDT', 'launchTime': '1654497420000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '620198', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '620198', 'maxMktOrderQty': '74600'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OPPERP', 'lowercaseId': None, 'symbol': 'OP/USDC:USDC', 'base': 'OP', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'OP', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 7500.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1661990400000, 'info': {'symbol': 'OPPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OP', 'quoteCoin': 'USDC', 'launchTime': '1661990400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '7500', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '7500', 'maxMktOrderQty': '7500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OPUSDT', 'lowercaseId': None, 'symbol': 'OP/USDT:USDT', 'base': 'OP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'OP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 163840.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1654059063000, 'info': {'symbol': 'OPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OP', 'quoteCoin': 'USDT', 'launchTime': '1654059063000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '163840.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '163840.0', 'maxMktOrderQty': '147000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ORBSUSDT', 'lowercaseId': None, 'symbol': 'ORBS/USDT:USDT', 'base': 'ORBS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ORBS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 2432150.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1696837542000, 'info': {'symbol': 'ORBSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ORBS', 'quoteCoin': 'USDT', 'launchTime': '1696837542000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2432150', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2432150', 'maxMktOrderQty': '1500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ORDIUSDT', 'lowercaseId': None, 'symbol': 'ORDI/USDT:USDT', 'base': 'ORDI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ORDI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 0.01, 'max': 9920.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1684739410000, 'info': {'symbol': 'ORDIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ORDI', 'quoteCoin': 'USDT', 'launchTime': '1684739410000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '9920.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '9920.00', 'maxMktOrderQty': '1500.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ORNUSDT', 'lowercaseId': None, 'symbol': 'ORN/USDT:USDT', 'base': 'ORN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ORN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 50000.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1710136561000, 'info': {'symbol': 'ORNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ORN', 'quoteCoin': 'USDT', 'launchTime': '1710136561000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '50000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '50000.0', 'maxMktOrderQty': '10000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'OXTUSDT', 'lowercaseId': None, 'symbol': 'OXT/USDT:USDT', 'base': 'OXT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'OXT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 337500.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1691643171000, 'info': {'symbol': 'OXTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'OXT', 'quoteCoin': 'USDT', 'launchTime': '1691643171000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '337500', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '337500', 'maxMktOrderQty': '337500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PAXGUSDT', 'lowercaseId': None, 'symbol': 'PAXG/USDT:USDT', 'base': 'PAXG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PAXG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 1.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 0.001, 'max': 40.0}, 'price': {'min': 1.0, 'max': 1999998.0}, 'cost': {'min': None, 'max': None}}, 'created': 1647245226000, 'info': {'symbol': 'PAXGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PAXG', 'quoteCoin': 'USDT', 'launchTime': '1647245226000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '0', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '1', 'maxPrice': '1999998', 'tickSize': '1'}, 'lotSizeFilter': {'maxOrderQty': '40.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '40.000', 'maxMktOrderQty': '6.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PENDLEUSDT', 'lowercaseId': None, 'symbol': 'PENDLE/USDT:USDT', 'base': 'PENDLE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PENDLE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 106065.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1688542002000, 'info': {'symbol': 'PENDLEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PENDLE', 'quoteCoin': 'USDT', 'launchTime': '1688542002000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '106065', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '106065', 'maxMktOrderQty': '50000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PEOPLEUSDT', 'lowercaseId': None, 'symbol': 'PEOPLE/USDT:USDT', 'base': 'PEOPLE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PEOPLE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 10757005.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1640749024000, 'info': {'symbol': 'PEOPLEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PEOPLE', 'quoteCoin': 'USDT', 'launchTime': '1640749024000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '10757005', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '10757005', 'maxMktOrderQty': '2000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PERPUSDT', 'lowercaseId': None, 'symbol': 'PERP/USDT:USDT', 'base': 'PERP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PERP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 89060.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1693981865000, 'info': {'symbol': 'PERPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PERP', 'quoteCoin': 'USDT', 'launchTime': '1693981865000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00010', 'maxPrice': '199.99980', 'tickSize': '0.00010'}, 'lotSizeFilter': {'maxOrderQty': '89060', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '89060', 'maxMktOrderQty': '65000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PHBUSDT', 'lowercaseId': None, 'symbol': 'PHB/USDT:USDT', 'base': 'PHB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PHB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 64980.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1684396645000, 'info': {'symbol': 'PHBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PHB', 'quoteCoin': 'USDT', 'launchTime': '1684396645000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '64980', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '64980', 'maxMktOrderQty': '11250'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PIXELUSDT', 'lowercaseId': None, 'symbol': 'PIXEL/USDT:USDT', 'base': 'PIXEL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PIXEL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 221788.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1708416370000, 'info': {'symbol': 'PIXELUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PIXEL', 'quoteCoin': 'USDT', 'launchTime': '1708416370000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '221788', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '221788', 'maxMktOrderQty': '20000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'POLYXUSDT', 'lowercaseId': None, 'symbol': 'POLYX/USDT:USDT', 'base': 'POLYX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'POLYX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 508055.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1698129996000, 'info': {'symbol': 'POLYXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'POLYX', 'quoteCoin': 'USDT', 'launchTime': '1698129996000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '508055', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '508055', 'maxMktOrderQty': '120000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PORTALUSDT', 'lowercaseId': None, 'symbol': 'PORTAL/USDT:USDT', 'base': 'PORTAL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PORTAL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 30000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1709264458000, 'info': {'symbol': 'PORTALUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PORTAL', 'quoteCoin': 'USDT', 'launchTime': '1709264458000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '30000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '30000.0', 'maxMktOrderQty': '6000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'POWRUSDT', 'lowercaseId': None, 'symbol': 'POWR/USDT:USDT', 'base': 'POWR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'POWR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 953885.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1698130882000, 'info': {'symbol': 'POWRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'POWR', 'quoteCoin': 'USDT', 'launchTime': '1698130882000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '953885', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '953885', 'maxMktOrderQty': '80000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PROMUSDT', 'lowercaseId': None, 'symbol': 'PROM/USDT:USDT', 'base': 'PROM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PROM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 12000.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1693891796000, 'info': {'symbol': 'PROMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PROM', 'quoteCoin': 'USDT', 'launchTime': '1693891796000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0010', 'maxPrice': '1999.9980', 'tickSize': '0.0010'}, 'lotSizeFilter': {'maxOrderQty': '12000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '12000.0', 'maxMktOrderQty': '12000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'PYTHUSDT', 'lowercaseId': None, 'symbol': 'PYTH/USDT:USDT', 'base': 'PYTH', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'PYTH', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1159810.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1700543350000, 'info': {'symbol': 'PYTHUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'PYTH', 'quoteCoin': 'USDT', 'launchTime': '1700543350000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '1159810', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1159810', 'maxMktOrderQty': '80000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QIUSDT', 'lowercaseId': None, 'symbol': 'QI/USDT:USDT', 'base': 'QI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'QI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1140880.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1702365139000, 'info': {'symbol': 'QIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'QI', 'quoteCoin': 'USDT', 'launchTime': '1702365139000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1140880', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1140880', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QNTUSDT', 'lowercaseId': None, 'symbol': 'QNT/USDT:USDT', 'base': 'QNT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'QNT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.01, 'max': 1150.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1687154400000, 'info': {'symbol': 'QNTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'QNT', 'quoteCoin': 'USDT', 'launchTime': '1687154400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '1150.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '1150.00', 'maxMktOrderQty': '250.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'QTUMUSDT', 'lowercaseId': None, 'symbol': 'QTUM/USDT:USDT', 'base': 'QTUM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'QTUM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 30095.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1639356566000, 'info': {'symbol': 'QTUMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'QTUM', 'quoteCoin': 'USDT', 'launchTime': '1639356566000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '30095.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '30095.0', 'maxMktOrderQty': '6000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RADUSDT', 'lowercaseId': None, 'symbol': 'RAD/USDT:USDT', 'base': 'RAD', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RAD', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 93466.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1686210174000, 'info': {'symbol': 'RADUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RAD', 'quoteCoin': 'USDT', 'launchTime': '1686210174000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '93466.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '93466.0', 'maxMktOrderQty': '13000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RAREUSDT', 'lowercaseId': None, 'symbol': 'RARE/USDT:USDT', 'base': 'RARE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RARE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 283210.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1701067684000, 'info': {'symbol': 'RAREUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RARE', 'quoteCoin': 'USDT', 'launchTime': '1701067684000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '283210', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '283210', 'maxMktOrderQty': '150000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RDNTUSDT', 'lowercaseId': None, 'symbol': 'RDNT/USDT:USDT', 'base': 'RDNT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RDNT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 476520.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1681715107000, 'info': {'symbol': 'RDNTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RDNT', 'quoteCoin': 'USDT', 'launchTime': '1681715107000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '476520', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '476520', 'maxMktOrderQty': '50000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'REEFUSDT', 'lowercaseId': None, 'symbol': 'REEF/USDT:USDT', 'base': 'REEF', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'REEF', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 10.0, 'max': 36424450.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1644885000000, 'info': {'symbol': 'REEFUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'REEF', 'quoteCoin': 'USDT', 'launchTime': '1644885000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '36424450', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '36424450', 'maxMktOrderQty': '7200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RENUSDT', 'lowercaseId': None, 'symbol': 'REN/USDT:USDT', 'base': 'REN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'REN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 1708030.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1640314037000, 'info': {'symbol': 'RENUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'REN', 'quoteCoin': 'USDT', 'launchTime': '1640314037000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1708030.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '1708030.0', 'maxMktOrderQty': '336000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'REQUSDT', 'lowercaseId': None, 'symbol': 'REQ/USDT:USDT', 'base': 'REQ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'REQ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 72225.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1638748800000, 'info': {'symbol': 'REQUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'REQ', 'quoteCoin': 'USDT', 'launchTime': '1638748800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '72225', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '72225', 'maxMktOrderQty': '38000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RIFUSDT', 'lowercaseId': None, 'symbol': 'RIF/USDT:USDT', 'base': 'RIF', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RIF', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 231900.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1698044016000, 'info': {'symbol': 'RIFUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RIF', 'quoteCoin': 'USDT', 'launchTime': '1698044016000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '231900', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '231900', 'maxMktOrderQty': '200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RLCUSDT', 'lowercaseId': None, 'symbol': 'RLC/USDT:USDT', 'base': 'RLC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RLC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 25000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1679468899000, 'info': {'symbol': 'RLCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RLC', 'quoteCoin': 'USDT', 'launchTime': '1679468899000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '25000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '25000.0', 'maxMktOrderQty': '25000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RNDRUSDT', 'lowercaseId': None, 'symbol': 'RNDR/USDT:USDT', 'base': 'RNDR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RNDR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 32000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638285813000, 'info': {'symbol': 'RNDRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RNDR', 'quoteCoin': 'USDT', 'launchTime': '1638285813000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00010', 'maxPrice': '199.99980', 'tickSize': '0.00010'}, 'lotSizeFilter': {'maxOrderQty': '32000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '32000.0', 'maxMktOrderQty': '32000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RONUSDT', 'lowercaseId': None, 'symbol': 'RON/USDT:USDT', 'base': 'RON', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RON', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 26230.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1708415298000, 'info': {'symbol': 'RONUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RON', 'quoteCoin': 'USDT', 'launchTime': '1708415298000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '26230.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '26230.0', 'maxMktOrderQty': '4000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ROSEUSDT', 'lowercaseId': None, 'symbol': 'ROSE/USDT:USDT', 'base': 'ROSE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ROSE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 983125.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1642140231000, 'info': {'symbol': 'ROSEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ROSE', 'quoteCoin': 'USDT', 'launchTime': '1642140231000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '983125', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '983125', 'maxMktOrderQty': '240000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RPLUSDT', 'lowercaseId': None, 'symbol': 'RPL/USDT:USDT', 'base': 'RPL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RPL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.01, 'max': 995.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1677655946000, 'info': {'symbol': 'RPLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RPL', 'quoteCoin': 'USDT', 'launchTime': '1677655946000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '995.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '995.00', 'maxMktOrderQty': '750.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RSRUSDT', 'lowercaseId': None, 'symbol': 'RSR/USDT:USDT', 'base': 'RSR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RSR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 39495390.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1638286101000, 'info': {'symbol': 'RSRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RSR', 'quoteCoin': 'USDT', 'launchTime': '1638286101000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '39495390', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '39495390', 'maxMktOrderQty': '10000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RSS3USDT', 'lowercaseId': None, 'symbol': 'RSS3/USDT:USDT', 'base': 'RSS3', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RSS3', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 39540.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1645581254000, 'info': {'symbol': 'RSS3USDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RSS3', 'quoteCoin': 'USDT', 'launchTime': '1645581254000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '39540', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '39540', 'maxMktOrderQty': '15900'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RUNEUSDT', 'lowercaseId': None, 'symbol': 'RUNE/USDT:USDT', 'base': 'RUNE', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RUNE', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 138150.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1638144000000, 'info': {'symbol': 'RUNEUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RUNE', 'quoteCoin': 'USDT', 'launchTime': '1638144000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '138150.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '138150.0', 'maxMktOrderQty': '16400.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'RVNUSDT', 'lowercaseId': None, 'symbol': 'RVN/USDT:USDT', 'base': 'RVN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'RVN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 6123263.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1641454067000, 'info': {'symbol': 'RVNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'RVN', 'quoteCoin': 'USDT', 'launchTime': '1641454067000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '6123263', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '6123263', 'maxMktOrderQty': '400000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SANDUSDT', 'lowercaseId': None, 'symbol': 'SAND/USDT:USDT', 'base': 'SAND', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SAND', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1103210.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1635724800000, 'info': {'symbol': 'SANDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SAND', 'quoteCoin': 'USDT', 'launchTime': '1635724800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '1103210', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1103210', 'maxMktOrderQty': '253950'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SCAUSDT', 'lowercaseId': None, 'symbol': 'SCA/USDT:USDT', 'base': 'SCA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SCA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 100000.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1710310660000, 'info': {'symbol': 'SCAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SCA', 'quoteCoin': 'USDT', 'launchTime': '1710310660000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '100000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '100000.0', 'maxMktOrderQty': '20000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SCRTUSDT', 'lowercaseId': None, 'symbol': 'SCRT/USDT:USDT', 'base': 'SCRT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SCRT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 25725.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1648633843000, 'info': {'symbol': 'SCRTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SCRT', 'quoteCoin': 'USDT', 'launchTime': '1648633843000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '25725.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '25725.0', 'maxMktOrderQty': '8000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SCUSDT', 'lowercaseId': None, 'symbol': 'SC/USDT:USDT', 'base': 'SC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 1246630.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1638285958000, 'info': {'symbol': 'SCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SC', 'quoteCoin': 'USDT', 'launchTime': '1638285958000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '1246630', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1246630', 'maxMktOrderQty': '660000'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.04', 'lowerFundingRate': '-0.04'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SEIUSDT', 'lowercaseId': None, 'symbol': 'SEI/USDT:USDT', 'base': 'SEI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SEI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 549885.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1692156527000, 'info': {'symbol': 'SEIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SEI', 'quoteCoin': 'USDT', 'launchTime': '1692156527000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '549885', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '549885', 'maxMktOrderQty': '300000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SFPUSDT', 'lowercaseId': None, 'symbol': 'SFP/USDT:USDT', 'base': 'SFP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SFP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 171845.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637884800000, 'info': {'symbol': 'SFPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SFP', 'quoteCoin': 'USDT', 'launchTime': '1637884800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '171845.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '171845.0', 'maxMktOrderQty': '18000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SHIB1000USDT', 'lowercaseId': None, 'symbol': 'SHIB1000/USDT:USDT', 'base': 'SHIB1000', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SHIB1000', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 10.0, 'max': 58265210.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1634688000000, 'info': {'symbol': 'SHIB1000USDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SHIB1000', 'quoteCoin': 'USDT', 'launchTime': '1634688000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '58265210', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '58265210', 'maxMktOrderQty': '18000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SILLYUSDT', 'lowercaseId': None, 'symbol': 'SILLY/USDT:USDT', 'base': 'SILLY', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SILLY', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 445060.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1703666783000, 'info': {'symbol': 'SILLYUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SILLY', 'quoteCoin': 'USDT', 'launchTime': '1703666783000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '445060', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '445060', 'maxMktOrderQty': '80000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SKLUSDT', 'lowercaseId': None, 'symbol': 'SKL/USDT:USDT', 'base': 'SKL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SKL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 711095.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1647937788000, 'info': {'symbol': 'SKLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SKL', 'quoteCoin': 'USDT', 'launchTime': '1647937788000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '711095', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '711095', 'maxMktOrderQty': '192000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SLPUSDT', 'lowercaseId': None, 'symbol': 'SLP/USDT:USDT', 'base': 'SLP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SLP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 30363570.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1637164800000, 'info': {'symbol': 'SLPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SLP', 'quoteCoin': 'USDT', 'launchTime': '1637164800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '30363570', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '30363570', 'maxMktOrderQty': '3720000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SNTUSDT', 'lowercaseId': None, 'symbol': 'SNT/USDT:USDT', 'base': 'SNT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SNT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1791660.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1698913694000, 'info': {'symbol': 'SNTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SNT', 'quoteCoin': 'USDT', 'launchTime': '1698913694000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1791660', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1791660', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SNXUSDT', 'lowercaseId': None, 'symbol': 'SNX/USDT:USDT', 'base': 'SNX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SNX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 59835.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1639357278000, 'info': {'symbol': 'SNXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SNX', 'quoteCoin': 'USDT', 'launchTime': '1639357278000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '59835.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '59835.0', 'maxMktOrderQty': '29800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLPERP', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 955.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1659657600000, 'info': {'symbol': 'SOLPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'launchTime': '1659657600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '955.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '955.0', 'maxMktOrderQty': '200.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.025', 'lowerFundingRate': '-0.025'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOLUSDT', 'lowercaseId': None, 'symbol': 'SOL/USDT:USDT', 'base': 'SOL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SOL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 0.1, 'max': 51405.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1634256000000, 'info': {'symbol': 'SOLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDT', 'launchTime': '1634256000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '51405.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '51405.0', 'maxMktOrderQty': '31875.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SPELLUSDT', 'lowercaseId': None, 'symbol': 'SPELL/USDT:USDT', 'base': 'SPELL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SPELL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 154945210.0}, 'price': {'min': 1e-07, 'max': 0.1999998}, 'cost': {'min': None, 'max': None}}, 'created': 1639358469000, 'info': {'symbol': 'SPELLUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SPELL', 'quoteCoin': 'USDT', 'launchTime': '1639358469000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000001', 'maxPrice': '0.1999998', 'tickSize': '0.0000001'}, 'lotSizeFilter': {'maxOrderQty': '154945210', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '154945210', 'maxMktOrderQty': '20000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SSVUSDT', 'lowercaseId': None, 'symbol': 'SSV/USDT:USDT', 'base': 'SSV', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SSV', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 3560.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1677655670000, 'info': {'symbol': 'SSVUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SSV', 'quoteCoin': 'USDT', 'launchTime': '1677655670000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '3560.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '3560.00', 'maxMktOrderQty': '1000.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STEEMUSDT', 'lowercaseId': None, 'symbol': 'STEEM/USDT:USDT', 'base': 'STEEM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STEEM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 1.0, 'max': 284596.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1698215382000, 'info': {'symbol': 'STEEMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STEEM', 'quoteCoin': 'USDT', 'launchTime': '1698215382000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '284596', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '284596', 'maxMktOrderQty': '80000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STGUSDT', 'lowercaseId': None, 'symbol': 'STG/USDT:USDT', 'base': 'STG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 127430.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1661493459000, 'info': {'symbol': 'STGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STG', 'quoteCoin': 'USDT', 'launchTime': '1661493459000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '127430.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '127430.0', 'maxMktOrderQty': '52000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STMXUSDT', 'lowercaseId': None, 'symbol': 'STMX/USDT:USDT', 'base': 'STMX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STMX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 5.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 5.0, 'max': 16388140.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1648451275000, 'info': {'symbol': 'STMXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STMX', 'quoteCoin': 'USDT', 'launchTime': '1648451275000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '16388140', 'minOrderQty': '5', 'qtyStep': '5', 'postOnlyMaxOrderQty': '16388140', 'maxMktOrderQty': '1955475'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STORJUSDT', 'lowercaseId': None, 'symbol': 'STORJ/USDT:USDT', 'base': 'STORJ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STORJ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 323300.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637539200000, 'info': {'symbol': 'STORJUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STORJ', 'quoteCoin': 'USDT', 'launchTime': '1637539200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '323300.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '323300.0', 'maxMktOrderQty': '58000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STPTUSDT', 'lowercaseId': None, 'symbol': 'STPT/USDT:USDT', 'base': 'STPT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STPT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 10.0, 'max': 775230.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1696326377000, 'info': {'symbol': 'STPTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STPT', 'quoteCoin': 'USDT', 'launchTime': '1696326377000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '775230', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '775230', 'maxMktOrderQty': '400000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STRAXUSDT', 'lowercaseId': None, 'symbol': 'STRAX/USDT:USDT', 'base': 'STRAX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STRAX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 93870.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1696837970000, 'info': {'symbol': 'STRAXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STRAX', 'quoteCoin': 'USDT', 'launchTime': '1696837970000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '93870', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '93870', 'maxMktOrderQty': '40000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STRKUSDT', 'lowercaseId': None, 'symbol': 'STRK/USDT:USDT', 'base': 'STRK', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STRK', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 162495.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1708436526000, 'info': {'symbol': 'STRKUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STRK', 'quoteCoin': 'USDT', 'launchTime': '1708436526000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '162495.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '162495.0', 'maxMktOrderQty': '4500.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'STXUSDT', 'lowercaseId': None, 'symbol': 'STX/USDT:USDT', 'base': 'STX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'STX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 5e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 81000.0}, 'price': {'min': 5e-05, 'max': 99.9999}, 'cost': {'min': None, 'max': None}}, 'created': 1638259183000, 'info': {'symbol': 'STXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'STX', 'quoteCoin': 'USDT', 'launchTime': '1638259183000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00005', 'maxPrice': '99.99990', 'tickSize': '0.00005'}, 'lotSizeFilter': {'maxOrderQty': '81000.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '81000.0', 'maxMktOrderQty': '81000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUIUSDT', 'lowercaseId': None, 'symbol': 'SUI/USDT:USDT', 'base': 'SUI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SUI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 10.0, 'max': 675000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1683029724000, 'info': {'symbol': 'SUIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SUI', 'quoteCoin': 'USDT', 'launchTime': '1683029724000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00010', 'maxPrice': '199.99980', 'tickSize': '0.00010'}, 'lotSizeFilter': {'maxOrderQty': '675000', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '675000', 'maxMktOrderQty': '675000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUNUSDT', 'lowercaseId': None, 'symbol': 'SUN/USDT:USDT', 'base': 'SUN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SUN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 2284140.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1645166314000, 'info': {'symbol': 'SUNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SUN', 'quoteCoin': 'USDT', 'launchTime': '1645166314000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '2284140', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2284140', 'maxMktOrderQty': '800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUPERUSDT', 'lowercaseId': None, 'symbol': 'SUPER/USDT:USDT', 'base': 'SUPER', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SUPER', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 230560.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1700720186000, 'info': {'symbol': 'SUPERUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SUPER', 'quoteCoin': 'USDT', 'launchTime': '1700720186000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '230560', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '230560', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SUSHIUSDT', 'lowercaseId': None, 'symbol': 'SUSHI/USDT:USDT', 'base': 'SUSHI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SUSHI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 163955.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638230400000, 'info': {'symbol': 'SUSHIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SUSHI', 'quoteCoin': 'USDT', 'launchTime': '1638230400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '163955.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '163955.0', 'maxMktOrderQty': '38600.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SWEATUSDT', 'lowercaseId': None, 'symbol': 'SWEAT/USDT:USDT', 'base': 'SWEAT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SWEAT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 1086540.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1667488253000, 'info': {'symbol': 'SWEATUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SWEAT', 'quoteCoin': 'USDT', 'launchTime': '1667488253000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '1086540', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1086540', 'maxMktOrderQty': '750000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SXPUSDT', 'lowercaseId': None, 'symbol': 'SXP/USDT:USDT', 'base': 'SXP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'SXP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 414470.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1638932481000, 'info': {'symbol': 'SXPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'SXP', 'quoteCoin': 'USDT', 'launchTime': '1638932481000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '414470.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '414470.0', 'maxMktOrderQty': '66800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TAOUSDT', 'lowercaseId': None, 'symbol': 'TAO/USDT:USDT', 'base': 'TAO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TAO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.001, 'max': 85.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1706601081000, 'info': {'symbol': 'TAOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TAO', 'quoteCoin': 'USDT', 'launchTime': '1706601081000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '85.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '85.000', 'maxMktOrderQty': '40.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'THETAUSDT', 'lowercaseId': None, 'symbol': 'THETA/USDT:USDT', 'base': 'THETA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'THETA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 154015.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1628726400000, 'info': {'symbol': 'THETAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'THETA', 'quoteCoin': 'USDT', 'launchTime': '1628726400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '154015.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '154015.0', 'maxMktOrderQty': '36000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TIAUSDT', 'lowercaseId': None, 'symbol': 'TIA/USDT:USDT', 'base': 'TIA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TIA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 35535.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1698768749000, 'info': {'symbol': 'TIAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TIA', 'quoteCoin': 'USDT', 'launchTime': '1698768749000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0010', 'maxPrice': '1999.9980', 'tickSize': '0.0010'}, 'lotSizeFilter': {'maxOrderQty': '35535.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '35535.0', 'maxMktOrderQty': '10000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TLMUSDT', 'lowercaseId': None, 'symbol': 'TLM/USDT:USDT', 'base': 'TLM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TLM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 2830610.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1637539200000, 'info': {'symbol': 'TLMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TLM', 'quoteCoin': 'USDT', 'launchTime': '1637539200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '2830610', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '2830610', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TOKENUSDT', 'lowercaseId': None, 'symbol': 'TOKEN/USDT:USDT', 'base': 'TOKEN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TOKEN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 1031340.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1699011701000, 'info': {'symbol': 'TOKENUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TOKEN', 'quoteCoin': 'USDT', 'launchTime': '1699011701000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1031340', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1031340', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TOMIUSDT', 'lowercaseId': None, 'symbol': 'TOMI/USDT:USDT', 'base': 'TOMI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TOMI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.1, 'max': 15225.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1696919770000, 'info': {'symbol': 'TOMIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TOMI', 'quoteCoin': 'USDT', 'launchTime': '1696919770000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '15225.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '15225.0', 'maxMktOrderQty': '10000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TONUSDT', 'lowercaseId': None, 'symbol': 'TON/USDT:USDT', 'base': 'TON', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TON', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 46260.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1693460834000, 'info': {'symbol': 'TONUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TON', 'quoteCoin': 'USDT', 'launchTime': '1693460834000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '46260.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '46260.0', 'maxMktOrderQty': '25000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRBUSDT', 'lowercaseId': None, 'symbol': 'TRB/USDT:USDT', 'base': 'TRB', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TRB', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.01, 'max': 5930.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1654828244000, 'info': {'symbol': 'TRBUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TRB', 'quoteCoin': 'USDT', 'launchTime': '1654828244000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.010', 'maxPrice': '19999.980', 'tickSize': '0.010'}, 'lotSizeFilter': {'maxOrderQty': '5930.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '5930.00', 'maxMktOrderQty': '500.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '240', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRUUSDT', 'lowercaseId': None, 'symbol': 'TRU/USDT:USDT', 'base': 'TRU', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TRU', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 1449990.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1678343222000, 'info': {'symbol': 'TRUUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TRU', 'quoteCoin': 'USDT', 'launchTime': '1678343222000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1449990', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1449990', 'maxMktOrderQty': '400000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TRXUSDT', 'lowercaseId': None, 'symbol': 'TRX/USDT:USDT', 'base': 'TRX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TRX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 3831405.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1628726400000, 'info': {'symbol': 'TRXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TRX', 'quoteCoin': 'USDT', 'launchTime': '1628726400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '3831405', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3831405', 'maxMktOrderQty': '2200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TUSDT', 'lowercaseId': None, 'symbol': 'T/USDT:USDT', 'base': 'T', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'T', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 2966430.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1678087595000, 'info': {'symbol': 'TUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'T', 'quoteCoin': 'USDT', 'launchTime': '1678087595000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '2966430', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '2966430', 'maxMktOrderQty': '800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'TWTUSDT', 'lowercaseId': None, 'symbol': 'TWT/USDT:USDT', 'base': 'TWT', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'TWT', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 66035.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1668666261000, 'info': {'symbol': 'TWTUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'TWT', 'quoteCoin': 'USDT', 'launchTime': '1668666261000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '66035.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '66035.0', 'maxMktOrderQty': '12100.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'UMAUSDT', 'lowercaseId': None, 'symbol': 'UMA/USDT:USDT', 'base': 'UMA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'UMA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 129665.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1686210562000, 'info': {'symbol': 'UMAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'UMA', 'quoteCoin': 'USDT', 'launchTime': '1686210562000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '129665.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '129665.0', 'maxMktOrderQty': '13000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'UNFIUSDT', 'lowercaseId': None, 'symbol': 'UNFI/USDT:USDT', 'base': 'UNFI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'UNFI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 14790.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1653899789000, 'info': {'symbol': 'UNFIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'UNFI', 'quoteCoin': 'USDT', 'launchTime': '1653899789000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '14790.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '14790.0', 'maxMktOrderQty': '5800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'UNIUSDT', 'lowercaseId': None, 'symbol': 'UNI/USDT:USDT', 'base': 'UNI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'UNI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 68870.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1638230400000, 'info': {'symbol': 'UNIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'UNI', 'quoteCoin': 'USDT', 'launchTime': '1638230400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '68870.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '68870.0', 'maxMktOrderQty': '17400.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USDCUSDT', 'lowercaseId': None, 'symbol': 'USDC/USDT:USDT', 'base': 'USDC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'USDC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 2495400.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1656399612000, 'info': {'symbol': 'USDCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'USDC', 'quoteCoin': 'USDT', 'launchTime': '1656399612000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '2495400.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '2495400.0', 'maxMktOrderQty': '400000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'USTCUSDT', 'lowercaseId': None, 'symbol': 'USTC/USDT:USDT', 'base': 'USTC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'USTC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 10.0, 'max': 4584830.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1701067354000, 'info': {'symbol': 'USTCUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'USTC', 'quoteCoin': 'USDT', 'launchTime': '1701067354000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '4584830', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '4584830', 'maxMktOrderQty': '250000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.009', 'lowerFundingRate': '-0.009'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VANRYUSDT', 'lowercaseId': None, 'symbol': 'VANRY/USDT:USDT', 'base': 'VANRY', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'VANRY', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 350000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1710403331000, 'info': {'symbol': 'VANRYUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'VANRY', 'quoteCoin': 'USDT', 'launchTime': '1710403331000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '350000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '350000', 'maxMktOrderQty': '70000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VETUSDT', 'lowercaseId': None, 'symbol': 'VET/USDT:USDT', 'base': 'VET', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'VET', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 1748110.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1635120000000, 'info': {'symbol': 'VETUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'VET', 'quoteCoin': 'USDT', 'launchTime': '1635120000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1748110', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1748110', 'maxMktOrderQty': '1164700'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VGXUSDT', 'lowercaseId': None, 'symbol': 'VGX/USDT:USDT', 'base': 'VGX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'VGX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 235125.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1690869952000, 'info': {'symbol': 'VGXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'VGX', 'quoteCoin': 'USDT', 'launchTime': '1690869952000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '235125', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '235125', 'maxMktOrderQty': '180000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VRAUSDT', 'lowercaseId': None, 'symbol': 'VRA/USDT:USDT', 'base': 'VRA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'VRA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 100.0, 'max': 4665400.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1696330485000, 'info': {'symbol': 'VRAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'VRA', 'quoteCoin': 'USDT', 'launchTime': '1696330485000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '4665400', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '4665400', 'maxMktOrderQty': '4000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'VTHOUSDT', 'lowercaseId': None, 'symbol': 'VTHO/USDT:USDT', 'base': 'VTHO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'VTHO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 100.0, 'max': 4558400.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1708315106000, 'info': {'symbol': 'VTHOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'VTHO', 'quoteCoin': 'USDT', 'launchTime': '1708315106000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '4558400', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '4558400', 'maxMktOrderQty': '2000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WAVESUSDT', 'lowercaseId': None, 'symbol': 'WAVES/USDT:USDT', 'base': 'WAVES', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'WAVES', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 97805.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1641368026000, 'info': {'symbol': 'WAVESUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'WAVES', 'quoteCoin': 'USDT', 'launchTime': '1641368026000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '97805.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '97805.0', 'maxMktOrderQty': '29400.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WAXPUSDT', 'lowercaseId': None, 'symbol': 'WAXP/USDT:USDT', 'base': 'WAXP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'WAXP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 10.0, 'max': 992820.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1696918909000, 'info': {'symbol': 'WAXPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'WAXP', 'quoteCoin': 'USDT', 'launchTime': '1696918909000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '992820', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '992820', 'maxMktOrderQty': '600000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0225', 'lowerFundingRate': '-0.0225'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WIFUSDT', 'lowercaseId': None, 'symbol': 'WIF/USDT:USDT', 'base': 'WIF', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'WIF', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 310215.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1704965504000, 'info': {'symbol': 'WIFUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'WIF', 'quoteCoin': 'USDT', 'launchTime': '1704965504000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '310215', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '310215', 'maxMktOrderQty': '80000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WLDUSDT', 'lowercaseId': None, 'symbol': 'WLD/USDT:USDT', 'base': 'WLD', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'WLD', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 0.1, 'max': 39450.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1690184920000, 'info': {'symbol': 'WLDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'WLD', 'quoteCoin': 'USDT', 'launchTime': '1690184920000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '39450.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '39450.0', 'maxMktOrderQty': '12000.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'WOOUSDT', 'lowercaseId': None, 'symbol': 'WOO/USDT:USDT', 'base': 'WOO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'WOO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 453715.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1636416000000, 'info': {'symbol': 'WOOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'WOO', 'quoteCoin': 'USDT', 'launchTime': '1636416000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '453715.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '453715.0', 'maxMktOrderQty': '110800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XAIUSDT', 'lowercaseId': None, 'symbol': 'XAI/USDT:USDT', 'base': 'XAI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XAI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 276190.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1704879965000, 'info': {'symbol': 'XAIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XAI', 'quoteCoin': 'USDT', 'launchTime': '1704879965000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '276190', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '276190', 'maxMktOrderQty': '30000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XCNUSDT', 'lowercaseId': None, 'symbol': 'XCN/USDT:USDT', 'base': 'XCN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XCN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 16637430.0}, 'price': {'min': 1e-07, 'max': 0.1999998}, 'cost': {'min': None, 'max': None}}, 'created': 1651132431000, 'info': {'symbol': 'XCNUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XCN', 'quoteCoin': 'USDT', 'launchTime': '1651132431000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000001', 'maxPrice': '0.1999998', 'tickSize': '0.0000001'}, 'lotSizeFilter': {'maxOrderQty': '16637430', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '16637430', 'maxMktOrderQty': '1500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.04', 'lowerFundingRate': '-0.04'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XEMUSDT', 'lowercaseId': None, 'symbol': 'XEM/USDT:USDT', 'base': 'XEM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XEM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 1924060.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1638252824000, 'info': {'symbol': 'XEMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XEM', 'quoteCoin': 'USDT', 'launchTime': '1638252824000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '1924060', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1924060', 'maxMktOrderQty': '420000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XLMUSDT', 'lowercaseId': None, 'symbol': 'XLM/USDT:USDT', 'base': 'XLM', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XLM', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 3677953.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1628726400000, 'info': {'symbol': 'XLMUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XLM', 'quoteCoin': 'USDT', 'launchTime': '1628726400000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '3677953', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '3677953', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XMRUSDT', 'lowercaseId': None, 'symbol': 'XMR/USDT:USDT', 'base': 'XMR', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XMR', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 16.67}, 'amount': {'min': 0.01, 'max': 985.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1640143015000, 'info': {'symbol': 'XMRUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XMR', 'quoteCoin': 'USDT', 'launchTime': '1640143015000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '16.67', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '985.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '985.00', 'maxMktOrderQty': '280.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XNOUSDT', 'lowercaseId': None, 'symbol': 'XNO/USDT:USDT', 'base': 'XNO', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XNO', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 1.0, 'max': 12245.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1662076800000, 'info': {'symbol': 'XNOUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XNO', 'quoteCoin': 'USDT', 'launchTime': '1662076800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '12245', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '12245', 'maxMktOrderQty': '4900'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRDUSDT', 'lowercaseId': None, 'symbol': 'XRD/USDT:USDT', 'base': 'XRD', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XRD', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 342840.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1702361116000, 'info': {'symbol': 'XRDUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XRD', 'quoteCoin': 'USDT', 'launchTime': '1702361116000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '342840', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '342840', 'maxMktOrderQty': '200000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPPERP', 'lowercaseId': None, 'symbol': 'XRP/USDC:USDC', 'base': 'XRP', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'XRP', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 122495.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1659657600000, 'info': {'symbol': 'XRPPERP', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XRP', 'quoteCoin': 'USDC', 'launchTime': '1659657600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '122495', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '122495', 'maxMktOrderQty': '87500'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDC', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPUSDT', 'lowercaseId': None, 'symbol': 'XRP/USDT:USDT', 'base': 'XRP', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XRP', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 75.0}, 'amount': {'min': 1.0, 'max': 4975015.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1620898440000, 'info': {'symbol': 'XRPUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XRP', 'quoteCoin': 'USDT', 'launchTime': '1620898440000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '75.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '4975015', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '4975015', 'maxMktOrderQty': '1800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XTZUSDT', 'lowercaseId': None, 'symbol': 'XTZ/USDT:USDT', 'base': 'XTZ', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XTZ', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 163460.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1514764800000, 'info': {'symbol': 'XTZUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XTZ', 'quoteCoin': 'USDT', 'launchTime': '1514764800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '163460.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '163460.0', 'maxMktOrderQty': '26800.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XVGUSDT', 'lowercaseId': None, 'symbol': 'XVG/USDT:USDT', 'base': 'XVG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XVG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 100.0, 'price': 5e-07, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 100.0, 'max': 14013400.0}, 'price': {'min': 5e-07, 'max': 0.999999}, 'cost': {'min': None, 'max': None}}, 'created': 1688541486000, 'info': {'symbol': 'XVGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XVG', 'quoteCoin': 'USDT', 'launchTime': '1688541486000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '7', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0000005', 'maxPrice': '0.9999990', 'tickSize': '0.0000005'}, 'lotSizeFilter': {'maxOrderQty': '14013400', 'minOrderQty': '100', 'qtyStep': '100', 'postOnlyMaxOrderQty': '14013400', 'maxMktOrderQty': '8000000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.02', 'lowerFundingRate': '-0.02'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XVSUSDT', 'lowercaseId': None, 'symbol': 'XVS/USDT:USDT', 'base': 'XVS', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'XVS', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 5035.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1694159027000, 'info': {'symbol': 'XVSUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'XVS', 'quoteCoin': 'USDT', 'launchTime': '1694159027000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0010', 'maxPrice': '1999.9980', 'tickSize': '0.0010'}, 'lotSizeFilter': {'maxOrderQty': '5035.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '5035.0', 'maxMktOrderQty': '4500.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'YFIIUSDT', 'lowercaseId': None, 'symbol': 'YFII/USDT:USDT', 'base': 'YFII', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'YFII', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.001, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 0.001, 'max': 40.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1692174480000, 'info': {'symbol': 'YFIIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'YFII', 'quoteCoin': 'USDT', 'launchTime': '1692174480000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '40.000', 'minOrderQty': '0.001', 'qtyStep': '0.001', 'postOnlyMaxOrderQty': '40.000', 'maxMktOrderQty': '15.000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'YFIUSDT', 'lowercaseId': None, 'symbol': 'YFI/USDT:USDT', 'base': 'YFI', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'YFI', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.0001, 'price': 1.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.0001, 'max': 22.0}, 'price': {'min': 1.0, 'max': 1999998.0}, 'cost': {'min': None, 'max': None}}, 'created': 1638930769000, 'info': {'symbol': 'YFIUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'YFI', 'quoteCoin': 'USDT', 'launchTime': '1638930769000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '0', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '1', 'maxPrice': '1999998', 'tickSize': '1'}, 'lotSizeFilter': {'maxOrderQty': '22.0000', 'minOrderQty': '0.0001', 'qtyStep': '0.0001', 'postOnlyMaxOrderQty': '22.0000', 'maxMktOrderQty': '3.0000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'YGGUSDT', 'lowercaseId': None, 'symbol': 'YGG/USDT:USDT', 'base': 'YGG', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'YGG', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 352435.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1637625600000, 'info': {'symbol': 'YGGUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'YGG', 'quoteCoin': 'USDT', 'launchTime': '1637625600000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '352435.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '352435.0', 'maxMktOrderQty': '59850.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZECUSDT', 'lowercaseId': None, 'symbol': 'ZEC/USDT:USDT', 'base': 'ZEC', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ZEC', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.01, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.01, 'max': 4335.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1637712000000, 'info': {'symbol': 'ZECUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ZEC', 'quoteCoin': 'USDT', 'launchTime': '1637712000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '4335.00', 'minOrderQty': '0.01', 'qtyStep': '0.01', 'postOnlyMaxOrderQty': '4335.00', 'maxMktOrderQty': '600.00'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZENUSDT', 'lowercaseId': None, 'symbol': 'ZEN/USDT:USDT', 'base': 'ZEN', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ZEN', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 0.1, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 0.1, 'max': 8920.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1637884800000, 'info': {'symbol': 'ZENUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ZEN', 'quoteCoin': 'USDT', 'launchTime': '1637884800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '8920.0', 'minOrderQty': '0.1', 'qtyStep': '0.1', 'postOnlyMaxOrderQty': '8920.0', 'maxMktOrderQty': '1760.0'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZETAUSDT', 'lowercaseId': None, 'symbol': 'ZETA/USDT:USDT', 'base': 'ZETA', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ZETA', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 277990.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1706760329000, 'info': {'symbol': 'ZETAUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ZETA', 'quoteCoin': 'USDT', 'launchTime': '1706760329000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '277990', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '277990', 'maxMktOrderQty': '20000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.006', 'lowerFundingRate': '-0.006'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZILUSDT', 'lowercaseId': None, 'symbol': 'ZIL/USDT:USDT', 'base': 'ZIL', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ZIL', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 10.0, 'max': 9978710.0}, 'price': {'min': 1e-05, 'max': 19.99998}, 'cost': {'min': None, 'max': None}}, 'created': 1643480306000, 'info': {'symbol': 'ZILUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ZIL', 'quoteCoin': 'USDT', 'launchTime': '1643480306000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '5', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.00001', 'maxPrice': '19.99998', 'tickSize': '0.00001'}, 'lotSizeFilter': {'maxOrderQty': '9978710', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '9978710', 'maxMktOrderQty': '3160000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.015', 'lowerFundingRate': '-0.015'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZKFUSDT', 'lowercaseId': None, 'symbol': 'ZKF/USDT:USDT', 'base': 'ZKF', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ZKF', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 10.0, 'price': 1e-06, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 12.5}, 'amount': {'min': 10.0, 'max': 1448130.0}, 'price': {'min': 1e-06, 'max': 1.999998}, 'cost': {'min': None, 'max': None}}, 'created': 1705404359000, 'info': {'symbol': 'ZKFUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ZKF', 'quoteCoin': 'USDT', 'launchTime': '1705404359000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '6', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '12.50', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.000001', 'maxPrice': '1.999998', 'tickSize': '0.000001'}, 'lotSizeFilter': {'maxOrderQty': '1448130', 'minOrderQty': '10', 'qtyStep': '10', 'postOnlyMaxOrderQty': '1448130', 'maxMktOrderQty': '800000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'none', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ZRXUSDT', 'lowercaseId': None, 'symbol': 'ZRX/USDT:USDT', 'base': 'ZRX', 'quote': 'USDT', 'settle': 'USDT', 'baseId': 'ZRX', 'quoteId': 'USDT', 'settleId': 'USDT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': True, 'inverse': False, 'subType': 'linear', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 25.0}, 'amount': {'min': 1.0, 'max': 424965.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1648453878000, 'info': {'symbol': 'ZRXUSDT', 'contractType': 'LinearPerpetual', 'status': 'Trading', 'baseCoin': 'ZRX', 'quoteCoin': 'USDT', 'launchTime': '1648453878000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '25.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '424965', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '424965', 'maxMktOrderQty': '50000'}, 'unifiedMarginTrade': True, 'fundingInterval': '480', 'settleCoin': 'USDT', 'copyTrading': 'both', 'upperFundingRate': '0.03', 'lowerFundingRate': '-0.03'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ADAUSD', 'lowercaseId': None, 'symbol': 'ADA/USD:ADA', 'base': 'ADA', 'quote': 'USD', 'settle': 'ADA', 'baseId': 'ADA', 'quoteId': 'USD', 'settleId': 'ADA', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 150000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1648080000000, 'info': {'symbol': 'ADAUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'ADA', 'quoteCoin': 'USD', 'launchTime': '1648080000000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '150000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '150000', 'maxMktOrderQty': '150000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'ADA', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCUSD', 'lowercaseId': None, 'symbol': 'BTC/USD:BTC', 'base': 'BTC', 'quote': 'USD', 'settle': 'BTC', 'baseId': 'BTC', 'quoteId': 'USD', 'settleId': 'BTC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 1.0, 'max': 1943695.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1542211200000, 'info': {'symbol': 'BTCUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USD', 'launchTime': '1542211200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '1943695', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1943695', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'BTC', 'copyTrading': 'none', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCUSDH24', 'lowercaseId': None, 'symbol': 'BTC/USD:BTC-240329', 'base': 'BTC', 'quote': 'USD', 'settle': 'BTC', 'baseId': 'BTC', 'quoteId': 'USD', 'settleId': 'BTC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1695369600000, 'info': {'symbol': 'BTCUSDH24', 'contractType': 'InverseFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USD', 'launchTime': '1695369600000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0005', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'BTC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCUSDM24', 'lowercaseId': None, 'symbol': 'BTC/USD:BTC-240628', 'base': 'BTC', 'quote': 'USD', 'settle': 'BTC', 'baseId': 'BTC', 'quoteId': 'USD', 'settleId': 'BTC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702627200000, 'info': {'symbol': 'BTCUSDM24', 'contractType': 'InverseFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USD', 'launchTime': '1702627200000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.0005', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'BTC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTCUSDU24', 'lowercaseId': None, 'symbol': 'BTC/USD:BTC-240927', 'base': 'BTC', 'quote': 'USD', 'settle': 'BTC', 'baseId': 'BTC', 'quoteId': 'USD', 'settleId': 'BTC', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.5, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 1.0, 'max': 5000000.0}, 'price': {'min': 0.5, 'max': 999999.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710489600000, 'info': {'symbol': 'BTCUSDU24', 'contractType': 'InverseFutures', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USD', 'launchTime': '1710489600000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.0005', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.50', 'maxPrice': '999999.00', 'tickSize': '0.50'}, 'lotSizeFilter': {'maxOrderQty': '5000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '5000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'BTC', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'DOTUSD', 'lowercaseId': None, 'symbol': 'DOT/USD:DOT', 'base': 'DOT', 'quote': 'USD', 'settle': 'DOT', 'baseId': 'DOT', 'quoteId': 'USD', 'settleId': 'DOT', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 500000.0}, 'price': {'min': 0.005, 'max': 9999.99}, 'cost': {'min': None, 'max': None}}, 'created': 1634083200000, 'info': {'symbol': 'DOTUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'DOT', 'quoteCoin': 'USD', 'launchTime': '1634083200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.005', 'maxPrice': '9999.990', 'tickSize': '0.005'}, 'lotSizeFilter': {'maxOrderQty': '500000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '500000', 'maxMktOrderQty': '500000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'DOT', 'copyTrading': 'none', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'EOSUSD', 'lowercaseId': None, 'symbol': 'EOS/USD:EOS', 'base': 'EOS', 'quote': 'USD', 'settle': 'EOS', 'baseId': 'EOS', 'quoteId': 'USD', 'settleId': 'EOS', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.001, 'max': 1999.998}, 'cost': {'min': None, 'max': None}}, 'created': 1555927200000, 'info': {'symbol': 'EOSUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'EOS', 'quoteCoin': 'USD', 'launchTime': '1555927200000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '3', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.001', 'maxPrice': '1999.998', 'tickSize': '0.001'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'EOS', 'copyTrading': 'none', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSD', 'lowercaseId': None, 'symbol': 'ETH/USD:ETH', 'base': 'ETH', 'quote': 'USD', 'settle': 'ETH', 'baseId': 'ETH', 'quoteId': 'USD', 'settleId': 'ETH', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 100.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1546300800000, 'info': {'symbol': 'ETHUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USD', 'launchTime': '1546300800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '100.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'ETH', 'copyTrading': 'none', 'upperFundingRate': '0.01', 'lowerFundingRate': '-0.01'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSDH24', 'lowercaseId': None, 'symbol': 'ETH/USD:ETH-240329', 'base': 'ETH', 'quote': 'USD', 'settle': 'ETH', 'baseId': 'ETH', 'quoteId': 'USD', 'settleId': 'ETH', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1695369600000, 'info': {'symbol': 'ETHUSDH24', 'contractType': 'InverseFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USD', 'launchTime': '1695369600000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0005', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'ETH', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSDM24', 'lowercaseId': None, 'symbol': 'ETH/USD:ETH-240628', 'base': 'ETH', 'quote': 'USD', 'settle': 'ETH', 'baseId': 'ETH', 'quoteId': 'USD', 'settleId': 'ETH', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1702627200000, 'info': {'symbol': 'ETHUSDM24', 'contractType': 'InverseFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USD', 'launchTime': '1702627200000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.0005', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'ETH', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETHUSDU24', 'lowercaseId': None, 'symbol': 'ETH/USD:ETH-240927', 'base': 'ETH', 'quote': 'USD', 'settle': 'ETH', 'baseId': 'ETH', 'quoteId': 'USD', 'settleId': 'ETH', 'type': 'future', 'spot': False, 'margin': None, 'swap': False, 'future': True, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.05, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 5000000.0}, 'price': {'min': 0.05, 'max': 99999.9}, 'cost': {'min': None, 'max': None}}, 'created': 1710489600000, 'info': {'symbol': 'ETHUSDU24', 'contractType': 'InverseFutures', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USD', 'launchTime': '1710489600000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.0005', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.05', 'maxPrice': '99999.90', 'tickSize': '0.05'}, 'lotSizeFilter': {'maxOrderQty': '5000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '5000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'ETH', 'copyTrading': 'none', 'upperFundingRate': '0', 'lowerFundingRate': '0'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'LTCUSD', 'lowercaseId': None, 'symbol': 'LTC/USD:LTC', 'base': 'LTC', 'quote': 'USD', 'settle': 'LTC', 'baseId': 'LTC', 'quoteId': 'USD', 'settleId': 'LTC', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 150000.0}, 'price': {'min': 0.01, 'max': 19999.98}, 'cost': {'min': None, 'max': None}}, 'created': 1648684800000, 'info': {'symbol': 'LTCUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'LTC', 'quoteCoin': 'USD', 'launchTime': '1648684800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '2', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.01', 'maxPrice': '19999.98', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '150000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '150000', 'maxMktOrderQty': '150000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'LTC', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'MANAUSD', 'lowercaseId': None, 'symbol': 'MANA/USD:MANA', 'base': 'MANA', 'quote': 'USD', 'settle': 'MANA', 'baseId': 'MANA', 'quoteId': 'USD', 'settleId': 'MANA', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0005, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.0005, 'max': 999.999}, 'cost': {'min': None, 'max': None}}, 'created': 1648684800000, 'info': {'symbol': 'MANAUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'MANA', 'quoteCoin': 'USD', 'launchTime': '1648684800000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0005', 'maxPrice': '999.9990', 'tickSize': '0.0005'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '100000', 'maxMktOrderQty': '100000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'MANA', 'copyTrading': 'none', 'upperFundingRate': '0.0075', 'lowerFundingRate': '-0.0075'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'XRPUSD', 'lowercaseId': None, 'symbol': 'XRP/USD:XRP', 'base': 'XRP', 'quote': 'USD', 'settle': 'XRP', 'baseId': 'XRP', 'quoteId': 'USD', 'settleId': 'XRP', 'type': 'swap', 'spot': False, 'margin': None, 'swap': True, 'future': False, 'option': False, 'index': None, 'active': True, 'contract': True, 'linear': False, 'inverse': True, 'subType': 'inverse', 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': None, 'expiryDatetime': None, 'strike': None, 'optionType': None, 'precision': {'amount': 1.0, 'price': 0.0001, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': 1.0, 'max': 50.0}, 'amount': {'min': 1.0, 'max': 1000000.0}, 'price': {'min': 0.0001, 'max': 199.9998}, 'cost': {'min': None, 'max': None}}, 'created': 1555927080000, 'info': {'symbol': 'XRPUSD', 'contractType': 'InversePerpetual', 'status': 'Trading', 'baseCoin': 'XRP', 'quoteCoin': 'USD', 'launchTime': '1555927080000', 'deliveryTime': '0', 'deliveryFeeRate': '', 'priceScale': '4', 'leverageFilter': {'minLeverage': '1', 'maxLeverage': '50.00', 'leverageStep': '0.01'}, 'priceFilter': {'minPrice': '0.0001', 'maxPrice': '199.9998', 'tickSize': '0.0001'}, 'lotSizeFilter': {'maxOrderQty': '1000000', 'minOrderQty': '1', 'qtyStep': '1', 'postOnlyMaxOrderQty': '1000000', 'maxMktOrderQty': '1000000'}, 'unifiedMarginTrade': False, 'fundingInterval': '480', 'settleCoin': 'XRP', 'copyTrading': 'none', 'upperFundingRate': '0.00375', 'lowerFundingRate': '-0.00375'}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-200000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-200000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 200000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-200000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-200000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-200000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 200000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-200000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-15000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-15000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 15000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-15000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-15000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-15000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 15000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-15000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-25000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-25000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 25000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-25000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-25000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-25000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 25000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-25000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-28000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-28000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 28000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-28000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-28000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-28000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 28000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-28000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-30000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-30000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-30000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-30000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-30000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-30000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-32000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-32000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 32000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-32000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-32000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-32000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 32000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-32000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-34000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-34000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 34000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-34000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-34000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-34000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 34000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-34000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-36000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-36000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 36000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-36000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-36000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-36000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 36000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-36000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-38000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-38000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 38000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-38000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-38000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-38000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 38000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-38000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-42000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-42000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 42000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-42000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-42000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-42000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 42000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-42000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-44000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-44000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 44000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-44000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-44000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-44000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 44000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-44000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-46000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-46000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 46000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-46000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-46000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-46000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 46000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-46000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-48000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-48000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 48000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-48000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-48000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-48000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 48000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-48000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-52000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-52000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 52000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-52000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-52000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-52000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 52000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-52000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-65000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-65000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-65000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-65000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-65000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-65000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-75000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-75000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-75000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-75000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-75000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-75000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-85000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-85000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-85000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-85000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-85000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-85000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-90000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-90000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-90000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-90000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-90000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-90000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-95000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-95000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 95000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-95000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-95000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-95000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 95000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-95000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-110000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-110000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-110000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-110000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-110000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-110000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-130000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-130000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 130000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-130000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-130000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-130000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 130000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-130000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-160000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-160000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 160000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-160000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-160000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-160000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 160000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-160000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-180000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-180000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 180000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-180000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-180000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-180000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 180000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-180000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-20000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-20000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 20000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-20000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-20000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-20000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 20000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-20000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-40000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-40000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-40000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-40000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-40000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-40000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-50000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-50000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-50000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-50000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-50000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-50000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-55000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-55000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 55000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-55000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-55000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-55000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 55000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-55000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-60000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-60000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-60000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-60000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-60000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-60000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-70000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-70000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-70000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-70000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-70000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-70000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-80000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-80000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-80000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-80000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-80000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-80000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-100000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-100000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-100000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-100000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-100000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-100000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-120000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-120000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 120000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-120000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-120000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-120000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 120000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-120000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-140000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-140000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 140000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-140000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27DEC24-140000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-241227-140000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 140000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'BTC-27DEC24-140000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-10000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-10000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 10000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-10000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-10000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-10000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 10000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-10000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-15000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-15000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 15000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-15000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-15000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-15000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 15000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-15000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-25000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-25000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 25000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-25000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-25000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-25000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 25000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-25000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-30000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-30000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-30000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-30000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-30000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-30000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-35000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-35000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 35000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-35000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-35000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-35000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 35000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-35000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-60000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-60000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-60000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-60000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-60000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-60000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-75000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-75000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-75000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-75000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-75000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-75000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-85000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-85000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-85000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-180000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-180000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 180000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-180000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-85000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-85000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-85000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-180000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-180000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 180000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-180000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-90000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-90000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-90000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-90000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-90000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-90000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-95000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-95000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 95000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-95000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-95000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-95000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 95000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-95000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-105000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-105000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 105000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-105000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-105000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-105000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 105000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-105000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-110000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-110000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-110000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-110000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-110000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-110000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-115000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-115000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 115000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-115000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-115000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-115000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 115000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-115000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-125000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-125000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 125000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-125000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-125000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-125000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 125000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-125000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-160000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-160000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 160000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-160000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-160000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-160000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 160000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-160000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-20000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-20000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 20000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-20000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-20000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-20000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 20000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-20000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-40000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-40000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-40000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-40000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-40000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-40000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-45000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-45000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 45000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-45000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-45000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-45000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 45000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-45000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-50000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-50000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-50000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-50000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-50000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-50000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-55000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-55000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 55000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-55000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-55000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-55000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 55000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-55000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-65000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-65000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-65000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-65000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-65000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-65000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-70000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-70000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-70000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-70000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-70000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-70000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-80000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-80000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-80000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-80000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-80000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-80000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-100000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-100000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-100000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-100000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-100000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-100000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-120000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-120000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 120000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-120000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-120000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-120000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 120000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-120000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-140000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-140000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 140000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-140000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-27SEP24-140000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240927-140000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 140000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'BTC-27SEP24-140000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-29000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-29000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 29000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-29000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-29000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-29000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 29000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-29000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-31000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-31000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 31000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-31000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-130000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-130000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 130000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-130000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-31000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-31000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 31000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-31000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-130000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-130000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 130000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-130000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-33000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-33000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 33000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-33000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-33000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-33000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 33000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-33000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-34000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-34000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 34000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-34000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-34000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-34000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 34000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-34000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-35000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-35000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 35000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-35000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-35000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-35000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 35000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-35000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-36000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-36000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 36000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-36000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-36000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-36000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 36000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-36000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-37000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-37000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 37000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-37000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-37000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-37000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 37000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-37000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-38000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-38000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 38000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-38000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-38000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-38000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 38000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-38000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-39000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-39000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 39000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-39000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-39000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-39000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 39000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-39000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-41000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-41000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 41000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-41000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-41000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-41000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 41000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-41000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-42000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-42000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 42000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-42000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-42000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-42000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 42000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-42000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-45000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-45000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 45000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-45000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-45000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-45000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 45000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-45000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-55000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-55000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 55000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-55000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-55000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-55000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 55000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-55000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-65000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-65000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-65000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-65000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-65000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-65000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-10000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-10000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 10000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-10000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-10000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-10000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 10000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-10000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-20000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-20000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 20000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-20000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-20000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-20000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 20000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-20000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-25000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-25000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 25000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-25000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-25000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-25000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 25000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-25000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-28000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-28000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 28000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-28000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-28000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-28000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 28000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-28000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-30000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-30000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-30000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-30000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-30000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-30000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-32000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-32000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 32000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-32000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-32000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-32000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 32000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-32000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-40000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-40000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-40000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-40000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-40000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-40000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-50000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-50000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-50000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-50000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-50000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-50000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-60000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-60000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-60000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-60000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-60000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-60000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-70000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-70000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-70000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-70000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-70000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-70000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-57000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-57000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 57000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-57000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-57000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-57000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 57000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-57000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-52000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-52000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 52000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-52000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-52000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-52000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 52000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-52000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-48000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-48000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 48000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-48000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-48000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-48000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 48000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-48000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-140000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-140000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 140000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-140000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-140000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-140000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 140000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-140000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-110000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-110000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-110000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-110000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-110000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-110000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-15000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-15000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 15000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-15000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-15000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-15000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 15000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-15000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-18000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-18000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 18000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-18000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-18000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-18000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 18000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-18000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-19000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-19000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 19000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-19000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-19000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-19000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 19000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-19000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-21000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-21000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 21000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-21000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-21000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-21000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 21000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-21000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-22000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-22000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 22000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-22000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-22000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-22000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 22000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-22000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-23000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-23000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 23000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-23000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-23000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-23000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 23000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-23000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-24000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-24000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 24000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-24000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-24000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-24000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 24000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-24000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-26000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-26000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 26000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-26000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-26000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-26000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 26000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-26000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-27000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-27000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 27000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-27000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-27000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-27000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 27000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-27000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-43000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-43000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 43000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-43000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-43000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-43000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 43000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-43000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-44000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-44000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 44000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-44000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-44000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-44000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 44000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-44000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-75000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-75000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-75000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-75000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-75000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-75000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-80000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-80000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-80000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-80000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-80000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-80000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-85000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-85000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-85000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-85000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-85000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-85000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-90000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-90000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-90000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-90000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-90000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-90000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-95000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-95000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 95000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-95000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-95000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-95000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 95000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-95000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-100000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-100000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-100000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-100000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-100000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-100000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-120000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-120000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 120000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-120000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-28JUN24-120000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240628-120000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 120000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'BTC-28JUN24-120000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-59000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-59000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 59000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-59000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-59000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-59000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 59000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-59000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-60000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-60000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-60000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-60000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-60000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-60000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-61000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-61000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 61000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-61000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-61000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-61000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 61000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-61000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-62000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-62000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 62000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-62000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-62000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-62000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 62000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-62000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-63000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-63000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 63000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-63000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-63000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-63000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 63000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-63000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-64000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-64000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 64000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-64000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-64000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-64000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 64000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-64000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-65000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-65000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-65000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-65000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-65000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 65000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-65000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-66000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-66000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 66000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-66000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-66000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-66000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 66000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-66000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-66500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-66500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 66500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-66500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-66500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-66500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 66500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-66500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-67000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-67000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 67000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-67000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-67000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-67000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 67000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-67000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-67500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-67500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 67500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-67500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-67500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-67500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 67500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-67500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-68000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-68000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 68000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-68000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-68000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-68000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 68000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-68000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-68500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-68500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 68500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-68500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-68500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-68500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 68500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-68500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-69000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-69000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 69000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-69000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-69000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-69000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 69000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-69000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-69500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-69500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 69500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-69500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-69500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-69500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 69500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-69500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-70000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-70000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-70000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-70000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-70000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-70000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-70500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-70500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 70500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-70500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-70500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-70500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 70500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-70500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-71000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-71000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 71000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-71000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-71000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-71000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 71000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-71000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-71500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-71500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 71500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-71500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-71500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-71500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 71500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-71500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-72000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-72000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 72000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-72000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-72000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-72000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 72000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-72000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-72500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-72500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 72500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-72500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-72500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-72500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 72500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-72500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-73000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-73000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 73000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-73000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-73000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-73000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 73000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-73000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-73500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-73500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 73500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-73500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-73500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-73500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 73500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-73500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-74000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-74000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 74000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-74000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-74000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-74000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 74000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-74000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-74500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-74500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 74500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-74500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-74500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-74500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 74500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-74500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-75000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-75000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-75000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-75000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-75000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-75000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-75500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-75500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 75500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-75500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-75500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-75500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 75500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-75500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-76000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-76000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 76000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-76000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-76000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-76000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 76000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-76000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-77000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-77000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 77000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-77000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-77000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-77000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 77000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-77000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-78000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-78000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 78000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-78000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-108000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-108000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 108000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-108000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-78000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-78000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 78000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-78000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-108000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-108000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 108000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-108000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-79000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-79000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 79000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-79000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-106000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-106000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 106000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-106000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-79000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-79000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 79000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-79000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-106000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-106000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 106000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-106000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-80000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-80000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-80000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-80000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-80000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-80000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-81000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-81000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 81000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-81000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-81000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-81000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 81000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-81000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-82000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-82000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 82000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-82000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-82000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-82000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 82000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-82000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-83000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-83000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 83000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-83000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-83000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-83000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 83000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-83000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-84000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-84000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 84000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-84000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-84000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-84000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 84000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-84000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-85000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-85000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-85000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-85000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-85000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 85000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-85000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-86000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-86000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 86000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-86000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-86000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-86000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 86000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-86000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-87000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-87000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 87000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-87000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-87000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-87000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 87000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-87000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-88000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-88000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 88000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-88000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-88000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-88000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 88000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-88000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-90000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-90000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-90000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-90000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-90000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-90000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-92000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-92000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 92000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-92000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-92000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-92000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 92000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-92000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-94000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-94000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 94000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-94000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-94000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-94000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 94000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-94000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-96000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-96000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 96000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-96000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-96000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-96000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 96000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-96000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-98000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-98000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 98000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-98000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-98000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-98000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 98000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-98000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-100000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-100000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-100000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-100000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-100000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-100000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-102000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-102000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 102000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-102000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-102000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-102000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 102000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-102000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-104000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-104000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 104000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-104000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-104000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-104000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 104000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-104000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-110000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-110000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-110000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-110000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-110000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 110000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-110000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-112000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-112000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 112000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-112000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-112000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-112000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 112000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-112000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-46000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-46000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 46000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-46000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-46000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-46000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 46000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-46000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-48000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-48000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 48000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-48000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-48000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-48000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 48000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-48000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-50000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-50000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-50000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-50000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-50000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 50000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-50000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-52000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-52000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 52000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-52000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-52000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-52000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 52000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-52000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-54000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-54000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 54000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-54000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-54000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-54000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 54000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-54000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-56000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-56000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 56000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-56000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-56000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-56000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 56000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-56000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-57000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-57000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 57000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-57000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-57000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-57000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 57000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-57000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-58000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-58000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 58000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-58000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-31MAY24-58000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240531-58000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 58000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'BTC-31MAY24-58000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-45500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-45500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 45500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-45500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-45500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-45500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 45500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-45500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-46000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-46000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 46000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-46000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-46000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-46000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 46000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-46000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-46500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-46500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 46500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-46500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-46500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-46500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 46500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-46500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-47500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-47500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 47500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-47500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-47500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-47500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 47500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-47500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-48500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-48500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 48500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-48500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-48500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-48500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 48500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-48500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-49500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-49500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 49500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-49500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-49500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-49500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 49500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-49500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-50500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-50500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 50500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-50500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-50500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-50500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 50500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-50500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-51500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-51500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 51500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-51500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-51500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-51500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 51500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-51500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-52500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-52500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 52500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-52500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-52500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-52500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 52500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-52500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-53500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-53500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 53500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-53500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-53500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-53500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 53500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-53500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-54000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-54000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 54000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-54000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-54000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-54000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 54000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-54000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-56000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-56000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 56000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-56000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-56000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-56000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 56000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-56000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-58000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-58000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 58000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-58000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-58000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-58000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 58000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-58000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-60000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-60000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-60000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-90000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-90000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-90000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-60000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-60000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-60000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-90000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-90000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 90000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-90000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-62000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-62000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 62000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-62000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-62000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-62000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 62000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-62000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-64000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-64000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 64000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-64000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-64000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-64000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 64000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-64000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-66000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-66000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 66000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-66000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-70000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-70000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-70000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-66000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-66000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 66000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-66000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-70000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-70000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-70000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-98000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-98000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 98000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-98000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-98000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-98000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 98000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-98000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-78000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-78000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 78000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-78000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-78000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-78000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 78000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-78000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-100000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-100000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-100000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-100000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-100000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 100000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-100000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-76000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-76000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 76000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-76000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-76000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-76000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 76000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-76000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-74000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-74000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 74000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-74000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-74000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-74000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 74000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-74000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-72000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-72000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 72000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-72000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-104000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-104000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 104000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-104000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-72000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-72000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 72000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-72000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-104000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-104000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 104000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-104000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-102000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-102000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 102000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-102000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-102000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-102000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 102000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-102000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-94000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-94000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 94000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-94000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-94000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-94000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 94000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-94000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-92000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-92000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 92000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-92000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-92000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-92000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 92000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-92000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-82000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-82000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 82000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-82000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-82000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-82000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 82000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-82000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-106000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-106000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 106000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-106000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-106000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-106000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 106000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-106000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-69500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-69500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 69500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-69500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-69500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-69500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 69500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-69500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-84000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-84000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 84000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-84000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-84000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-84000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 84000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-84000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-88000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-88000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 88000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-88000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-88000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-88000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 88000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-88000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-86000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-86000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 86000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-86000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-86000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-86000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 86000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-86000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-26000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-26000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 26000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-26000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-26000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-26000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 26000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-26000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-28000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-28000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 28000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-28000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-28000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-28000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 28000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-28000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-30000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-30000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-30000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-30000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-30000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 30000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-30000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-32000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-32000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 32000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-32000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-32000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-32000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 32000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-32000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-34000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-34000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 34000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-34000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-34000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-34000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 34000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-34000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-36000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-36000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 36000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-36000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-36000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-36000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 36000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-36000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-37000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-37000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 37000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-37000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-37000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-37000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 37000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-37000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-38000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-38000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 38000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-38000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-38000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-38000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 38000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-38000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-39000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-39000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 39000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-39000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-96000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-96000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 96000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-96000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-39000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-39000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 39000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-39000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-96000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-96000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 96000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-96000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-40000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-40000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-40000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-40000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-40000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 40000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-40000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-41000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-41000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 41000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-41000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-41000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-41000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 41000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-41000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-41500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-41500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 41500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-41500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-41500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-41500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 41500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-41500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-42000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-42000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 42000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-42000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-42000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-42000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 42000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-42000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-42500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-42500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 42500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-42500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-42500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-42500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 42500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-42500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-43000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-43000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 43000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-43000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-43000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-43000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 43000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-43000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-43500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-43500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 43500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-43500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-43500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-43500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 43500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-43500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-44000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-44000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 44000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-44000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-44000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-44000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 44000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-44000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-44500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-44500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 44500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-44500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-44500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-44500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 44500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-44500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-45000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-45000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 45000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-45000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-26APR24-45000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240426-45000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 45000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'BTC-26APR24-45000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-60000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-60000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-60000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-60000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-60000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 60000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-60000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-62000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-62000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 62000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-62000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-62000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-62000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 62000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-62000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-64000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-64000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 64000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-64000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-64000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-64000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 64000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-64000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-66000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-66000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 66000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-66000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-66000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-66000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 66000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-66000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-67000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-67000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 67000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-67000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-67000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-67000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 67000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-67000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-68000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-68000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 68000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-68000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-68000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-68000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 68000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-68000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-69000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-69000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 69000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-69000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-69000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-69000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 69000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-69000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-70000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-70000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-70000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-70000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-70000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 70000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-70000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-71000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-71000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 71000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-71000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-71000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-71000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 71000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-71000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-72000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-72000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 72000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-72000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-72000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-72000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 72000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-72000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-72500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-72500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 72500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-72500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-72500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-72500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 72500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-72500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-73000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-73000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 73000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-73000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-73000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-73000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 73000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-73000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-73500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-73500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 73500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-73500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-73500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-73500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 73500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-73500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-74000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-74000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 74000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-74000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-74000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-74000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 74000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-74000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-74500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-74500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 74500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-74500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-74500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-74500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 74500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-74500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-75000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-75000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-75000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-75000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-75000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 75000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-75000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-75500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-75500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 75500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-75500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-75500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-75500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 75500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-75500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-76000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-76000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 76000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-76000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-76000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-76000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 76000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-76000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-76500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-76500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 76500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-76500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-76500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-76500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 76500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-76500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-77000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-77000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 77000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-77000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-77000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-77000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 77000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-77000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-77500-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-77500-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 77500.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-77500-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-77500-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-77500-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 77500.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-77500-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-78000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-78000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 78000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-78000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-78000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-78000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 78000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-78000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-79000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-79000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 79000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-79000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-79000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-79000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 79000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-79000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-80000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-80000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-80000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-80000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-80000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 80000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-80000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-81000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-81000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 81000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-81000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-81000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-81000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 81000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-81000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-82000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-82000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 82000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-82000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-82000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-82000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 82000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-82000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-83000-C', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-83000-C', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 83000.0, 'optionType': 'call', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-83000-C', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'BTC-5APR24-83000-P', 'lowercaseId': None, 'symbol': 'BTC/USDC:USDC-240405-83000-P', 'base': 'BTC', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'BTC', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.01, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 83000.0, 'optionType': 'put', 'precision': {'amount': 0.01, 'price': 5.0, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.01, 'max': 500.0}, 'price': {'min': 5.0, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'BTC-5APR24-83000-P', 'status': 'Trading', 'baseCoin': 'BTC', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '5', 'maxPrice': '10000000', 'tickSize': '5'}, 'lotSizeFilter': {'maxOrderQty': '500', 'minOrderQty': '0.01', 'qtyStep': '0.01'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-8400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-8400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 8400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-8400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-8400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-8400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 8400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-8400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-1800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-1800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-1800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-9400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-9400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 9400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-9400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-9400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-9400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 9400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-9400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-2900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-2900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 2900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-2900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-4800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-4800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-4800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-5800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-5800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-5800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-10400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-10400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 10400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-10400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-10400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-10400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 10400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-10400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-9800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-9800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 9800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-9800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-9800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-9800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 9800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-9800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-7000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-7000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-7000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-7000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-7000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-7000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-7400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-7400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 7400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-7400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-7400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-7400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 7400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-7400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-8000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-8000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 8000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-8000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-8000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-8000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 8000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-8000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-7800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-7800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 7800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-7800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-7800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-7800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 7800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-7800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-9000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-9000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 9000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-9000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-9000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-9000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 9000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-9000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-8800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-8800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 8800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-8800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-8800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-8800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 8800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-8800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-6400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-6400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 6400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-6400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-6400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-6400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 6400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-6400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-6800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-6800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 6800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-6800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27DEC24-6800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-241227-6800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1735286400000, 'expiryDatetime': '2024-12-27T08:00:00.000Z', 'strike': 6800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1704355200000, 'info': {'symbol': 'ETH-27DEC24-6800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1704355200000', 'deliveryTime': '1735286400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-5000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-5000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-5000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-5000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-5000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-5000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-5500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-5500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 5500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-5500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-5500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-5500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 5500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-5500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-6000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-6000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-6000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-6000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-6000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-6000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-7000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-7000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-7000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-7000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-7000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-7000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-8000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-8000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 8000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-8000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-8000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-8000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 8000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-8000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-8800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-8800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 8800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-8800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-8800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-8800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 8800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-8800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-8400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-8400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 8400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-8400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-8400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-8400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 8400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-8400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-1800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-1800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-1800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-2800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-2800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-2800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-27SEP24-4800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240927-4800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1727424000000, 'expiryDatetime': '2024-09-27T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1702972800000, 'info': {'symbol': 'ETH-27SEP24-4800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1702972800000', 'deliveryTime': '1727424000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-7200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-7200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 7200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-7200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-7200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-7200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 7200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-7200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1650-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1650-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1650.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1650-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1650-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1650-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1650.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1650-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1750-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1750-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1750.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1750-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1750-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1750-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1750.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1750-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1850-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1850-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1850.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1850-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1850-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1850-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1850.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1850-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-1300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-1300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 1300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-1300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-2400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-2400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-2400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-3500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-3500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 3500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-3500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-4500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-4500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-4500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-5000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-5000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-5000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-5000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-5000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-5000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-5500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-5500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 5500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-5500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-5500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-5500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 5500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-5500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-6000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-6000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-6000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-6000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-6000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-6000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-6500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-6500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 6500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-6500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-6500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-6500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 6500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-6500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-7000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-7000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-7000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-28JUN24-7000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240628-7000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1719561600000, 'expiryDatetime': '2024-06-28T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1696492800000, 'info': {'symbol': 'ETH-28JUN24-7000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1696492800000', 'deliveryTime': '1719561600000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-6800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-6800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 6800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-6800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-2800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-2800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-2800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3850-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3850-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3850.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3850-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3850-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3850-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3850.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3850-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3950-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3950-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3950.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3950-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-3950-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-3950-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 3950.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-3950-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4050-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4050-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4050.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4050-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4050-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4050-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4050.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4050-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4150-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4150-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4150.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4150-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4150-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4150-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4150.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4150-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4250-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4250-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4250.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4250-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4250-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4250-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4250.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4250-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4350-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4350-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4350.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4350-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4350-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4350-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4350.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4350-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-4900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-4900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 4900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-4900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-31MAY24-5200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240531-5200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1717142400000, 'expiryDatetime': '2024-05-31T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'ETH-31MAY24-5200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1717142400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-6000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-6000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-6000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-1900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-1900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 1900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-1900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-6000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-6000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-6000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2250-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2250-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2250.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2250-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2250-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2250-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2250.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2250-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2350-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2350-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2350.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2350-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2350-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2350-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2350.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2350-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2450-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2450-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2450.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2450-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2450-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2450-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2450.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2450-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2550-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2550-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2550.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2550-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2550-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2550-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2550.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2550-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2650-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2650-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2650.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2650-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2650-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2650-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2650.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2650-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2750-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2750-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2750.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2750-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2750-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2750-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2750.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2750-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2850-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2850-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2850.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2850-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2850-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2850-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2850.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2850-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2950-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2950-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2950.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2950-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-6400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-6400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 6400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-6400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-2950-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-2950-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 2950.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-2950-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-6400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-6400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 6400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-6400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3150-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3150-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3150.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3150-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-3150-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-3150-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 3150.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-3150-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-5000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-5000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-5000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-26APR24-4400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240426-4400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1706774400000, 'info': {'symbol': 'ETH-26APR24-4400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1706774400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3575-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3575-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3575.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3575-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3575-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3575-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3575.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3575-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-2600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-2600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-2600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-2600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-2600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 2600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-2600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-2800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-2800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-2800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-2800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-2800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 2800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-2800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3550-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3550-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3550.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3550-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3550-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3550-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3550.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3550-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3950-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3950-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3950.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3950-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3950-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3950-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3950.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3950-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4050-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4050-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4050.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4050-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4050-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4050-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4050.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4050-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4150-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4150-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4150.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4150-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4150-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4150-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4150.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4150-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4250-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4250-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4250.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4250-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4250-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4250-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4250.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4250-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4900-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4900-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4900.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4900-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-4900-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-4900-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 4900.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-4900-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-5800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-5800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 5800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-5800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3375-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3375-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3375.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3375-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-5APR24-3375-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240405-3375-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 3375.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'ETH-5APR24-3375-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2850-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2850-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2850.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2850-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2850-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2850-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2850.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2850-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2950-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2950-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2950.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2950-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2950-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2950-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2950.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2950-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3100-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3100-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3100.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3100-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3100-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3100-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3100.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3100-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4800-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4800-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4800-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4800-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4800-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4800.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4800-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2200-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2200-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2200-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2200-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2200-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2200.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2200-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-5000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-5000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-5000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-5000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-5000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 5000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-5000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-5500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-5500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 5500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-5500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-5500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-5500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 5500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-5500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-6000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-6000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-6000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-6000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-6000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 6000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-6000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-6500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-6500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 6500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-6500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-6500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-6500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 6500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-6500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-7000-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-7000-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-7000-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-7000-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-7000-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 7000.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-7000-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-7500-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-7500-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 7500.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-7500-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3300-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3300-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3300.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3300-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-7500-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-7500-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 7500.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-7500-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3300-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3300-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3300.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3300-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2450-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2450-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2450.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2450-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2450-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2450-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2450.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2450-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2350-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2350-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2350.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2350-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2350-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2350-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2350.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2350-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2250-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2250-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2250.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2250-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-2250-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-2250-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 2250.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-2250-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3400-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3400-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3400-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4700-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4700-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4700.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4700-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3400-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3400-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3400.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3400-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-4700-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-4700-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 4700.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-4700-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3600-C', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3600-C', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'call', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3600-C', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'ETH-29MAR24-3600-P', 'lowercaseId': None, 'symbol': 'ETH/USDC:USDC-240329-3600-P', 'base': 'ETH', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'ETH', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 0.1, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 3600.0, 'optionType': 'put', 'precision': {'amount': 0.1, 'price': 0.1, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 0.1, 'max': 5000.0}, 'price': {'min': 0.1, 'max': 10000000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1694592000000, 'info': {'symbol': 'ETH-29MAR24-3600-P', 'status': 'Trading', 'baseCoin': 'ETH', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1694592000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.00015', 'priceFilter': {'minPrice': '0.1', 'maxPrice': '10000000', 'tickSize': '0.1'}, 'lotSizeFilter': {'maxOrderQty': '5000', 'minOrderQty': '0.1', 'qtyStep': '0.1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-340-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-340-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 340.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-340-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-340-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-340-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 340.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-340-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-330-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-330-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 330.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-330-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-330-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-330-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 330.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-330-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-290-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-290-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 290.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-290-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-290-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-290-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 290.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-290-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-280-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-280-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 280.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-280-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-280-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-280-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 280.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-280-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-60-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-60-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 60.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-60-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-60-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-60-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 60.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-60-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-70-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-70-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 70.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-70-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-70-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-70-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 70.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-70-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-80-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-80-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 80.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-80-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-80-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-80-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 80.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-80-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-90-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-90-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 90.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-90-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-90-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-90-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 90.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-90-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-100-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-100-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 100.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-100-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-100-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-100-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 100.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-100-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-110-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-110-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 110.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-110-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-110-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-110-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 110.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-110-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-115-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-115-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 115.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-115-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-115-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-115-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 115.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-115-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-120-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-120-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 120.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-120-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-120-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-120-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 120.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-120-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-125-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-125-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 125.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-125-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-125-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-125-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 125.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-125-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-130-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-130-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 130.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-130-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-350-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-350-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 350.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-350-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-130-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-130-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 130.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-130-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-350-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-350-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 350.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-350-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-135-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-135-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 135.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-135-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-135-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-135-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 135.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-135-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-136-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-136-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 136.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-136-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-136-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-136-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 136.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-136-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-137-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-137-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 137.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-137-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-137-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-137-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 137.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-137-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-138-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-138-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 138.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-138-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-138-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-138-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 138.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-138-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-139-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-139-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 139.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-139-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-139-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-139-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 139.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-139-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-140-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-140-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 140.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-140-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-140-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-140-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 140.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-140-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-141-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-141-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 141.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-141-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-141-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-141-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 141.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-141-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-142-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-142-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 142.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-142-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-142-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-142-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 142.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-142-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-143-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-143-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 143.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-143-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-143-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-143-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 143.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-143-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-144-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-144-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 144.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-144-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-144-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-144-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 144.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-144-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-145-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-145-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 145.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-145-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-145-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-145-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 145.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-145-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-146-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-146-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 146.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-146-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-146-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-146-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 146.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-146-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-147-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-147-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 147.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-147-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-147-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-147-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 147.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-147-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-148-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-148-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 148.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-148-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-148-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-148-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 148.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-148-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-149-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-149-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 149.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-149-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-149-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-149-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 149.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-149-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-150-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-150-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 150.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-150-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-150-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-150-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 150.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-150-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-151-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-151-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 151.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-151-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-151-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-151-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 151.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-151-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-152-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-152-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 152.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-152-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-152-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-152-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 152.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-152-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-153-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-153-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 153.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-153-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-153-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-153-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 153.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-153-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-154-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-154-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 154.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-154-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-154-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-154-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 154.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-154-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-155-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-155-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 155.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-155-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-155-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-155-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 155.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-155-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-156-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-156-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 156.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-156-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-156-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-156-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 156.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-156-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-157-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-157-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 157.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-157-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-157-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-157-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 157.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-157-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-158-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-158-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 158.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-158-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-158-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-158-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 158.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-158-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-159-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-159-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 159.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-159-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-159-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-159-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 159.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-159-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-160-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-160-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 160.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-160-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-160-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-160-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 160.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-160-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-161-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-161-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 161.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-161-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-370-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-370-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 370.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-370-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-161-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-161-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 161.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-161-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-370-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-370-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 370.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-370-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-162-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-162-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 162.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-162-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-320-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-320-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 320.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-320-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-162-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-162-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 162.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-162-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-320-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-320-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 320.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-320-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-167-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-167-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 167.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-167-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-310-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-310-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 310.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-310-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-167-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-167-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 167.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-167-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-310-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-310-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 310.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-310-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-172-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-172-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 172.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-172-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-172-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-172-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 172.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-172-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-177-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-177-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 177.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-177-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-177-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-177-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 177.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-177-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-182-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-182-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 182.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-182-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-182-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-182-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 182.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-182-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-187-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-187-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 187.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-187-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-187-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-187-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 187.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-187-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-192-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-192-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 192.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-192-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-192-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-192-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 192.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-192-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-197-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-197-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 197.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-197-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-197-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-197-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 197.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-197-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-200-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-200-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 200.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-200-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-200-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-200-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 200.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-200-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-210-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-210-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 210.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-210-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-210-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-210-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 210.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-210-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-220-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-220-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 220.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-220-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-220-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-220-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 220.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-220-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-230-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-230-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 230.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-230-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-230-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-230-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 230.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-230-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-240-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-240-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 240.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-240-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-240-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-240-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 240.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-240-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-250-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-250-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 250.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-250-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-250-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-250-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 250.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-250-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-260-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-260-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 260.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-260-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-260-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-260-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 260.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-260-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-270-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-270-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 270.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-270-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-270-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-270-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 270.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-270-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-300-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-300-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 300.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-300-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-26APR24-300-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240426-300-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1714118400000, 'expiryDatetime': '2024-04-26T08:00:00.000Z', 'strike': 300.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709798400000, 'info': {'symbol': 'SOL-26APR24-300-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709798400000', 'deliveryTime': '1714118400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-155-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-155-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 155.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-155-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-155-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-155-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 155.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-155-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-160-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-160-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 160.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-160-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-160-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-160-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 160.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-160-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-164-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-164-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 164.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-164-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-164-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-164-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 164.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-164-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-165-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-165-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 165.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-165-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-165-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-165-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 165.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-165-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-166-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-166-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 166.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-166-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-166-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-166-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 166.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-166-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-167-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-167-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 167.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-167-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-167-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-167-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 167.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-167-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-168-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-168-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 168.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-168-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-168-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-168-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 168.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-168-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-169-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-169-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 169.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-169-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-169-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-169-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 169.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-169-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-170-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-170-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 170.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-170-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-170-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-170-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 170.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-170-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-171-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-171-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 171.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-171-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-171-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-171-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 171.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-171-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-172-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-172-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 172.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-172-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-172-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-172-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 172.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-172-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-173-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-173-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 173.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-173-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-173-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-173-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 173.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-173-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-174-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-174-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 174.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-174-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-174-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-174-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 174.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-174-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-175-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-175-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 175.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-175-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-175-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-175-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 175.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-175-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-176-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-176-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 176.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-176-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-176-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-176-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 176.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-176-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-177-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-177-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 177.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-177-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-177-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-177-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 177.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-177-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-178-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-178-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 178.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-178-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-178-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-178-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 178.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-178-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-179-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-179-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 179.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-179-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-179-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-179-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 179.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-179-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-180-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-180-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 180.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-180-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-180-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-180-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 180.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-180-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-181-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-181-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 181.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-181-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-300-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-300-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 300.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-300-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-181-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-181-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 181.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-181-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-300-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-300-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 300.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-300-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-182-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-182-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 182.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-182-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-182-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-182-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 182.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-182-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-183-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-183-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 183.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-183-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-183-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-183-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 183.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-183-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-184-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-184-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 184.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-184-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-184-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-184-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 184.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-184-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-185-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-185-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 185.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-185-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-185-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-185-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 185.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-185-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-186-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-186-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 186.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-186-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-186-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-186-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 186.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-186-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-187-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-187-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 187.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-187-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-187-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-187-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 187.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-187-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-188-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-188-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 188.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-188-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-188-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-188-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 188.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-188-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-189-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-189-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 189.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-189-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-189-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-189-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 189.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-189-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-194-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-194-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 194.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-194-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-194-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-194-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 194.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-194-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-199-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-199-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 199.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-199-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-199-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-199-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 199.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-199-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-204-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-204-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 204.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-204-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-204-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-204-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 204.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-204-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-209-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-209-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 209.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-209-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-209-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-209-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 209.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-209-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-214-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-214-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 214.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-214-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-214-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-214-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 214.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-214-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-219-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-219-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 219.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-219-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-219-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-219-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 219.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-219-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-224-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-224-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 224.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-224-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-224-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-224-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 224.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-224-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-225-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-225-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 225.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-225-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-225-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-225-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 225.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-225-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-235-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-235-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 235.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-235-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-235-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-235-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 235.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-235-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-245-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-245-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 245.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-245-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-245-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-245-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 245.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-245-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-250-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-250-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 250.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-250-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-250-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-250-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 250.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-250-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-260-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-260-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 260.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-260-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-260-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-260-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 260.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-260-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-270-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-270-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 270.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-270-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-270-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-270-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 270.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-270-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-280-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-280-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 280.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-280-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-280-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-280-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 280.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-280-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-310-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-310-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 310.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-310-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-310-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-310-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 310.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-310-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-330-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-330-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 330.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-330-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-330-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-330-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 330.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-330-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-90-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-90-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 90.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-90-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-90-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-90-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 90.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-90-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-100-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-100-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 100.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-100-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-100-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-100-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 100.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-100-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-110-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-110-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 110.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-110-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-110-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-110-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 110.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-110-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-120-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-120-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 120.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-120-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-120-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-120-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 120.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-120-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-130-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-130-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 130.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-130-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-130-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-130-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 130.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-130-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-140-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-140-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 140.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-140-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-140-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-140-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 140.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-140-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-145-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-145-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 145.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-145-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-145-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-145-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 145.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-145-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-150-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-150-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 150.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-150-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-5APR24-150-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240405-150-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1712304000000, 'expiryDatetime': '2024-04-05T08:00:00.000Z', 'strike': 150.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710403200000, 'info': {'symbol': 'SOL-5APR24-150-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710403200000', 'deliveryTime': '1712304000000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-131-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-131-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 131.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-131-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-131-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-131-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 131.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-131-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-132-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-132-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 132.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-132-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-132-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-132-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 132.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-132-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-133-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-133-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 133.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-133-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-133-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-133-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 133.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-133-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-134-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-134-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 134.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-134-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-134-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-134-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 134.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-134-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-139-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-139-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 139.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-139-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-139-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-139-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 139.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-139-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-144-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-144-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 144.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-144-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-144-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-144-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 144.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-144-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-149-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-149-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 149.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-149-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-149-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-149-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 149.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-149-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-154-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-154-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 154.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-154-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-154-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-154-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 154.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-154-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-155-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-155-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 155.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-155-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-155-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-155-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 155.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-155-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-165-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-165-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 165.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-165-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-165-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-165-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 165.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-165-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-170-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-170-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 170.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-170-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-170-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-170-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 170.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-170-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-180-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-180-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 180.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-180-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-180-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-180-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 180.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-180-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-190-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-190-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 190.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-190-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-190-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-190-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 190.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-190-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-200-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-200-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 200.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-200-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-200-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-200-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 200.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-200-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-230-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-230-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 230.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-230-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-230-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-230-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 230.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-230-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-250-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-250-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 250.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-250-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-250-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-250-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 250.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-250-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-164-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-164-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 164.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-164-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-164-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-164-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 164.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-164-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-272-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-272-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 272.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-272-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-272-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-272-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 272.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-272-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-274-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-274-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 274.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-274-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-274-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-274-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 274.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-274-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-270-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-270-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 270.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-270-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-280-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-280-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 280.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-280-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-270-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-270-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 270.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-270-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-280-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-280-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 280.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-280-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-282-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-282-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 282.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-282-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-282-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-282-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 282.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-282-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-220-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-220-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 220.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-220-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-286-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-286-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 286.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-286-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-220-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-220-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 220.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-220-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-286-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-286-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 286.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-286-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-210-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-210-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 210.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-210-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-210-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-210-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 210.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-210-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-163-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-163-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 163.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-163-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-163-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-163-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 163.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-163-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-60-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-60-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 60.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-60-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-60-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-60-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 60.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-60-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-70-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-70-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 70.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-70-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-70-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-70-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 70.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-70-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-80-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-80-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 80.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-80-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-80-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-80-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 80.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-80-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-90-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-90-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 90.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-90-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-90-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-90-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 90.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-90-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-100-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-100-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 100.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-100-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-100-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-100-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 100.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-100-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-105-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-105-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 105.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-105-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-105-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-105-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 105.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-105-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-110-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-110-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 110.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-110-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-110-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-110-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 110.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-110-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-115-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-115-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 115.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-115-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-115-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-115-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 115.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-115-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-119-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-119-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 119.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-119-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-119-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-119-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 119.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-119-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-120-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-120-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 120.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-120-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-120-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-120-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 120.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-120-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-121-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-121-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 121.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-121-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-121-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-121-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 121.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-121-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-122-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-122-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 122.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-122-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-122-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-122-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 122.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-122-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-123-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-123-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 123.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-123-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-123-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-123-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 123.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-123-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-124-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-124-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 124.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-124-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-178-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-178-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 178.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-178-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-124-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-124-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 124.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-124-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-178-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-178-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 178.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-178-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-125-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-125-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 125.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-125-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-125-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-125-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 125.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-125-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-126-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-126-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 126.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-126-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-126-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-126-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 126.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-126-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-127-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-127-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 127.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-127-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-127-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-127-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 127.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-127-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-128-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-128-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 128.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-128-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-128-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-128-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 128.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-128-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-129-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-129-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 129.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-129-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-129-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-129-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 129.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-129-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-130-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-130-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 130.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-130-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-29MAR24-130-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240329-130-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711699200000, 'expiryDatetime': '2024-03-29T08:00:00.000Z', 'strike': 130.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-29MAR24-130-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711699200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-197-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-197-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 197.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-197-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-197-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-197-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 197.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-197-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-168-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-168-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 168.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-168-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-168-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-168-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 168.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-168-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-230-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-230-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 230.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-230-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-230-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-230-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 230.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-230-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-228-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-228-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 228.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-228-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-228-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-228-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 228.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-228-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-208-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-208-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 208.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-208-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-208-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-208-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 208.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-208-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-226-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-226-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 226.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-226-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-226-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-226-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 226.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-226-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-224-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-224-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 224.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-224-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-224-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-224-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 224.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-224-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-196-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-196-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 196.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-196-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-196-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-196-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 196.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-196-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-238-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-238-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 238.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-238-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-238-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-238-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 238.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-238-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-155-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-155-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 155.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-155-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-155-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-155-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 155.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-155-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-166-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-166-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 166.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-166-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-166-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-166-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 166.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-166-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-222-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-222-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 222.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-222-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-222-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-222-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 222.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-222-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-60-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-60-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 60.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-60-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-60-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-60-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 60.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-60-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-70-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-70-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 70.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-70-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-70-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-70-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 70.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-70-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-80-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-80-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 80.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-80-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-220-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-220-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 220.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-220-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-80-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-80-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 80.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-80-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-220-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-220-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 220.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-220-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-90-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-90-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 90.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-90-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-90-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-90-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 90.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-90-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-100-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-100-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 100.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-100-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-244-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-244-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 244.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-244-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-100-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-100-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 100.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-100-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-244-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-244-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 244.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-244-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-104-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-104-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 104.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-104-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-195-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-195-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 195.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-195-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-104-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-104-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 104.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-104-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-195-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-195-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 195.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-195-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-106-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-106-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 106.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-106-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-246-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-246-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 246.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-246-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-106-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-106-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 106.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-106-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-246-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-246-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 246.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-246-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-108-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-108-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 108.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-108-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-248-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-248-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 248.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-248-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-108-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-108-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 108.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-108-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-248-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-248-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 248.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-248-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-110-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-110-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 110.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-110-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-110-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-110-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 110.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-110-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-112-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-112-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 112.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-112-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-206-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-206-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 206.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-206-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-218-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-218-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 218.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-218-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-112-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-112-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 112.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-112-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-206-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-206-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 206.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-206-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-218-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-218-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 218.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-218-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-114-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-114-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 114.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-114-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-114-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-114-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 114.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-114-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-116-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-116-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 116.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-116-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-116-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-116-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 116.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-116-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-118-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-118-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 118.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-118-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-118-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-118-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 118.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-118-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-119-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-119-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 119.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-119-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-119-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-119-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 119.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-119-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-120-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-120-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 120.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-120-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-120-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-120-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 120.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-120-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-121-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-121-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 121.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-121-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-121-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-121-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 121.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-121-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-122-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-122-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 122.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-122-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-164-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-164-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 164.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-164-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-122-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-122-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 122.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-122-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-164-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-164-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 164.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-164-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-123-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-123-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 123.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-123-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-123-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-123-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 123.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-123-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-124-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-124-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 124.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-124-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-210-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-210-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 210.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-210-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-124-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-124-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 124.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-124-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-210-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-210-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 210.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-210-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-125-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-125-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 125.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-125-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-125-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-125-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 125.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-125-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-126-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-126-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 126.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-126-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-198-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-198-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 198.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-198-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-126-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-126-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 126.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-126-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-198-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-198-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 198.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-198-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-127-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-127-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 127.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-127-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-185-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-185-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 185.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-185-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-127-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-127-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 127.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-127-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-185-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-185-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 185.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-185-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-128-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-128-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 128.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-128-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-128-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-128-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 128.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-128-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-129-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-129-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 129.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-129-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-129-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-129-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 129.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-129-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-130-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-130-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 130.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-130-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-158-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-158-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 158.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-158-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-178-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-178-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 178.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-178-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-130-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-130-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 130.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-130-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-158-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-158-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 158.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-158-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-178-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-178-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 178.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-178-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-131-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-131-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 131.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-131-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-131-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-131-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 131.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-131-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-132-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-132-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 132.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-132-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-132-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-132-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 132.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-132-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-133-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-133-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 133.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-133-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-133-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-133-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 133.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-133-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-135-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-135-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 135.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-135-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-135-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-135-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 135.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-135-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-137-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-137-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 137.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-137-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-137-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-137-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 137.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-137-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-139-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-139-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 139.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-139-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-139-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-139-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 139.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-139-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-141-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-141-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 141.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-141-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-141-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-141-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 141.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-141-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-143-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-143-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 143.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-143-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-176-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-176-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 176.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-176-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-143-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-143-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 143.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-143-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-176-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-176-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 176.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-176-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-145-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-145-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 145.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-145-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-145-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-145-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 145.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-145-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-147-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-147-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 147.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-147-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-179-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-179-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 179.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-179-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-147-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-147-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 147.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-147-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-179-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-179-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 179.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-179-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-149-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-149-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 149.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-149-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-149-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-149-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 149.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-149-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-150-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-150-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 150.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-150-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-150-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-150-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 150.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-150-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-160-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-160-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 160.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-160-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-160-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-160-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 160.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-160-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-170-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-170-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 170.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-170-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-170-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-170-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 170.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-170-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-180-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-180-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 180.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-180-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-180-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-180-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 180.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-180-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-190-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-190-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 190.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-190-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-174-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-174-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 174.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-174-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-190-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-190-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 190.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-190-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-174-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-174-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 174.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-174-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-200-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-200-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 200.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-200-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-154-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-154-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 154.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-154-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-200-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-200-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 200.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-200-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-154-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-154-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 154.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-154-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-189-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-189-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 189.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-189-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-189-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-189-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 189.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-189-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-156-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-156-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 156.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-156-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-156-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-156-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 156.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-156-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-187-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-187-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 187.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-187-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-187-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-187-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 187.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-187-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-175-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-175-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 175.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-175-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-22MAR24-175-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240322-175-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1711094400000, 'expiryDatetime': '2024-03-22T08:00:00.000Z', 'strike': 175.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1709712000000, 'info': {'symbol': 'SOL-22MAR24-175-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1709712000000', 'deliveryTime': '1711094400000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-156-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-156-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 156.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-156-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-156-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-156-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 156.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-156-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-158-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-158-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 158.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-158-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-158-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-158-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 158.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-158-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-160-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-160-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 160.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-160-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-160-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-160-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 160.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-160-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-162-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-162-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 162.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-162-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-162-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-162-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 162.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-162-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-164-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-164-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 164.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-164-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-164-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-164-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 164.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-164-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-166-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-166-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 166.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-166-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-166-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-166-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 166.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-166-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-168-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-168-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 168.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-168-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-168-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-168-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 168.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-168-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-170-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-170-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 170.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-170-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-170-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-170-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 170.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-170-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-172-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-172-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 172.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-172-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-172-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-172-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 172.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-172-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-174-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-174-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 174.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-174-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-174-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-174-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 174.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-174-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-176-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-176-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 176.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-176-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-176-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-176-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 176.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-176-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-178-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-178-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 178.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-178-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-178-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-178-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 178.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-178-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-180-C', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-180-C', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 180.0, 'optionType': 'call', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-180-C', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Call', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + +{'id': 'SOL-19MAR24-180-P', 'lowercaseId': None, 'symbol': 'SOL/USDC:USDC-240319-180-P', 'base': 'SOL', 'quote': 'USDC', 'settle': 'USDC', 'baseId': 'SOL', 'quoteId': 'USDC', 'settleId': 'USDC', 'type': 'option', 'spot': False, 'margin': False, 'swap': False, 'future': False, 'option': True, 'index': None, 'active': True, 'contract': True, 'linear': None, 'inverse': None, 'subType': None, 'taker': 0.0006, 'maker': 0.0001, 'contractSize': 1.0, 'expiry': 1710835200000, 'expiryDatetime': '2024-03-19T08:00:00.000Z', 'strike': 180.0, 'optionType': 'put', 'precision': {'amount': 1.0, 'price': 0.01, 'cost': None, 'base': None, 'quote': None}, 'limits': {'leverage': {'min': None, 'max': None}, 'amount': {'min': 1.0, 'max': 100000.0}, 'price': {'min': 0.01, 'max': 10000.0}, 'cost': {'min': None, 'max': None}}, 'created': 1710576000000, 'info': {'symbol': 'SOL-19MAR24-180-P', 'status': 'Trading', 'baseCoin': 'SOL', 'quoteCoin': 'USDC', 'settleCoin': 'USDC', 'optionsType': 'Put', 'launchTime': '1710576000000', 'deliveryTime': '1710835200000', 'deliveryFeeRate': '0.0002', 'priceFilter': {'minPrice': '0.01', 'maxPrice': '10000', 'tickSize': '0.01'}, 'lotSizeFilter': {'maxOrderQty': '100000', 'minOrderQty': '1', 'qtyStep': '1'}}, 'percentage': True, 'feeSide': 'get', 'tierBased': True} + diff --git a/Extras/AnalyzeAsset b/Extras/AnalyzeAsset index 40534bf..c707f6c 100755 --- a/Extras/AnalyzeAsset +++ b/Extras/AnalyzeAsset @@ -48,10 +48,12 @@ maxMonth=[] spList=[] avgList=[] -ohlcv=relay.GetOHLCV(symbol=asset,timeframe=relay.Timeframes[-1],limit=5000) -if ohlcv==[]: - print('OHLCV data not available, stopping analysis') - sys.exit(1) +tf=-1 +ohlcv=[] +while ohlcv==[]: + ohlcv=relay.GetOHLCV(symbol=asset,timeframe=relay.Timeframes[tf],limit=5000) + if ohlcv==[]: + tf-=1 for slice in ohlcv: cs=0 @@ -69,12 +71,12 @@ for slice in ohlcv: sp=mh-ml -print(f"Highest timeframe for {asset} is {relay.Timeframes[-1]}") +print(f"Highest timeframe for {asset} is {relay.Timeframes[tf]}") # find trading duration dsS=datetime.datetime.fromtimestamp(ohlcv[0][0]/1000).strftime('%Y-%m-%d %H:%M:%S') ds=datetime.datetime.strptime(dsS,'%Y-%m-%d %H:%M:%S') -deS=datetime.datetime.fromtimestamp(ohlcv[-1][0]/1000).strftime('%Y-%m-%d %H:%M:%S') +deS=datetime.datetime.fromtimestamp(ohlcv[tf][0]/1000).strftime('%Y-%m-%d %H:%M:%S') de=datetime.datetime.strptime(deS,'%Y-%m-%d %H:%M:%S') delta=relativedelta(de,ds) @@ -163,8 +165,8 @@ print() mmm=maxMonth[2]-maxMonth[3] # Maximum monthly movement amm=sum(spList)/len(spList) # Average monthly movement -print(f"Maximum {relay.Timeframes[-1]} movement: {round(mmm,percision):.{percision}f} ({(mmm/mh)*100:.2f}%)") -print(f"Average {relay.Timeframes[-1]} movement: {round(amm,percision):.{percision}f} ({(amm/mh)*100:.2f}%)") +print(f"Maximum {relay.Timeframes[tf]} movement: {round(mmm,percision):.{percision}f} ({(mmm/mh)*100:.2f}%)") +print(f"Average {relay.Timeframes[tf]} movement: {round(amm,percision):.{percision}f} ({(amm/mh)*100:.2f}%)") print() @@ -176,7 +178,7 @@ for slice in spList: maa+=1 lsp=len(spList) -print(f"Total {relay.Timeframes[-1]}s analyzed: {lsp}") -print(f"{relay.Timeframes[-1]}s above average: {maa} ({(maa/lsp)*100:.2f}%)") +print(f"Total {relay.Timeframes[tf]}s analyzed: {lsp}") +print(f"{relay.Timeframes[tf]}s above average: {maa} ({(maa/lsp)*100:.2f}%)") diff --git a/Extras/CodeProofs/BuyEveryMinute b/Extras/CodeProofs/BuyEveryMinute index 762cff6..1d2ab62 100755 --- a/Extras/CodeProofs/BuyEveryMinute +++ b/Extras/CodeProofs/BuyEveryMinute @@ -14,7 +14,7 @@ import time import JRRsupport import JackrabbitRelay as JRR -NewOrder='{"Recipe":"BuyEveryMinute Conditional","Action":"Buy","Exchange":"mimic","Market":"spot","Account":"phemexPublic","Asset":"XRP/USDT","Base":"-1","OrderType":"Market","Conditional":"Yes","Direction":"Short","SellAction":"Sell","TakeProfit":"1%","StopLoss":"10%" }' +NewOrder='{"Recipe":"BuyEveryMinute Conditional","Action":"Buy","Exchange":"mimic","Market":"spot","Account":"phemexPublic","Asset":"XRP/USDT","Base":"1","OrderType":"Market","Conditional":"Yes","Direction":"Long","SellAction":"Sell","TakeProfit":"1%","StopLoss":"10%" }' ### ### Main driver diff --git a/Extras/CodeProofs/readProxyMarkets b/Extras/CodeProofs/readProxyMarkets new file mode 100755 index 0000000..6cbe99e --- /dev/null +++ b/Extras/CodeProofs/readProxyMarkets @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# +# Jackrabbit Relay +# 2021 Copyright © Robert APM Darin +# All rights reserved unconditionally. + +import sys +sys.path.append('/home/GitHub/JackrabbitRelay/Base/Library') +import os +import json +import time + +import JackrabbitProxy as JRP + +### +### Main code base. Place order on exchange +### + +proxy=JRP.JackrabbitProxy() +if proxy.GetArgsLen() > 2: + exchangeName=proxy.GetExchange() + account=proxy.GetAccount() +else: + print("An exchange anna a (sub)account must be provided.") + sys.exit(1) + +markets=proxy.GetMarkets() +for asset in markets: + print(markets[asset]) + print() diff --git a/Extras/CodeProofs/timedList b/Extras/CodeProofs/timedList deleted file mode 100644 index e69de29..0000000 diff --git a/Extras/ListMarkets b/Extras/ListMarkets index b72f04e..daf0744 100755 --- a/Extras/ListMarkets +++ b/Extras/ListMarkets @@ -58,7 +58,6 @@ def main(): continue ticker=relay.GetTicker(symbol=pair) - # If bid and ask are 0, we can't trade it, so don't show it. if ticker['Bid']==0 and ticker['Ask']==0: continue @@ -69,7 +68,8 @@ def main(): and marketType=='spot': marketType='margin' id=relay.Markets[pair]['id'] - print(f"{pair:30} {id:30} {marketType:8} {ticker['Bid']:18.8f} {ticker['Spread']:18.8f} {ticker['Ask']:18.8f}") + minimum,mincost=relay.GetMinimum(symbol=pair) + print(f"{pair:30} {id:30} {marketType:8} {minimum:18.8f} {mincost:18.8f} {ticker['Bid']:18.8f} {ticker['Spread']:18.8f} {ticker['Ask']:18.8f}") elif relay.Framework=='oanda': mr=GetRatio(float(relay.Markets[pair]['marginRate'])) lfr=float(relay.Markets[pair]['financing']['longRate']) diff --git a/Extras/otcWatch b/Extras/otcWatch index 5530ef2..2c151bc 100755 --- a/Extras/otcWatch +++ b/Extras/otcWatch @@ -19,7 +19,7 @@ import JRRsupport import JackrabbitRelay as JRR DataDirectory='/home/JackrabbitRelay2/Data' -ConditionalStorehouse=DataDirectory+'/OliverTwist.Conditional.Storehouse' +ConditionalStorehouse=DataDirectory+'/OliverTwist.Storehouse' OliverTwistLock=JRRsupport.Locker("OliverTwist") diff --git a/FutureRequirements.txt b/FutureRequirements.txt deleted file mode 100644 index 08ad086..0000000 --- a/FutureRequirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -quickfix -kalshi_python diff --git a/scan b/scan new file mode 100644 index 0000000..eeea551 --- /dev/null +++ b/scan @@ -0,0 +1 @@ +{"totalCount":46320,"data":[{"s":"UNISWAP3ETH:ADWETH_85E23E.USD","d":[]},{"s":"COINBASE:ETHGBP","d":[]},{"s":"UNISWAP3ETH:FLCUSDC_F3A150.USD","d":[]},{"s":"BINANCE:SYNBTC","d":[]},{"s":"UNISWAP3ETH:WETHCV","d":[]},{"s":"WHITEBIT:XRPUSDT","d":[]},{"s":"UNISWAP3ETH:DAISPC","d":[]},{"s":"POLONIEX:SWAPBTC","d":[]},{"s":"UNISWAP:LABSWETH_2D9FD5","d":[]},{"s":"UNISWAP:OZKWETH_84BC85.USD","d":[]},{"s":"WHITEBIT:PIVXBTC","d":[]},{"s":"UNISWAP:PMWETH_7939BB.USD","d":[]},{"s":"UNISWAP3ETH:WLYXWETH_D18349.USD","d":[]},{"s":"UNISWAP:ROUTEUSDC_819DE4","d":[]},{"s":"UNISWAP3ETH:RSCWETH","d":[]},{"s":"KRAKEN:GALEUR","d":[]},{"s":"MEXC:DREAMSUSDT","d":[]},{"s":"MEXC:NPICKUSDT","d":[]},{"s":"BITRUE:LRCUSDT","d":[]},{"s":"BYBIT:DEFIUSDT","d":[]},{"s":"UNISWAP:BDPWETH_80A010","d":[]},{"s":"TRADERJOE:LIZARDWAVAX_5A926E.USD","d":[]},{"s":"KRAKEN:AKTUSD","d":[]},{"s":"UNISWAP3ETH:BOBUSDC_C0D19F.USD","d":[]},{"s":"UNISWAP3POLYGON:XEDWETH_CE4ECA.USD","d":[]},{"s":"UNISWAP3ETH:PLUWETH_E11EE9.USD","d":[]},{"s":"BINANCE:BONDBTC","d":[]},{"s":"MEXC:CATBOYUSDT","d":[]},{"s":"PHEMEX:SPELLUSDT.P","d":[]},{"s":"BINANCE:PROMUSDT","d":[]},{"s":"MEXC:ZYBUSDC","d":[]},{"s":"BINANCE:ALICEBTC","d":[]},{"s":"UNISWAP:UNITYBOTWETH_93BCF5","d":[]},{"s":"UNISWAP:FGPUWETH_A910FC.USD","d":[]},{"s":"KRAKEN:GALAUSD","d":[]},{"s":"UPBIT:BLURKRW","d":[]},{"s":"UNISWAP3OPTIMISM:OPWETH_730691.USD","d":[]},{"s":"ZOOMEX:CTKUSDT.P","d":[]},{"s":"BYBIT:WIFUSDT.P","d":[]},{"s":"GATEIO:PEPE2USDT","d":[]},{"s":"UNISWAP3ETH:FEIUSDC_DF50FB.USD","d":[]},{"s":"BITMEX:LUNAUSDT.P","d":[]},{"s":"TRADERJOE:DEXTFWAVAX_8DC40C","d":[]},{"s":"POLONIEX:KCSUSDT","d":[]},{"s":"BINANCE:OSMOBTC","d":[]},{"s":"COINEX:ALIUSDT","d":[]},{"s":"UNISWAP3ETH:WSMWETH","d":[]},{"s":"HITBTC:DATAETH","d":[]},{"s":"BITHUMB:OCEANKRW","d":[]},{"s":"UNISWAP:USDXUSDC_B6D41F","d":[]},{"s":"MEXC:AGIIUSDT","d":[]},{"s":"UNISWAP3POLYGON:TCGWMATIC_D9E083.USD","d":[]},{"s":"UNISWAP:WNKWETH_94FE60.USD","d":[]},{"s":"UNISWAP3ETH:USDTDGI","d":[]},{"s":"UNISWAP:CIRCLEWETH_9C04AD.USD","d":[]},{"s":"BITHUMB:CONKRW","d":[]},{"s":"UNISWAP:NOBODYWETH_775E4D","d":[]},{"s":"MEXC:RONALDUSDT","d":[]},{"s":"UNISWAP:CUDOSWETH_CB4922","d":[]},{"s":"PANGOLIN:WAVAXUSDC_0E0100","d":[]},{"s":"UNISWAP:TOWERWETH_4E9E73.USD","d":[]},{"s":"UNISWAP:DEMONZWETH_B3AB77.USD","d":[]},{"s":"SPOOKYSWAP:AUSDWFTM_CC2738.USD","d":[]},{"s":"SPOOKYSWAP:AXLETHAXLUSDC_613008.USD","d":[]},{"s":"GATEIO:KP3RUSDT","d":[]},{"s":"MEXC:HOOKUSDT","d":[]},{"s":"POLONIEX:VECUSDT","d":[]},{"s":"UNISWAP3ETH:BVMWETH","d":[]},{"s":"MEXC:DOVAUSDT","d":[]},{"s":"HITBTC:BATETH","d":[]},{"s":"UNISWAP:GROKXWETH_9C4486","d":[]},{"s":"UNISWAP:FREDWETH_D9E5A2","d":[]},{"s":"UNISWAP:XRTWETH_318562","d":[]},{"s":"BITSTAMP:MPLUSD","d":[]},{"s":"WAGYUSWAP:USDVWAG_545DAD.USD","d":[]},{"s":"UNISWAP3ETH:PACTWETH","d":[]},{"s":"UNISWAP:SHUNGWETH_6A1020","d":[]},{"s":"POLONIEX:DEPDUSDT","d":[]},{"s":"UNISWAP:BABYPEPEWETH_5B6A17.USD","d":[]},{"s":"UNISWAP:AIKEKWETH_7B9761.USD","d":[]},{"s":"BINANCE:OGNBTC","d":[]},{"s":"WHITEBIT:DOGEBTC","d":[]},{"s":"BITGET:BEANSUSDT","d":[]},{"s":"UNISWAP:SPICEWETH_1A7363","d":[]},{"s":"BITHUMB:BATKRW","d":[]},{"s":"QUICKSWAP:SALEWMATIC_F2F46C","d":[]},{"s":"UNISWAP3ETH:AGIIWETH","d":[]},{"s":"UNISWAP3ETH:KNCWETH_76838F.USD","d":[]},{"s":"UNISWAP:DREAMAIWETH_F86CF9","d":[]},{"s":"BITGET:MAVUSDT.P","d":[]},{"s":"BINANCE:NEARUSDC","d":[]},{"s":"UNISWAP:TONEWETH_89751F.USD","d":[]},{"s":"UNISWAP3ETH:WETHOCEAN","d":[]},{"s":"BINANCE:XTZBTC","d":[]},{"s":"UNISWAP:ESPRWETH_7235C4","d":[]},{"s":"BITFINEX:BORGUSD","d":[]},{"s":"BISWAP:AUTOWBNB_A34E97.USD","d":[]},{"s":"UNISWAP:UNIBOTWETH_8DBEE2","d":[]},{"s":"GATEIO:POPUSDT","d":[]},{"s":"UNISWAP:CBOTWETH_54BEBB","d":[]},{"s":"KRAKEN:OGNEUR","d":[]},{"s":"BISWAP:FLOKIWBNB_ADBFE3.USD","d":[]},{"s":"MEXC:XVSUSDT.P","d":[]},{"s":"BITGET:KAVAUSDT.P","d":[]},{"s":"UNISWAP3ETH:VEEWETH","d":[]},{"s":"UNISWAP:HERMESWETH_A48FB3","d":[]},{"s":"QUICKSWAP:REVVQUICK_C52F4E","d":[]},{"s":"GATEIO:DOGAUSDT","d":[]},{"s":"COINEX:USEDCARUSDT","d":[]},{"s":"TRADERJOE:GXTWAVAX_776DB9","d":[]},{"s":"POLONIEX:JIVAUSDT","d":[]},{"s":"QUICKSWAP:MIMATICWMATIC_7805B6.USD","d":[]},{"s":"UNISWAP:RAZORUSDP_142390","d":[]},{"s":"MEXC:ETEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCLOWN","d":[]},{"s":"UNISWAP3ETH:WCOMAIUSDT","d":[]},{"s":"UNISWAP:BONEXWETH_EFE764","d":[]},{"s":"GATEIO:CEREUSDT","d":[]},{"s":"PHEMEX:KASUSDT.P","d":[]},{"s":"GATEIO:MAPEUSDT","d":[]},{"s":"HITBTC:AVABTC","d":[]},{"s":"KRAKEN:SUPERUSD","d":[]},{"s":"BTSE:FTMUSD.P","d":[]},{"s":"UNISWAP3ETH:DATAWETH_36DA88.USD","d":[]},{"s":"UPBIT:DOTKRW","d":[]},{"s":"COINEX:SUPERUSDT","d":[]},{"s":"BITSTAMP:SGBEUR","d":[]},{"s":"UNISWAP3ETH:WETHDEXT","d":[]},{"s":"COINEX:ZIGUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TORQWETH_429E56.USD","d":[]},{"s":"BINANCE:CAKETRY","d":[]},{"s":"UNISWAP:SMAI20WETH_367C56.USD","d":[]},{"s":"UNISWAP:WOLFWETH_6AA6AE","d":[]},{"s":"KRAKEN:ETH2SETH","d":[]},{"s":"UNISWAP3ETH:RADARUSDT","d":[]},{"s":"HITBTC:REVUSDT","d":[]},{"s":"GATEIO:PORKUSDT","d":[]},{"s":"GATEIO:TURBOSUSDT","d":[]},{"s":"COINEX:ARDRUSDT","d":[]},{"s":"HITBTC:ICXETH","d":[]},{"s":"UNISWAP3ETH:WETHZENIQ","d":[]},{"s":"KRAKEN:SANDUSD","d":[]},{"s":"HITBTC:KAVAUSD","d":[]},{"s":"UNISWAP3ETH:OHMUSDC","d":[]},{"s":"BINGX:ICPUSDT.PS","d":[]},{"s":"BITGET:MCHCUSDT","d":[]},{"s":"UPBIT:ARBKRW","d":[]},{"s":"UNISWAP3POLYGON:HIMEWMATIC_CD0429.USD","d":[]},{"s":"BITGET:BNBUSDT.P","d":[]},{"s":"BITFINEX:TRXUSD","d":[]},{"s":"UNISWAP3ETH:SIMPWETH_142558.USD","d":[]},{"s":"MEXC:GBUSDT","d":[]},{"s":"UNISWAP3ETH:FPIFRAX_D2A9F2.USD","d":[]},{"s":"SPOOKYSWAP:TCSWFTM_ECDE1F","d":[]},{"s":"UNISWAP3ETH:WETHTOPIA","d":[]},{"s":"KRAKEN:RENBTC","d":[]},{"s":"QUICKSWAP:SOLWETH_4CEBED","d":[]},{"s":"MEXC:CTOUSDT","d":[]},{"s":"BINANCE:THETAUSD.P","d":[]},{"s":"MEXC:EOSCUSDT","d":[]},{"s":"TRADERJOE:BINGOWAVAX_3008FE","d":[]},{"s":"COINEX:ZKFUSDT","d":[]},{"s":"COINEX:MOBBTC","d":[]},{"s":"UNISWAP:DANWETH_F6ADC7","d":[]},{"s":"MEXC:ADDCLASUSDT","d":[]},{"s":"HITBTC:ALPHAUSD","d":[]},{"s":"WOONETWORK:CFXUSDT","d":[]},{"s":"TRADERJOE:KOVINWAVAX_96BBDB","d":[]},{"s":"KRAKEN:ATOMGBP","d":[]},{"s":"UNISWAP3ETH:NYMWETH","d":[]},{"s":"UNISWAP:PIXEWETH_41F6BA","d":[]},{"s":"BYBIT:MPLXUSDT","d":[]},{"s":"UNISWAP:ROUTEWETH_92CC43.USD","d":[]},{"s":"BISWAP:ANKRWBNB_A2F0E2.USD","d":[]},{"s":"BITSTAMP:CHZUSD","d":[]},{"s":"BITFINEX:BTCXAUT","d":[]},{"s":"MEXC:CETUSUSDT.P","d":[]},{"s":"COINBASE:BNTUSD","d":[]},{"s":"MEXC:XLMUSDT.P","d":[]},{"s":"BINANCEUS:TFUELUSDT","d":[]},{"s":"UNISWAP:LBRWETH_3A0EF6.USD","d":[]},{"s":"MEXC:FTNUSDT","d":[]},{"s":"UNISWAP:NSWETH_CF55BD","d":[]},{"s":"UNISWAP:CREWETH_09D671.USD","d":[]},{"s":"COINEX:WHENUSDT","d":[]},{"s":"HITBTC:SNTETH","d":[]},{"s":"UNISWAP:CHARTWETH_960D22.USD","d":[]},{"s":"UNISWAP3ETH:USDTNKN","d":[]},{"s":"POLONIEX:USEDCARUSDT","d":[]},{"s":"UNISWAP3ETH:POLAUSDC","d":[]},{"s":"COINEX:AUDIOBTC","d":[]},{"s":"HITBTC:ARKUSDT","d":[]},{"s":"BYBIT:JUVUSDT","d":[]},{"s":"BINANCE:METISBTC","d":[]},{"s":"BTSE:AXSUSD.P","d":[]},{"s":"BYBIT:SLPUSDT","d":[]},{"s":"UNISWAP:SOUTHWETH_D1E606","d":[]},{"s":"TRADERJOE:BAWLSWAVAX_45BC68.USD","d":[]},{"s":"UNISWAP:TDXWETH_AF77BB.USD","d":[]},{"s":"BYBIT:LINKUSDC","d":[]},{"s":"SPOOKYSWAP:WOOFYWFTM_FD0AB5.USD","d":[]},{"s":"UNISWAP3ETH:WETHTSCT","d":[]},{"s":"HITBTC:ICXUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCICHI","d":[]},{"s":"BITFINEX:BATUSD","d":[]},{"s":"PIONEX:ACHUSDT.P","d":[]},{"s":"UNISWAP:MKRWETH_C2ADDA","d":[]},{"s":"TRADERJOE:INFRAEUSDT_1F2736","d":[]},{"s":"UNISWAP:MEMEMAFIAWETH_BFA664.USD","d":[]},{"s":"COINBASE:LRCBTC","d":[]},{"s":"BITMEX:ETHFIUSDTH2024","d":[]},{"s":"BITFINEX:XMRUST.P","d":[]},{"s":"ZOOMEX:FXSUSDT.P","d":[]},{"s":"MEXC:CELUSDT.P","d":[]},{"s":"UNISWAP3ETH:404WHEELSWETH_B89686.USD","d":[]},{"s":"GATEIO:DOTUSDT","d":[]},{"s":"MEXC:MOBILEUSDT.P","d":[]},{"s":"BYBIT:YFIUSDT","d":[]},{"s":"UNISWAP:MTEWETH_19A59F","d":[]},{"s":"GATEIO:HEUSDT","d":[]},{"s":"SPOOKYSWAP:BULLWFTM_70F5C6.USD","d":[]},{"s":"UNISWAP3ETH:WTAOWETH_2982D3.USD","d":[]},{"s":"BINGX:FTTUSDT.P","d":[]},{"s":"COINEX:VETUSDC","d":[]},{"s":"MEXC:PLANETUSDT","d":[]},{"s":"UNISWAP:FINKWETH_964DC5.USD","d":[]},{"s":"SPOOKYSWAP:BPEPEWFTM_7634B3","d":[]},{"s":"UNISWAP3ETH:WETHRIO","d":[]},{"s":"HITBTC:OPETH","d":[]},{"s":"UNISWAP3ETH:OBTCWETH_AAC4F2.USD","d":[]},{"s":"COINEX:AEROUSDT","d":[]},{"s":"BINANCE:UNFIUSDT","d":[]},{"s":"UNISWAP:DOKEWETH_CAB591","d":[]},{"s":"HITBTC:FLOWBTC","d":[]},{"s":"POLONIEX:REKT2USDT","d":[]},{"s":"BITRUE:TRXADA","d":[]},{"s":"UNISWAP:LUNA20WETH_B6A677.USD","d":[]},{"s":"UNISWAP3ETH:BOBWETH_9AF997.USD","d":[]},{"s":"UNISWAP3ETH:GETHWETH_6BFDAC.USD","d":[]},{"s":"MEXC:LUNCUSDC","d":[]},{"s":"UNISWAP:LSVRDAI_0BA577","d":[]},{"s":"UNISWAP:FLEXWETH_95CC12","d":[]},{"s":"UNISWAP3ETH:WETHXAI","d":[]},{"s":"UNISWAP3ETH:LEOXWETH_00C07A.USD","d":[]},{"s":"KRAKEN:DOGEUSDT","d":[]},{"s":"MEXC:AEUSDT","d":[]},{"s":"HITBTC:XLMUSD","d":[]},{"s":"GATEIO:AUTOUSDT","d":[]},{"s":"MEXC:MONGUSDT","d":[]},{"s":"BTSE:UNIUSD.P","d":[]},{"s":"BITRUE:OPUSDT","d":[]},{"s":"UNISWAP3ETH:USDTXAI","d":[]},{"s":"UNISWAP3ETH:WETHABI","d":[]},{"s":"UNISWAP3ETH:KASWETH","d":[]},{"s":"UNISWAP:KATWETH_1B67AF.USD","d":[]},{"s":"COINEX:NEOXUSDT","d":[]},{"s":"BITFINEX:SPELLUSD","d":[]},{"s":"POLONIEX:PORTOUSDT","d":[]},{"s":"COINBASE:APTUSD","d":[]},{"s":"KRAKEN:QTUMUSD.PM","d":[]},{"s":"GATEIO:KEYUSDT","d":[]},{"s":"MEXC:GFLYUSDT","d":[]},{"s":"UNISWAP:POLIWETH_0E0A03.USD","d":[]},{"s":"GATEIO:TURBOUSDT","d":[]},{"s":"UNISWAP:ARDVRKWETH_3BFDBF.USD","d":[]},{"s":"KRAKEN:PYTHUSD","d":[]},{"s":"BYBIT:ICXUSDT","d":[]},{"s":"BINANCE:BSWUSDT","d":[]},{"s":"POLONIEX:AVAXUSD","d":[]},{"s":"BYBIT:TOMSUSDT","d":[]},{"s":"UNISWAP3ETH:VEURUSDC","d":[]},{"s":"HITBTC:RNDRUSD","d":[]},{"s":"KRAKEN:ETHGBP","d":[]},{"s":"GATEIO:CRTSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCMPL","d":[]},{"s":"UNISWAP:PRISMAWETH_488E55","d":[]},{"s":"UNISWAP3ETH:GUSDUSDC_5AA135.USD","d":[]},{"s":"BISWAP:1RTWBNB_67B07E","d":[]},{"s":"UNISWAP3ETH:ZEONUSDT","d":[]},{"s":"BTSE:YFIUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHZENF","d":[]},{"s":"QUICKSWAP:UNIXWMATIC_4E7FC7","d":[]},{"s":"UNISWAP3ETH:WETHCJPY","d":[]},{"s":"KRAKEN:LRCUSD","d":[]},{"s":"BYBIT:CTCUSDT.P","d":[]},{"s":"TRADERJOE:SUSDUSDCE_360C23","d":[]},{"s":"BYBIT:PYTHUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:STGUSDC_793ACA.USD","d":[]},{"s":"UNISWAP:CUDOSWETH_CB4922.USD","d":[]},{"s":"BITGET:GRAILUSDT","d":[]},{"s":"BITFINEX:HMTBTC","d":[]},{"s":"UNISWAP3ETH:BONEUSDC_5E008A.USD","d":[]},{"s":"BYBIT:SUSHIUSDT.P","d":[]},{"s":"COINBASE:IOTXUSD","d":[]},{"s":"UNISWAP:WSBCWETH_F34C66.USD","d":[]},{"s":"BYBIT:MATICUSDT.2L","d":[]},{"s":"HITBTC:LOOMUSD","d":[]},{"s":"MEXC:MEMEUSDT","d":[]},{"s":"UNISWAP:MEOWWETH_985907.USD","d":[]},{"s":"MEXC:AZEROUSDC","d":[]},{"s":"UNISWAP3ETH:WETHSTFX","d":[]},{"s":"HITBTC:MANAUSDT","d":[]},{"s":"TRADERJOE:STEAKWAVAX_76A551","d":[]},{"s":"BINANCE:AMPUSDT","d":[]},{"s":"QUICKSWAP:IETHVUSDC_384A15","d":[]},{"s":"UNISWAP3ETH:PORKPNDC_C026EB.USD","d":[]},{"s":"BLOFIN:VETUSDT.P","d":[]},{"s":"COINEX:MUSEUSDT","d":[]},{"s":"UNISWAP3ETH:USDCTRX","d":[]},{"s":"BTSE:BATUSD.P","d":[]},{"s":"POLONIEX:SRMUSDT","d":[]},{"s":"UNISWAP:PISSWETH_9AA30D.USD","d":[]},{"s":"UNISWAP:KINEWETH_B34DAA","d":[]},{"s":"COINEX:RACAUSDT","d":[]},{"s":"HITBTC:BORGBTC","d":[]},{"s":"MEXC:UNIBOTUSDT","d":[]},{"s":"COINEX:PSTAKEUSDT","d":[]},{"s":"UNISWAP3ETH:SWFTCWETH_1DD864.USD","d":[]},{"s":"KRAKEN:ACHEUR","d":[]},{"s":"BITGET:MINAUSDT","d":[]},{"s":"PANGOLIN:WOWWAVAX_508567","d":[]},{"s":"BYBIT:STRAXUSDT.P","d":[]},{"s":"UNISWAP3ETH:HEXUSDC_E05E65.USD","d":[]},{"s":"KRAKEN:FILEUR","d":[]},{"s":"UNISWAP:TKSTWETH_BF519F","d":[]},{"s":"BITRUE:PLIUSDT","d":[]},{"s":"PANGOLIN:WETHEWAVAX_7C05D5","d":[]},{"s":"QUICKSWAP:TELQUICK_E88E24.USD","d":[]},{"s":"UNISWAP:ASTROXWETH_ACD37B.USD","d":[]},{"s":"COINBASE:CELRUSD","d":[]},{"s":"UNISWAP:PEPEKIWETH_2A96D9.USD","d":[]},{"s":"UNISWAP3ETH:WETHPEPEXL","d":[]},{"s":"UNISWAP3ETH:WETHMTRM","d":[]},{"s":"BYBIT:ORNUSDT.P","d":[]},{"s":"UNISWAP:FLRBRGWETH_E3550F","d":[]},{"s":"MEXC:QIUSDT","d":[]},{"s":"QUICKSWAP:LGNSDAI_882DF4.USD","d":[]},{"s":"BITHUMB:JOEKRW","d":[]},{"s":"GATEIO:MOOOUSDT","d":[]},{"s":"GATEIO:HCTUSDT","d":[]},{"s":"UNISWAP:TKXUSDC_A703F8","d":[]},{"s":"POLONIEX:GMMTUSDT","d":[]},{"s":"QUICKSWAP:SMBRWMATIC_3178BD","d":[]},{"s":"UNISWAP3ETH:USDTIDRT","d":[]},{"s":"BISWAP:QUACKWBNB_0745B0.USD","d":[]},{"s":"DYDX:ICPUSD.P","d":[]},{"s":"UNISWAP:NTVRKWETH_DDF839","d":[]},{"s":"BLOFIN:PROMUSDT.P","d":[]},{"s":"UNISWAP3ETH:PENDLEWETH_50FE14.USD","d":[]},{"s":"GATEIO:OXYUSDT","d":[]},{"s":"UNISWAP3ETH:USDTCBY","d":[]},{"s":"MEXC:YOLOUSDT","d":[]},{"s":"MEXC:ORLAUSDT","d":[]},{"s":"UNISWAP3ETH:USDCMACKE","d":[]},{"s":"UNISWAP3ARBITRUM:NOLAWETH_39D18A.USD","d":[]},{"s":"PHEMEX:MANTAUSDT.P","d":[]},{"s":"UNISWAP3ETH:M2WETH_C63BB8.USD","d":[]},{"s":"UNISWAP:ANTWETH_9DEF95","d":[]},{"s":"UNISWAP:TAHWETH_68F80E.USD","d":[]},{"s":"PIONEX:MAVIAUSDT.P","d":[]},{"s":"GATEIO:OPSUSDT","d":[]},{"s":"MEXC:ADAXUSDT","d":[]},{"s":"POLONIEX:VGXUSDT","d":[]},{"s":"UNISWAP3ETH:STORJUSDT_2530CE.USD","d":[]},{"s":"POLONIEX:GRTUSDT","d":[]},{"s":"POLONIEX:MLUSDT","d":[]},{"s":"HITBTC:NXTBTC","d":[]},{"s":"XEXCHANGE:PLATAUSDC","d":[]},{"s":"UNISWAP:ARBOTWETH_4CB363.USD","d":[]},{"s":"GATEIO:FRINUSDT","d":[]},{"s":"HITBTC:API3BTC","d":[]},{"s":"UNISWAP3ETH:WGKWETH_73067B.USD","d":[]},{"s":"MEXC:ANCUSDT","d":[]},{"s":"UNISWAP3ETH:DYDXWETH","d":[]},{"s":"SPOOKYSWAP:ALPACAWFTM_F66D2B.USD","d":[]},{"s":"POLONIEX:MLNUSDT","d":[]},{"s":"BYBIT:THETAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHVETH","d":[]},{"s":"UNISWAP3ETH:FORTHUSDT","d":[]},{"s":"GATEIO:SCYUSDT","d":[]},{"s":"QUICKSWAP:1FLRWMATIC_F1464F","d":[]},{"s":"UPBIT:KAVAKRW","d":[]},{"s":"PHEMEX:BEAMUSDT.P","d":[]},{"s":"BINANCE:ONTUSDT","d":[]},{"s":"UNISWAP3ETH:ADXUSDT_8DE597.USD","d":[]},{"s":"GATEIO:DUCKUSDT","d":[]},{"s":"GATEIO:HNTUSDT","d":[]},{"s":"HITBTC:CEEKUSDT","d":[]},{"s":"TRADERJOE:DOMIWAVAX_5B9FAF.USD","d":[]},{"s":"BITGET:QNTUSDT.P","d":[]},{"s":"BITRUE:NEOBTC","d":[]},{"s":"UNISWAP:WHLWETH_52A500","d":[]},{"s":"POLONIEX:ETCUSDC","d":[]},{"s":"UNISWAP:IMGNAIWETH_E471F9.USD","d":[]},{"s":"WHITEBIT:ETHUSD","d":[]},{"s":"HITBTC:LTCBTC","d":[]},{"s":"UNISWAP3ETH:PEBBLEWETH_5E2474.USD","d":[]},{"s":"GATEIO:BRYUSDT","d":[]},{"s":"MEXC:SOLS1USDT","d":[]},{"s":"UNISWAP3ETH:CAPYBARAWETH","d":[]},{"s":"MEXC:GLIUSDT","d":[]},{"s":"COINEX:QKCBTC","d":[]},{"s":"UNISWAP3ARBITRUM:GOODWETH_43C5D8.USD","d":[]},{"s":"UNISWAP:FLASHWETH_9CB236.USD","d":[]},{"s":"PANGOLIN:AAVAXCWAVAX_5F89D2","d":[]},{"s":"BINGX:CELRUSDT.P","d":[]},{"s":"QUICKSWAP:WISTAUSDT_1AE24A","d":[]},{"s":"KRAKEN:LTCUSD","d":[]},{"s":"GATEIO:ALGOUSDT.3L","d":[]},{"s":"UNISWAP3ARBITRUM:NGTUSDT_3AB431.USD","d":[]},{"s":"POLONIEX:DYDXUSDT","d":[]},{"s":"COINEX:TREMPUSDT","d":[]},{"s":"TRADERJOE:BETSWAVAX_4D8BC9","d":[]},{"s":"UNISWAP3ETH:SOLIDWETH","d":[]},{"s":"TRADERJOE:NIOZWAVAX_E4D74F.USD","d":[]},{"s":"UNISWAP:SYNCWETH_FB2F54","d":[]},{"s":"KRAKEN:TRUUSD","d":[]},{"s":"MEXC:DOGGOUSDT","d":[]},{"s":"UNISWAP:MTAOWETH_6D1099.USD","d":[]},{"s":"UNISWAP3ETH:WETHFOLD","d":[]},{"s":"MEXC:IMXUSDT","d":[]},{"s":"MEXC:ELFBTC","d":[]},{"s":"UNISWAP:EVEAIWETH_908D60","d":[]},{"s":"TRADERJOE:QIWAVAX_05366F.USD","d":[]},{"s":"POLONIEX:ETHTRX","d":[]},{"s":"MEXC:UFOUSDT","d":[]},{"s":"BITGET:TIMEUSDT","d":[]},{"s":"COINEX:TWTUSDT","d":[]},{"s":"BYBIT:FMBUSDT","d":[]},{"s":"MEXC:BCHUSDC","d":[]},{"s":"BITKUB:LUNATHB","d":[]},{"s":"MEXC:SINUSDT","d":[]},{"s":"HITBTC:LRCETH","d":[]},{"s":"MEXC:BANANAGUNUSDT","d":[]},{"s":"UNISWAP:AGNWETH_E31499","d":[]},{"s":"COINEX:BTTUSDC","d":[]},{"s":"BITRUE:CSCUSDC","d":[]},{"s":"BINANCEUS:ZENUSDT","d":[]},{"s":"PHEMEX:MANAUSDT","d":[]},{"s":"HONEYSWAPPOLYGON:WBTCWETH","d":[]},{"s":"BYBIT:ZKFUSDT","d":[]},{"s":"UNISWAP3ETH:DELWETH","d":[]},{"s":"GATEIO:BERRYUSDT","d":[]},{"s":"ZOOMEX:RSRUSDT.P","d":[]},{"s":"KRAKEN:BCHBTC","d":[]},{"s":"BITHUMB:CTCKRW","d":[]},{"s":"BITFINEX:XDCBTC","d":[]},{"s":"UNISWAP:DOSEWETH_541E55.USD","d":[]},{"s":"TRADERJOE:BFGUSDC_FF45A7","d":[]},{"s":"BITRUE:LRCUSDC","d":[]},{"s":"DELTA:SUIUSDT.P","d":[]},{"s":"UNISWAP3ETH:CRUUSDT","d":[]},{"s":"UNISWAP:PIPIWETH_2723B9.USD","d":[]},{"s":"HITBTC:BICOBTC","d":[]},{"s":"UNISWAP3ETH:BLURWETH_824A30.USD","d":[]},{"s":"MEXC:YFIETH","d":[]},{"s":"HITBTC:OPUSDC","d":[]},{"s":"UNISWAP3ETH:GROKWETH_66BA59.USD","d":[]},{"s":"UNISWAP3ETH:WETHSTRDY","d":[]},{"s":"MEXC:SUPUSDT","d":[]},{"s":"BLOFIN:JTOUSDT.P","d":[]},{"s":"UNISWAP3ETH:FXSWETH_39C9E3.USD","d":[]},{"s":"WHITEBIT:USDTUSD","d":[]},{"s":"UNISWAP3ETH:WOOLWETH_7B12D8.USD","d":[]},{"s":"GATEIO:MVUSDT","d":[]},{"s":"HITBTC:MAGICUSDT","d":[]},{"s":"WAGYUSWAP:JUNGLEUSDT_871309","d":[]},{"s":"UNISWAP3ARBITRUM:GNSWETH_FB3013.USD","d":[]},{"s":"BINANCE:KDAUSDT","d":[]},{"s":"KRAKEN:RLCUSD","d":[]},{"s":"BINANCE:MANAUSD.P","d":[]},{"s":"XEXCHANGE:BFYUSDC","d":[]},{"s":"UNISWAP3ETH:WETHUEFN","d":[]},{"s":"UNISWAP3ETH:PYRWETH_E495BF.USD","d":[]},{"s":"UNISWAP3ETH:MANAUSDT","d":[]},{"s":"HITBTC:CTSIBTC","d":[]},{"s":"QUICKSWAP:QIWMATIC_9A8B26.USD","d":[]},{"s":"HITBTC:AAVEUSD","d":[]},{"s":"WHITEBIT:BLURUSDT","d":[]},{"s":"UNISWAP:ALPHAWETH_70235A","d":[]},{"s":"HITBTC:YFIBTC","d":[]},{"s":"BLOFIN:ICXUSDT.P","d":[]},{"s":"COINBASE:ENSUSDT","d":[]},{"s":"UNISWAP:KEVINWETH_898461.USD","d":[]},{"s":"UNISWAP3ETH:XEDWETH","d":[]},{"s":"BINANCE:RONINFDUSD","d":[]},{"s":"BITHUMB:MBXKRW","d":[]},{"s":"BITGET:BORAUSDT","d":[]},{"s":"UNISWAP3ETH:MATICWETH","d":[]},{"s":"UNISWAP:XENOWETH_827011","d":[]},{"s":"GATEIO:LVNUSDT","d":[]},{"s":"BINGX:UNFIUSDT.P","d":[]},{"s":"UNISWAP3ETH:HARRISWETH","d":[]},{"s":"UNISWAP3ETH:MAIWETH","d":[]},{"s":"QUICKSWAP:AIWMATIC_994099.USD","d":[]},{"s":"BINANCE:TRBBTC","d":[]},{"s":"UNISWAP3ETH:WETHETHTCG2","d":[]},{"s":"GATEIO:OGUSDT","d":[]},{"s":"MEXC:CTKUSDT","d":[]},{"s":"UNISWAP3ETH:404BLOCKSWETH_EBE4CB.USD","d":[]},{"s":"PANGOLIN:AAVAXCWAVAX_5F89D2.USD","d":[]},{"s":"COINEX:PITUSDT","d":[]},{"s":"BYBIT:AXSUSDT.P","d":[]},{"s":"UNISWAP3ETH:DACXIWETH","d":[]},{"s":"BLOFIN:SILLYUSDT.P","d":[]},{"s":"BYBIT:ETHEUR","d":[]},{"s":"HITBTC:CWBTC","d":[]},{"s":"KRAKEN:GALUSD.PM","d":[]},{"s":"GATEIO:AXSUSDT.5S","d":[]},{"s":"TRADERJOE:RPEPEWAVAX_C1B9AD.USD","d":[]},{"s":"UNISWAP:WOLFWETH_60E5D1.USD","d":[]},{"s":"MEXC:CRHUSDT","d":[]},{"s":"UNISWAP:PARWETH_6AEEBC","d":[]},{"s":"HITBTC:ADAUSDC","d":[]},{"s":"COINBASE:ETHUSDT","d":[]},{"s":"BINANCEUS:LDOUSDT","d":[]},{"s":"UNISWAP:NARUTOWETH_F65DFC","d":[]},{"s":"UNISWAP3ETH:RETHWETH_29191F.USD","d":[]},{"s":"UNISWAP3ETH:PATEXUSDT","d":[]},{"s":"HITBTC:ADSBTC","d":[]},{"s":"HITBTC:COMPBTC","d":[]},{"s":"UNISWAP3ETH:EUREDAI","d":[]},{"s":"DYDX:ADAUSD.P","d":[]},{"s":"BITHUMB:MVCKRW","d":[]},{"s":"UNISWAP3ETH:DAIFTM","d":[]},{"s":"MEXC:GCOWUSDT","d":[]},{"s":"MEXC:GPTUSDT","d":[]},{"s":"MEXC:PEPEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHZOOA","d":[]},{"s":"PIONEX:ARUSDT.P","d":[]},{"s":"POLONIEX:AMPTRX","d":[]},{"s":"UNISWAP3ETH:USDTWETH","d":[]},{"s":"GATEIO:LAYERUSDT","d":[]},{"s":"BLOFIN:AVAXUSDT.P","d":[]},{"s":"UNISWAP3ETH:CELRWETH","d":[]},{"s":"UNISWAP3ETH:VMXWETH_3E83C7.USD","d":[]},{"s":"GATEIO:OCEANUSDT","d":[]},{"s":"UNISWAP3ETH:20MANTSWETH","d":[]},{"s":"GATEIO:METUSDT","d":[]},{"s":"KRAKEN:XRPUSDT","d":[]},{"s":"COINBASE:IDEXUSD","d":[]},{"s":"MEXC:RAINCOINUSDT","d":[]},{"s":"UNISWAP:BCATWETH_0AFD65","d":[]},{"s":"BINGX:MANAUSDT.PS","d":[]},{"s":"UNISWAP:FLASHWETH_A84C1F","d":[]},{"s":"GATEIO:SASHIMIUSDT","d":[]},{"s":"BINANCE:WINUSDT","d":[]},{"s":"UNISWAP3POLYGON:AVTMUSDT_4A35BE.USD","d":[]},{"s":"UNISWAP:DOLANWETH_0A6BEF.USD","d":[]},{"s":"UNISWAP3ETH:WETHX","d":[]},{"s":"BINANCE:PAXGBTC","d":[]},{"s":"MEXC:IMGNAIUSDT","d":[]},{"s":"GATEIO:HIBSUSDT","d":[]},{"s":"COINEX:LATUSDT","d":[]},{"s":"COINEX:ELAUSDT","d":[]},{"s":"SPOOKYSWAP:CONKWFTM_449FED","d":[]},{"s":"UNISWAP3ETH:FUNDWETH_883952.USD","d":[]},{"s":"BITRUE:DREPUSDT","d":[]},{"s":"UNISWAP:KIBAWETH_BF6DCD.USD","d":[]},{"s":"QUICKSWAP:VOXELUSDC_7C3038","d":[]},{"s":"UNISWAP3ETH:WETHTRAC","d":[]},{"s":"BITGET:COREUSDT","d":[]},{"s":"UNISWAP:MSIWETH_6E48DB.USD","d":[]},{"s":"KRAKEN:GRTEUR","d":[]},{"s":"UNISWAP:ADXWETH_D3772A.USD","d":[]},{"s":"SPOOKYSWAP:FANTOMWFTM_1BE117","d":[]},{"s":"BITGET:STXUSDT.P","d":[]},{"s":"GATEIO:VEEUSDT","d":[]},{"s":"BYBIT:STGUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRUDWETH_0F5CC4.USD","d":[]},{"s":"BITMEX:WUSDTZ2024","d":[]},{"s":"HITBTC:APEUSD","d":[]},{"s":"UNISWAP3ETH:HBOTUSDC","d":[]},{"s":"UNISWAP:MASK20WETH_AA617C","d":[]},{"s":"QUICKSWAP:EQUADWETH_74BF9B.USD","d":[]},{"s":"COINEX:CETBTC","d":[]},{"s":"UNISWAP:MODWETH_FCA090.USD","d":[]},{"s":"BITFINEX:HTXBTC","d":[]},{"s":"GEMINI:MATICUSD","d":[]},{"s":"UNISWAP3ETH:WOOFYYFI","d":[]},{"s":"UNISWAP:REACHWETH_6577EC.USD","d":[]},{"s":"BYBIT:PAXGUSDT.P","d":[]},{"s":"BYBIT:WLDUSDT.P","d":[]},{"s":"GATEIO:PITUSDT","d":[]},{"s":"UNISWAP3ETH:USDCELON","d":[]},{"s":"UNISWAP3ETH:EUROCUSDC","d":[]},{"s":"UNISWAP:CYCWETH_37D9C7.USD","d":[]},{"s":"GATEIO:NEARUSDT.3S","d":[]},{"s":"QUICKSWAP:GGTKWETH_19B5F1.USD","d":[]},{"s":"BISWAP:ANKRBNBANKR_7CF792","d":[]},{"s":"BISWAP:1MTWBNB_D0222E","d":[]},{"s":"UNISWAP3ETH:ANKRWETH","d":[]},{"s":"COINBASE:BCHGBP","d":[]},{"s":"BINGX:EGLDUSDT.PS","d":[]},{"s":"PHEMEX:MAGICUSDT.P","d":[]},{"s":"BINGX:PORTALUSDT.PS","d":[]},{"s":"PHEMEX:ALICEUSDT","d":[]},{"s":"UNISWAP:CHECKSWETH_7D2CE6.USD","d":[]},{"s":"UNISWAP:LINQWETH_A8A837.USD","d":[]},{"s":"UNISWAP3ETH:WETHHOPE","d":[]},{"s":"BYBIT:SANDUSDT.2S","d":[]},{"s":"UNISWAP3ETH:ZCHFWETH","d":[]},{"s":"TRADERJOE:PACWAVAX_C00FA4","d":[]},{"s":"POLONIEX:AVATRX","d":[]},{"s":"MEXC:CLVUSDT","d":[]},{"s":"MEXC:BSCPADUSDT","d":[]},{"s":"BINANCEUS:XECUSDT","d":[]},{"s":"UNISWAP:TNGMWETH_60BE38","d":[]},{"s":"BINANCE:CELOUSDT","d":[]},{"s":"GATEIO:BMONUSDT","d":[]},{"s":"UNISWAP:WAGYUWETH_73F1D5.USD","d":[]},{"s":"UNISWAP:DRBTWETH_032896","d":[]},{"s":"UNISWAP:SWPWETH_A71820.USD","d":[]},{"s":"UNISWAP:POLYHEDRAWETH_EFC437","d":[]},{"s":"COINEX:ROSEUSDC","d":[]},{"s":"GATEIO:OPTIMUSUSDT","d":[]},{"s":"UNISWAP3ETH:USDTDAI","d":[]},{"s":"BITHUMB:CKBKRW","d":[]},{"s":"QUICKSWAP:GHSTFUD_FEC232.USD","d":[]},{"s":"SPOOKYSWAP:AXLUSDCWFTM_A196C7","d":[]},{"s":"GATEIO:DIOUSDT","d":[]},{"s":"POLONIEX:SUNUSDT","d":[]},{"s":"BINANCE:APTUSD.P","d":[]},{"s":"GATEIO:ICONSUSDT","d":[]},{"s":"UNISWAP3ETH:RSTWETH_9A599C.USD","d":[]},{"s":"BINGX:WAVESUSDT.PS","d":[]},{"s":"UNISWAP3ETH:ORANGEPEPEWETH","d":[]},{"s":"GATEIO:SANDUSDT","d":[]},{"s":"PANGOLIN:USDTEWAVAX_E28984.USD","d":[]},{"s":"UNISWAP3ETH:HABIBIWETH_C34322.USD","d":[]},{"s":"UNISWAP:ALCHEMISTWETH_CD6BCC","d":[]},{"s":"DERIBIT:ETHUSD.P","d":[]},{"s":"UNISWAP:BULLWETH_587CE7","d":[]},{"s":"UNISWAP:RBCWETH_B69985.USD","d":[]},{"s":"BITRUE:BTCUSDT","d":[]},{"s":"PANGOLIN:NFTDUSDTE_C251D8","d":[]},{"s":"BINANCE:ALGOBTC","d":[]},{"s":"HITBTC:GNOETH","d":[]},{"s":"BYBIT:IMXUSDT","d":[]},{"s":"COINBASE:PNGUSD","d":[]},{"s":"UNISWAP:NMLWETH_934244","d":[]},{"s":"UNISWAP3POLYGON:EURSUSDC_82EE34.USD","d":[]},{"s":"UNISWAP:ASTRAWETH_4DF1C4.USD","d":[]},{"s":"BITFINEX:FILUSD","d":[]},{"s":"UNISWAP:BLOCKWETH_41AABD","d":[]},{"s":"TRADERJOE:TUSWAVAX_565D20.USD","d":[]},{"s":"OKX:VRAUSDT.P","d":[]},{"s":"OKX:DGBUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:MATICXWMATIC_12CFBF.USD","d":[]},{"s":"GATEIO:ETHUSDT.3S","d":[]},{"s":"UNISWAP3ETH:ZUZALUWETH_678E3D.USD","d":[]},{"s":"GATEIO:STRKUSDT","d":[]},{"s":"BINANCEUS:AUDIOUSDT","d":[]},{"s":"WHITEBIT:XLMUAH","d":[]},{"s":"GATEIO:AXSUSDT.3L","d":[]},{"s":"MEXC:BCTUSDT","d":[]},{"s":"BISWAP:BIFIWBNB_EB8053","d":[]},{"s":"PHEMEX:GTCUSDT","d":[]},{"s":"COINEX:SUSHIUSDC","d":[]},{"s":"KRAKEN:BATBTC","d":[]},{"s":"COINEX:NABOXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TAIKULAWETH_83B43B.USD","d":[]},{"s":"MEXC:PTPUSDT","d":[]},{"s":"UNISWAP3POLYGON:NDIWMATIC_D04491.USD","d":[]},{"s":"BITFINEX:GNOUSD","d":[]},{"s":"UNISWAP3ETH:RSRWETH_A3A9A8.USD","d":[]},{"s":"UNISWAP3POLYGON:IDRTUSDC_BBB535.USD","d":[]},{"s":"WHITEBIT:ANKRBTC","d":[]},{"s":"UNISWAP:SUPERSAND_30E7E1","d":[]},{"s":"BINANCE:USDTBIDR","d":[]},{"s":"UNISWAP:DIGITSDAI_24825D","d":[]},{"s":"BINANCE:HOOKUSDT","d":[]},{"s":"BINANCE:FUNUSDT","d":[]},{"s":"UNISWAP3POLYGON:DSRUNUSDC_C31DE0.USD","d":[]},{"s":"GATEIO:MTLUSDT","d":[]},{"s":"UNISWAP3ETH:NMRWETH_8DF016.USD","d":[]},{"s":"PANGOLIN:USDTEWAVAX_E28984","d":[]},{"s":"UNISWAP:XRPCHAINWETH_DAC9E9","d":[]},{"s":"MEXC:LBCUSDT","d":[]},{"s":"UNISWAP:ANTIMEVWETH_6EF666","d":[]},{"s":"GATEIO:MOONUSDT","d":[]},{"s":"ZOOMEX:IMXUSDT.P","d":[]},{"s":"VERSEETH:VERSEWETH_845C01.USD","d":[]},{"s":"POLONIEX:PEPE2USDT","d":[]},{"s":"MEXC:MAGASOLUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDC_6F3206.USD","d":[]},{"s":"UNISWAP3ETH:STOSUSDT","d":[]},{"s":"HITBTC:BCNUSD","d":[]},{"s":"POLONIEX:DCRUSDT","d":[]},{"s":"COINEX:FILUSDC","d":[]},{"s":"BYBIT:BONDUSDT.P","d":[]},{"s":"UNISWAP3ETH:DN404AI_A0E3F8.USD","d":[]},{"s":"BITFINEX:BORGBTC","d":[]},{"s":"UNISWAP3ETH:BURNWETH_DE0400.USD","d":[]},{"s":"UNISWAP3ETH:BOOPWETH","d":[]},{"s":"BYBIT:HNTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDINU","d":[]},{"s":"POLONIEX:LVLUSDT","d":[]},{"s":"UNISWAP:SUHWETH_1D0F73","d":[]},{"s":"BINGX:ALGOUSDT.PS","d":[]},{"s":"UNISWAP:FUTUREAIWETH_2CA606","d":[]},{"s":"UNISWAP:DONWETH_FAF7ED.USD","d":[]},{"s":"BYBIT:UNIUSDT","d":[]},{"s":"UNISWAP3ETH:CHADWETH_F256A3.USD","d":[]},{"s":"PIONEX:BNBUSDT.P","d":[]},{"s":"COINEX:PUSHUSDT","d":[]},{"s":"POLONIEX:TRXUSDC","d":[]},{"s":"MEXC:CREUSDT","d":[]},{"s":"UNISWAP:DORAWETH_E33322.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDT_B791AD.USD","d":[]},{"s":"MEXC:RBXUSDT","d":[]},{"s":"COINEX:CNCUSDT","d":[]},{"s":"HITBTC:BTCUSDD","d":[]},{"s":"MEXC:GEARUSDT","d":[]},{"s":"UNISWAP:DANWETH_12EB81.USD","d":[]},{"s":"UNISWAP3ETH:BOLTWETH","d":[]},{"s":"BITHUMB:POLAKRW","d":[]},{"s":"GEMINI:LINKETH","d":[]},{"s":"POLONIEX:CROCCATUSDT","d":[]},{"s":"UNISWAP3POLYGON:GPOUSDC_ABF559.USD","d":[]},{"s":"GATEIO:RSS3USDT","d":[]},{"s":"UNISWAP:ULTCWETH_6C492E","d":[]},{"s":"UNISWAP:ESXWETH_BD4129","d":[]},{"s":"BITFINEX:APTBTC","d":[]},{"s":"UNISWAP:SPROTOWETH_756043","d":[]},{"s":"QUICKSWAP:NITROWMATIC_032D86.USD","d":[]},{"s":"UNISWAP:DTOWETH_6473C1.USD","d":[]},{"s":"HITBTC:RDNTUSDT","d":[]},{"s":"BITFINEX:MNABTC","d":[]},{"s":"UNISWAP:PCWETH_E8B85A","d":[]},{"s":"UNISWAP3ETH:USDCALCX","d":[]},{"s":"UNISWAP:ODINTSUKA_C0376B.USD","d":[]},{"s":"UNISWAP:AIDRAGONWETH_532AEB","d":[]},{"s":"UNISWAP:FXSFRAX_E1573B.USD","d":[]},{"s":"MEXC:DCARDUSDT","d":[]},{"s":"DELTA:AAVEUSDT.P","d":[]},{"s":"SPOOKYSWAP:POLTERWFTM_44C85D","d":[]},{"s":"UNISWAP3ETH:GEMWETH","d":[]},{"s":"KRAKEN:POLISUSD","d":[]},{"s":"UNISWAP:BULLWETH_587CE7.USD","d":[]},{"s":"MEXC:KIBAUSDT","d":[]},{"s":"UNISWAP:PPBLZWETH_9479B6.USD","d":[]},{"s":"GATEIO:POGAIUSDT","d":[]},{"s":"UNISWAP3ETH:BSKTUSDC","d":[]},{"s":"UNISWAP3ETH:TXJPWETH_A91666.USD","d":[]},{"s":"UNISWAP3POLYGON:VOXELUSDC_A830FF.USD","d":[]},{"s":"PHEMEX:PTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDRGN","d":[]},{"s":"UNISWAP:PALMWETH_051EF3","d":[]},{"s":"HITBTC:BCHETH","d":[]},{"s":"UNISWAP3POLYGON:WBTCUSDT_33016D.USD","d":[]},{"s":"UNISWAP3ETH:ASTXWETH","d":[]},{"s":"GATEIO:PENDLEUSDT","d":[]},{"s":"UNISWAP:SKRTWETH_EEF0C7.USD","d":[]},{"s":"TRADERJOE:DEGWAVAX_465460","d":[]},{"s":"QUICKSWAP:CELWMATIC_7D341B.USD","d":[]},{"s":"UNISWAP3ETH:WETHBUSY","d":[]},{"s":"HITBTC:PAYBTC","d":[]},{"s":"COINEX:XVGUSDT","d":[]},{"s":"MEXC:ARTIUSDT","d":[]},{"s":"GATEIO:VETUSDT.3L","d":[]},{"s":"BLOFIN:MANAUSDT.P","d":[]},{"s":"UNISWAP3ETH:UTUWETH","d":[]},{"s":"BINANCE:INJTUSD","d":[]},{"s":"BYBIT:OPUSDT.P","d":[]},{"s":"GATEIO:GDTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNII","d":[]},{"s":"UNISWAP3ETH:RMVUSDT","d":[]},{"s":"MEXC:BULLSHIUSDT","d":[]},{"s":"QUICKSWAP:WOMBATUSDC_10E14E","d":[]},{"s":"BYBIT:SPELLUSDT.P","d":[]},{"s":"KRAKEN:STXUSD","d":[]},{"s":"QUICKSWAP:DIGIWETH_F95FED","d":[]},{"s":"UNISWAP:RADARUSDT_D3487C","d":[]},{"s":"UNISWAP:DOUGHWETH_B5B324","d":[]},{"s":"UNISWAP3ARBITRUM:AVIVEWETH_C517A8.USD","d":[]},{"s":"BITFINEX:SWEATUST","d":[]},{"s":"HITBTC:STRAXUSD","d":[]},{"s":"BTSE:BTCUSDH2024","d":[]},{"s":"PIONEX:KLAYUSDT.P","d":[]},{"s":"UNISWAP:SHUUSDC_7A922A","d":[]},{"s":"BITHUMB:PENDLEKRW","d":[]},{"s":"UNISWAP:FIDOWETH_C908B3.USD","d":[]},{"s":"UNISWAP:NIBIWETH_A15093.USD","d":[]},{"s":"MEXC:WITUSDT","d":[]},{"s":"BITGET:BCHUSDT","d":[]},{"s":"UNISWAP3ETH:ZCXWETH_B13B21.USD","d":[]},{"s":"COINEX:CEREUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:PUSDC.EUSDC_714092.USD","d":[]},{"s":"UNISWAP3ETH:HEXWETH_9E0905.USD","d":[]},{"s":"BITMEX:ETHUSDM2024","d":[]},{"s":"GATEIO:MIMIRUSDT","d":[]},{"s":"GATEIO:ZECUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHSTKAAVE","d":[]},{"s":"GATEIO:TRGUSDT","d":[]},{"s":"WHITEBIT:SUPERUSDT","d":[]},{"s":"UNISWAP3ETH:WIFSWETH","d":[]},{"s":"BTSE:FILUSD.P","d":[]},{"s":"MEXC:DKSUSDT","d":[]},{"s":"MEXC:HTEUSDT","d":[]},{"s":"MEXC:MEMEMINTUSDT","d":[]},{"s":"UNISWAP:OPTIGWETH_2A4269.USD","d":[]},{"s":"UNISWAP:BTCGFWETH_0CF3F2.USD","d":[]},{"s":"GATEIO:SCLPUSDT","d":[]},{"s":"HITBTC:ETCBTC","d":[]},{"s":"COINEX:BOBUSDT","d":[]},{"s":"UNISWAP3ETH:ETH2XWETH","d":[]},{"s":"DELTA:HBARUSDT.P","d":[]},{"s":"GATEIO:XORUSDT","d":[]},{"s":"UNISWAP:MONEYWETH_9DBFEA","d":[]},{"s":"BYBIT:QORPOUSDT","d":[]},{"s":"UNISWAP:GOODWETH_9D3054.USD","d":[]},{"s":"UNISWAP3ETH:FCOUSDC","d":[]},{"s":"DYDX:LINKUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHTOYBOX","d":[]},{"s":"GATEIO:CARBONUSDT","d":[]},{"s":"BISWAP:ETHBTCB_6216E0","d":[]},{"s":"BITSTAMP:AMPEUR","d":[]},{"s":"COINEX:OKBUSDT","d":[]},{"s":"UNISWAP:CTPUWETH_C5FE95","d":[]},{"s":"BITGET:MAGICUSDT.P","d":[]},{"s":"UNISWAP3ETH:PICKLEWETH","d":[]},{"s":"UNISWAP3ETH:PRXWETH","d":[]},{"s":"UNISWAP3ETH:WETHSOLANA","d":[]},{"s":"GATEIO:BABYDOGEUSDT","d":[]},{"s":"TRADERJOE:HATWAVAX_4B5CDF","d":[]},{"s":"UNISWAP3ETH:VITAWETH_CBCC3C.USD","d":[]},{"s":"UNISWAP:BIZWETH_7F4959.USD","d":[]},{"s":"UNISWAP3ETH:WETHCRAMER","d":[]},{"s":"MEXC:ORNUSDT","d":[]},{"s":"TRADERJOE:GEMWAVAX_406F79.USD","d":[]},{"s":"SPOOKYSWAP:GIZAMIM_9733F6.USD","d":[]},{"s":"GATEIO:ASTOUSDT","d":[]},{"s":"UNISWAP:OPENSEAWETH_7A2A55.USD","d":[]},{"s":"POLONIEX:SHIB2USDT","d":[]},{"s":"UNISWAP3ETH:JBXWETH_C9A2AF.USD","d":[]},{"s":"GEMINI:HNTUSD","d":[]},{"s":"ZOOMEX:MINAUSDT.P","d":[]},{"s":"UNISWAP:AI1WETH_F88C81","d":[]},{"s":"SPOOKYSWAP:MODAWFTM_F59338.USD","d":[]},{"s":"UNISWAP:XWETH_981680","d":[]},{"s":"ZOOMEX:AGIUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHDAI","d":[]},{"s":"BITHUMB:JSTKRW","d":[]},{"s":"BINANCE:DREPBTC","d":[]},{"s":"BINANCE:AAVEBNB","d":[]},{"s":"GATEIO:KNFTUSDT","d":[]},{"s":"BINANCE:CVCUSDT","d":[]},{"s":"BINGX:BNBUSDT.P","d":[]},{"s":"SPOOKYSWAP:CLEVERWFTM_6A7381.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SVUSDFRAX_28082D.USD","d":[]},{"s":"OKX:EOSUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCFRAX","d":[]},{"s":"QUICKSWAP:FOLOWETH_6A49BF.USD","d":[]},{"s":"BINGX:FLOWUSDT.P","d":[]},{"s":"GATEIO:FUELUSDT","d":[]},{"s":"UNISWAP:HALVINGWETH_C89225","d":[]},{"s":"UNISWAP3POLYGON:CRVWETH_3B60D9.USD","d":[]},{"s":"HITBTC:C98BTC","d":[]},{"s":"BITSTAMP:LINKEUR","d":[]},{"s":"BITGET:COREUMUSDT","d":[]},{"s":"GATEIO:WALLETUSDT","d":[]},{"s":"UNISWAP:PEPECOINWETH_DDD237","d":[]},{"s":"HITBTC:ENJUSDT","d":[]},{"s":"COINEX:MPLXUSDT","d":[]},{"s":"QUICKSWAP:GNFTUSDC_3FD0CC","d":[]},{"s":"UNISWAP:STETHWETH_4028DA.USD","d":[]},{"s":"UNISWAP3ETH:DAIWETH","d":[]},{"s":"BINANCE:ENJETH","d":[]},{"s":"UNISWAP3ETH:FUNUSDT","d":[]},{"s":"UNISWAP:MPHWETH_E1DABC.USD","d":[]},{"s":"MEXC:BIOFIUSDT","d":[]},{"s":"UNISWAP:ZKMLWETH_315ED6.USD","d":[]},{"s":"SPOOKYSWAP:DEUSWFTM_AF918E.USD","d":[]},{"s":"HITBTC:SNXETH","d":[]},{"s":"UNISWAP:PEPEWETH_8616B4","d":[]},{"s":"UNISWAP3OPTIMISM:CRVWETH_E870BF.USD","d":[]},{"s":"MEXC:BAMAUSDT","d":[]},{"s":"BITGET:BNTUSDT.P","d":[]},{"s":"HITBTC:APEETH","d":[]},{"s":"QUICKSWAP:SNKUSDC_D87705","d":[]},{"s":"UNISWAP:0XBWETH_C98F57","d":[]},{"s":"UNISWAP:DEALWETH_345A87.USD","d":[]},{"s":"UNISWAP:PISSWETH_9AA30D","d":[]},{"s":"UNISWAP3ETH:TSUKAWETH","d":[]},{"s":"QUICKSWAP:LAYUSDC_C8151B","d":[]},{"s":"TRADERJOE:WETHUSDCE_DB6368","d":[]},{"s":"UNISWAP3ETH:WETHSMILEY","d":[]},{"s":"BITFINEX:WNCGUSD","d":[]},{"s":"HITBTC:ETNUSD","d":[]},{"s":"HITBTC:STMXUSD","d":[]},{"s":"HITBTC:VGXBTC","d":[]},{"s":"UNISWAP:DIREWOLFWETH_D57717.USD","d":[]},{"s":"BITKUB:DAITHB","d":[]},{"s":"POLONIEX:KSMUSDD","d":[]},{"s":"GATEIO:NADAUSDT","d":[]},{"s":"GATEIO:BANDUSDT","d":[]},{"s":"UNISWAP:SUWETH_EF94DC.USD","d":[]},{"s":"UNISWAP3ETH:WETHCCDAO","d":[]},{"s":"OKX:ZILUSDT.P","d":[]},{"s":"QUICKSWAP:MASQWETH_4A853D.USD","d":[]},{"s":"COINEX:XVSUSDC","d":[]},{"s":"UNISWAP3ETH:USDYUSDC","d":[]},{"s":"BITFINEX:WAVESBTC","d":[]},{"s":"BINANCE:TRXBNB","d":[]},{"s":"ZOOMEX:ZETAUSDT.P","d":[]},{"s":"UNISWAP3ETH:RATSUSDT","d":[]},{"s":"UNISWAP3ETH:BUMPWETH","d":[]},{"s":"BITGET:SLGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCREAM","d":[]},{"s":"COINEX:KASUSDC","d":[]},{"s":"GATEIO:NCTUSDT","d":[]},{"s":"UNISWAP:ONXWETH_62F22A","d":[]},{"s":"UNISWAP3ETH:WETHBUSD","d":[]},{"s":"HITBTC:FORTHBTC","d":[]},{"s":"HITBTC:IDEXUSD","d":[]},{"s":"UNISWAP3ETH:ERRWETH_5C6239.USD","d":[]},{"s":"UNISWAP:SDTWETH_C465C0.USD","d":[]},{"s":"POLONIEX:FETUSDT","d":[]},{"s":"BITGET:3THUSDT","d":[]},{"s":"TRADERJOE:KIMBOWAVAX_03A588.USD","d":[]},{"s":"UNISWAP:RIDEWETH_49492D","d":[]},{"s":"QUICKSWAP:RAYSWETH_8A2423.USD","d":[]},{"s":"UNISWAP:GROKWETH_53B93B.USD","d":[]},{"s":"POLONIEX:ZKFUSDT","d":[]},{"s":"COINEX:SNXUSDC","d":[]},{"s":"UNISWAP3ETH:DAIELFI","d":[]},{"s":"MEXC:VOLTAGEUSDT","d":[]},{"s":"UNISWAP3ETH:NTXWETH_CBEA4F.USD","d":[]},{"s":"XEXCHANGE:XKINGUSDC","d":[]},{"s":"POLONIEX:RENBTC","d":[]},{"s":"QUICKSWAP:XYUSDC_A97CC9","d":[]},{"s":"COINEX:WHALEUSDT","d":[]},{"s":"SPOOKYSWAP:CONKIWFTM_19F7C7","d":[]},{"s":"UNISWAP:CFYWETH_A46FF4.USD","d":[]},{"s":"HITBTC:PUNDIXBTC","d":[]},{"s":"UNISWAP3POLYGON:AXLWMATIC_4D3B1F.USD","d":[]},{"s":"COINBASE:TIAUSD","d":[]},{"s":"PHEMEX:FLRUSDT","d":[]},{"s":"BTSE:XRPUSD","d":[]},{"s":"TRADERJOE:AVBWAVAX_28065B.USD","d":[]},{"s":"MEXC:JOBUSDT","d":[]},{"s":"HITBTC:WBTCUSD","d":[]},{"s":"BITRUE:NEARUSDT","d":[]},{"s":"BYBIT:ETHWUSDT.P","d":[]},{"s":"UNISWAP3ETH:EULWETH_B003DF.USD","d":[]},{"s":"UNISWAP:ROCKWETH_5A36F2.USD","d":[]},{"s":"HITBTC:DOGEBTC","d":[]},{"s":"UNISWAP:JESUSWETH_8F1B19.USD","d":[]},{"s":"POLONIEX:HUNTUSDT","d":[]},{"s":"BITHUMB:LSKKRW","d":[]},{"s":"UNISWAP3ETH:WETHBBTC","d":[]},{"s":"KRAKEN:XRPUSDH2024","d":[]},{"s":"GATEIO:FOXUSDT","d":[]},{"s":"QUICKSWAP:GHSTKEK_BFAD16","d":[]},{"s":"SPOOKYSWAP:TSHAREWFTM_4733BC.USD","d":[]},{"s":"BINGX:COTIUSDT.P","d":[]},{"s":"PHEMEX:MANTAUSDT","d":[]},{"s":"PANGOLIN:AABLOCKWAVAX_FFC53C.USD","d":[]},{"s":"SPOOKYSWAP:WETHUSDC_F26105.USD","d":[]},{"s":"SPOOKYSWAP:JOEWFTM_D51873.USD","d":[]},{"s":"TRADERJOE:MANWAVAX_A215C7.USD","d":[]},{"s":"GATEIO:VETUSDT.3S","d":[]},{"s":"POLONIEX:AKROBTC","d":[]},{"s":"QUICKSWAP:AXIDMAGIC_DE41E0.USD","d":[]},{"s":"UNISWAP:DEADMIGOSWETH_6CF061","d":[]},{"s":"UNISWAP3ETH:AKITAWETH","d":[]},{"s":"UNISWAP:KEKOWETH_95F989","d":[]},{"s":"COINEX:QTUMBTC","d":[]},{"s":"MEXC:ICENETWORKUSDT","d":[]},{"s":"BYBIT:SCUSDT.P","d":[]},{"s":"GATEIO:HITUSDT","d":[]},{"s":"BYBIT:OMGUSDT.P","d":[]},{"s":"HITBTC:PREETH","d":[]},{"s":"UNISWAP3ETH:CETIWTAO_7F31C7.USD","d":[]},{"s":"UNISWAP3ETH:IDWETH","d":[]},{"s":"EXMO:XRPUSD","d":[]},{"s":"UNISWAP3ETH:WETHNVIR","d":[]},{"s":"UNISWAP3ETH:OGNWETH","d":[]},{"s":"HITBTC:NAKAUSDT","d":[]},{"s":"BITHUMB:POWRKRW","d":[]},{"s":"UNISWAP:ORDSWETH_FE9E79.USD","d":[]},{"s":"HITBTC:RNDRBTC","d":[]},{"s":"QUICKSWAP:DMAGICWMATIC_929282.USD","d":[]},{"s":"UNISWAP3ETH:HIFIWETH","d":[]},{"s":"HITBTC:LINKUSDC","d":[]},{"s":"PIONEX:TRUUSDT.P","d":[]},{"s":"UNISWAP:EYEBOTWETH_34DE14.USD","d":[]},{"s":"UNISWAP:COINWETH_CCE852.USD","d":[]},{"s":"BINANCE:WAXPUSDT","d":[]},{"s":"MEXC:PCUSDT","d":[]},{"s":"UNISWAP3ETH:CHESSWETH_2D1DE6.USD","d":[]},{"s":"BTSE:GALUSD","d":[]},{"s":"HITBTC:PERPUSD","d":[]},{"s":"SPOOKYSWAP:BOUJEWFTM_91AF3C.USD","d":[]},{"s":"UNISWAP3ETH:XINUSDT","d":[]},{"s":"BITGET:BCHUSDC","d":[]},{"s":"UNISWAP:BOOMWETH_592E19","d":[]},{"s":"PIONEX:SATSUSDT.P","d":[]},{"s":"BINANCE:STORJTRY","d":[]},{"s":"BINANCE:GALTRY","d":[]},{"s":"PHEMEX:1000RATSUSDT.P","d":[]},{"s":"POLONIEX:USHUSDT","d":[]},{"s":"UNISWAP3ETH:BSKTWETH_9AD810.USD","d":[]},{"s":"KRAKEN:KASUSD.PM","d":[]},{"s":"UNISWAP:KITWETH_CCEB09","d":[]},{"s":"UNISWAP3ETH:WLDWETH_C4472D.USD","d":[]},{"s":"BITGET:BEAMUSDT","d":[]},{"s":"UNISWAP:ENSWETH_B87B65.USD","d":[]},{"s":"TRADERJOE:MADWAVAX_67F0BF","d":[]},{"s":"UNISWAP3ETH:USDTAUDD","d":[]},{"s":"TRADERJOE:USDTEJOE_1643DE.USD","d":[]},{"s":"UNISWAP:RESETWETH_86DEB4","d":[]},{"s":"UNISWAP:CPRXUSDT_C4F0FF","d":[]},{"s":"MEXC:TRUUSDT","d":[]},{"s":"BITFINEX:OPXUST","d":[]},{"s":"MEXC:AOSUSDT","d":[]},{"s":"KRAKEN:SUSHIUSD.PM","d":[]},{"s":"GATEIO:AKVUSDT","d":[]},{"s":"UNISWAP:SWAPWETH_D90A1B.USD","d":[]},{"s":"BITRUE:MANAXRP","d":[]},{"s":"BITGET:MANTAUSDT","d":[]},{"s":"BITGET:ADFUSDT","d":[]},{"s":"UNISWAP:CEXWETH_297E30","d":[]},{"s":"UNISWAP3ETH:CELLWETH","d":[]},{"s":"HITBTC:QNTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHARAMBE","d":[]},{"s":"BITFINEX:BTCEUT.P","d":[]},{"s":"POLONIEX:RBNUSDT","d":[]},{"s":"PANGOLIN:WETHEUSDC_0FCEE9.USD","d":[]},{"s":"UNISWAP3ETH:TSUKAWETH_62979D.USD","d":[]},{"s":"GATEIO:MASKUSDT.3S","d":[]},{"s":"BYBIT:ECOXUSDT","d":[]},{"s":"UNISWAP:SAMBOWETH_B59041.USD","d":[]},{"s":"SPOOKYSWAP:AAVEWFTM_EBF374.USD","d":[]},{"s":"UNISWAP3ETH:DOGWIFHATUSDC","d":[]},{"s":"HITBTC:IOTXBTC","d":[]},{"s":"GATEIO:TRBUSDT","d":[]},{"s":"QUICKSWAP:SPWMATIC_75E481.USD","d":[]},{"s":"COINEX:DVFUSDT","d":[]},{"s":"HITBTC:RAYBTC","d":[]},{"s":"BINANCE:TRXEUR","d":[]},{"s":"QUICKSWAP:PSPWMATIC_7AFC06","d":[]},{"s":"MEXC:GLWUSDT","d":[]},{"s":"HITBTC:ANALOSUSDT","d":[]},{"s":"GATEIO:HIFIUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDT_641C00.USD","d":[]},{"s":"GATEIO:ETERNALUSDT","d":[]},{"s":"TRADERJOE:GENIUSDC_57E027.USD","d":[]},{"s":"MEXC:BOSONUSDT","d":[]},{"s":"BITSTAMP:MKRUSD","d":[]},{"s":"COINEX:HNSUSDT","d":[]},{"s":"PHEMEX:TLMUSDT","d":[]},{"s":"SPOOKYSWAP:WTRTLWFTM_A8DE53","d":[]},{"s":"UNISWAP3ARBITRUM:CRVWETH_A95B0F.USD","d":[]},{"s":"BTSE:1KPEPEUSD.P","d":[]},{"s":"PANGOLIN:INSURWAVAX_ED7648","d":[]},{"s":"SPOOKYSWAP:MORPHWFTM_7D4244.USD","d":[]},{"s":"UNISWAP3OPTIMISM:AAVEWBTC_EB8143.USD","d":[]},{"s":"BINGX:KAVAUSDT.P","d":[]},{"s":"MEXC:NGLUSDT","d":[]},{"s":"BITSTAMP:WECANEUR","d":[]},{"s":"UNISWAP3POLYGON:UNIUSDT_7ACF7F.USD","d":[]},{"s":"POLONIEX:FACTRUSDT","d":[]},{"s":"MEXC:IPMBUSDT","d":[]},{"s":"HITBTC:GASBTC","d":[]},{"s":"QUICKSWAP:UNIWETH_F71352","d":[]},{"s":"BITSTAMP:SNXEUR","d":[]},{"s":"POLONIEX:ZUZALUUSDT","d":[]},{"s":"UNISWAP3ETH:USDTTONCOIN","d":[]},{"s":"UNISWAP3ETH:WETHRFD","d":[]},{"s":"BYBIT:GRTUSDT","d":[]},{"s":"POLONIEX:ADAUSDC","d":[]},{"s":"MEXC:POWUSDT","d":[]},{"s":"UNISWAP3ETH:WOOFWETH_666ED8.USD","d":[]},{"s":"UNISWAP:FIREWETH_F94471.USD","d":[]},{"s":"UNISWAP:0X431AD2WETH_232818","d":[]},{"s":"PHEMEX:USDCUSDT","d":[]},{"s":"UNISWAP3ETH:ORAIXWETH_DB66AB.USD","d":[]},{"s":"BITGET:CFXUSDT","d":[]},{"s":"UNISWAP3ETH:PHTRWETH_1F138D.USD","d":[]},{"s":"TRADERJOE:CAIWAVAX_E5E9D6.USD","d":[]},{"s":"UNISWAP3ETH:QUIQMUBI_0C3757.USD","d":[]},{"s":"QUICKSWAP:DPIWETH_9F77EF.USD","d":[]},{"s":"WOONETWORK:RUNEUSDT","d":[]},{"s":"KRAKEN:BITUSD","d":[]},{"s":"COINEX:ALGOUSDC","d":[]},{"s":"BYBIT:VEXTUSDT","d":[]},{"s":"PANGOLIN:ZOOWAVAX_97BD1E","d":[]},{"s":"MEXC:BITCOINAIUSDT","d":[]},{"s":"SPOOKYSWAP:AFTMCWFTM_A6EE3C.USD","d":[]},{"s":"WHITEBIT:NEARUAH","d":[]},{"s":"POLONIEX:LUNAUSDD","d":[]},{"s":"BITGET:LSDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMIM","d":[]},{"s":"KRAKEN:NEARUSD.PM","d":[]},{"s":"POLONIEX:LTCUSDC","d":[]},{"s":"POLONIEX:WRXUSD","d":[]},{"s":"HITBTC:LAETH","d":[]},{"s":"MEXC:GZONEUSDT","d":[]},{"s":"BLOFIN:LINKUSDT.P","d":[]},{"s":"HITBTC:PLIBTC","d":[]},{"s":"POLONIEX:PEOPLEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAPU","d":[]},{"s":"MEXC:CAUSDT","d":[]},{"s":"UNISWAP3POLYGON:LSMATICRVRS_6D20BA.USD","d":[]},{"s":"BYBIT:LINKUSDT.2S","d":[]},{"s":"GATEIO:DASHUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:UNIUSDT_79BE9C.USD","d":[]},{"s":"BITHUMB:FLOKIKRW","d":[]},{"s":"UNISWAP:KEYSWETH_5BACB4","d":[]},{"s":"GATEIO:WBIRDUSDT","d":[]},{"s":"UNISWAP3POLYGON:DCIWETH_CE05C7.USD","d":[]},{"s":"MEXC:PCTUSDT","d":[]},{"s":"XEXCHANGE:JOJOUSDC","d":[]},{"s":"MEXC:ITSBUSDT","d":[]},{"s":"WHITEBIT:OPBTC","d":[]},{"s":"UNISWAP3ETH:HOTWETH_F7849D.USD","d":[]},{"s":"UNISWAP3ETH:TKBWETH","d":[]},{"s":"POLONIEX:NFPUSDT","d":[]},{"s":"KRAKEN:PAXGUSD","d":[]},{"s":"UNISWAP:MINDWETH_A3A0F6.USD","d":[]},{"s":"UNISWAP:GZONEWETH_99D1A8","d":[]},{"s":"BITGET:BGBUSDC","d":[]},{"s":"GATEIO:KWSUSDT","d":[]},{"s":"UNISWAP3ETH:ERBBWBTC","d":[]},{"s":"HITBTC:BCNBTC","d":[]},{"s":"DYDX:DOTUSD.P","d":[]},{"s":"UNISWAP3ETH:TMNTWETH_E83652.USD","d":[]},{"s":"BISWAP:GALWBNB_B2BDC0.USD","d":[]},{"s":"BINANCE:NEXOUSDT","d":[]},{"s":"UNISWAP:LARRYWETH_1D3AB7","d":[]},{"s":"BYBIT:TRXUSDC","d":[]},{"s":"WHITEBIT:PYRUSDT","d":[]},{"s":"UNISWAP3ETH:SWETHWETH_30EA22.USD","d":[]},{"s":"UNISWAP3ETH:TGCWETH","d":[]},{"s":"POLONIEX:ZRXBTC","d":[]},{"s":"MEXC:THEUSDT","d":[]},{"s":"HITBTC:LSKEOS","d":[]},{"s":"MEXC:THGUSDT","d":[]},{"s":"UNISWAP:DGRNWETH_8521A3.USD","d":[]},{"s":"BYBIT:KEYUSDT.P","d":[]},{"s":"BITGET:NADAUSDT","d":[]},{"s":"HITBTC:SHIBUSDT","d":[]},{"s":"POLONIEX:TRUTUSD","d":[]},{"s":"BYBIT:UMAUSDT","d":[]},{"s":"PHEMEX:IDEXUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:HANWBTC_D4344E.USD","d":[]},{"s":"UNISWAP3ETH:WALLETWETH_53BBDF.USD","d":[]},{"s":"HITBTC:STORJUSD","d":[]},{"s":"GATEIO:FINUSDT","d":[]},{"s":"MEXC:SC2USDT","d":[]},{"s":"MEXC:ASSUSDT","d":[]},{"s":"COINEX:DOCKUSDT","d":[]},{"s":"COINEX:RENUSDT","d":[]},{"s":"GATEIO:NODLUSDT","d":[]},{"s":"BINANCE:MDXBTC","d":[]},{"s":"UNISWAP:SCALEWETH_CFB2E3.USD","d":[]},{"s":"UNISWAP3ETH:BIPSWETH","d":[]},{"s":"MEXC:MYTHUSDT","d":[]},{"s":"UNISWAP3ETH:CBULLSWETH_240061.USD","d":[]},{"s":"MEXC:XUSDT","d":[]},{"s":"UNISWAP3ETH:LPTRNG_CC2BD4.USD","d":[]},{"s":"UNISWAP3ETH:WETHMAL","d":[]},{"s":"BITKUB:BALTHB","d":[]},{"s":"MEXC:LQTYUSDT","d":[]},{"s":"UNISWAP3ETH:USDTEURT","d":[]},{"s":"MEXC:PAWSWAPUSDT","d":[]},{"s":"UNISWAP:NONOWETH_1FBBD8","d":[]},{"s":"BINANCE:HFTUSDT","d":[]},{"s":"UNISWAP3ETH:BARAWETH_717F65.USD","d":[]},{"s":"UNISWAP3ETH:SELFWETH","d":[]},{"s":"GATEIO:SLPUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHAPE","d":[]},{"s":"MEXC:BABYDRAGONUSDT","d":[]},{"s":"UNISWAP:ONIGIRIWETH_986610","d":[]},{"s":"UNISWAP:PPORKPOHM_F5298C","d":[]},{"s":"UNISWAP3POLYGON:XSGDUSDC_1F6082.USD","d":[]},{"s":"UNISWAP3ETH:WETHBAPE","d":[]},{"s":"BITGET:XCADUSDT","d":[]},{"s":"WAGYUSWAP:ETHWVLX_7C3F1E.USD","d":[]},{"s":"HITBTC:SILKUSDT","d":[]},{"s":"UNISWAP:DGNAIWETH_CFAC51.USD","d":[]},{"s":"HITBTC:ACHUSDT","d":[]},{"s":"UNISWAP:YUNAWETH_99B975","d":[]},{"s":"BISWAP:MANAUSDT_284F87","d":[]},{"s":"GATEIO:ARTEMUSDT","d":[]},{"s":"BITGET:GMMTUSDT","d":[]},{"s":"QUICKSWAP:USTWMATIC_9B7E96.USD","d":[]},{"s":"HITBTC:RFRUSDT","d":[]},{"s":"BINANCEUS:ZECUSDT","d":[]},{"s":"GATEIO:SAROSUSDT","d":[]},{"s":"GATEIO:APXUSDT","d":[]},{"s":"GATEIO:SLIMUSDT","d":[]},{"s":"UNISWAP:TIADAOWETH_39785F","d":[]},{"s":"QUICKSWAP:FNCWETH_0F9BE0.USD","d":[]},{"s":"POLONIEX:FTMUSD","d":[]},{"s":"QUICKSWAP:CELWMATIC_7D341B","d":[]},{"s":"UNISWAP:SWIPEWETH_DC720C","d":[]},{"s":"UNISWAP:SEANUSDT_4F6C82","d":[]},{"s":"UNISWAP:VIZWETH_A70715.USD","d":[]},{"s":"UNISWAP3ETH:OBTCWETH","d":[]},{"s":"UNISWAP:BOLTWETH_92AD5F.USD","d":[]},{"s":"UNISWAP:DREAMTSUKA_7A6F2C.USD","d":[]},{"s":"MEXC:WOIDUSDT","d":[]},{"s":"PIONEX:FXSUSDT.P","d":[]},{"s":"TRADERJOE:COBWAVAX_CCA0FF","d":[]},{"s":"UNISWAP3ETH:USDTNEMS","d":[]},{"s":"PANGOLIN:ROCOWAVAX_4A2CB9.USD","d":[]},{"s":"MEXC:STRKUSDT","d":[]},{"s":"SPOOKYSWAP:MSTWFTM_1A88E4","d":[]},{"s":"BITMEX:FTMUSD.P","d":[]},{"s":"POLONIEX:LMIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSCANS","d":[]},{"s":"UNISWAP3ETH:WETHPORK","d":[]},{"s":"BYBIT:RDNTUSDT","d":[]},{"s":"BITFINEX:PNKBTC","d":[]},{"s":"QUICKSWAP:BIGDWMATIC_CE9F7A.USD","d":[]},{"s":"GATEIO:GNSUSDT","d":[]},{"s":"POLONIEX:ARDRUSD","d":[]},{"s":"UNISWAP:XVGWETH_F07C73","d":[]},{"s":"MEXC:MCRTUSDT","d":[]},{"s":"UNISWAP:TAIWETH_B65ADE.USD","d":[]},{"s":"KRAKEN:MSOLUSD","d":[]},{"s":"UNISWAP:WANNAWETH_6E12CF.USD","d":[]},{"s":"MEXC:FXSUSDT","d":[]},{"s":"UNISWAP:WMCWETH_AAEA0D.USD","d":[]},{"s":"GATEIO:IBAYCUSDT","d":[]},{"s":"BTSE:BTCUSD.P","d":[]},{"s":"MEXC:FAIRUSDT","d":[]},{"s":"QUICKSWAP:STMATICWMATIC_65752C.USD","d":[]},{"s":"UNISWAP3ETH:VXVWETH","d":[]},{"s":"UNISWAP3ETH:DELWETH_E71A91.USD","d":[]},{"s":"MEXC:ROOTUSDT","d":[]},{"s":"PANGOLIN:WBTCEWAVAX_5764B8.USD","d":[]},{"s":"MEXC:HEROUSDT","d":[]},{"s":"UNISWAP3ETH:WTKWETH_D05D35.USD","d":[]},{"s":"BLOFIN:LPTUSDT.P","d":[]},{"s":"SPOOKYSWAP:FANGWFTM_19DCE7.USD","d":[]},{"s":"TRADERJOE:BORKWAVAX_D93E55.USD","d":[]},{"s":"POLONIEX:OKBUSDT","d":[]},{"s":"MEXC:SPSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCPOOL","d":[]},{"s":"GATEIO:LRCUSDT.3S","d":[]},{"s":"BITHUMB:VIXKRW","d":[]},{"s":"UNISWAP3ETH:HAIRWETH_94DD31.USD","d":[]},{"s":"GATEIO:FUNUSDT","d":[]},{"s":"BITGET:OGVUSDT","d":[]},{"s":"UNISWAP:SCHRODINGERWETH_5EB219.USD","d":[]},{"s":"UNISWAP:CRTXWETH_35D8B9.USD","d":[]},{"s":"BINGX:STXUSDT.P","d":[]},{"s":"COINEX:ADABTC","d":[]},{"s":"MEXC:XWGUSDT","d":[]},{"s":"UNISWAP3ETH:CBYUSDT","d":[]},{"s":"BITGET:CELRUSDT","d":[]},{"s":"UNISWAP:WSBWETH_63F2A1","d":[]},{"s":"UNISWAP3ETH:RNGAAVE","d":[]},{"s":"UNISWAP:DOSEWETH_541E55","d":[]},{"s":"GATEIO:KSMUSDT","d":[]},{"s":"UNISWAP3ETH:AIGFWETH","d":[]},{"s":"UNISWAP:SSWETH_92F468","d":[]},{"s":"SPOOKYSWAP:BNBBACKWFTM_3D861D","d":[]},{"s":"BITGET:BLOKUSDT","d":[]},{"s":"UNISWAP:QWIKWETH_F1B0BC","d":[]},{"s":"UNISWAP:ADDAMSWETH_6D92DC.USD","d":[]},{"s":"MEXC:SPXUSDT","d":[]},{"s":"BINANCE:AVAXUSDC","d":[]},{"s":"PIONEX:LQTYUSDT.P","d":[]},{"s":"BLOFIN:10000SATSUSDT.P","d":[]},{"s":"BYBIT:TONUSDT.P","d":[]},{"s":"UNISWAP:FEGWETH_60EF1E.USD","d":[]},{"s":"TRADERJOE:KALMWAVAX_D86FF5.USD","d":[]},{"s":"SPOOKYSWAP:SINGLEUSDC_1A2857","d":[]},{"s":"BITGET:QTUMUSDT","d":[]},{"s":"GATEIO:SISUSDT","d":[]},{"s":"UNISWAP:WAXEWETH_0EE0CB.USD","d":[]},{"s":"POLONIEX:ARBUSDT","d":[]},{"s":"MEXC:ETPUSDT","d":[]},{"s":"GATEIO:SRMUSDT","d":[]},{"s":"ZOOMEX:ONGUSDT.P","d":[]},{"s":"MEXC:HARDERUSDT","d":[]},{"s":"PANGOLIN:LOOTWAVAX_1BFAE7.USD","d":[]},{"s":"OKX:SUSHIUSDT.P","d":[]},{"s":"OKX:TRXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAIT","d":[]},{"s":"QUICKSWAP:WRLDWMATIC_B3DF7C","d":[]},{"s":"BITRUE:ADAXRP","d":[]},{"s":"UNISWAP:CIELWETH_650004.USD","d":[]},{"s":"UNISWAP:WXMRWETH_14C10B","d":[]},{"s":"TRADERJOE:NULLWAVAX_CFE6CB","d":[]},{"s":"UNISWAP:RPLWETH_70EA56.USD","d":[]},{"s":"COINEX:EXFIUSDT","d":[]},{"s":"ZOOMEX:NEOUSDT.P","d":[]},{"s":"XEXCHANGE:QWTUSDC","d":[]},{"s":"GATEIO:FPSUSDT","d":[]},{"s":"UNISWAP3ETH:BONEWETH_3BE033.USD","d":[]},{"s":"HITBTC:CROBTC","d":[]},{"s":"BYBIT:MNTUSDT","d":[]},{"s":"BLOFIN:XVGUSDT.P","d":[]},{"s":"KRAKEN:LPTEUR","d":[]},{"s":"BITRUE:LTCBTR","d":[]},{"s":"TRADERJOE:GRELFAVAWAVAX_53FAC4.USD","d":[]},{"s":"UNISWAP3ETH:NEXOWETH","d":[]},{"s":"UNISWAP:DUNGWETH_6F3611","d":[]},{"s":"GATEIO:SRTUSDT","d":[]},{"s":"BINANCE:LSKUSDT","d":[]},{"s":"UNISWAP3ETH:GOHMUSDC_08F681.USD","d":[]},{"s":"GATEIO:MQLUSDT","d":[]},{"s":"BINGX:PIXELUSDT.PS","d":[]},{"s":"BINGX:CELOUSDT.P","d":[]},{"s":"GATEIO:AVAXUSDT","d":[]},{"s":"UNISWAP3ETH:LDOUSDT_20215C.USD","d":[]},{"s":"BTSE:DOTUSD.P","d":[]},{"s":"BINANCE:PYTHTRY","d":[]},{"s":"UNISWAP:SNIFFERWETH_93153C","d":[]},{"s":"MEXC:LDOUSDT","d":[]},{"s":"PIONEX:POWRUSDT.P","d":[]},{"s":"UNISWAP:DFLUSDT_D372A3","d":[]},{"s":"BISWAP:ALUWBNB_CA7172","d":[]},{"s":"PANGOLIN:SNOBWAVAX_A1C2C3.USD","d":[]},{"s":"PHEMEX:SKLUSDT.P","d":[]},{"s":"QUICKSWAP:PAEWMATIC_07D53B","d":[]},{"s":"HITBTC:LOOKSUSDT","d":[]},{"s":"GATEIO:GALAUSDT.3L","d":[]},{"s":"BITMEX:XBTUSDTM2024","d":[]},{"s":"BTSE:FILUSD","d":[]},{"s":"UNISWAP3ETH:BTRSTUSDC_017091.USD","d":[]},{"s":"UNISWAP3ETH:SHEETPWETH","d":[]},{"s":"UNISWAP3ETH:MCBWETH_4B4A52.USD","d":[]},{"s":"BITGET:RJVUSDT","d":[]},{"s":"UNISWAP:LONGWETH_DCB603","d":[]},{"s":"UNISWAP:EXPECTATIONVSREALITYWETH_313774","d":[]},{"s":"UNISWAP:DDWETH_E8C19B","d":[]},{"s":"ZOOMEX:QIUSDT.P","d":[]},{"s":"BITSTAMP:EURUSD","d":[]},{"s":"HITBTC:MULTIUSDT","d":[]},{"s":"BITHUMB:BORAKRW","d":[]},{"s":"BITRUE:NEARUSDC","d":[]},{"s":"BITRUE:DYDXUSDT","d":[]},{"s":"BITRUE:KSMADA","d":[]},{"s":"UNISWAP3ETH:FPWETH_B9EBF4.USD","d":[]},{"s":"PHEMEX:MAVIAUSDT.P","d":[]},{"s":"UNISWAP:ENLIGHTENEDWETH_7D4A36.USD","d":[]},{"s":"UNISWAP3ETH:OTACONWETH","d":[]},{"s":"UNISWAP3ETH:BALRNG_C65016.USD","d":[]},{"s":"UNISWAP3OPTIMISM:CYBERUSDC_038F5B.USD","d":[]},{"s":"DELTA:OPUSDT.P","d":[]},{"s":"UNISWAP:LUNA20WETH_B6A677","d":[]},{"s":"UNISWAP3ETH:ALCAWETH_67CE0B.USD","d":[]},{"s":"UNISWAP:TUCKERWETH_4A885A","d":[]},{"s":"UNISWAP3ETH:DAWNWETH_02CBEE.USD","d":[]},{"s":"BINANCE:GLMRBTC","d":[]},{"s":"UNISWAP3ARBITRUM:LINKUSDT_32A574.USD","d":[]},{"s":"PHEMEX:ACEUSDT","d":[]},{"s":"BINANCE:FILBNB","d":[]},{"s":"BINGX:CHRUSDT.P","d":[]},{"s":"UNISWAP:BATWETH_B6909B","d":[]},{"s":"UNISWAP3ETH:WETHDENT","d":[]},{"s":"PHEMEX:WAVESUSDT","d":[]},{"s":"QUICKSWAP:MILKWETH_C089C1.USD","d":[]},{"s":"COINEX:CTSIUSDT","d":[]},{"s":"UNISWAP:MILKWETH_5BEAE4.USD","d":[]},{"s":"MEXC:WITCHUSDT","d":[]},{"s":"KRAKEN:APEUSDT","d":[]},{"s":"GATEIO:SDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCHAD","d":[]},{"s":"PHEMEX:SFPUSDT","d":[]},{"s":"COINEX:ICPBTC","d":[]},{"s":"UNISWAP3ETH:TAIWETH","d":[]},{"s":"UNISWAP:ZORAWETH_18112D","d":[]},{"s":"UNISWAP:WQTWETH_F1FE85","d":[]},{"s":"COINEX:KASBTC","d":[]},{"s":"UNISWAP3ETH:WETHLOONG","d":[]},{"s":"UNISWAP3ARBITRUM:INDEXUSDCUSDC_00A964.USD","d":[]},{"s":"GATEIO:TONUSDT","d":[]},{"s":"UNISWAP3ETH:WDOGEWETH_09C239.USD","d":[]},{"s":"UNISWAP:HIBAYCWETH_54C3BB.USD","d":[]},{"s":"UNISWAP:LORDSWETH_8E35A6","d":[]},{"s":"BISWAP:MATICWBNB_3B09E1","d":[]},{"s":"BYBIT:MAVUSDT.P","d":[]},{"s":"UNISWAP:PARWETH_6AEEBC.USD","d":[]},{"s":"UNISWAP3POLYGON:UERIIWETH_95A4F0.USD","d":[]},{"s":"COINEX:THETABTC","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTWETH_2334D4.USD","d":[]},{"s":"HITBTC:BTCUSDT","d":[]},{"s":"BINGX:BSVUSDT.PS","d":[]},{"s":"HITBTC:MTXBTC","d":[]},{"s":"GATEIO:SNXUSDT.3S","d":[]},{"s":"BITRUE:AVAXADA","d":[]},{"s":"UNISWAP:JAMWETH_C3C41A.USD","d":[]},{"s":"SPOOKYSWAP:CFIWFTM_FB7826","d":[]},{"s":"MEXC:OPUSDT.P","d":[]},{"s":"UNISWAP:AGIWETH_498C00.USD","d":[]},{"s":"TRADERJOE:BEARWAVAX_9C245E.USD","d":[]},{"s":"UNISWAP3ETH:JOEYWETH","d":[]},{"s":"GATEIO:NFPUSDT","d":[]},{"s":"UNISWAP:CMOSBONE_6FD40F","d":[]},{"s":"MEXC:PROPSUSDT","d":[]},{"s":"MEXC:NKNUSDT","d":[]},{"s":"UNISWAP:BOBOWETH_2B7627.USD","d":[]},{"s":"COINEX:TRIUSDT","d":[]},{"s":"UNISWAP3ETH:UBXUSDT_B65859.USD","d":[]},{"s":"HITBTC:PAXGUSD","d":[]},{"s":"MEXC:SKILLUSDT","d":[]},{"s":"UNISWAP:KENDUWETH_D9F2A7.USD","d":[]},{"s":"OKX:ENSUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCRPL","d":[]},{"s":"UNISWAP:SNXWETH_43AE24.USD","d":[]},{"s":"ZOOMEX:RNDRUSDT.P","d":[]},{"s":"BITRUE:YGGUSDT","d":[]},{"s":"UNISWAP:OASISWETH_B608DD","d":[]},{"s":"MEXC:MGCUSDT","d":[]},{"s":"HITBTC:ROOBEEBTC","d":[]},{"s":"MEXC:DOGETUSD","d":[]},{"s":"POLONIEX:XPETUSDT","d":[]},{"s":"HITBTC:MIRUSD","d":[]},{"s":"UNISWAP3ETH:PRXWETH_5E68D2.USD","d":[]},{"s":"KRAKEN:REQUSD","d":[]},{"s":"QUICKSWAP:VOLTWMATIC_8FA6C2","d":[]},{"s":"BITFINEX:AAVEUST.P","d":[]},{"s":"MEXC:MTRXUSDT","d":[]},{"s":"GATEIO:SPIRITUSDT","d":[]},{"s":"UPBIT:MATICKRW","d":[]},{"s":"UNISWAP:TRUMP2024WETH_20B655.USD","d":[]},{"s":"BITHUMB:THETAKRW","d":[]},{"s":"ZOOMEX:1000XECUSDT.P","d":[]},{"s":"BINANCEUS:ONGUSDT","d":[]},{"s":"MEXC:CBXUSDT","d":[]},{"s":"COINEX:LMWRUSDT","d":[]},{"s":"MEXC:REALUSDT","d":[]},{"s":"COINEX:XVGBTC","d":[]},{"s":"HITBTC:RAISEBTC","d":[]},{"s":"MEXC:LBAUSDT","d":[]},{"s":"BISWAP:GALAWBNB_4F00AD","d":[]},{"s":"BITRUE:FARMUSDT","d":[]},{"s":"UNISWAP:SECWETH_9A4DF4","d":[]},{"s":"DERIBIT:SOLUSDC.P","d":[]},{"s":"BINANCEUS:ONEUSDT","d":[]},{"s":"GATEIO:DYDXUSDT","d":[]},{"s":"BITFINEX:WHBTBTC","d":[]},{"s":"PHEMEX:ETHUSDC","d":[]},{"s":"UNISWAP:DOORWETH_FC70C0.USD","d":[]},{"s":"UNISWAP:ZANGAIWETH_45DC75","d":[]},{"s":"MEXC:MDTUSDT","d":[]},{"s":"UNISWAP:HAVOCWETH_044F4C.USD","d":[]},{"s":"UNISWAP:DXYWETH_0FC81D.USD","d":[]},{"s":"QUICKSWAP:OGUNWMATIC_45E725","d":[]},{"s":"QUICKSWAP:REMIUSDC_4A3B15","d":[]},{"s":"PHEMEX:BNBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWALLET","d":[]},{"s":"UNISWAP3ARBITRUM:YFXUSDC_E3B2FE.USD","d":[]},{"s":"GATEIO:BTMUSDT","d":[]},{"s":"UNISWAP:RBNWETH_DB44A4.USD","d":[]},{"s":"KRAKEN:XLMBTC","d":[]},{"s":"MEXC:LOOMUSDT.P","d":[]},{"s":"POLONIEX:ALVAUSDT","d":[]},{"s":"PIONEX:GMTUSDT.P","d":[]},{"s":"COINBASE:ADAUSDT","d":[]},{"s":"POLONIEX:VINUUSDD","d":[]},{"s":"UNISWAP:LIZARDWETH_5253D5","d":[]},{"s":"MEXC:MASSUSDT","d":[]},{"s":"UNISWAP:GECWETH_A2CAAD","d":[]},{"s":"UNISWAP3POLYGON:XMTUSDC_F7ABB7.USD","d":[]},{"s":"UNISWAP3ETH:LYRAWETH_3012E3.USD","d":[]},{"s":"BYBIT:OPUSDT","d":[]},{"s":"GATEIO:CORNUSDT","d":[]},{"s":"TRADERJOE:BOOWAVAX_EBF50B","d":[]},{"s":"PHEMEX:10000LADYSUSDT.P","d":[]},{"s":"BISWAP:SUSHIETH_4C2139.USD","d":[]},{"s":"QUICKSWAP:FIDWETH_497F87","d":[]},{"s":"UNISWAP3ARBITRUM:USDVWETH_8F5CCD.USD","d":[]},{"s":"UNISWAP:REVVSAND_5D95BB.USD","d":[]},{"s":"QUICKSWAP:JPYCORBS_D01C07.USD","d":[]},{"s":"BITMEX:GLMRUSDT.P","d":[]},{"s":"UNISWAP:EGTWETH_FCDAE8.USD","d":[]},{"s":"KRAKEN:MVUSD","d":[]},{"s":"UNISWAP3POLYGON:TEGRIDYWMATIC_827D0B.USD","d":[]},{"s":"HITBTC:COMPUSD","d":[]},{"s":"MEXC:RLCUSDT.P","d":[]},{"s":"UNISWAP:PGENZWETH_A423CB","d":[]},{"s":"GATEIO:RFDUSDT","d":[]},{"s":"QUICKSWAP:SPORTWMATIC_46C753.USD","d":[]},{"s":"GATEIO:LINKUSDT.5S","d":[]},{"s":"HITBTC:PROUSD","d":[]},{"s":"MEXC:STXUSDT.P","d":[]},{"s":"XEXCHANGE:JACKETUSDC","d":[]},{"s":"UNISWAP3POLYGON:NCTUSDC_A28045.USD","d":[]},{"s":"BITKUB:POWTHB","d":[]},{"s":"KRAKEN:ZECEUR","d":[]},{"s":"MEXC:BVGUSDT","d":[]},{"s":"UNISWAP3ETH:MDTWETH_70C6BD.USD","d":[]},{"s":"KRAKEN:EWTBTC","d":[]},{"s":"MEXC:CBANKUSDT","d":[]},{"s":"QUICKSWAP:ANGELWMATIC_2A7D27.USD","d":[]},{"s":"QUICKSWAP:PNTUSDC_6FDCF1","d":[]},{"s":"UNISWAP3ETH:WETHICETH","d":[]},{"s":"MEXC:AMCUSDT","d":[]},{"s":"MEXC:POLUSDT","d":[]},{"s":"BYBIT:NKNUSDT.P","d":[]},{"s":"TRADERJOE:FERTWAVAX_3B90A4.USD","d":[]},{"s":"MEXC:WBTCUSDC","d":[]},{"s":"UNISWAP3ETH:WETHSTETH","d":[]},{"s":"SPOOKYSWAP:PHEPEWFTM_EEB2E0.USD","d":[]},{"s":"BLOFIN:ZETAUSDT.P","d":[]},{"s":"MEXC:SSHIBUSDC","d":[]},{"s":"SPOOKYSWAP:2OMBWFTM_BDC7DF.USD","d":[]},{"s":"UNISWAP3ETH:MOMOWETH","d":[]},{"s":"MEXC:REACHUSDT","d":[]},{"s":"UNISWAP:HDRNHDRN_493F9B.USD","d":[]},{"s":"MEXC:BVTUSDT","d":[]},{"s":"BINANCE:MANAUSDT","d":[]},{"s":"BITRUE:MBOXUSDT","d":[]},{"s":"HITBTC:FILBTC","d":[]},{"s":"BINANCEUS:SKLUSDT","d":[]},{"s":"GATEIO:STRONGUSDT","d":[]},{"s":"UNISWAP3ETH:USDTGLM","d":[]},{"s":"UNISWAP3ARBITRUM:WSTETHWETH_35218A.USD","d":[]},{"s":"GATEIO:HMTUSDT","d":[]},{"s":"WHITEBIT:LOOMUSDT","d":[]},{"s":"UNISWAP3POLYGON:CHLLUSDC_2022CA.USD","d":[]},{"s":"PHEMEX:TAOUSDT","d":[]},{"s":"BYBIT:CITYUSDT","d":[]},{"s":"UNISWAP:XRIOWETH_3C5838.USD","d":[]},{"s":"TRADERJOE:COQWIFPORK404WAVAX_B00C12.USD","d":[]},{"s":"BYBIT:PYUSDUSDT","d":[]},{"s":"UNISWAP:DONUTWETH_718DD8.USD","d":[]},{"s":"KRAKEN:ETHUSDH2024","d":[]},{"s":"UNISWAP:SONICBOTWETH_46E442","d":[]},{"s":"UNISWAP3ETH:GMTWETH_C2FA5F.USD","d":[]},{"s":"OKX:JOEUSDT.P","d":[]},{"s":"GATEIO:DYDXUSDT.3L","d":[]},{"s":"UNISWAP:LITXWETH_FD6653","d":[]},{"s":"BINANCE:ACABTC","d":[]},{"s":"UNISWAP3ETH:WETHCMP","d":[]},{"s":"COINEX:DASHUSDC","d":[]},{"s":"BYBIT:FUNUSDT.P","d":[]},{"s":"GATEIO:BABYELONUSDT","d":[]},{"s":"UNISWAP:SOJUWETH_6C9A9E.USD","d":[]},{"s":"BLOFIN:OXTUSDT.P","d":[]},{"s":"HITBTC:GRTUSDC","d":[]},{"s":"UNISWAP:APOLLOWETH_56606D.USD","d":[]},{"s":"BITFINEX:NOMUST","d":[]},{"s":"UNISWAP3ETH:SWASHUSDT","d":[]},{"s":"BINANCE:KEYUSDT","d":[]},{"s":"BINANCE:VIDTBTC","d":[]},{"s":"UNISWAP:MEMEMEWETH_336951","d":[]},{"s":"UNISWAP:ORAIWETH_9081B5","d":[]},{"s":"UNISWAP:WAIFUWETH_4D5D2C.USD","d":[]},{"s":"XEXCHANGE:XBIDWEGLD","d":[]},{"s":"GATEIO:LSD7USDT","d":[]},{"s":"UNISWAP3POLYGON:PAXGUSDC_2773D0.USD","d":[]},{"s":"UNISWAP3ETH:DVTWETH_C6FA8C.USD","d":[]},{"s":"QUICKSWAP:JUMPINUSDT_938479","d":[]},{"s":"BITGET:CTCUSDT","d":[]},{"s":"UNISWAP3ETH:SATOSHIWETH","d":[]},{"s":"BITGET:BTCMEMEUSDT","d":[]},{"s":"UNISWAP:BCWETH_2ED63E.USD","d":[]},{"s":"COINEX:UMAUSDC","d":[]},{"s":"UNISWAP3POLYGON:USDCWBTC_32FAE2.USD","d":[]},{"s":"BTSE:NEOUSD.P","d":[]},{"s":"POLONIEX:HODLUSDT","d":[]},{"s":"PHEMEX:ETHUSDT.P","d":[]},{"s":"MEXC:NTXUSDT","d":[]},{"s":"BYBIT:JTOUSDT.P","d":[]},{"s":"TRADERJOE:SNOBWAVAX_8FB5BD","d":[]},{"s":"BINGX:KSMUSDT.PS","d":[]},{"s":"UNISWAP:AIUSWETH_CB3708","d":[]},{"s":"COINEX:FLCUSDT","d":[]},{"s":"BYBIT:WOOUSDT","d":[]},{"s":"MEXC:COREUSDT.P","d":[]},{"s":"UNISWAP:BSWETH_7B2F8F.USD","d":[]},{"s":"UNISWAP3ETH:WETHAIOZ","d":[]},{"s":"MEXC:ANIMALUSDT","d":[]},{"s":"UNISWAP3ETH:WETHASX","d":[]},{"s":"HITBTC:LINKUSD","d":[]},{"s":"UNISWAP3ETH:WETH01AI","d":[]},{"s":"BINANCE:SUIUSDC","d":[]},{"s":"HITBTC:MKRUSD","d":[]},{"s":"MEXC:BABYMUSKUSDT","d":[]},{"s":"OKX:COREUSDT.P","d":[]},{"s":"BYBIT:ETHUSDC.P","d":[]},{"s":"UNISWAP3ETH:CPOOLUSDC_A7600C.USD","d":[]},{"s":"ZOOMEX:CETUSUSDT.P","d":[]},{"s":"UNISWAP:ITGRWETH_0120B5","d":[]},{"s":"TRADERJOE:CINUWAVAX_4A24F7","d":[]},{"s":"UNISWAP:NITROWETH_73465C","d":[]},{"s":"COINEX:DOGEUSDC","d":[]},{"s":"GATEIO:ZBUUSDT","d":[]},{"s":"BITGET:LTCUSDT","d":[]},{"s":"UNISWAP:KUMAWETH_DF60E6.USD","d":[]},{"s":"WHITEBIT:ADABTC","d":[]},{"s":"UNISWAP:MAXWETH_A0A303.USD","d":[]},{"s":"KRAKEN:ALCXEUR","d":[]},{"s":"BINANCE:ARBTRY","d":[]},{"s":"HITBTC:WAVESBTC","d":[]},{"s":"UNISWAP:PMOGPOHM_F3D2F6","d":[]},{"s":"BINANCEUS:YFIUSDT","d":[]},{"s":"UNISWAP:PSTFXPOHM_64093D","d":[]},{"s":"GATEIO:KASTAUSDT","d":[]},{"s":"HITBTC:ALPHAUSDT","d":[]},{"s":"OKX:XLMUSDT.P","d":[]},{"s":"UNISWAP:0XGASWETH_7CB7F9","d":[]},{"s":"COINEX:GLQUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLUSD","d":[]},{"s":"UNISWAP:DUDUWETH_C42D9C","d":[]},{"s":"PHEMEX:HFTUSDT","d":[]},{"s":"UNISWAP:YAMAWETH_85C920","d":[]},{"s":"UNISWAP3OPTIMISM:WSTETHDAI_0BB50D.USD","d":[]},{"s":"UNISWAP:EAGWETH_7F0099.USD","d":[]},{"s":"MEXC:ARBUSDT","d":[]},{"s":"BLOFIN:IOTAUSDT.P","d":[]},{"s":"BITGET:BGBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDEFI","d":[]},{"s":"GATEIO:WAGMIGAMESUSDT","d":[]},{"s":"GATEIO:ZENUSDT.3S","d":[]},{"s":"UNISWAP3ETH:DAIUSDT_48DA09.USD","d":[]},{"s":"UNISWAP:0X0WETH_9EC936.USD","d":[]},{"s":"UNISWAP3POLYGON:UNLOCKWMATIC_7ACE26.USD","d":[]},{"s":"SPOOKYSWAP:OBOLWFTM_47FCE1.USD","d":[]},{"s":"UNISWAP:LYXEWETH_D583D0","d":[]},{"s":"BITFINEX:EGLDUSD","d":[]},{"s":"SPOOKYSWAP:ICEANY_10F2A5.USD","d":[]},{"s":"BITGET:ACEUSDT.P","d":[]},{"s":"BINGX:MKRUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:AELINWETH_5E8B0F.USD","d":[]},{"s":"WHITEBIT:LTCBTC","d":[]},{"s":"BITGET:NFPUSDT","d":[]},{"s":"UNISWAP3ETH:CRUUSDT_035AC1.USD","d":[]},{"s":"UNISWAP3ETH:ORAIXWETH","d":[]},{"s":"POLONIEX:GLMBTC","d":[]},{"s":"BINANCEUS:AVAXUSDT","d":[]},{"s":"MEXC:PPTUSDT","d":[]},{"s":"UNISWAP3ETH:CHZBWETH_35FB0F.USD","d":[]},{"s":"BITFINEX:MATICUST","d":[]},{"s":"GATEIO:CZZUSDT","d":[]},{"s":"OKX:MEMEUSDT.P","d":[]},{"s":"SPOOKYSWAP:SALEWFTM_A02BE5.USD","d":[]},{"s":"UNISWAP:RSRVWETH_96D472","d":[]},{"s":"GATEIO:SUIUSDT.3S","d":[]},{"s":"MEXC:PONDUSDT","d":[]},{"s":"WHITEBIT:KSMUSDT","d":[]},{"s":"BITMEX:P_SBFPARDONF2025","d":[]},{"s":"COINEX:HTRBTC","d":[]},{"s":"UNISWAP3ETH:WETHMETRO","d":[]},{"s":"UNISWAP:AKROUSDC_98F90B","d":[]},{"s":"SPOOKYSWAP:CREAMWFTM_B77B22.USD","d":[]},{"s":"UNISWAP3ETH:AXLWETH","d":[]},{"s":"UNISWAP3ETH:USDCHOT","d":[]},{"s":"TRADERJOE:BLIZZWAVAX_401FDD","d":[]},{"s":"HITBTC:TRACBTC","d":[]},{"s":"PANGOLIN:AVAIUSDCE_ED7A2B","d":[]},{"s":"BITFINEX:XVGBTC","d":[]},{"s":"UNISWAP3ETH:ATHWETH_8071DF.USD","d":[]},{"s":"MEXC:NEOXUSDT","d":[]},{"s":"WHITEBIT:OGNUSDT","d":[]},{"s":"BYBIT:SKLUSDT.P","d":[]},{"s":"COINEX:DERIUSDT","d":[]},{"s":"BYBIT:VICUSDT","d":[]},{"s":"COINEX:ARRRUSDT","d":[]},{"s":"UNISWAP:WLITIWETH_5AC9EA.USD","d":[]},{"s":"BYBIT:CYBERUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:WBTCDCI_F5A1D5.USD","d":[]},{"s":"UNISWAP3POLYGON:USDC00_E9516F.USD","d":[]},{"s":"UNISWAP3ETH:LBLOCKUSDT","d":[]},{"s":"UNISWAP:BNVWETH_ECB06F.USD","d":[]},{"s":"XEXCHANGE:RISAWEGLD","d":[]},{"s":"GATEIO:FLOKIUSDT","d":[]},{"s":"MEXC:CQTUSDT","d":[]},{"s":"UNISWAP:KENDUWETH_D9F2A7","d":[]},{"s":"WAGYUSWAP:WWYWVLX_B89151.USD","d":[]},{"s":"UNISWAP3ETH:GBYTEUSDT","d":[]},{"s":"BINANCE:SANDTRY","d":[]},{"s":"OKX:XTZUSDT.P","d":[]},{"s":"MEXC:BCBUSDT","d":[]},{"s":"UNISWAP:LAMBOWETH_EF5AF0","d":[]},{"s":"SPOOKYSWAP:BOOUSDC_F8CB29","d":[]},{"s":"GATEIO:DOGEUSDT.3L","d":[]},{"s":"GATEIO:YINUSDT","d":[]},{"s":"UNISWAP:CDYWETH_79DCF9.USD","d":[]},{"s":"UNISWAP3ETH:CZWETH","d":[]},{"s":"UNISWAP3ETH:MAVIAWETH_6A888F.USD","d":[]},{"s":"BINGX:TRBUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHPAW","d":[]},{"s":"UNISWAP:CHOWWETH_0387E5","d":[]},{"s":"UNISWAP:BTKWETH_8EE85A","d":[]},{"s":"TRADERJOE:SWORDWAVAX_434484.USD","d":[]},{"s":"COINEX:GMTBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ARBDAI_C05140.USD","d":[]},{"s":"TRADERJOE:PAEWAVAX_613936.USD","d":[]},{"s":"PIONEX:ETHBTC.P","d":[]},{"s":"BINANCE:NEARETH","d":[]},{"s":"SPOOKYSWAP:ITPWFTM_9EE4C7.USD","d":[]},{"s":"UNISWAP3ETH:RPLWETH_632E67.USD","d":[]},{"s":"BITGET:SHRAPUSDT","d":[]},{"s":"TRADERJOE:AGEURUSDC_0B7E75","d":[]},{"s":"WHITEBIT:UMAUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:ERNUSDC_958724.USD","d":[]},{"s":"UNISWAP:MONKEYSWETH_C364EC","d":[]},{"s":"BITGET:ORDIUSDT","d":[]},{"s":"GATEIO:MMTUSDT","d":[]},{"s":"BINGX:BONDUSDT.PS","d":[]},{"s":"UNISWAP3ETH:ZENIQWETH_11184B.USD","d":[]},{"s":"UNISWAP3ETH:USDGLOUSDC","d":[]},{"s":"MEXC:PIASUSDT","d":[]},{"s":"QUICKSWAP:CXETHWETH_DA7CD7","d":[]},{"s":"HITBTC:LINAUSDT","d":[]},{"s":"HITBTC:VETUSD","d":[]},{"s":"GEMINI:SOLBTC","d":[]},{"s":"MEXC:ARVUSDT","d":[]},{"s":"BINANCE:OPEUR","d":[]},{"s":"BITGET:XAUTUSDT","d":[]},{"s":"MEXC:BTCUSDT.P","d":[]},{"s":"BINANCE:AEVOFDUSD","d":[]},{"s":"PHEMEX:NTRNUSDT","d":[]},{"s":"BINANCE:FILUSDT","d":[]},{"s":"BINANCE:AAVEETH","d":[]},{"s":"UNISWAP:BTC20WETH_D50C5B.USD","d":[]},{"s":"QUICKSWAP:TITANWETH_A28ADE.USD","d":[]},{"s":"UNISWAP:SIMPWETH_BBCA22","d":[]},{"s":"UNISWAP3ETH:SOLWETH_127452.USD","d":[]},{"s":"MEXC:RJVUSDT","d":[]},{"s":"MEXC:SKLUSDT.P","d":[]},{"s":"UNISWAP:EDDAWETH_F44E8F","d":[]},{"s":"BINGX:GALUSDT.P","d":[]},{"s":"PANGOLIN:LINKWAVAX_BBC7FF.USD","d":[]},{"s":"COINEX:INJUSDT","d":[]},{"s":"BITRUE:COTIUSDT","d":[]},{"s":"BITFINEX:UNIBTC","d":[]},{"s":"UNISWAP:HOSTAIWETH_88EE95","d":[]},{"s":"MEXC:SQUIDGROWUSDT","d":[]},{"s":"POLONIEX:XMRUSD","d":[]},{"s":"BITSTAMP:XLMGBP","d":[]},{"s":"MEXC:WOLFUSDT","d":[]},{"s":"MEXC:DOGEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSAND","d":[]},{"s":"BTSE:AVAXUSD","d":[]},{"s":"MEXC:AI2USDT","d":[]},{"s":"KRAKEN:ROOKEUR","d":[]},{"s":"UNISWAP3ARBITRUM:STFXWETH_55D609.USD","d":[]},{"s":"KRAKEN:RPLEUR","d":[]},{"s":"BINANCE:TIABTC","d":[]},{"s":"BINGX:OMUSDT.PS","d":[]},{"s":"UNISWAP:LUSDWETH_F20EF1.USD","d":[]},{"s":"BITGET:ACHUSDT","d":[]},{"s":"MEXC:JSTUSDT","d":[]},{"s":"UNISWAP:PMPYWETH_EBBC72","d":[]},{"s":"TRADERJOE:STOMBWAVAX_75ADAD","d":[]},{"s":"UNISWAP3ETH:PEASWETH_44C95B.USD","d":[]},{"s":"BINANCE:FILTRY","d":[]},{"s":"GATEIO:FTRBUSDT","d":[]},{"s":"UNISWAP:PEPE30WETH_D761C3.USD","d":[]},{"s":"UNISWAP:ROBOPEPEWETH_854BC9","d":[]},{"s":"ZOOMEX:AXSUSDT.P","d":[]},{"s":"POLONIEX:COMPUSDT","d":[]},{"s":"GATEIO:LMWRUSDT","d":[]},{"s":"HITBTC:KSMUSD","d":[]},{"s":"QUICKSWAP:VABWMATIC_80EE26.USD","d":[]},{"s":"MEXC:AVAXUSDC","d":[]},{"s":"UNISWAP:CRVYWETH_19D89A","d":[]},{"s":"HITBTC:UMABTC","d":[]},{"s":"UNISWAP:PUPUWETH_E9C8B1","d":[]},{"s":"BINANCE:SANTOSUSDT","d":[]},{"s":"UNISWAP:REPV2WETH_8979A3","d":[]},{"s":"MEXC:CAIUSDT","d":[]},{"s":"HITBTC:UTKUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTUSDC_B82711.USD","d":[]},{"s":"ZOOMEX:XNOUSDT.P","d":[]},{"s":"COINEX:XNOUSDT","d":[]},{"s":"SPOOKYSWAP:POOCHWFTM_5D898D.USD","d":[]},{"s":"UNISWAP:OTXWETH_08D4EF.USD","d":[]},{"s":"KRAKEN:EWTUSD","d":[]},{"s":"BYBIT:FTTUSDT","d":[]},{"s":"GATEIO:XLMUSDT.3S","d":[]},{"s":"BYBIT:ADAUSDT.2L","d":[]},{"s":"UNISWAP3ETH:WETHTXL","d":[]},{"s":"BLOFIN:SNXUSDT.P","d":[]},{"s":"GATEIO:INGUSDT","d":[]},{"s":"UNISWAP:WNXMWETH_23BFF8.USD","d":[]},{"s":"BINANCE:MTLBTC","d":[]},{"s":"UNISWAP3ETH:CONWETH_087D17.USD","d":[]},{"s":"UNISWAP:SHAKEWETH_8F30BA.USD","d":[]},{"s":"HITBTC:UMAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_81C48D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LUSDUSDC_DF2DBE.USD","d":[]},{"s":"TRADERJOE:KONGWAVAX_C48D93.USD","d":[]},{"s":"MEXC:ARKTUSDT","d":[]},{"s":"UNISWAP:CAWETH_583C93.USD","d":[]},{"s":"UNISWAP3ETH:PFPASIAWETH","d":[]},{"s":"QUICKSWAP:BULLWMATIC_B82B5D","d":[]},{"s":"BITMEX:APEUSDT.P","d":[]},{"s":"MEXC:X2Y2USDT","d":[]},{"s":"BINGX:GMTUSDT.PS","d":[]},{"s":"UNISWAP:MORKWETH_5390E2.USD","d":[]},{"s":"MEXC:BRNUSDT","d":[]},{"s":"GEMINI:INJUSD","d":[]},{"s":"UNISWAP:SAUDIRAPTORWETH_B57B00","d":[]},{"s":"PHEMEX:LTCUSDT.P","d":[]},{"s":"BITFINEX:ETCBTC","d":[]},{"s":"COINEX:FIOBTC","d":[]},{"s":"TRADERJOE:WAVAXDAIE_87DEE1","d":[]},{"s":"TRADERJOE:SETUSDCE_31FA38","d":[]},{"s":"GATEIO:REFUSDT","d":[]},{"s":"UNISWAP:NORDWETH_523987.USD","d":[]},{"s":"HITBTC:EQXUSDT","d":[]},{"s":"UNISWAP:MURATIAIWETH_BF49D1.USD","d":[]},{"s":"UNISWAP3ETH:WBTCWETH_6AB3BB.USD","d":[]},{"s":"COINEX:KINUSDT","d":[]},{"s":"BITHUMB:ZBCKRW","d":[]},{"s":"KRAKEN:COMPEUR","d":[]},{"s":"COINBASE:YFIBTC","d":[]},{"s":"MEXC:WLDUSDT","d":[]},{"s":"UNISWAP:LYMWETH_80DDBE","d":[]},{"s":"HITBTC:BCHUSDT","d":[]},{"s":"SPOOKYSWAP:EGGMANWFTM_C1DECE","d":[]},{"s":"BYBIT:APTUSDC","d":[]},{"s":"UNISWAP3ETH:ZETAWETH","d":[]},{"s":"UNISWAP3ETH:PEASDAI","d":[]},{"s":"GATEIO:OKBUSDT.3S","d":[]},{"s":"HITBTC:MANAUSD","d":[]},{"s":"UNISWAP:ZANGAIWETH_45DC75.USD","d":[]},{"s":"UNISWAP:LQTYWETH_B13201","d":[]},{"s":"PHEMEX:OMGUSDT","d":[]},{"s":"UNISWAP:RARIWETH_1EEB05.USD","d":[]},{"s":"MEXC:MOVRUSDT","d":[]},{"s":"UNISWAP:RVSWETH_AE0FB0.USD","d":[]},{"s":"COINBASE:APEUSD","d":[]},{"s":"POLONIEX:LIMOUSDT","d":[]},{"s":"COINEX:SUIPUSDT","d":[]},{"s":"BINANCEUS:TUSDT","d":[]},{"s":"PIONEX:SNTUSDT.P","d":[]},{"s":"BINANCE:PEOPLEBTC","d":[]},{"s":"UNISWAP3ETH:SKRIMPWETH","d":[]},{"s":"BINGX:MBLUSDT.PS","d":[]},{"s":"UNISWAP:BANKWETH_FA94EC","d":[]},{"s":"MEXC:PIKAUSDT","d":[]},{"s":"UNISWAP3ETH:USDCPTF","d":[]},{"s":"BITGET:APTUSDT","d":[]},{"s":"UNISWAP:BOBOWETH_DE089C","d":[]},{"s":"PHEMEX:ETHUSD.PI","d":[]},{"s":"BINANCEUS:SUSHIUSDT","d":[]},{"s":"UNISWAP3ETH:PCHUSDC","d":[]},{"s":"SPOOKYSWAP:WISUSDC_0EE254","d":[]},{"s":"UNISWAP3POLYGON:USDCWETH_A4D8C8.USD","d":[]},{"s":"GATEIO:LTCUSDT.3L","d":[]},{"s":"GATEIO:NEXTUSDT","d":[]},{"s":"BISWAP:BFGBSW_88D483","d":[]},{"s":"BITSTAMP:LDOUSD","d":[]},{"s":"UNISWAP:GEEQWETH_2C814E","d":[]},{"s":"TRADERJOE:YETIWAVAX_A429BC.USD","d":[]},{"s":"BITHUMB:GRTKRW","d":[]},{"s":"QUICKSWAP:BURPUSDC_296CD1","d":[]},{"s":"UNISWAP:SNTWETH_59E7BE","d":[]},{"s":"UNISWAP:DEGAIWETH_967C4D","d":[]},{"s":"MEXC:SAKAIUSDT","d":[]},{"s":"QUICKSWAP:GAMERWETH_1DF661","d":[]},{"s":"BISWAP:WBNBUSDC_06CD67","d":[]},{"s":"HITBTC:SBTCBTC","d":[]},{"s":"UNISWAP3POLYGON:WBNBWMATIC_D2DAEC.USD","d":[]},{"s":"HITBTC:EOSEURS","d":[]},{"s":"UNISWAP:DOPEWETH_F73976","d":[]},{"s":"HITBTC:UTTETH","d":[]},{"s":"BLOFIN:GASUSDT.P","d":[]},{"s":"MEXC:KBCUSDT","d":[]},{"s":"BITFINEX:ICPUST","d":[]},{"s":"POLONIEX:DASHUSDT","d":[]},{"s":"UNISWAP:SHREKWETH_121A8D.USD","d":[]},{"s":"UNISWAP3ETH:WETHCHAIN","d":[]},{"s":"SPOOKYSWAP:OKIWFTM_ED1329.USD","d":[]},{"s":"GATEIO:NEXOUSDT","d":[]},{"s":"UNISWAP:M87WETH_2049DF","d":[]},{"s":"HITBTC:OMGUSDT","d":[]},{"s":"GATEIO:ITAUSDT","d":[]},{"s":"UNISWAP3POLYGON:ULTWMATIC_418DE8.USD","d":[]},{"s":"BYBIT:MVLUSDT","d":[]},{"s":"UNISWAP:LITXWETH_FD6653.USD","d":[]},{"s":"BINANCE:CTXCUSDT","d":[]},{"s":"UNISWAP:ELEVWETH_493DA4","d":[]},{"s":"QUICKSWAP:SRSWMATIC_FE0C00.USD","d":[]},{"s":"MEXC:STMXUSDT.P","d":[]},{"s":"MEXC:AIPADUSDT","d":[]},{"s":"MEXC:ZOONUSDT","d":[]},{"s":"UNISWAP:0XAISWAPWETH_54A89E","d":[]},{"s":"UNISWAP3ETH:TKXWETH_119F1B.USD","d":[]},{"s":"UNISWAP3POLYGON:MIFARMWETH_9B9277.USD","d":[]},{"s":"BINANCEUS:DIAUSDT","d":[]},{"s":"ZOOMEX:WIFUSDT.P","d":[]},{"s":"MEXC:GODEUSDT","d":[]},{"s":"COINEX:TRACUSDT","d":[]},{"s":"BITMEX:STRAXUSDT.P","d":[]},{"s":"UNISWAP:MUSKWETH_C95807.USD","d":[]},{"s":"BITKUB:HFTTHB","d":[]},{"s":"TRADERJOE:BOBSWAVAX_8D59F2","d":[]},{"s":"HITBTC:STETHUSDT","d":[]},{"s":"UNISWAP:YAEWETH_53048E","d":[]},{"s":"UNISWAP:AGWETH_2F0FB0.USD","d":[]},{"s":"WOONETWORK:DAIUSDT","d":[]},{"s":"KRAKEN:LTCGBP","d":[]},{"s":"HITBTC:G999USD","d":[]},{"s":"BITFINEX:PAXUSD","d":[]},{"s":"HITBTC:CVTETH","d":[]},{"s":"UNISWAP3ETH:POHMDAI_9163BD.USD","d":[]},{"s":"BITKUB:KSMTHB","d":[]},{"s":"PHEMEX:RADUSDT","d":[]},{"s":"GATEIO:YCTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHZETA","d":[]},{"s":"MEXC:BABUSDT","d":[]},{"s":"BITFINEX:HIXUSD","d":[]},{"s":"MEXC:QUICKUSDT","d":[]},{"s":"HITBTC:ONTUSD","d":[]},{"s":"QUICKSWAP:RISEWMATIC_F3C62D","d":[]},{"s":"BINGX:APTUSDT.P","d":[]},{"s":"UNISWAP3ETH:KP3RWETH_11B7A6.USD","d":[]},{"s":"UNISWAP:TREMPWETH_A185D1.USD","d":[]},{"s":"UNISWAP3ETH:WETHDIGIT","d":[]},{"s":"GATEIO:ARUSDT.3L","d":[]},{"s":"UNISWAP3ARBITRUM:USDSUSDC_9DC903.USD","d":[]},{"s":"UNISWAP3ETH:WETHPIXEL","d":[]},{"s":"UNISWAP3ETH:PLTWETH","d":[]},{"s":"HITBTC:ARKUSD","d":[]},{"s":"UNISWAP:SWFTCWETH_D417F1.USD","d":[]},{"s":"COINEX:VELOUSDT","d":[]},{"s":"TRADERJOE:SWAPEWAVAX_BD6404.USD","d":[]},{"s":"UNISWAP:DODOWETH_B41E4E","d":[]},{"s":"MEXC:CATSUSDT","d":[]},{"s":"KRAKEN:BTCUSD.MH2024","d":[]},{"s":"UNISWAP:BTCWETH_8001D1.USD","d":[]},{"s":"BINGX:NEARUSDT.PS","d":[]},{"s":"UNISWAP:CMAXWETH_8B3290","d":[]},{"s":"UNISWAP3ETH:WBTCUSDT_565347.USD","d":[]},{"s":"KRAKEN:OMGUSD","d":[]},{"s":"BITFINEX:FCLUSD","d":[]},{"s":"UNISWAP:GMEMEWETH_EB5716","d":[]},{"s":"UNISWAP:SIMPAIWETH_E40106","d":[]},{"s":"BINANCE:SUPERTRY","d":[]},{"s":"UNISWAP3ETH:QCADUSDC","d":[]},{"s":"MEXC:TIFIUSDT","d":[]},{"s":"GATEIO:ATMUSDT","d":[]},{"s":"UNISWAP:KEKWETH_3405E4.USD","d":[]},{"s":"BITHUMB:SXPKRW","d":[]},{"s":"UNISWAP:MONAWETH_E6936D","d":[]},{"s":"QUICKSWAP:DERCUSDC_0A8A3C","d":[]},{"s":"BITGET:GRTUSDT","d":[]},{"s":"HITBTC:MIMOUSD","d":[]},{"s":"QUICKSWAP:PDMTRWMATIC_3879CA","d":[]},{"s":"GATEIO:AXSUSDT","d":[]},{"s":"SPOOKYSWAP:AFTMCWFTM_A6EE3C","d":[]},{"s":"UNISWAP3ETH:SPCDAI_1AFD39.USD","d":[]},{"s":"UNISWAP3ETH:RENQUSDT","d":[]},{"s":"COINBASE:ZECBTC","d":[]},{"s":"XEXCHANGE:CRUUSDC","d":[]},{"s":"BITFLYER:MONAJPY","d":[]},{"s":"GATEIO:SAITOUSDT","d":[]},{"s":"QUICKSWAP:NAKAUSDC_9EB792","d":[]},{"s":"COINEX:NAVXUSDT","d":[]},{"s":"UNISWAP3ETH:AGEURWETH_8DB1B9.USD","d":[]},{"s":"BITFINEX:SPELLBTC","d":[]},{"s":"GATEIO:PIGUSDT","d":[]},{"s":"POLONIEX:RSTKUSDT","d":[]},{"s":"UNISWAP:BETROCKWETH_5B8E7D","d":[]},{"s":"SPOOKYSWAP:ICEBRKWFTM_383B9A","d":[]},{"s":"GATEIO:SPELLUSDT","d":[]},{"s":"PANGOLIN:PNGWETHE_CF3540.USD","d":[]},{"s":"UNISWAP:MXHWETH_D65754","d":[]},{"s":"UNISWAP3POLYGON:OSAKWETH_DFFF04.USD","d":[]},{"s":"UNISWAP3ETH:WETHQANX","d":[]},{"s":"UNISWAP3ETH:AURAWETH_4BE410.USD","d":[]},{"s":"MEXC:PSTAKEUSDT","d":[]},{"s":"SPOOKYSWAP:ETHWFTM_F07022","d":[]},{"s":"HITBTC:RARIUSDT","d":[]},{"s":"UNISWAP:NGLUSDC_B8B7C4","d":[]},{"s":"UNISWAP:BPEPEWETH_B15200","d":[]},{"s":"BITGET:CSASUSDT","d":[]},{"s":"UNISWAP3ETH:USDCWCOMAI","d":[]},{"s":"UNISWAP:WEXOWETH_8ABDB4","d":[]},{"s":"GATEIO:ELSUSDT","d":[]},{"s":"BINANCE:GLMUSDT","d":[]},{"s":"BINANCE:ARBEUR","d":[]},{"s":"UNISWAP3ETH:WBAIUSDC_11F851.USD","d":[]},{"s":"UNISWAP:TPUWETH_C2FCDB.USD","d":[]},{"s":"BINANCE:DOTEUR","d":[]},{"s":"UNISWAP:1INCHWETH_26AAD2.USD","d":[]},{"s":"QUICKSWAP:ODINDAI_9C7BFF","d":[]},{"s":"UNISWAP:FROGEWETH_198A62.USD","d":[]},{"s":"COINEX:CANTOUSDT","d":[]},{"s":"BINANCE:INJUSDT","d":[]},{"s":"ZOOMEX:WOOUSDT.P","d":[]},{"s":"BITKUB:CRVTHB","d":[]},{"s":"UNISWAP:RNGDWETH_6C08D7","d":[]},{"s":"UPBIT:HIFIKRW","d":[]},{"s":"GATEIO:JPGUSDT","d":[]},{"s":"UNISWAP:BABYFLOKIWETH_52C469.USD","d":[]},{"s":"UNISWAP:WETHUSDT_0D4A11","d":[]},{"s":"GATEIO:UFTUSDT","d":[]},{"s":"UNISWAP:SHKOOBYWETH_BBBF14.USD","d":[]},{"s":"UNISWAP:CADWETH_434E46.USD","d":[]},{"s":"BITGET:PCIUSDT","d":[]},{"s":"UNISWAP:QSPWETH_0A05E2","d":[]},{"s":"UNISWAP:MUSKPEPEWETH_9D6DBE.USD","d":[]},{"s":"XEXCHANGE:MOOVEUSDC","d":[]},{"s":"BITGET:KSMUSDT","d":[]},{"s":"GATEIO:JOYSTREAMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMONAI","d":[]},{"s":"MEXC:RNDXUSDT","d":[]},{"s":"UNISWAP3ETH:SHIBAFORKWETH_D07971.USD","d":[]},{"s":"UNISWAP:ETHWETH_E518E8","d":[]},{"s":"MEXC:SELFUSDT","d":[]},{"s":"GATEIO:FLOWUSDT","d":[]},{"s":"XEXCHANGE:LEGLDUSDC","d":[]},{"s":"KRAKEN:BTTUSD","d":[]},{"s":"COINEX:DOCKBTC","d":[]},{"s":"UNISWAP:LIFEWETH_72FD6A.USD","d":[]},{"s":"SPOOKYSWAP:THCWFTM_8A8FDF.USD","d":[]},{"s":"KRAKEN:BOBAEUR","d":[]},{"s":"UNISWAP:DIVAWETH_1FEEAD.USD","d":[]},{"s":"UNISWAP3ETH:USDCTRU","d":[]},{"s":"PIONEX:HBARUSDT.P","d":[]},{"s":"ZOOMEX:ONTUSDT.P","d":[]},{"s":"MEXC:SYNCHRONIUSDT","d":[]},{"s":"UNISWAP:MOPSWETH_E21040.USD","d":[]},{"s":"BITGET:AINNUSDT","d":[]},{"s":"KRAKEN:KAVAUSD","d":[]},{"s":"UNISWAP3ETH:WETHSTND","d":[]},{"s":"UNISWAP:JBOTWETH_F48621","d":[]},{"s":"UNISWAP:MILFINWETH_7AF9C1.USD","d":[]},{"s":"UNISWAP:SHEPEWETH_21CC2F.USD","d":[]},{"s":"UNISWAP:GOKUWETH_0CFD1A.USD","d":[]},{"s":"UNISWAP:WBANWETH_1F249F.USD","d":[]},{"s":"BINANCE:OGTRY","d":[]},{"s":"SPOOKYSWAP:WOOWFTM_A7010B.USD","d":[]},{"s":"COINEX:CELRUSDT","d":[]},{"s":"COINEX:PSPUSDT","d":[]},{"s":"BYBIT:DECHATUSDT","d":[]},{"s":"BISWAP:BMVLWBNB_E01EDA","d":[]},{"s":"BINANCEUS:QTUMUSDT","d":[]},{"s":"BINANCE:DOTUSDC","d":[]},{"s":"BITRUE:XAHUSDT","d":[]},{"s":"MEXC:EDUUSDT.P","d":[]},{"s":"GATEIO:DREPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMC","d":[]},{"s":"HITBTC:LSKBTC","d":[]},{"s":"UNISWAP:NFPWETH_2472C3.USD","d":[]},{"s":"UNISWAP:TOSHIWETH_49179A.USD","d":[]},{"s":"BITGET:ALEXUSDT","d":[]},{"s":"GATEIO:BTGUSDT","d":[]},{"s":"COINBASE:MAGICUSD","d":[]},{"s":"UNISWAP3ETH:USDCMATIC","d":[]},{"s":"UNISWAP:OHMIWETH_1AAC77","d":[]},{"s":"UNISWAP3ETH:WETHBDID","d":[]},{"s":"BINANCE:BTCJPY","d":[]},{"s":"PIONEX:TRXUSDT.P","d":[]},{"s":"BITGET:BNBUSDT","d":[]},{"s":"COINBASE:ARBUSD","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDC_94AB9E.USD","d":[]},{"s":"BISWAP:MLSBUSD_74C53F","d":[]},{"s":"BTSE:PEOPLEUSD","d":[]},{"s":"UNISWAP:BDPWETH_80A010.USD","d":[]},{"s":"TRADERJOE:BAVAUSDCE_2C3601","d":[]},{"s":"BINANCE:VICBTC","d":[]},{"s":"MEXC:RANKERUSDT","d":[]},{"s":"UNISWAP:POGEWETH_F4D098.USD","d":[]},{"s":"MEXC:PEPE2USDT","d":[]},{"s":"GATEIO:JULDUSDT","d":[]},{"s":"KRAKEN:ATOMEUR","d":[]},{"s":"UNISWAP3ETH:CUDOSUSDT_183116.USD","d":[]},{"s":"COINEX:ZECUSDT","d":[]},{"s":"BINANCE:RUNEBNB","d":[]},{"s":"COINEX:SQRUSDT","d":[]},{"s":"UNISWAP3ETH:GPTWETH","d":[]},{"s":"COINEX:UTKUSDT","d":[]},{"s":"QUICKSWAP:CHATWMATIC_2C1908","d":[]},{"s":"GATEIO:LIGOUSDT","d":[]},{"s":"UNISWAP:KERMITWETH_61CE73.USD","d":[]},{"s":"UNISWAP:MICWETH_B961E9.USD","d":[]},{"s":"UNISWAP3ETH:INSPUSDT","d":[]},{"s":"QUICKSWAP:IGGQUICK_2E026B.USD","d":[]},{"s":"UNISWAP3ARBITRUM:PLXWETH_7E48E9.USD","d":[]},{"s":"BITFINEX:SENATEBTC","d":[]},{"s":"UNISWAP3OPTIMISM:HANEPWETH_B0EFAF.USD","d":[]},{"s":"UNISWAP3ETH:USDCORDS","d":[]},{"s":"UNISWAP:OINWETH_54D16D.USD","d":[]},{"s":"KRAKEN:RUNEUSD","d":[]},{"s":"WAGYUSWAP:WVLXUSDT_7F3CB7","d":[]},{"s":"XEXCHANGE:CHECKRUSDC","d":[]},{"s":"UNISWAP:ROBOWETH_6132D9.USD","d":[]},{"s":"UNISWAP3ARBITRUM:WINRWETH_EE9BF1.USD","d":[]},{"s":"UNISWAP:SNAILWETH_C6A45E","d":[]},{"s":"UNISWAP3ARBITRUM:LMRWBTC_0D1104.USD","d":[]},{"s":"TRADERJOE:ACSWAVAX_996E16","d":[]},{"s":"UNISWAP3ETH:SOMMWETH","d":[]},{"s":"UNISWAP:SAITAMAWETH_D41310","d":[]},{"s":"UNISWAP3ETH:PUNKWETH_33D1CF.USD","d":[]},{"s":"UNISWAP3ETH:SOCKSWETH","d":[]},{"s":"UNISWAP:WHALEWETH_A9B485.USD","d":[]},{"s":"MEXC:SURFBOARDUSDT","d":[]},{"s":"UNISWAP3ETH:NKMGSFLC_994211.USD","d":[]},{"s":"UNISWAP3ARBITRUM:EUROEUSDC_C82BDE.USD","d":[]},{"s":"DELTA:BCHUSDT.P","d":[]},{"s":"BYBIT:WAVESUSDT.P","d":[]},{"s":"UNISWAP:TNGMWETH_60BE38.USD","d":[]},{"s":"BLOFIN:FLRUSDT.P","d":[]},{"s":"UNISWAP:GAINSWETH_D3719A.USD","d":[]},{"s":"UNISWAP:TSUYOKINAWETH_F88AEA","d":[]},{"s":"DYDX:UMAUSD.P","d":[]},{"s":"BINANCE:MANTAUSDT","d":[]},{"s":"TRADERJOE:AIWAVAX_1D65BD.USD","d":[]},{"s":"UNISWAP3ETH:TPUWETH_D2EE16.USD","d":[]},{"s":"BINANCE:ACETRY","d":[]},{"s":"MEXC:WSIUSDT","d":[]},{"s":"MEXC:QAIUSDT","d":[]},{"s":"UNISWAP:LILAWETH_0BEE64.USD","d":[]},{"s":"OKX:ADAUSDT.P","d":[]},{"s":"TRADERJOE:QIWAVAX_05366F","d":[]},{"s":"HITBTC:JULDUSDT","d":[]},{"s":"BYBIT:GGUSDT","d":[]},{"s":"POLONIEX:BLYUSDT","d":[]},{"s":"MEXC:GRAILUSDT","d":[]},{"s":"BINANCEUS:ETHUSDC","d":[]},{"s":"UNISWAP3ETH:ASTXWETH_4E680C.USD","d":[]},{"s":"MEXC:AFCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMUBI","d":[]},{"s":"BITKUB:OCEANTHB","d":[]},{"s":"UNISWAP3ETH:BRDUSDT","d":[]},{"s":"BITHUMB:AQTKRW","d":[]},{"s":"UNISWAP3ETH:EFIWETH","d":[]},{"s":"UNISWAP3ETH:WETHWGK","d":[]},{"s":"BYBIT:GMTUSDC","d":[]},{"s":"UNISWAP3ETH:METROWETH","d":[]},{"s":"HITBTC:G999ETH","d":[]},{"s":"MEXC:ILVUSDT","d":[]},{"s":"UNISWAP3POLYGON:ZKMAWMATIC_4C64C1.USD","d":[]},{"s":"UNISWAP3ETH:GALAWETH_465E56.USD","d":[]},{"s":"UNISWAP3ETH:WETHDPI","d":[]},{"s":"HITBTC:GAMIUSDT","d":[]},{"s":"UNISWAP:ZYPTOWETH_1ECB46.USD","d":[]},{"s":"HITBTC:EOSDAI","d":[]},{"s":"BINANCE:DOGETRY","d":[]},{"s":"UNISWAP3ETH:STRDYWETH","d":[]},{"s":"UNISWAP:SMIWETH_2D27CA.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SPELLWETH_5BBA76.USD","d":[]},{"s":"UNISWAP:CUTWETH_63D325.USD","d":[]},{"s":"QUICKSWAP:MABBCUSDC_B7F111","d":[]},{"s":"UNISWAP3ETH:ANSWETH","d":[]},{"s":"UNISWAP:XRIOWETH_3C5838","d":[]},{"s":"UNISWAP3ETH:ERRWETH","d":[]},{"s":"WAGYUSWAP:ASTROWVLX_0ABABC","d":[]},{"s":"UNISWAP3POLYGON:EPWETH_9DA4DE.USD","d":[]},{"s":"KRAKEN:SUSHIGBP","d":[]},{"s":"OKX:GFUSDT.P","d":[]},{"s":"BITFINEX:FCLBTC","d":[]},{"s":"UNISWAP3ETH:YUPWETH","d":[]},{"s":"COINEX:CKBBTC","d":[]},{"s":"GATEIO:ZODIUSDT","d":[]},{"s":"TRADERJOE:RIBTWAVAX_391E47","d":[]},{"s":"UNISWAP:RONWETH_4905EC.USD","d":[]},{"s":"BITFINEX:RLYUSD","d":[]},{"s":"UNISWAP:BABYDOGE20WETH_8F4D4D.USD","d":[]},{"s":"WOONETWORK:ONEUSDT","d":[]},{"s":"MEXC:FOODUSDT","d":[]},{"s":"HITBTC:ANCUSDT","d":[]},{"s":"SPOOKYSWAP:TNODEUSDC_920644","d":[]},{"s":"GATEIO:NYZOUSDT","d":[]},{"s":"UNISWAP:DOGE20WETH_D99034.USD","d":[]},{"s":"GATEIO:SUSHIUSDT.3L","d":[]},{"s":"MEXC:GHOSTUSDT","d":[]},{"s":"TRADERJOE:RIZZWAVAX_DCDA44.USD","d":[]},{"s":"MEXC:EXFIUSDT","d":[]},{"s":"HITBTC:USGUSDT","d":[]},{"s":"PIONEX:STRKUSDT.P","d":[]},{"s":"BINGX:1000BONKUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCBOB","d":[]},{"s":"KRAKEN:SANDEUR","d":[]},{"s":"UNISWAP:MATCHWETH_7A35FD","d":[]},{"s":"PHEMEX:TUSDUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:AIBSWETH_B81FC1.USD","d":[]},{"s":"COINEX:VRAUSDT","d":[]},{"s":"GATEIO:AFCUSDT","d":[]},{"s":"UNISWAP:SNDWETH_C56C63","d":[]},{"s":"POLONIEX:BITUSDT","d":[]},{"s":"COINEX:CRVBTC","d":[]},{"s":"GATEIO:SFMUSDT","d":[]},{"s":"SPOOKYSWAP:GROKWFTM_1C4E8F.USD","d":[]},{"s":"UNISWAP3POLYGON:MLNUSDC_ACEF97.USD","d":[]},{"s":"UNISWAP3ETH:USDTSHIBA2","d":[]},{"s":"UNISWAP:PEIPEIWETH_AD796F","d":[]},{"s":"QUICKSWAP:GMEEQUICK_FE4BA2","d":[]},{"s":"GATEIO:BACONUSDT","d":[]},{"s":"UNISWAP3ETH:IMGNAIWETH_4471B6.USD","d":[]},{"s":"COINBASE:QNTUSD","d":[]},{"s":"UNISWAP3ETH:SKELWETH","d":[]},{"s":"MEXC:MAR3USDT","d":[]},{"s":"UNISWAP:ROOWETH_FF578A","d":[]},{"s":"BITMEX:ETHXBT","d":[]},{"s":"UNISWAP:0X431AD2WETH_232818.USD","d":[]},{"s":"UNISWAP3ETH:LINKUSDT_AC5A2C.USD","d":[]},{"s":"UNISWAP:BAOWETH_8D7443.USD","d":[]},{"s":"UNISWAP3ETH:NKNUSDT","d":[]},{"s":"BITSTAMP:YFIUSD","d":[]},{"s":"UNISWAP:KEKWETH_4735EB.USD","d":[]},{"s":"POLONIEX:AMCUSDT","d":[]},{"s":"MEXC:TCGCUSDT","d":[]},{"s":"QUICKSWAP:KOMWMATIC_E0A1FD","d":[]},{"s":"COINEX:DCRBTC","d":[]},{"s":"GATEIO:ASMATCHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBEPRO","d":[]},{"s":"DYDX:FILUSD.P","d":[]},{"s":"BINANCE:VOXELUSDT","d":[]},{"s":"BYBIT:DENTUSDT.P","d":[]},{"s":"UNISWAP:SCXEYE_F047EE","d":[]},{"s":"KRAKEN:LSKBTC","d":[]},{"s":"UNISWAP3OPTIMISM:DAIUSDT_8323D0.USD","d":[]},{"s":"MEXC:DFIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFUSE","d":[]},{"s":"UNISWAP3ETH:DOLLARENCRWETH","d":[]},{"s":"UNISWAP:XWETH_5D5D0E.USD","d":[]},{"s":"QUICKSWAP:MAUSDCUSDC_729530","d":[]},{"s":"PIONEX:ALICEUSDT.P","d":[]},{"s":"UNISWAP:POLIWETH_0E0A03","d":[]},{"s":"GATEIO:OPUSDT.3L","d":[]},{"s":"PIONEX:ALGOUSDT.P","d":[]},{"s":"MEXC:SEXUSDT","d":[]},{"s":"BINANCE:NEXOBTC","d":[]},{"s":"UNISWAP:MOLLYWETH_81A954.USD","d":[]},{"s":"UNISWAP:XCADWETH_A14E05","d":[]},{"s":"UNISWAP3ETH:IPORWETH_EA7D10.USD","d":[]},{"s":"MEXC:PKRUSDT","d":[]},{"s":"GATEIO:DKSUSDT","d":[]},{"s":"ZOOMEX:JSTUSDT.P","d":[]},{"s":"QUICKSWAP:POLYSTARWMATIC_AF8DC1","d":[]},{"s":"UNISWAP:EBOXWETH_1B4F9F","d":[]},{"s":"WAGYUSWAP:WAGSCAR_2D2DFB.USD","d":[]},{"s":"MEXC:MARTIANUSDT","d":[]},{"s":"BINANCE:RDNTTUSD","d":[]},{"s":"MEXC:SNXETH","d":[]},{"s":"UNISWAP3ETH:WETHSWFTC","d":[]},{"s":"PANGOLIN:CLYWAVAX_997B92","d":[]},{"s":"UNISWAP:XMASWETH_187B42.USD","d":[]},{"s":"BITSTAMP:PYUSDEUR","d":[]},{"s":"UNISWAP:GMEEMYTH_65D012.USD","d":[]},{"s":"QUICKSWAP:OJAWMATIC_344454","d":[]},{"s":"MEXC:RLOUSDT","d":[]},{"s":"GATEIO:EWTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHZEN","d":[]},{"s":"BITGET:XVGUSDT.P","d":[]},{"s":"UNISWAP:CVXFPISWETH_AEA3E8.USD","d":[]},{"s":"UNISWAP3OPTIMISM:DAIUSDT_827F0A.USD","d":[]},{"s":"GATEIO:DUSTUSDT","d":[]},{"s":"UNISWAP:WARPEDWETH_BF8887.USD","d":[]},{"s":"COINEX:BOZOUSDT","d":[]},{"s":"BLOFIN:KSMUSDT.P","d":[]},{"s":"BYBIT:QNTUSDT","d":[]},{"s":"KRAKEN:FLOWEUR","d":[]},{"s":"MEXC:ARWUSDT","d":[]},{"s":"UNISWAP3ETH:PENDLERNG_B35AC4.USD","d":[]},{"s":"HITBTC:KNCETH","d":[]},{"s":"XEXCHANGE:OFEUSDC","d":[]},{"s":"UNISWAP3ETH:USDCUOS","d":[]},{"s":"UNISWAP:FNKUSDT_61B62C","d":[]},{"s":"UNISWAP3ETH:PSYOPUSDC_186F90.USD","d":[]},{"s":"BITGET:LTCUSDT.P","d":[]},{"s":"MEXC:GHSTUSDT","d":[]},{"s":"BINANCE:VETEUR","d":[]},{"s":"MEXC:BEAMXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMEU","d":[]},{"s":"UNISWAP:MOUSEWETH_024800.USD","d":[]},{"s":"UNISWAP:BTREEWETH_A4FAB5","d":[]},{"s":"KRAKEN:WAVESUSD","d":[]},{"s":"HITBTC:APPCUSD","d":[]},{"s":"HITBTC:DGBUSDT","d":[]},{"s":"POLONIEX:USDJUSDT","d":[]},{"s":"HITBTC:G999USDT","d":[]},{"s":"PIONEX:AEVOUSDT.P","d":[]},{"s":"BINGX:OCEANUSDT.P","d":[]},{"s":"UNISWAP3ETH:NXRAWETH","d":[]},{"s":"COINBASE:DESOUSD","d":[]},{"s":"HITBTC:NEOUSD","d":[]},{"s":"UNISWAP:BASEWETH_DE5B7F.USD","d":[]},{"s":"GATEIO:BCUGUSDT","d":[]},{"s":"UNISWAP3ETH:MASKWETH_D1BE0F.USD","d":[]},{"s":"MEXC:INTRUSDT","d":[]},{"s":"BYBIT:HVHUSDT","d":[]},{"s":"HITBTC:GLMBTC","d":[]},{"s":"HITBTC:EVXUSDT","d":[]},{"s":"UNISWAP3POLYGON:UNBUSDC_81B625.USD","d":[]},{"s":"MEXC:RSRUSDT.P","d":[]},{"s":"UNISWAP:FRENSWETH_36AB41.USD","d":[]},{"s":"MEXC:HOPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHVMX","d":[]},{"s":"UNISWAP:MEPEWETH_175444","d":[]},{"s":"UNISWAP3ETH:CRVUSDUSDC","d":[]},{"s":"GATEIO:IMAYCUSDT","d":[]},{"s":"KRAKEN:KINTEUR","d":[]},{"s":"BITRUE:PROXRP","d":[]},{"s":"UNISWAP3ETH:LBPWETH","d":[]},{"s":"MEXC:HEXUSDT","d":[]},{"s":"UNISWAP:PUMPKINWETH_E18150.USD","d":[]},{"s":"UNISWAP:SMARTCREDITWETH_6061A3","d":[]},{"s":"PHEMEX:CFXUSDT","d":[]},{"s":"UNISWAP:MMSFTUST_EAFAD3.USD","d":[]},{"s":"UNISWAP3ETH:USDTIQT","d":[]},{"s":"UNISWAP:BOMIWETH_D0168C.USD","d":[]},{"s":"GATEIO:CVTXUSDT","d":[]},{"s":"QUICKSWAP:GFARM2WETH_DB869D.USD","d":[]},{"s":"POLONIEX:TRXUSD","d":[]},{"s":"UNISWAP3ETH:PUMLXWETH","d":[]},{"s":"HITBTC:HTUSDT","d":[]},{"s":"COINEX:OVRUSDT","d":[]},{"s":"UNISWAP:IYKYKWETH_C1CB7F.USD","d":[]},{"s":"HITBTC:ROSEUSD","d":[]},{"s":"MEXC:MHEROUSDT","d":[]},{"s":"GATEIO:GMTUSDT","d":[]},{"s":"KRAKEN:XTZAUD","d":[]},{"s":"POLONIEX:XPEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHGP","d":[]},{"s":"UNISWAP3ETH:METISLINK_14911D.USD","d":[]},{"s":"UNISWAP3ETH:USDCUSDT","d":[]},{"s":"WHITEBIT:DYMUSDT","d":[]},{"s":"UNISWAP:LENDWETH_AB3F9B.USD","d":[]},{"s":"BITRUE:IOSTBTC","d":[]},{"s":"HITBTC:DODOUSD","d":[]},{"s":"UNISWAP:ANDYWETH_A1BF0E","d":[]},{"s":"UNISWAP:FLUIDWETH_1FAB77.USD","d":[]},{"s":"PIONEX:TONUSDT.P","d":[]},{"s":"UNISWAP3ETH:TADPOLEWETH_8A8EDE.USD","d":[]},{"s":"UNISWAP3POLYGON:USDCUSDT_DAC8A8.USD","d":[]},{"s":"BINANCE:EGLDUSD.P","d":[]},{"s":"WHITEBIT:USDTUAHG","d":[]},{"s":"UNISWAP3ETH:SUSDUSDC","d":[]},{"s":"UNISWAP:BILLWETH_E8D2E5.USD","d":[]},{"s":"ZOOMEX:PERPUSDT.P","d":[]},{"s":"PHEMEX:IDUSDT","d":[]},{"s":"UNISWAP:PNFWETH_B5B4EF","d":[]},{"s":"UNISWAP:BIDWETH_0F9768","d":[]},{"s":"BITFINEX:XMRUST","d":[]},{"s":"BYBIT:ZAMUSDT","d":[]},{"s":"COINEX:SNEKUSDT","d":[]},{"s":"BITSTAMP:RNDRUSD","d":[]},{"s":"GATEIO:SLNDUSDT","d":[]},{"s":"UNISWAP:VISUSDC_8B7A81","d":[]},{"s":"UNISWAP:STRONGWETH_C0BF97.USD","d":[]},{"s":"GATEIO:BOSONUSDT","d":[]},{"s":"UPBIT:UPPKRW","d":[]},{"s":"UNISWAP3ETH:STARLWETH_6F68A1.USD","d":[]},{"s":"UNISWAP3ETH:WETHMATH","d":[]},{"s":"UNISWAP3ETH:LINQWETH","d":[]},{"s":"WHITEBIT:AGIXUSDT","d":[]},{"s":"BINGX:TRXUSDT.P","d":[]},{"s":"BTSE:PYTHUSD.P","d":[]},{"s":"UNISWAP:PEPOWETH_F4D35B","d":[]},{"s":"BITGET:RAREUSDT","d":[]},{"s":"BITKUB:GFTHB","d":[]},{"s":"UNISWAP:ZRXWETH_C6F348","d":[]},{"s":"SPOOKYSWAP:QTMETH_2B6765","d":[]},{"s":"UNISWAP3ETH:NBTUSDT_D51D88.USD","d":[]},{"s":"BITGET:XTZUSDT.P","d":[]},{"s":"MEXC:GALUSDT","d":[]},{"s":"UNISWAP:ATRWETH_263B29.USD","d":[]},{"s":"BITFINEX:SUNUSD","d":[]},{"s":"UNISWAP:BCUBEWETH_C62BF2.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ORBWETH_A18176.USD","d":[]},{"s":"QUICKSWAP:SPACEWMATIC_D6AB3F","d":[]},{"s":"UNISWAP3ETH:USDCHT","d":[]},{"s":"UNISWAP:SQUIDGROWWETH_4FBF00.USD","d":[]},{"s":"UNISWAP:TETRISWETH_43F9A2.USD","d":[]},{"s":"MEXC:AKIUSDT","d":[]},{"s":"UNISWAP3ETH:PXETHWETH_02EDD2.USD","d":[]},{"s":"HITBTC:ARDRBTC","d":[]},{"s":"MEXC:SOPHUSDT","d":[]},{"s":"UPBIT:FLOWKRW","d":[]},{"s":"UNISWAP3ETH:AMUXWETH","d":[]},{"s":"BISWAP:TRXWBNB_16DA0C","d":[]},{"s":"UNISWAP3ETH:USDCCUSDC","d":[]},{"s":"HITBTC:BCNUSDT","d":[]},{"s":"POLONIEX:FRONTUSD","d":[]},{"s":"POLONIEX:GECUSDT","d":[]},{"s":"BTSE:ETHUSD","d":[]},{"s":"COINEX:LRCUSDC","d":[]},{"s":"BITKUB:PLNTHB","d":[]},{"s":"UNISWAP3ETH:MMAWETH_44AD0D.USD","d":[]},{"s":"GATEIO:OAXUSDT","d":[]},{"s":"BINGX:CTCUSDT.PS","d":[]},{"s":"COINEX:ROUPUSDT","d":[]},{"s":"UNISWAP:ZROWETH_A5FB96.USD","d":[]},{"s":"BITHUMB:AGIXKRW","d":[]},{"s":"UNISWAP:MDWETH_EF1B52.USD","d":[]},{"s":"GEMINI:PAXGUSD","d":[]},{"s":"UNISWAP3ETH:DYDXUSDC_E141E1.USD","d":[]},{"s":"BITFINEX:SUKUUST","d":[]},{"s":"SPOOKYSWAP:BTCWFTM_FDB9AB","d":[]},{"s":"UNISWAP3ETH:WETHHUMANS","d":[]},{"s":"UNISWAP3ETH:WETHXFUND","d":[]},{"s":"BITFINEX:WAVESUSD","d":[]},{"s":"COINEX:MLNUSDT","d":[]},{"s":"PHEMEX:LEVERUSDT","d":[]},{"s":"BINGX:AEVOUSDT.P","d":[]},{"s":"UNISWAP:PYETHDAI_B834BC","d":[]},{"s":"UNISWAP3ETH:WETHPASS","d":[]},{"s":"WHITEBIT:WBTUSD","d":[]},{"s":"MEXC:FINEUSDT","d":[]},{"s":"MEXC:GODSUSDT","d":[]},{"s":"UNISWAP:BOIWETH_590D9A.USD","d":[]},{"s":"BYBIT:MBXUSDT","d":[]},{"s":"UNISWAP3ETH:SENATEWETH_60D584.USD","d":[]},{"s":"TRADERJOE:SNLPWAVAX_CBF6F4","d":[]},{"s":"UNISWAP3ETH:LPTWETH","d":[]},{"s":"COINEX:LDOUSDT","d":[]},{"s":"PHEMEX:VANRYUSDT.P","d":[]},{"s":"BITRUE:JASMYUSDC","d":[]},{"s":"UNISWAP3ETH:WETHUNCX","d":[]},{"s":"DELTA:BIGTIMEUSDT.P","d":[]},{"s":"COINEX:DARUSDT","d":[]},{"s":"TRADERJOE:DAXEUSDTE_BDFD85","d":[]},{"s":"COINEX:IMXUSDT","d":[]},{"s":"BLOFIN:SCAUSDT.P","d":[]},{"s":"HITBTC:TWTUSDC","d":[]},{"s":"UNISWAP3OPTIMISM:WETHSUSD_84EB2C.USD","d":[]},{"s":"BITGET:SERPUSDT","d":[]},{"s":"GATEIO:PBXUSDT","d":[]},{"s":"UNISWAP:GEMINIWETH_5F21BE.USD","d":[]},{"s":"UNISWAP3ETH:WETHCDT","d":[]},{"s":"UNISWAP3ETH:TOPIAWETH_3B6B9E.USD","d":[]},{"s":"UNISWAP3ETH:USDCXYO","d":[]},{"s":"TRADERJOE:IMEWAVAX_5D95AE.USD","d":[]},{"s":"GATEIO:WARUSDT","d":[]},{"s":"BITGET:DERCUSDT","d":[]},{"s":"HITBTC:SUNUSD","d":[]},{"s":"BINANCE:GASFDUSD","d":[]},{"s":"BYBIT:ENSUSDT.P","d":[]},{"s":"KRAKEN:FILUSD.PM","d":[]},{"s":"UNISWAP:ETHYSWETH_5C344E.USD","d":[]},{"s":"KRAKEN:TVKUSD","d":[]},{"s":"GATEIO:WNXMUSDT","d":[]},{"s":"POLONIEX:BLURUSDT","d":[]},{"s":"COINEX:QKCUSDT","d":[]},{"s":"GATEIO:WAXLUSDT","d":[]},{"s":"GATEIO:DELFIUSDT","d":[]},{"s":"GATEIO:LYNXUSDT","d":[]},{"s":"BINANCEUS:MANAUSDT","d":[]},{"s":"BISWAP:EOSWBNB_7683F8.USD","d":[]},{"s":"UNISWAP3ETH:ALPHUSDT","d":[]},{"s":"UPBIT:EOSKRW","d":[]},{"s":"UNISWAP:MUSKWETH_C95807","d":[]},{"s":"UNISWAP3ETH:SETH2WETH","d":[]},{"s":"UNISWAP3ETH:WETHLMR","d":[]},{"s":"BINANCE:ATOMTRY","d":[]},{"s":"UNISWAP3ETH:WETHSAN","d":[]},{"s":"GATEIO:ALPHRUSDT","d":[]},{"s":"COINEX:BENJIUSDT","d":[]},{"s":"BINANCE:DOTUSDT","d":[]},{"s":"BITFINEX:GMMTBTC","d":[]},{"s":"UNISWAP:DWEBWETH_F4EAE3.USD","d":[]},{"s":"UNISWAP3ETH:RADWETH_704160.USD","d":[]},{"s":"UNISWAP:IBOXWETH_B6AF31.USD","d":[]},{"s":"TRADERJOE:PENDLEWAVAX_3ACD2F","d":[]},{"s":"BINGX:BAKEUSDT.PS","d":[]},{"s":"BITRUE:EOSSOL","d":[]},{"s":"BYBIT:SIDUSUSDT","d":[]},{"s":"UNISWAP:SOLVEWETH_DACF0D.USD","d":[]},{"s":"MEXC:FXNUSDT","d":[]},{"s":"UNISWAP:BABYPEPEWETH_3AF45B.USD","d":[]},{"s":"MEXC:ZTNUSDT","d":[]},{"s":"BYBIT:NEARUSDT","d":[]},{"s":"MEXC:FLRUSDT.P","d":[]},{"s":"HITBTC:TNCUSD","d":[]},{"s":"UNISWAP:ERSDLWETH_7BA9B9.USD","d":[]},{"s":"ZOOMEX:10000LADYSUSDT.P","d":[]},{"s":"UNISWAP3ETH:SQTUSDT","d":[]},{"s":"UNISWAP3ETH:BSSBWETH_E21876.USD","d":[]},{"s":"UNISWAP3ETH:USDTRLB","d":[]},{"s":"DERIBIT:XRPUSDC.P","d":[]},{"s":"GATEIO:TAPROOTUSDT","d":[]},{"s":"WHITEBIT:BLZUSDT.P","d":[]},{"s":"UNISWAP:JOEWETH_704AD8","d":[]},{"s":"GATEIO:MTVUSDT","d":[]},{"s":"POLONIEX:MATICUSDT","d":[]},{"s":"UNISWAP:SHIDOWETH_F55C8C","d":[]},{"s":"MEXC:XMRUSDT","d":[]},{"s":"UNISWAP:WISEWETH_21B806","d":[]},{"s":"UNISWAP3ETH:USDTWAXP","d":[]},{"s":"UNISWAP:CHEDDAWETH_32A505.USD","d":[]},{"s":"UNISWAP3ETH:WETHWOMBAT","d":[]},{"s":"UNISWAP:WOJAK20WETH_4A99ED.USD","d":[]},{"s":"MEXC:ARRRUSDT","d":[]},{"s":"TRADERJOE:CLYUSDTE_1435ED","d":[]},{"s":"UNISWAP3ETH:USDTORDI","d":[]},{"s":"UNISWAP:DSLAWETH_D0FBB8","d":[]},{"s":"ZOOMEX:FILUSDT.P","d":[]},{"s":"GATEIO:LTCUSDT.5L","d":[]},{"s":"MEXC:TIAUSDT.P","d":[]},{"s":"UNISWAP:ALDWETH_ED6C2F.USD","d":[]},{"s":"COINBASE:GTCUSD","d":[]},{"s":"COINEX:TURBOSUSDT","d":[]},{"s":"MEXC:ADUSDT","d":[]},{"s":"KRAKEN:ETHUSD.MH2024","d":[]},{"s":"EXMO:BTCEUR","d":[]},{"s":"BITGET:TRCUSDT","d":[]},{"s":"UNISWAP:SAIWETH_AD9B41.USD","d":[]},{"s":"HITBTC:CTSIUSDT","d":[]},{"s":"GATEIO:UNIUSDT","d":[]},{"s":"MEXC:TIPUSDT","d":[]},{"s":"BLOFIN:DODOXUSDT.P","d":[]},{"s":"BITGET:UPCUSDT","d":[]},{"s":"PIONEX:XTZUSDT.P","d":[]},{"s":"HITBTC:QTUMBTC","d":[]},{"s":"POLONIEX:SLPUSDT","d":[]},{"s":"UNISWAP:WIZWETH_3E43EF","d":[]},{"s":"BITFINEX:OMGUSD","d":[]},{"s":"MEXC:KTUSDT","d":[]},{"s":"WHITEBIT:LQTYUSDT","d":[]},{"s":"COINBASE:ENSEUR","d":[]},{"s":"KRAKEN:LTCJPY","d":[]},{"s":"SPOOKYSWAP:CHARMUSDC_ACF56C","d":[]},{"s":"KRAKEN:XRPUSD.P","d":[]},{"s":"TRADERJOE:SNOXWAVAX_B1B062.USD","d":[]},{"s":"UNISWAP3ETH:RASWETH","d":[]},{"s":"UNISWAP:XENWETH_C0D776.USD","d":[]},{"s":"MEXC:CHEQUSDT","d":[]},{"s":"UNISWAP:DRAKWETH_7A2C81","d":[]},{"s":"UNISWAP:KUSUNOKIWETH_AA7B6F.USD","d":[]},{"s":"POLONIEX:ILVUSDT","d":[]},{"s":"QUICKSWAP:TOWERWMATIC_C74E7A","d":[]},{"s":"GATEIO:NIZAUSDT","d":[]},{"s":"HITBTC:PLRBTC","d":[]},{"s":"MEXC:SDAOBTC","d":[]},{"s":"SPOOKYSWAP:DOLAWFTM_49EC56","d":[]},{"s":"UNISWAP3ETH:ZENIQWETH","d":[]},{"s":"UNISWAP:ALICEWETH_2BBD1E","d":[]},{"s":"UNISWAP3POLYGON:HYPEXWMATIC_151A21.USD","d":[]},{"s":"UNISWAP3ETH:O404WETH","d":[]},{"s":"BITGET:BALUSDT","d":[]},{"s":"UNISWAP3ETH:WSTORWETH","d":[]},{"s":"BYBIT:MMCUSDT","d":[]},{"s":"DELTA:SOLUSDT.P","d":[]},{"s":"TRADERJOE:BIOFIWAVAX_52FC7C","d":[]},{"s":"UNISWAP3ETH:WETHMNW","d":[]},{"s":"UNISWAP3ETH:WETHPANDORA","d":[]},{"s":"BTSE:LUNCUSD","d":[]},{"s":"UNISWAP:FWBWETH_A68180","d":[]},{"s":"UNISWAP3ETH:WETHBOXETH","d":[]},{"s":"BITRUE:DUSKUSDC","d":[]},{"s":"HITBTC:GMTUSD","d":[]},{"s":"UNISWAP:VROOMWETH_32E1A0","d":[]},{"s":"SPOOKYSWAP:OATHUSDC_9BA499","d":[]},{"s":"POLONIEX:XRPUSDD","d":[]},{"s":"BITHUMB:PYRKRW","d":[]},{"s":"BYBIT:IOTXUSDT.P","d":[]},{"s":"BLOFIN:AIUSDT.P","d":[]},{"s":"MEXC:DOGGYUSDT","d":[]},{"s":"MEXC:GVLUSDT","d":[]},{"s":"SPOOKYSWAP:ANYWFTM_5C021D.USD","d":[]},{"s":"UNISWAP3OPTIMISM:USDGLOUSDC_98C364.USD","d":[]},{"s":"UNISWAP3POLYGON:DOBYWMATIC_7F4C95.USD","d":[]},{"s":"MEXC:BEX1USDT","d":[]},{"s":"TRADERJOE:VTXWAVAX_15CBCF","d":[]},{"s":"UNISWAP:NEXUSWETH_8FE9EF.USD","d":[]},{"s":"UNISWAP:YAMAWETH_760A04.USD","d":[]},{"s":"GATEIO:ARBUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHDNNER","d":[]},{"s":"BITHUMB:NCTKRW","d":[]},{"s":"MEXC:BRDUSDT","d":[]},{"s":"GEMINI:UNIUSD","d":[]},{"s":"HITBTC:NEXOUSDT","d":[]},{"s":"QUICKSWAP:AROMAWMATIC_B3343E","d":[]},{"s":"MEXC:POLSUSDT","d":[]},{"s":"POLONIEX:DCUSDD","d":[]},{"s":"GATEIO:AINNUSDT","d":[]},{"s":"UNISWAP:LCSWETH_0DC6CB.USD","d":[]},{"s":"BYBIT:MASKUSDT","d":[]},{"s":"BITGET:OXUSDT","d":[]},{"s":"BYBIT:KNCUSDT.P","d":[]},{"s":"BITRUE:AAVEUSDT","d":[]},{"s":"MEXC:WAVESUSDT.P","d":[]},{"s":"UNISWAP:WSMWETH_ACFC50","d":[]},{"s":"MEXC:BOTTOUSDT","d":[]},{"s":"MEXC:TUSDT.P","d":[]},{"s":"ZOOMEX:APEUSDT.P","d":[]},{"s":"UNISWAP:DELREYWETH_F88A07.USD","d":[]},{"s":"POLONIEX:PEBOUSDT","d":[]},{"s":"UNISWAP3ETH:KELWETH","d":[]},{"s":"UNISWAP:PLUGUSDC_1FEAD6","d":[]},{"s":"UNISWAP3ETH:BETAWETH","d":[]},{"s":"POLONIEX:PAWUSDT","d":[]},{"s":"POLONIEX:OMUSDT","d":[]},{"s":"UNISWAP3ETH:CRYOWETH_57B939.USD","d":[]},{"s":"UNISWAP3ETH:PETWETH","d":[]},{"s":"TRADERJOE:ALPHAUSDC_E7C906.USD","d":[]},{"s":"BITGET:CULTUSDT","d":[]},{"s":"KRAKEN:SUIUSD","d":[]},{"s":"COINEX:WAVESBTC","d":[]},{"s":"COINEX:FERCUSDT","d":[]},{"s":"BITSTAMP:SNXUSD","d":[]},{"s":"MEXC:VRS2USDT","d":[]},{"s":"UNISWAP3ETH:WETHCAH","d":[]},{"s":"UNISWAP:PHTKWETH_BD3F7F.USD","d":[]},{"s":"TRADERJOE:OTQIAVAX28DEC2023USDCE_5F973E","d":[]},{"s":"UNISWAP3ETH:AGRSWETH_ADDD24.USD","d":[]},{"s":"QUICKSWAP:RVLTWETH_5EFDBC.USD","d":[]},{"s":"UNISWAP:INTWETH_351DF9.USD","d":[]},{"s":"UNISWAP:EDGEWETH_A4C134","d":[]},{"s":"OKX:PERPUSDT.P","d":[]},{"s":"BITHUMB:XLMKRW","d":[]},{"s":"MEXC:BLSUSDT","d":[]},{"s":"UNISWAP3POLYGON:AWTUSDT_0F06CF.USD","d":[]},{"s":"BLOFIN:LRCUSDT.P","d":[]},{"s":"UNISWAP:FAIRHEXHEX_AF629D","d":[]},{"s":"UNISWAP3ETH:RCMWETH_0584BF.USD","d":[]},{"s":"BINANCEUS:XTZUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUSDC_7BEA39.USD","d":[]},{"s":"UNISWAP:ICWETH_EAABB2.USD","d":[]},{"s":"UNISWAP:1000XWETH_838945.USD","d":[]},{"s":"UNISWAP:FORTHWETH_F6048F","d":[]},{"s":"POLONIEX:SNXUSD","d":[]},{"s":"UNISWAP:DDIMWETH_38A94C","d":[]},{"s":"COINEX:PAXGUSDT","d":[]},{"s":"BITHUMB:VELOKRW","d":[]},{"s":"OKX:ETHUSDC.P","d":[]},{"s":"PIONEX:XEMUSDT.P","d":[]},{"s":"COINBASE:CTXUSD","d":[]},{"s":"UNISWAP:BNTWETH_3FD4CF.USD","d":[]},{"s":"HITBTC:ARPAUSD","d":[]},{"s":"UNISWAP:AVATLYWETH_B694D6.USD","d":[]},{"s":"KRAKEN:COTIUSD","d":[]},{"s":"HITBTC:PORTOBTC","d":[]},{"s":"BITHUMB:CAKEKRW","d":[]},{"s":"UNISWAP3POLYGON:SUSHIWETH_031269.USD","d":[]},{"s":"UNISWAP:HEALWETH_9CCD72.USD","d":[]},{"s":"UNISWAP3ETH:BLNDUSDC_AB0400.USD","d":[]},{"s":"UNISWAP:RPGMAIWETH_841D74.USD","d":[]},{"s":"GATEIO:TAIUSDT","d":[]},{"s":"BTSE:WIFUSD.P","d":[]},{"s":"GATEIO:BCDUSDT","d":[]},{"s":"UNISWAP:BISTWETH_CC290A.USD","d":[]},{"s":"UNISWAP:YFDAIWETH_84E34D.USD","d":[]},{"s":"UNISWAP3ETH:PPWETH_AB4BD9.USD","d":[]},{"s":"BITFINEX:DOGEUST","d":[]},{"s":"COINEX:RDNTUSDT","d":[]},{"s":"GATEIO:ROUTEUSDT","d":[]},{"s":"BISWAP:CSIXUSDT_203C42","d":[]},{"s":"PHEMEX:ALGOUSDT","d":[]},{"s":"BINANCE:DOGEEUR","d":[]},{"s":"HITBTC:ARBBTC","d":[]},{"s":"MEXC:JINUSDT","d":[]},{"s":"POLONIEX:FUMOUSDT","d":[]},{"s":"HITBTC:VIBLOUSDT","d":[]},{"s":"TRADERJOE:DEGENWAVAX_15EC92.USD","d":[]},{"s":"UNISWAP3ETH:USDTSOC","d":[]},{"s":"PIONEX:GRTUSDT.P","d":[]},{"s":"BITGET:MKRUSDT","d":[]},{"s":"COINEX:BOSONUSDT","d":[]},{"s":"HITBTC:DLTUSD","d":[]},{"s":"UNISWAP:IOWETH_0DA5B1","d":[]},{"s":"UNISWAP:NORDWETH_523987","d":[]},{"s":"GATEIO:SNEKUSDT","d":[]},{"s":"UNISWAP:DBUYWETH_131CAA.USD","d":[]},{"s":"BITRUE:LEVERUSDT","d":[]},{"s":"HITBTC:NEARUSDT","d":[]},{"s":"BITGET:VRUSDT","d":[]},{"s":"UNISWAP:UEFNWETH_0F083A","d":[]},{"s":"BITGET:KASUSDT","d":[]},{"s":"COINEX:AMPBTC","d":[]},{"s":"UNISWAP3ETH:DAIFLC","d":[]},{"s":"PANGOLIN:RUGPULLWAVAX_A8D0C8","d":[]},{"s":"BITKUB:JOETHB","d":[]},{"s":"OKX:GFTUSDT.P","d":[]},{"s":"BITGET:RVNUSDT.P","d":[]},{"s":"GATEIO:TULIPUSDT","d":[]},{"s":"BITGET:TUSDT","d":[]},{"s":"COINBASE:ADAEUR","d":[]},{"s":"MEXC:MELOSUSDT","d":[]},{"s":"UNISWAP3ETH:TGCWETH_38D209.USD","d":[]},{"s":"COINBASE:AVAXUSD","d":[]},{"s":"UNISWAP3ETH:WETHTKAI","d":[]},{"s":"UNISWAP3POLYGON:FXAEDYWETH_EFBA86.USD","d":[]},{"s":"UNISWAP:DEFITWETH_0216B5","d":[]},{"s":"UNISWAP3POLYGON:METALUSDT_36165B.USD","d":[]},{"s":"SPOOKYSWAP:SMELTWFTM_02E060.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ZPCWETH_FB3488.USD","d":[]},{"s":"UNISWAP:VOWWETH_7FDEB4.USD","d":[]},{"s":"ZOOMEX:ORBSUSDT.P","d":[]},{"s":"UNISWAP3ETH:MUTEWETH_0BF0A4.USD","d":[]},{"s":"GATEIO:SHOPNEXTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:AXLUSDCUSDC_AEECEE.USD","d":[]},{"s":"POLONIEX:DORKLUSDT","d":[]},{"s":"KRAKEN:SCRTUSD","d":[]},{"s":"HITBTC:ENSUSD","d":[]},{"s":"UNISWAP:ARKIWETH_8EE318.USD","d":[]},{"s":"MEXC:KFIUSDT","d":[]},{"s":"UNISWAP:MFIUSDC_9D6400","d":[]},{"s":"BITMEX:BNBUSDT.P","d":[]},{"s":"UNISWAP:INNOVAWETH_3A41B1","d":[]},{"s":"BITFINEX:WBTBTC","d":[]},{"s":"MEXC:DUCKUSDT","d":[]},{"s":"QUICKSWAP:GAIADAI_885EB7.USD","d":[]},{"s":"UNISWAP3ETH:USDCIBETH","d":[]},{"s":"BITMEX:XRDUSDT.P","d":[]},{"s":"BYBIT:GRAPEUSDT","d":[]},{"s":"POLONIEX:STPTUSD","d":[]},{"s":"UNISWAP:NIOXWETH_D1BC66","d":[]},{"s":"UNISWAP3ETH:HILOWETH_1D9A94.USD","d":[]},{"s":"GATEIO:PRMXUSDT","d":[]},{"s":"MEXC:ILVUSDT.P","d":[]},{"s":"KRAKEN:WAXLUSD","d":[]},{"s":"TRADERJOE:TRESRWAVAX_71DDEB","d":[]},{"s":"UNISWAP:METAVWETH_6CAE12","d":[]},{"s":"UNISWAP3ETH:GASWETH","d":[]},{"s":"BYBIT:MOBILEUSDT.P","d":[]},{"s":"BITSTAMP:VEGAUSD","d":[]},{"s":"BITFINEX:KANUST","d":[]},{"s":"WAGYUSWAP:VLXPADWAG_3CB5AF","d":[]},{"s":"MEXC:PSGUSDT","d":[]},{"s":"BINANCE:AXLFDUSD","d":[]},{"s":"BINANCE:ALPINEUSDT","d":[]},{"s":"BITSTAMP:DOTEUR","d":[]},{"s":"UNISWAP:BANANAWETH_43DE43","d":[]},{"s":"WOONETWORK:JTOUSDT","d":[]},{"s":"UNISWAP3ETH:PYUSDWETH_643EA0.USD","d":[]},{"s":"UNISWAP3ETH:WETHGOVI","d":[]},{"s":"GATEIO:WEMIXUSDT","d":[]},{"s":"UNISWAP3ETH:0N1FLC_0F14EA.USD","d":[]},{"s":"UNISWAP3ETH:RNGMKR","d":[]},{"s":"UNISWAP:DUELWETH_757344","d":[]},{"s":"BITHUMB:UNIKRW","d":[]},{"s":"OKX:SUIUSDT.P","d":[]},{"s":"BLOFIN:DARUSDT.P","d":[]},{"s":"COINBASE:OSMOUSD","d":[]},{"s":"BINANCE:OGBTC","d":[]},{"s":"MEXC:LEVERUSDT","d":[]},{"s":"UNISWAP:SOAIWETH_88A3A9.USD","d":[]},{"s":"UNISWAP3POLYGON:SUSHIUSDC_836F03.USD","d":[]},{"s":"BINANCEUS:ALGOUSDT","d":[]},{"s":"UNISWAP:PEPEGAINSWETH_198C13.USD","d":[]},{"s":"HITBTC:PEPEUSDT","d":[]},{"s":"UNISWAP:BALPHAWETH_C75253.USD","d":[]},{"s":"UNISWAP:CROCWETH_6B2689","d":[]},{"s":"UNISWAP:WETHDAI_A478C2","d":[]},{"s":"COINBASE:XCNUSD","d":[]},{"s":"GATEIO:DALUSDT","d":[]},{"s":"WHITEBIT:TIAUSDT","d":[]},{"s":"BYBIT:SHIB1000USDT.P","d":[]},{"s":"UNISWAP3POLYGON:GNSWMATIC_EFA98F.USD","d":[]},{"s":"UNISWAP3ETH:BONDWETH_CE962B.USD","d":[]},{"s":"UNISWAP:DGMVWETH_4D7128.USD","d":[]},{"s":"MEXC:ATAUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:BTCPXWBTC_6D61F4.USD","d":[]},{"s":"MEXC:SUNDAEUSDT","d":[]},{"s":"COINEX:KNCUSDT","d":[]},{"s":"UNISWAP:PLEBWETH_BC628F.USD","d":[]},{"s":"BITFINEX:SUIUSD","d":[]},{"s":"COINEX:MICEUSDT","d":[]},{"s":"SPOOKYSWAP:PFTMWFTM_9CE8E9","d":[]},{"s":"COINEX:ARKBTC","d":[]},{"s":"BYBIT:LINKUSDT.2L","d":[]},{"s":"UNISWAP3ETH:TONEWETH","d":[]},{"s":"UNISWAP:DUDESWETH_980E16.USD","d":[]},{"s":"MEXC:AMBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHELMT","d":[]},{"s":"KRAKEN:ORCAEUR","d":[]},{"s":"GATEIO:TRXUSDT","d":[]},{"s":"UNISWAP:PHTKWETH_BD3F7F","d":[]},{"s":"MEXC:CBUSDT","d":[]},{"s":"COINEX:TTBTC","d":[]},{"s":"UNISWAP:SHIHWETH_B8EC4E.USD","d":[]},{"s":"HITBTC:CNSUSDT","d":[]},{"s":"HITBTC:HTMLUSD","d":[]},{"s":"COINBASE:LSETHUSD","d":[]},{"s":"QUICKSWAP:MVWMATIC_F21284.USD","d":[]},{"s":"MEXC:CAWUSDT","d":[]},{"s":"BINGX:FLOWUSDT.PS","d":[]},{"s":"MEXC:MUBIUSDT","d":[]},{"s":"POLONIEX:TREMPUSDT","d":[]},{"s":"HITBTC:OGNBTC","d":[]},{"s":"UNISWAP3ETH:HARAMBEWETH_2A4A22.USD","d":[]},{"s":"UNISWAP:NSUREWETH_ED196F","d":[]},{"s":"BITRUE:SOLUSDC","d":[]},{"s":"BITFINEX:DOGEUST.P","d":[]},{"s":"GATEIO:K21USDT","d":[]},{"s":"UNISWAP3ETH:PSWAPWETH_04ED15.USD","d":[]},{"s":"UNISWAP3ETH:WETHCRO","d":[]},{"s":"HITBTC:USDTUSDP","d":[]},{"s":"UNISWAP:MATEWETH_357475","d":[]},{"s":"HITBTC:ATLASUSDT","d":[]},{"s":"UNISWAP:MGGUSDC_832447","d":[]},{"s":"HITBTC:DLTBTC","d":[]},{"s":"PHEMEX:TRXUSDT","d":[]},{"s":"UNISWAP3ETH:MDTUSDT","d":[]},{"s":"UNISWAP:QMALLWETH_B34716.USD","d":[]},{"s":"MEXC:XTOKENUSDT","d":[]},{"s":"ZOOMEX:VETUSDT.P","d":[]},{"s":"UNISWAP:CEXWETH_297E30.USD","d":[]},{"s":"UNISWAP3ETH:WETHRSR","d":[]},{"s":"MEXC:WAITUSDT","d":[]},{"s":"POLONIEX:COREUMUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:UNIWETH_AD4C66.USD","d":[]},{"s":"POLONIEX:MOGUSDT","d":[]},{"s":"COINEX:HOTUSDC","d":[]},{"s":"TRADERJOE:RAINWAVAX_3DA3B2.USD","d":[]},{"s":"UNISWAP:MODAWETH_C98A5C.USD","d":[]},{"s":"PHEMEX:1000VOLTUSDT","d":[]},{"s":"UNISWAP:WOJAK269WETH_AF4595","d":[]},{"s":"UNISWAP3ETH:LITWETH_86347A.USD","d":[]},{"s":"UNISWAP:ISHIWETH_C2A568","d":[]},{"s":"GATEIO:DERCUSDT","d":[]},{"s":"UNISWAP:BVMWETH_BCFEA8.USD","d":[]},{"s":"QUICKSWAP:KOGECOINWMATIC_388550","d":[]},{"s":"UNISWAP3ETH:MOONEYWETH_6DE28F.USD","d":[]},{"s":"GATEIO:POTUSDT","d":[]},{"s":"QUICKSWAP:TELEBTCWMATIC_4108CE","d":[]},{"s":"POLONIEX:AIDOGEUSDT","d":[]},{"s":"PIONEX:API3USDT.P","d":[]},{"s":"UNISWAP3ETH:WETHRVST","d":[]},{"s":"GATEIO:MCO2USDT","d":[]},{"s":"UNISWAP:TRGWETH_EC5E74.USD","d":[]},{"s":"UNISWAP3ARBITRUM:RPLWETH_7A3E4D.USD","d":[]},{"s":"BITFINEX:CRVUST","d":[]},{"s":"BYBIT:SEILORUSDT","d":[]},{"s":"UNISWAP3POLYGON:CYBRUSDT_039DE3.USD","d":[]},{"s":"UNISWAP3ETH:IPORWETH","d":[]},{"s":"UNISWAP:RARIWETH_86FEF1.USD","d":[]},{"s":"UNISWAP3POLYGON:DUKWMATIC_B5190C.USD","d":[]},{"s":"BITKUB:FLOWTHB","d":[]},{"s":"KRAKEN:ALGOEUR","d":[]},{"s":"UNISWAP:APUWETH_5CED44.USD","d":[]},{"s":"UNISWAP:RUSDWETH_9EB369","d":[]},{"s":"BITGET:SOLUSDC","d":[]},{"s":"MEXC:CPFCUSDT","d":[]},{"s":"HITBTC:MASKUSDT","d":[]},{"s":"HITBTC:DGTXUSD","d":[]},{"s":"MEXC:ARETH","d":[]},{"s":"TRADERJOE:BUSINESSESWAVAX_5E7297.USD","d":[]},{"s":"UNISWAP3ARBITRUM:MIMUSDT_27807D.USD","d":[]},{"s":"UNISWAP:MEGABOTWETH_EC2895.USD","d":[]},{"s":"MEXC:CSPRUSDT.P","d":[]},{"s":"GATEIO:FLUXUSDT","d":[]},{"s":"UNISWAP3ETH:RBNUSDC","d":[]},{"s":"GATEIO:MELDUSDT","d":[]},{"s":"BYBIT:CBXUSDT","d":[]},{"s":"UNISWAP3POLYGON:ICHIWMATIC_3D86A4.USD","d":[]},{"s":"UNISWAP3ETH:TRUTHWETH","d":[]},{"s":"KRAKEN:REPV2BTC","d":[]},{"s":"HITBTC:HIGHUSDT","d":[]},{"s":"GATEIO:HTXUSDT","d":[]},{"s":"BITSTAMP:MPLEUR","d":[]},{"s":"BTSE:GALAUSD.P","d":[]},{"s":"UNISWAP3POLYGON:AVATARWMATIC_C7A91D.USD","d":[]},{"s":"UNISWAP:NCORWETH_9A981B.USD","d":[]},{"s":"MEXC:CHRPUSDT","d":[]},{"s":"UNISWAP3ETH:ORCWETH_D43B29.USD","d":[]},{"s":"BITMEX:MLKUSDT.P","d":[]},{"s":"BITRUE:CTSIUSDT","d":[]},{"s":"BITHUMB:RNDRKRW","d":[]},{"s":"UNISWAP:DOGUSDT_3D6D0E","d":[]},{"s":"UNISWAP:SOHOTWETH_C777B5.USD","d":[]},{"s":"GATEIO:GODUSDT","d":[]},{"s":"BITFINEX:LDOUST","d":[]},{"s":"COINEX:MYROUSDT","d":[]},{"s":"BLOFIN:TURBOUSDT.P","d":[]},{"s":"GATEIO:ATLASUSDT","d":[]},{"s":"KRAKEN:DOTEUR","d":[]},{"s":"COINEX:OCEANUSDT","d":[]},{"s":"UNISWAP:COCWETH_D59F22.USD","d":[]},{"s":"SPOOKYSWAP:ITPWFTM_9EE4C7","d":[]},{"s":"GATEIO:AGLDUSDT","d":[]},{"s":"COINEX:AVAVUSDT","d":[]},{"s":"PIONEX:ENJUSDT.P","d":[]},{"s":"UNISWAP3ETH:VAIWETH","d":[]},{"s":"UNISWAP3ETH:WETHWLYX","d":[]},{"s":"GATEIO:TBEUSDT","d":[]},{"s":"HITBTC:HTUSD","d":[]},{"s":"BITRUE:XMRUSDT","d":[]},{"s":"BINANCE:DATAUSDT","d":[]},{"s":"COINEX:LTOUSDT","d":[]},{"s":"BITHUMB:FITFIKRW","d":[]},{"s":"COINEX:POWRUSDT","d":[]},{"s":"UNISWAP:DEXTWETH_A29FE6.USD","d":[]},{"s":"KRAKEN:BTTEUR","d":[]},{"s":"BITGET:GALUSDT.P","d":[]},{"s":"COINEX:BTTUSDT","d":[]},{"s":"PHEMEX:RNDRUSDT.P","d":[]},{"s":"BINGX:ASTRUSDT.PS","d":[]},{"s":"UNISWAP3POLYGON:WETHWMATIC_9F2B55.USD","d":[]},{"s":"HITBTC:MINUSD","d":[]},{"s":"DELTA:MEMEUSDT.P","d":[]},{"s":"MEXC:TSYUSDT","d":[]},{"s":"BITGET:ORBSUSDT","d":[]},{"s":"UNISWAP:KP4RWETH_7EF85D","d":[]},{"s":"BITRUE:CRVXRP","d":[]},{"s":"UNISWAP3ETH:MAZZEWETH","d":[]},{"s":"MEXC:DOGEUSDT.P","d":[]},{"s":"UNISWAP:TXWETH_1A293C","d":[]},{"s":"UNISWAP:CMSWETH_83524F","d":[]},{"s":"HITBTC:TRIGXUSD","d":[]},{"s":"PANGOLIN:MIMWAVAX_239AAE","d":[]},{"s":"UNISWAP3ETH:METHWETH_047080.USD","d":[]},{"s":"POLONIEX:GDXUSDT","d":[]},{"s":"UNISWAP3ETH:DAIUSDT","d":[]},{"s":"UNISWAP3POLYGON:RNDRWETH_849EC6.USD","d":[]},{"s":"POLONIEX:TLMUSDT","d":[]},{"s":"MEXC:UFTUSDT","d":[]},{"s":"OKX:ATOMUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHCHR","d":[]},{"s":"PHEMEX:ORDIUSDT","d":[]},{"s":"POLONIEX:SIMPSONUSDT","d":[]},{"s":"UNISWAP:SOCKSWETH_0DACB4","d":[]},{"s":"GATEIO:LEMDUSDT","d":[]},{"s":"UNISWAP3ETH:P404WETH_E1903E.USD","d":[]},{"s":"BITRUE:XLMUSDT","d":[]},{"s":"GATEIO:AOGUSDT","d":[]},{"s":"GATEIO:BNBUSDT","d":[]},{"s":"HITBTC:RAREUSDT","d":[]},{"s":"BITRUE:BTCUSDC","d":[]},{"s":"GATEIO:SOMMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGOHM","d":[]},{"s":"ZOOMEX:FLOWUSDT.P","d":[]},{"s":"UNISWAP:VIZWETH_8E1C87.USD","d":[]},{"s":"UNISWAP:CYBONKWETH_C618F2.USD","d":[]},{"s":"BITGET:YGGUSDT.P","d":[]},{"s":"BITHUMB:MAVKRW","d":[]},{"s":"MEXC:BITSUSDT","d":[]},{"s":"GATEIO:LEVERUSDT","d":[]},{"s":"UNISWAP:GPUAIWETH_089D49.USD","d":[]},{"s":"ZOOMEX:XMRUSDT.P","d":[]},{"s":"TRADERJOE:YELWAVAX_00A386","d":[]},{"s":"BITGET:PROPCUSDT","d":[]},{"s":"UNISWAP:INQUWETH_60C89C.USD","d":[]},{"s":"COINEX:ALPHAUSDC","d":[]},{"s":"BITRUE:DOGEADA","d":[]},{"s":"BITFINEX:JASMYUST.P","d":[]},{"s":"GATEIO:HGETUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GMDUSDC_133925.USD","d":[]},{"s":"UNISWAP:MEMEAIWETH_2FA947","d":[]},{"s":"HITBTC:FTMUSDC","d":[]},{"s":"BLOFIN:LUNA2USDT.P","d":[]},{"s":"MEXC:SOFIUSDT","d":[]},{"s":"BLOFIN:ALICEUSDT.P","d":[]},{"s":"PANGOLIN:MILK2WAVAX_180CAC.USD","d":[]},{"s":"UNISWAP3ETH:FTMWETH","d":[]},{"s":"UNISWAP:DIPWETH_DE68AD.USD","d":[]},{"s":"TRADERJOE:METAGUSDT_A321B0","d":[]},{"s":"UNISWAP3ETH:COFFEEWETH_4B9280.USD","d":[]},{"s":"TRADERJOE:ZOOWAVAX_34EA62.USD","d":[]},{"s":"UNISWAP3ETH:HFTWETH_E67B95.USD","d":[]},{"s":"UNISWAP3ETH:SETH2WETH_7379E8.USD","d":[]},{"s":"MEXC:GENEUSDT","d":[]},{"s":"GATEIO:HOTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHZUZALU","d":[]},{"s":"UNISWAP:HEXWETH_55D5C2","d":[]},{"s":"MEXC:XDATAUSDT","d":[]},{"s":"UPBIT:LSKKRW","d":[]},{"s":"MEXC:BLANKV2USDT","d":[]},{"s":"PANGOLIN:AKITAXWAVAX_34C212.USD","d":[]},{"s":"UNISWAP3ETH:LK99USDT","d":[]},{"s":"COINEX:AKTUSDT","d":[]},{"s":"HITBTC:ACTUSDT","d":[]},{"s":"ZOOMEX:OPUSDT.P","d":[]},{"s":"UNISWAP:STEMWETH_ED899D.USD","d":[]},{"s":"BINANCE:AXSTRY","d":[]},{"s":"BINANCEUS:PAXGUSDT","d":[]},{"s":"BITGET:EGLDUSDT","d":[]},{"s":"UNISWAP:STARSHIPWETH_E195D9.USD","d":[]},{"s":"SPOOKYSWAP:FDLAUNCHUSDC_C93751","d":[]},{"s":"KRAKEN:YGGUSD","d":[]},{"s":"SPOOKYSWAP:ICEBRKWFTM_383B9A.USD","d":[]},{"s":"WHITEBIT:FILUSDT.P","d":[]},{"s":"QUICKSWAP:ENDWMATIC_7AAD02.USD","d":[]},{"s":"WHITEBIT:ADAEUR","d":[]},{"s":"PANGOLIN:OOEWAVAX_E44EF6.USD","d":[]},{"s":"GATEIO:STEEMUSDT","d":[]},{"s":"MEXC:HBTUSDT","d":[]},{"s":"TRADERJOE:THORWAVAX_95189F","d":[]},{"s":"PHEMEX:PMGUSDT","d":[]},{"s":"POLONIEX:GTCUSDT","d":[]},{"s":"UNISWAP3ETH:LAURIONWETH","d":[]},{"s":"BINANCE:LTOBTC","d":[]},{"s":"BYBIT:ETCUSDT.2L","d":[]},{"s":"UNISWAP3ETH:WETHJOEY","d":[]},{"s":"UNISWAP3ETH:BAHAMASWETH","d":[]},{"s":"MEXC:RAZORUSDT","d":[]},{"s":"UNISWAP:TIGRAWETH_D845C0.USD","d":[]},{"s":"UNISWAP:XETAUSDT_2D4D1C","d":[]},{"s":"COINEX:SISUSDT","d":[]},{"s":"UNISWAP:COLIWETH_5ECDC0.USD","d":[]},{"s":"GATEIO:TIDALUSDT","d":[]},{"s":"OKX:FLOKIUSDT.P","d":[]},{"s":"KRAKEN:ATOMUSD.PM","d":[]},{"s":"BITGET:WBTCUSDT","d":[]},{"s":"COINBASE:ANKRBTC","d":[]},{"s":"UNISWAP3ETH:USDCPLSX","d":[]},{"s":"BITFINEX:DUSKBTC","d":[]},{"s":"PHEMEX:STEEMUSDT.P","d":[]},{"s":"BITSTAMP:TRACEUR","d":[]},{"s":"BITGET:HELLOUSDT","d":[]},{"s":"TRADERJOE:WETHEWAVAX_FE15C2.USD","d":[]},{"s":"UNISWAP:NUGWETH_EAB7E9","d":[]},{"s":"KRAKEN:PERPEUR","d":[]},{"s":"UNISWAP:ODINTSUKA_C0376B","d":[]},{"s":"OKX:JUPUSDT.P","d":[]},{"s":"PANGOLIN:ETHWAVAX_1ACF15.USD","d":[]},{"s":"UNISWAP3OPTIMISM:LYRAWETH_F334F6.USD","d":[]},{"s":"GATEIO:GOUSDT","d":[]},{"s":"UNISWAP3POLYGON:DIMOWMATIC_CF234B.USD","d":[]},{"s":"GATEIO:AKIUSDT","d":[]},{"s":"UNISWAP:DGNXWETH_202409.USD","d":[]},{"s":"UNISWAP3ETH:POHMPEAS_5207BC.USD","d":[]},{"s":"BINANCE:FETTRY","d":[]},{"s":"UNISWAP3ETH:USDCHIFI","d":[]},{"s":"UNISWAP:VOLTWETH_96AA22.USD","d":[]},{"s":"UNISWAP:MYOBUWETH_F2FBAF.USD","d":[]},{"s":"UNISWAP:DFIWETH_B079D6.USD","d":[]},{"s":"UNISWAP3ETH:LQTYWETH_D1D5A4.USD","d":[]},{"s":"UNISWAP3ETH:PFPASIAWETH_9E3EC2.USD","d":[]},{"s":"UNISWAP3POLYGON:MVXWETH_FB9CAA.USD","d":[]},{"s":"UNISWAP3ETH:ZCHFUSDT_8E4318.USD","d":[]},{"s":"BITGET:GUACUSDT","d":[]},{"s":"UNISWAP:INTWETH_351DF9","d":[]},{"s":"TIMEX:USDTAUDT","d":[]},{"s":"MEXC:1000STARLUSDT.P","d":[]},{"s":"COINBASE:STORJUSD","d":[]},{"s":"BYBIT:TIMEUSDT","d":[]},{"s":"UNISWAP3POLYGON:UNILINK_C1D402.USD","d":[]},{"s":"PHEMEX:ONDOUSDT.P","d":[]},{"s":"GATEIO:SINGLEUSDT","d":[]},{"s":"UNISWAP:DANKWETH_BCE508","d":[]},{"s":"BINANCE:ALGOTRY","d":[]},{"s":"SPOOKYSWAP:TAROTWFTM_11D90E","d":[]},{"s":"POLONIEX:SENSOUSDT","d":[]},{"s":"UNISWAP:RFOXWETH_421429","d":[]},{"s":"COINEX:CVXUSDT","d":[]},{"s":"COINEX:SAROSUSDT","d":[]},{"s":"GATEIO:ELFUSDT","d":[]},{"s":"UNISWAP:OBAYCWETH_DCE6EC.USD","d":[]},{"s":"MEXC:CROWN2USDT","d":[]},{"s":"UNISWAP3POLYGON:GNSDAI_BA0216.USD","d":[]},{"s":"BINGX:TRXUSDT.PS","d":[]},{"s":"SPOOKYSWAP:FUSDTWFTM_5965E5","d":[]},{"s":"BITFINEX:ETHJPY","d":[]},{"s":"UNISWAP3ETH:SMILEYWETH_2E6637.USD","d":[]},{"s":"UNISWAP3ETH:FLIPWETH_EAB02B.USD","d":[]},{"s":"BITGET:ONTUSDT.P","d":[]},{"s":"UNISWAP3ETH:MVIWETH_06ADA8.USD","d":[]},{"s":"UNISWAP:ASKOWETH_63804D.USD","d":[]},{"s":"BITMEX:SNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:XENUSDC_353BB6.USD","d":[]},{"s":"UNISWAP3ETH:WETHKOMPETE","d":[]},{"s":"BINANCE:AUDIOUSDT","d":[]},{"s":"UNISWAP3ETH:TKINGWETH","d":[]},{"s":"MEXC:OTACONUSDT","d":[]},{"s":"GATEIO:ISPUSDT","d":[]},{"s":"GATEIO:AISWAPUSDT","d":[]},{"s":"QUICKSWAP:CKIEWMATIC_ED1D8D.USD","d":[]},{"s":"UNISWAP3ETH:SYNKWETH","d":[]},{"s":"PHEMEX:BTCUSDT","d":[]},{"s":"MEXC:RPGUSDT","d":[]},{"s":"BINANCEUS:NEARUSDT","d":[]},{"s":"QUICKSWAP:EMONWMATIC_A408A7","d":[]},{"s":"GATEIO:ONXUSDT","d":[]},{"s":"BTSE:BNBUSD.P","d":[]},{"s":"KRAKEN:SCEUR","d":[]},{"s":"UNISWAP:LIGHTWETH_57EF5B","d":[]},{"s":"UNISWAP3ETH:OSKYWETH","d":[]},{"s":"UNISWAP:SAITOWETH_DFCF74.USD","d":[]},{"s":"UNISWAP:QWIKWETH_F1B0BC.USD","d":[]},{"s":"GATEIO:GALUSDT.3S","d":[]},{"s":"PANGOLIN:ZEEWAVAX_CF0EA8.USD","d":[]},{"s":"GATEIO:JUPUSDT","d":[]},{"s":"HITBTC:CFXUSD","d":[]},{"s":"UNISWAP3ETH:WETHPOHM","d":[]},{"s":"TRADERJOE:MELTWAVAX_2923A6","d":[]},{"s":"UNISWAP:TIMEWETH_1D474D","d":[]},{"s":"PIONEX:CAKEUSDT.P","d":[]},{"s":"GATEIO:MTRGUSDT","d":[]},{"s":"HITBTC:PLAUSD","d":[]},{"s":"UNISWAP3POLYGON:TOTEMWETH_3DC15D.USD","d":[]},{"s":"UNISWAP3ETH:RIPDOGEWETH","d":[]},{"s":"UNISWAP3ARBITRUM:USDSARB_14DF27.USD","d":[]},{"s":"MEXC:METAHEROUSDT","d":[]},{"s":"UNISWAP:AMBWETH_898D88","d":[]},{"s":"UNISWAP:UMBWETH_B1BBEE","d":[]},{"s":"QUICKSWAP:MCHCWMATIC_0CDF41","d":[]},{"s":"POLONIEX:LBRUSDT","d":[]},{"s":"KRAKEN:IMXUSD.PM","d":[]},{"s":"GATEIO:MASKUSDT","d":[]},{"s":"TRADERJOE:YYAVAXUSDC_0512AB.USD","d":[]},{"s":"COINEX:WLDUSDT","d":[]},{"s":"UNISWAP:RELAYWETH_3AED5B.USD","d":[]},{"s":"UNISWAP3ETH:PTOYWETH_2F1DEC.USD","d":[]},{"s":"MEXC:OPUSDC","d":[]},{"s":"MEXC:OPNUSDT","d":[]},{"s":"KRAKEN:ETHUSDU2024","d":[]},{"s":"UNISWAP3POLYGON:ELUNRUSDT_A68212.USD","d":[]},{"s":"UNISWAP:TWEETYWETH_B780F8","d":[]},{"s":"GATEIO:5IREUSDT","d":[]},{"s":"UNISWAP3ETH:MATHWETH","d":[]},{"s":"UNISWAP:SATSWETH_D99E9C.USD","d":[]},{"s":"QUICKSWAP:DGWMATIC_71BD15","d":[]},{"s":"KRAKEN:STGUSD","d":[]},{"s":"UNISWAP3ETH:WETHCUDOS","d":[]},{"s":"UNISWAP3ETH:DIUSDC","d":[]},{"s":"UNISWAP:GLGWETH_77F3F3.USD","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTWETH_446BF9.USD","d":[]},{"s":"GATEIO:PANDOUSDT","d":[]},{"s":"COINEX:PAWSWAPUSDT","d":[]},{"s":"MEXC:BFTUSDT","d":[]},{"s":"UNISWAP:HTWETH_26CE49.USD","d":[]},{"s":"UNISWAP:ARPAUSDT_9F624B","d":[]},{"s":"UNISWAP3POLYGON:SMTUSDC_F8BCAC.USD","d":[]},{"s":"UNISWAP3ETH:WETHSTAO","d":[]},{"s":"UNISWAP:STRKWETH_FF734D.USD","d":[]},{"s":"MEXC:XVGUSDT.P","d":[]},{"s":"UNISWAP:AKITAWETH_DA3A20.USD","d":[]},{"s":"BITRUE:MANAUSDC","d":[]},{"s":"UNISWAP3ETH:ARIA20WETH","d":[]},{"s":"BTSE:BATUSD","d":[]},{"s":"BITRUE:COMPUSDT","d":[]},{"s":"GEMINI:LDOUSD","d":[]},{"s":"PIONEX:OPUSDT.P","d":[]},{"s":"UNISWAP:KELWETH_0F2156","d":[]},{"s":"UNISWAP:NEURONIWETH_55D88D.USD","d":[]},{"s":"UNISWAP3POLYGON:XDAOWMATIC_CE41C5.USD","d":[]},{"s":"GATEIO:FRONTUSDT","d":[]},{"s":"BITGET:MMVGUSDT","d":[]},{"s":"COINEX:XMRBTC","d":[]},{"s":"UNISWAP:KNCWETH_F49C43.USD","d":[]},{"s":"UNISWAP:ICEWETH_0EFEA6.USD","d":[]},{"s":"BITSTAMP:KNCUSD","d":[]},{"s":"POLONIEX:POLYBTC","d":[]},{"s":"UNISWAP:X7RWETH_613924","d":[]},{"s":"KRAKEN:XCNEUR","d":[]},{"s":"HITBTC:APPCUSDT","d":[]},{"s":"BITRUE:DOGEBTC","d":[]},{"s":"GATEIO:KLIMAUSDT","d":[]},{"s":"QUICKSWAP:YELWMATIC_8BAB87","d":[]},{"s":"QUICKSWAP:AAVETEL_4917BC","d":[]},{"s":"UNISWAP3POLYGON:FXSWETH_C9AD12.USD","d":[]},{"s":"GATEIO:PHBUSDT","d":[]},{"s":"QUICKSWAP:FIBOWMATIC_CD7593","d":[]},{"s":"UNISWAP3ETH:USDCRLB","d":[]},{"s":"UNISWAP:MYCWETH_F6E140.USD","d":[]},{"s":"COINEX:GPTUSDT","d":[]},{"s":"GATEIO:ADUSDT","d":[]},{"s":"HITBTC:AVAXUSDT","d":[]},{"s":"UNISWAP3ETH:CDAIDAI","d":[]},{"s":"UNISWAP:SHIBIEWETH_BD577B.USD","d":[]},{"s":"UNISWAP3ETH:QUIQWETH_A81FB9.USD","d":[]},{"s":"MEXC:EFCUSDT","d":[]},{"s":"MEXC:GUIUSDT","d":[]},{"s":"UNISWAP:USFWETH_1FBF00.USD","d":[]},{"s":"PANGOLIN:HECWAVAX_C8F980.USD","d":[]},{"s":"UNISWAP:HOTKEYWETH_C7E33C","d":[]},{"s":"QUICKSWAP:EONWETH_283075.USD","d":[]},{"s":"MEXC:PICKAUSDT","d":[]},{"s":"BINANCEUS:RLCUSDT","d":[]},{"s":"MEXC:HARRYUSDT","d":[]},{"s":"UNISWAP:RUNEWETH_8D2A4C","d":[]},{"s":"BISWAP:BTCBUSDT_A987F0","d":[]},{"s":"DYDX:EOSUSD.P","d":[]},{"s":"UNISWAP:MATICWETH_819F34.USD","d":[]},{"s":"UNISWAP3ARBITRUM:METAXUSDT_F65AA6.USD","d":[]},{"s":"UNISWAP:GECKOWETH_73A81E.USD","d":[]},{"s":"UNISWAP:MAILWETH_BB4392","d":[]},{"s":"UNISWAP3ETH:HAKAWETH","d":[]},{"s":"BYBIT:BANDUSDT.P","d":[]},{"s":"UNISWAP:ANBWETH_17202E.USD","d":[]},{"s":"BITFINEX:WILDUSD","d":[]},{"s":"UNISWAP:BUNDLWETH_A7F1C8.USD","d":[]},{"s":"UNISWAP3ETH:SDEXALPH_BFCFF8.USD","d":[]},{"s":"BITGET:GNOUSDT","d":[]},{"s":"GATEIO:RINGUSDT","d":[]},{"s":"UNISWAP:REDPANDAWETH_2EBF95.USD","d":[]},{"s":"BYBIT:MINUUSDT","d":[]},{"s":"BITFINEX:1INCHUSD","d":[]},{"s":"HITBTC:ADSUSD","d":[]},{"s":"UNISWAP3OPTIMISM:SNXUSDC_320616.USD","d":[]},{"s":"UNISWAP:TURBOWETH_455D4D.USD","d":[]},{"s":"MEXC:SMURFCATUSDT","d":[]},{"s":"HITBTC:TRBUSDT","d":[]},{"s":"KRAKEN:RLCUSD.PM","d":[]},{"s":"BINANCE:LQTYUSDT","d":[]},{"s":"UNISWAP3ETH:BULLYWETH","d":[]},{"s":"MEXC:FOOLBULLUSDT","d":[]},{"s":"UNISWAP:CLIPPYWETH_BBEF3A","d":[]},{"s":"UNISWAP:COOKIESWETH_4B5AA4.USD","d":[]},{"s":"BYBIT:RONDUSDT","d":[]},{"s":"HITBTC:STRMUSDT","d":[]},{"s":"POLONIEX:ETHPEPE2USDT","d":[]},{"s":"GATEIO:XENUSDT","d":[]},{"s":"BITGET:LINAUSDT","d":[]},{"s":"GEMINI:ETHGUSD","d":[]},{"s":"UNISWAP3ETH:WSTFXWETH","d":[]},{"s":"UNISWAP:SILLYWETH_44188D.USD","d":[]},{"s":"UNISWAP:CONIUSDT_DF999F","d":[]},{"s":"UNISWAP3ETH:WETHLCX","d":[]},{"s":"TRADERJOE:BUSDWAVAX_F57971","d":[]},{"s":"UNISWAP3ETH:VOMBATUSWETH_13F59E.USD","d":[]},{"s":"UNISWAP:GAMERWETH_96E830.USD","d":[]},{"s":"UNISWAP:DACCWETH_22052A.USD","d":[]},{"s":"COINBASE:AAVEUSD","d":[]},{"s":"KRAKEN:PHAEUR","d":[]},{"s":"COINEX:RUNEBTC","d":[]},{"s":"UNISWAP:OTWETH_8A303A.USD","d":[]},{"s":"UNISWAP3ETH:LEASHWETH_C24646.USD","d":[]},{"s":"UNISWAP3ETH:TOWERWETH","d":[]},{"s":"UNISWAP:WAGMIGAMESWETH_DF4F37.USD","d":[]},{"s":"UNISWAP:LOVELYWETH_BE5A0B","d":[]},{"s":"BITFINEX:TSDUSD","d":[]},{"s":"HITBTC:CLTBTC","d":[]},{"s":"BYBIT:XVGUSDT.P","d":[]},{"s":"MEXC:IOSTUSDT","d":[]},{"s":"WHITEBIT:TIABTC","d":[]},{"s":"UNISWAP:MOMOV2WETH_89D780","d":[]},{"s":"UNISWAP:LIFEWETH_AED171","d":[]},{"s":"HITBTC:COTIBTC","d":[]},{"s":"HITBTC:ZRXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAXGT","d":[]},{"s":"HITBTC:BNBUSDC","d":[]},{"s":"UNISWAP3ETH:WETHIZI","d":[]},{"s":"COINBASE:RENDERUSD","d":[]},{"s":"GATEIO:VDRUSDT","d":[]},{"s":"KRAKEN:REPEUR","d":[]},{"s":"COINEX:PRIMEUSDT","d":[]},{"s":"UNISWAP3ETH:ELFIWETH_147AD5.USD","d":[]},{"s":"UNISWAP:GETHWETH_4B1E9A","d":[]},{"s":"BISWAP:CAKEWBNB_3D94D0","d":[]},{"s":"MEXC:USDCUSDT","d":[]},{"s":"HITBTC:SALTUSD","d":[]},{"s":"HITBTC:MATICUSDT","d":[]},{"s":"BYBIT:POLUSDT","d":[]},{"s":"BITFINEX:REQBTC","d":[]},{"s":"POLONIEX:PMGUSDT","d":[]},{"s":"POLONIEX:SBFUSDT","d":[]},{"s":"BITHUMB:ONITKRW","d":[]},{"s":"BYBIT:LUNCUSDC","d":[]},{"s":"UNISWAP:TSUYOKINAWETH_F88AEA.USD","d":[]},{"s":"GATEIO:STGUSDT","d":[]},{"s":"BYBIT:ALTUSDT.P","d":[]},{"s":"HITBTC:POLSBTC","d":[]},{"s":"UNISWAP:REALMWETH_0612F7.USD","d":[]},{"s":"UNISWAP3POLYGON:DOGWETH_785061.USD","d":[]},{"s":"MEXC:1INCHUSDT","d":[]},{"s":"UNISWAP:BLOBWETH_87D995","d":[]},{"s":"COINEX:DCKUSDT","d":[]},{"s":"MEXC:EVERUSDT","d":[]},{"s":"GATEIO:FNZUSDT","d":[]},{"s":"UNISWAP:BONDUSDC_6591C4","d":[]},{"s":"UNISWAP3ETH:BRISEWETH_A87DE1.USD","d":[]},{"s":"UNISWAP:BANKWETH_FA94EC.USD","d":[]},{"s":"PANGOLIN:NFSGROCO_5BF7AA.USD","d":[]},{"s":"UNISWAP:LSDWETH_B92FE0","d":[]},{"s":"BYBIT:STMXUSDT.P","d":[]},{"s":"GATEIO:NWCUSDT","d":[]},{"s":"UNISWAP3ETH:BELPWETH_16B415.USD","d":[]},{"s":"BTSE:TRBUSD.P","d":[]},{"s":"UNISWAP3ETH:CADCWETH_E8CF48.USD","d":[]},{"s":"UNISWAP:AGNWETH_E31499.USD","d":[]},{"s":"UNISWAP3ETH:VMPXXEN_54AE5E.USD","d":[]},{"s":"GATEIO:XNAUSDT","d":[]},{"s":"PHEMEX:HOTUSDT","d":[]},{"s":"TRADERJOE:HOSTDAIE_22F6FB","d":[]},{"s":"POLONIEX:DOGEBTC","d":[]},{"s":"QUICKSWAP:AMBERWMATIC_2E7D9D","d":[]},{"s":"UNISWAP3ETH:WETHTCAP","d":[]},{"s":"BITFLYER:XLMJPY","d":[]},{"s":"UNISWAP:NOVAWETH_87CCEB","d":[]},{"s":"UNISWAP3ETH:NFTYWETH","d":[]},{"s":"UNISWAP:SLASHAWETH_8AF006.USD","d":[]},{"s":"MEXC:PEPEBONKUSDT","d":[]},{"s":"PHEMEX:MATICUSDT","d":[]},{"s":"MEXC:GCCUSDT","d":[]},{"s":"DELTA:BTCUSDT","d":[]},{"s":"GATEIO:COFIUSDT","d":[]},{"s":"BITRUE:FLRUSDT","d":[]},{"s":"BINANCE:BCHTUSD","d":[]},{"s":"GATEIO:NSDXUSDT","d":[]},{"s":"UNISWAP:FROGSWETH_4256A5","d":[]},{"s":"MEXC:MEOUSDT","d":[]},{"s":"BISWAP:XLMWBNB_F7AA26","d":[]},{"s":"UNISWAP:HBOTWETH_E595C1.USD","d":[]},{"s":"BITFINEX:KANBTC","d":[]},{"s":"UNISWAP3POLYGON:MOCEANUSDC_3AF6C1.USD","d":[]},{"s":"BITRUE:ETCXRP","d":[]},{"s":"BINANCE:USTCFDUSD","d":[]},{"s":"UNISWAP:LUSDWETH_F20EF1","d":[]},{"s":"UNISWAP:MBXWETH_8A70B8","d":[]},{"s":"MEXC:EKTAUSDT","d":[]},{"s":"GATEIO:VELAUSDT","d":[]},{"s":"HITBTC:BANDBTC","d":[]},{"s":"UNISWAP3ETH:STCUSDC_684FB4.USD","d":[]},{"s":"BINANCE:BADGERUSDT","d":[]},{"s":"UNISWAP3ETH:LDOWETH_F4AD61.USD","d":[]},{"s":"UNISWAP3ETH:GALAWETH_F1DD35.USD","d":[]},{"s":"QUICKSWAP:ONEWMATIC_01CA94","d":[]},{"s":"UNISWAP:ETHEREUMWETH_BC63C8.USD","d":[]},{"s":"QUICKSWAP:FNCWETH_0F9BE0","d":[]},{"s":"POLONIEX:AIUSDT","d":[]},{"s":"COINEX:XPRTUSDT","d":[]},{"s":"UNISWAP3ETH:DEXTFUSDC","d":[]},{"s":"MEXC:ICTUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:LDOWETH_C66E44.USD","d":[]},{"s":"UNISWAP:BLAZEXWETH_6C110C","d":[]},{"s":"QUICKSWAP:OREWETH_D9284F","d":[]},{"s":"POLONIEX:ZRXUSD","d":[]},{"s":"UNISWAP3ETH:USDCPASS","d":[]},{"s":"PHEMEX:SUIUSDT","d":[]},{"s":"BITRUE:STPTUSDT","d":[]},{"s":"MEXC:UNFIUSDT.P","d":[]},{"s":"GATEIO:SOURCEUSDT","d":[]},{"s":"UNISWAP:GEORGEWETH_9D378C","d":[]},{"s":"COINBASE:HBARUSDT","d":[]},{"s":"BINANCE:DFUSDT","d":[]},{"s":"UNISWAP3ETH:SIFUUSDT_1A8E1F.USD","d":[]},{"s":"TRADERJOE:VSOWAVAX_00979B","d":[]},{"s":"BYBIT:BTCUSDC.P","d":[]},{"s":"BYBIT:AAVEUSDT.P","d":[]},{"s":"POLONIEX:BTTUSDD","d":[]},{"s":"MEXC:SOLUSDT","d":[]},{"s":"WHITEBIT:NEOUAH","d":[]},{"s":"UNISWAP3ETH:WBTCWETH_4585FE.USD","d":[]},{"s":"BISWAP:AXSWBNB_190585","d":[]},{"s":"MEXC:XNOUSDT.P","d":[]},{"s":"BISWAP:UNIWBNB_153DC2.USD","d":[]},{"s":"UNISWAP:REVHUBWETH_496CA5.USD","d":[]},{"s":"GATEIO:ATDUSDT","d":[]},{"s":"MEXC:QTZUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_6F38E8.USD","d":[]},{"s":"POLONIEX:BFICGOLDBFIC","d":[]},{"s":"UNISWAP:CRVWETH_3DA131","d":[]},{"s":"GATEIO:TCTUSDT","d":[]},{"s":"UNISWAP3ETH:RMVUSDT_E764B1.USD","d":[]},{"s":"UNISWAP3ARBITRUM:NEXTWETH_56EBD6.USD","d":[]},{"s":"UNISWAP3ETH:WETHMAHA","d":[]},{"s":"SPOOKYSWAP:FONTWFTM_1C8D76","d":[]},{"s":"UNISWAP3ETH:PUMLXWETH_F2B9A1.USD","d":[]},{"s":"WHITEBIT:USDTUAH","d":[]},{"s":"UNISWAP:KEKWETH_3405E4","d":[]},{"s":"BITFINEX:B2MUSD","d":[]},{"s":"BTSE:BALUSD.P","d":[]},{"s":"BINANCE:PORTOUSDT","d":[]},{"s":"HITBTC:MOBTC","d":[]},{"s":"BITFINEX:KAVABTC","d":[]},{"s":"UNISWAP3ETH:WETHRAD","d":[]},{"s":"UNISWAP3ETH:WETHMYRIA","d":[]},{"s":"SPOOKYSWAP:WVWFTM_DDD72A.USD","d":[]},{"s":"BYBIT:ADAUSDT.P","d":[]},{"s":"HITBTC:EVXUSD","d":[]},{"s":"UNISWAP:PUPPIESWETH_2325E3.USD","d":[]},{"s":"KRAKEN:APTUSD","d":[]},{"s":"UNISWAP3ETH:404CATSWETH","d":[]},{"s":"UNISWAP3POLYGON:USDCSNX_396A8C.USD","d":[]},{"s":"UNISWAP3ETH:TGBPWETH_80B01C.USD","d":[]},{"s":"MEXC:PSPUSDT","d":[]},{"s":"PHEMEX:BANDUSDT.P","d":[]},{"s":"SPOOKYSWAP:WETHUSDC_F26105","d":[]},{"s":"PHEMEX:HIGHUSDT.P","d":[]},{"s":"UNISWAP:LEMONWETH_7E54D5","d":[]},{"s":"UNISWAP3ETH:WETHDOGEGF","d":[]},{"s":"COINEX:ALPACAUSDT","d":[]},{"s":"UNISWAP3POLYGON:BONSAIWMATIC_CA1799.USD","d":[]},{"s":"WAGYUSWAP:WAGUSDT_47C049","d":[]},{"s":"COINEX:IDUSDT","d":[]},{"s":"COINEX:NOCHILLUSDT","d":[]},{"s":"GATEIO:REQUSDT","d":[]},{"s":"BLOFIN:ORDIUSDT.P","d":[]},{"s":"UNISWAP3ETH:RSS3WETH_D04D14.USD","d":[]},{"s":"UNISWAP3ETH:ANKRETHWETH_FF9704.USD","d":[]},{"s":"UNISWAP:CUTEWETH_9895EC.USD","d":[]},{"s":"UNISWAP3ETH:CCBCHWETH_571464.USD","d":[]},{"s":"HITBTC:TWTUSD","d":[]},{"s":"MEXC:OFNUSDT","d":[]},{"s":"UNISWAP:GOLDENWETH_3B7DF5.USD","d":[]},{"s":"UNISWAP3ETH:ATOSUSDT","d":[]},{"s":"UNISWAP3ETH:WOMBATWETH_5233C9.USD","d":[]},{"s":"MEXC:SNTUSDT","d":[]},{"s":"UNISWAP:TYRIONWETH_5FE638","d":[]},{"s":"WOONETWORK:GALUSDT","d":[]},{"s":"HITBTC:GSTSOLBTC","d":[]},{"s":"MEXC:FTTUSDC","d":[]},{"s":"UNISWAP:PIKAWETH_C31C59","d":[]},{"s":"UNISWAP3POLYGON:TAKIUSDC_C80724.USD","d":[]},{"s":"UNISWAP3ETH:PDTWETH","d":[]},{"s":"MEXC:MAGA2USDT","d":[]},{"s":"BYBIT:DZOOUSDT","d":[]},{"s":"BITGET:KINUSDT","d":[]},{"s":"UNISWAP3ETH:UDTWETH_22A073.USD","d":[]},{"s":"BLOFIN:ETCUSDT.P","d":[]},{"s":"BITFINEX:XAUTUST","d":[]},{"s":"UNISWAP3ETH:WETHAXS","d":[]},{"s":"BITGET:LAIUSDT","d":[]},{"s":"BISWAP:QUACKWBNB_0745B0","d":[]},{"s":"BITFINEX:AXSUST","d":[]},{"s":"GATEIO:HIDUSDT","d":[]},{"s":"BITGET:HIPPUSDT","d":[]},{"s":"TRADERJOE:KIOOWAVAX_F3F119.USD","d":[]},{"s":"QUICKSWAP:AXIAWETH_FA447E","d":[]},{"s":"UNISWAP:INSURUSDC_169BF7","d":[]},{"s":"WAGYUSWAP:VLXPADBUSD_060F4C","d":[]},{"s":"BITGET:CSIXUSDT","d":[]},{"s":"UNISWAP:HEELWETH_1123BB","d":[]},{"s":"UNISWAP3ETH:WETHATRI","d":[]},{"s":"GATEIO:MBSUSDT","d":[]},{"s":"UNISWAP:STOSWETH_80D972","d":[]},{"s":"UNISWAP:DOGEUSDT_FCD13E","d":[]},{"s":"KRAKEN:XMRUSD","d":[]},{"s":"QUICKSWAP:POLYPADWMATIC_4F0135","d":[]},{"s":"COINEX:WILDUSDT","d":[]},{"s":"QUICKSWAP:AMATICCWMATIC_E7D85C","d":[]},{"s":"QUICKSWAP:GSGWMATIC_AA6BA4","d":[]},{"s":"TRADERJOE:ECDWAVAX_218E6A.USD","d":[]},{"s":"PHEMEX:DARUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTL2","d":[]},{"s":"BYBIT:COMPUSDT","d":[]},{"s":"BINANCE:AIUSDT","d":[]},{"s":"BINGX:SLPUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDT_781067.USD","d":[]},{"s":"OKX:GMTUSDT.P","d":[]},{"s":"BITSTAMP:ADAEUR","d":[]},{"s":"COINEX:POKTBTC","d":[]},{"s":"UNISWAP:VITALEKWETH_C8733A.USD","d":[]},{"s":"MEXC:JETTONUSDT","d":[]},{"s":"UNISWAP3ETH:TRADEUSDT","d":[]},{"s":"BINANCE:JUPFDUSD","d":[]},{"s":"UNISWAP:DIAMONDHANDSWETH_ADF75A.USD","d":[]},{"s":"HITBTC:JASMYBTC","d":[]},{"s":"PIONEX:BONKUSDT.P","d":[]},{"s":"BINANCE:XECTRY","d":[]},{"s":"BITRUE:RLCUSDT","d":[]},{"s":"COINEX:RAYUSDT","d":[]},{"s":"UNISWAP:SWIPEWETH_DC720C.USD","d":[]},{"s":"BITSTAMP:XLMBTC","d":[]},{"s":"UNISWAP3ETH:WETHZERO","d":[]},{"s":"PHEMEX:GMTTUSDT","d":[]},{"s":"TRADERJOE:DWONKWAVAX_88F912","d":[]},{"s":"UNISWAP:F9WETH_459E4E","d":[]},{"s":"UPBIT:BTTKRW","d":[]},{"s":"UNISWAP3ETH:LDOUSDT","d":[]},{"s":"GATEIO:KFCUSDT","d":[]},{"s":"GATEIO:MINEUSDT","d":[]},{"s":"BINANCE:IDEXBTC","d":[]},{"s":"UNISWAP3ETH:SOTUWETH","d":[]},{"s":"HITBTC:BATUSDT","d":[]},{"s":"UNISWAP:GHXWETH_C6B9C3.USD","d":[]},{"s":"MEXC:SYSUSDT","d":[]},{"s":"MEXC:SAUSDT","d":[]},{"s":"PHEMEX:TRUUSDT.P","d":[]},{"s":"MEXC:KABOSUUSDT","d":[]},{"s":"MEXC:MYDOGSOLUSDT","d":[]},{"s":"BYBIT:QMALLUSDT","d":[]},{"s":"UNISWAP:MORVOLWETH_E2236C","d":[]},{"s":"DELTA:MATICUSDT.P","d":[]},{"s":"POLONIEX:BCHSVUSDT","d":[]},{"s":"HITBTC:CELRBTC","d":[]},{"s":"GATEIO:FIDAUSDT","d":[]},{"s":"GATEIO:BONDUSDT","d":[]},{"s":"BTSE:CELRUSD.P","d":[]},{"s":"HITBTC:CVNXUSD","d":[]},{"s":"COINEX:MOBILEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCONK","d":[]},{"s":"KRAKEN:MVEUR","d":[]},{"s":"UNISWAP3ETH:PASSWETH","d":[]},{"s":"UNISWAP3ETH:CGGWETH_3545D3.USD","d":[]},{"s":"MEXC:BEAIUSDT","d":[]},{"s":"UNISWAP:SALLYWETH_0EB9C7.USD","d":[]},{"s":"KRAKEN:FISEUR","d":[]},{"s":"BITRUE:DEGOUSDT","d":[]},{"s":"UNISWAP3ETH:DOOMWETH_B9D9BF.USD","d":[]},{"s":"TRADERJOE:JEWELUSDC_A05900","d":[]},{"s":"TRADERJOE:GBWAVAX_7EC396","d":[]},{"s":"KRAKEN:UNIETH","d":[]},{"s":"UNISWAP3ETH:USDCEWIT","d":[]},{"s":"SPOOKYSWAP:TRAVAWFTM_7AF191","d":[]},{"s":"POLONIEX:SANDBTC","d":[]},{"s":"PANGOLIN:AMPLWAVAX_E36AE3.USD","d":[]},{"s":"MEXC:XECUSDT.P","d":[]},{"s":"COINEX:ORNUSDT","d":[]},{"s":"BYBIT:MATICUSDC.P","d":[]},{"s":"MEXC:BANKBTCUSDT","d":[]},{"s":"UNISWAP:LISAWETH_24A50B","d":[]},{"s":"UNISWAP:DIAWETH_FE1FDC","d":[]},{"s":"QUICKSWAP:DAIUSDC_F04ADB","d":[]},{"s":"UNISWAP3OPTIMISM:VELOWETH_3249E3.USD","d":[]},{"s":"UNISWAP:COROLLAWETH_9B3F1D","d":[]},{"s":"UNISWAP3ETH:PANDORAUSDC_04E78C.USD","d":[]},{"s":"UNISWAP:SHIZUWETH_7B981F","d":[]},{"s":"BINANCE:WBTCUSDT","d":[]},{"s":"UNISWAP3ETH:REVVUSDT_BB5C29.USD","d":[]},{"s":"GATEIO:CREUSDT","d":[]},{"s":"GATEIO:RFRUSDT","d":[]},{"s":"UNISWAP:FROGSWETH_4256A5.USD","d":[]},{"s":"BITGET:ARPAUSDT.P","d":[]},{"s":"QUICKSWAP:WBTCWETH_DC9232","d":[]},{"s":"BITHUMB:KNCKRW","d":[]},{"s":"GATEIO:CRVUSDUSDT","d":[]},{"s":"HITBTC:AAVEBTC","d":[]},{"s":"GATEIO:NEOUSDT","d":[]},{"s":"UNISWAP:LAYERWETH_B1A824","d":[]},{"s":"HITBTC:ASTUSDT","d":[]},{"s":"COINBASE:AIOZUSD","d":[]},{"s":"POLONIEX:CHINUUSDT","d":[]},{"s":"BITSTAMP:BCHUSD","d":[]},{"s":"UNISWAP:PPAIWETH_A48515","d":[]},{"s":"PANGOLIN:VSOWAVAX_2B532B.USD","d":[]},{"s":"UNISWAP:HOODWETH_C1700C.USD","d":[]},{"s":"GATEIO:TSUGTUSDT","d":[]},{"s":"UNISWAP3ETH:MPLUSDC_858A2C.USD","d":[]},{"s":"BYBIT:ANKRUSDT","d":[]},{"s":"PIONEX:USTCUSDT.P","d":[]},{"s":"BITGET:DEVVEUSDT","d":[]},{"s":"PANGOLIN:GRELFAVAPNG_3AEB36.USD","d":[]},{"s":"UNISWAP:HIUSDC_E41650","d":[]},{"s":"BINANCE:SCRTUSDT","d":[]},{"s":"UNISWAP3ETH:POLYWETH_190A6E.USD","d":[]},{"s":"BITRUE:LTCUSDT","d":[]},{"s":"UNISWAP3ETH:WCOMAIUSDC_B76E7F.USD","d":[]},{"s":"PANGOLIN:UNIWAVAX_92DC55.USD","d":[]},{"s":"MEXC:RAITUSDT","d":[]},{"s":"COINEX:WELSHUSDT","d":[]},{"s":"UNISWAP3ETH:OLASWETH_18F7B3.USD","d":[]},{"s":"HITBTC:FLOWUSDT","d":[]},{"s":"BISWAP:ANKRWBNB_A2F0E2","d":[]},{"s":"GEMINI:ZECBTC","d":[]},{"s":"HITBTC:XNOUSD","d":[]},{"s":"GATEIO:ZZZUSDT","d":[]},{"s":"MEXC:MONIEUSDT","d":[]},{"s":"BYBIT:NFTUSDT","d":[]},{"s":"UNISWAP:APEDWETH_877193.USD","d":[]},{"s":"HITBTC:AVAETH","d":[]},{"s":"XEXCHANGE:WBTCWEGLD","d":[]},{"s":"MEXC:AURUSDT","d":[]},{"s":"UNISWAP:SISWETH_33D39E.USD","d":[]},{"s":"UNISWAP3ETH:WETHSCALE","d":[]},{"s":"UNISWAP3ETH:DROPSWETH_09B1CE.USD","d":[]},{"s":"UNISWAP3ETH:MMUSDC_84383F.USD","d":[]},{"s":"UNISWAP3ETH:DOLZUSDT_212025.USD","d":[]},{"s":"UNISWAP3POLYGON:WSTETHDCI_4FAFC6.USD","d":[]},{"s":"ZOOMEX:LINAUSDT.P","d":[]},{"s":"BINGX:SHIBUSDT.P","d":[]},{"s":"BITGET:ETCBTC","d":[]},{"s":"BITKUB:FTMTHB","d":[]},{"s":"UNISWAP3ETH:USDCMET","d":[]},{"s":"POLONIEX:SFARMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTOS","d":[]},{"s":"UNISWAP3ETH:WETHTSUKA","d":[]},{"s":"TRADERJOE:RBXWAVAX_77D674","d":[]},{"s":"BITFINEX:INJBTC","d":[]},{"s":"QUICKSWAP:AAVEWETH_90BC3E.USD","d":[]},{"s":"UNISWAP3ETH:USDCBPX","d":[]},{"s":"UNISWAP3ETH:LNDXWETH_9D8749.USD","d":[]},{"s":"KRAKEN:BRICKUSD","d":[]},{"s":"PANGOLIN:ZEEWAVAX_CF0EA8","d":[]},{"s":"UNISWAP:JEDIWETH_252BA9","d":[]},{"s":"WOONETWORK:BCHUSDT","d":[]},{"s":"POLONIEX:WTAOUSDT","d":[]},{"s":"PHEMEX:MATICUSDC","d":[]},{"s":"POLONIEX:SAVMUSDT","d":[]},{"s":"UNISWAP:CGVWETH_EDEE54","d":[]},{"s":"UNISWAP:AITWETH_4E34DA.USD","d":[]},{"s":"UNISWAP:TURBOWETH_455D4D","d":[]},{"s":"BINANCE:SUIBTC","d":[]},{"s":"UNISWAP3ETH:MIYAWETH","d":[]},{"s":"TRADERJOE:SLDWAVAX_CA9F25.USD","d":[]},{"s":"QUICKSWAP:SOLWMATIC_898386","d":[]},{"s":"UNISWAP:MAGWETH_D01436","d":[]},{"s":"UNISWAP3ETH:CALWETH_D3B4F5.USD","d":[]},{"s":"GATEIO:ICPUSDT.3L","d":[]},{"s":"BITGET:OVL3USDT","d":[]},{"s":"UNISWAP:GTHWETH_36A48C.USD","d":[]},{"s":"BISWAP:C98WBNB_38FD42","d":[]},{"s":"UNISWAP:SURVIVORWETH_E119FF.USD","d":[]},{"s":"COINBASE:ADAGBP","d":[]},{"s":"MEXC:FRZUSDT","d":[]},{"s":"UPBIT:IDKRW","d":[]},{"s":"POLONIEX:GPUUSDT","d":[]},{"s":"MEXC:RACAUSDT","d":[]},{"s":"UNISWAP:XPEPEWETH_6B2BFA","d":[]},{"s":"COINEX:P3DUSDT","d":[]},{"s":"BINGX:COMPUSDT.P","d":[]},{"s":"UNISWAP:TRUMPWETH_E4B858","d":[]},{"s":"POLONIEX:OXUSDT","d":[]},{"s":"UNISWAP:LOOTWETH_30FEEE.USD","d":[]},{"s":"COINEX:XPLAUSDT","d":[]},{"s":"GATEIO:MATICUSDT.3S","d":[]},{"s":"HITBTC:GLEECUSDT","d":[]},{"s":"BYBIT:KLAYUSDT.P","d":[]},{"s":"GATEIO:ASDUSDT","d":[]},{"s":"UNISWAP3ETH:RLBWETH_3157E1.USD","d":[]},{"s":"UNISWAP:ATORWETH_A7480A.USD","d":[]},{"s":"QUICKSWAP:TOWERWMATIC_C74E7A.USD","d":[]},{"s":"BINANCE:ETHDAI","d":[]},{"s":"QUICKSWAP:TDAODAI_93EF40.USD","d":[]},{"s":"MEXC:GECUSDT","d":[]},{"s":"BLOFIN:EDUUSDT.P","d":[]},{"s":"BINANCE:LTCEUR","d":[]},{"s":"KRAKEN:ICXEUR","d":[]},{"s":"HITBTC:RIFUSD","d":[]},{"s":"BINANCE:ELFETH","d":[]},{"s":"QUICKSWAP:PLOTQUICK_5278A5","d":[]},{"s":"UNISWAP3ETH:USDCPAX","d":[]},{"s":"MEXC:NLINKUSDT","d":[]},{"s":"GATEIO:MELIUSDT","d":[]},{"s":"MEXC:SLNUSDT","d":[]},{"s":"UNISWAP:CMSWETH_83524F.USD","d":[]},{"s":"UNISWAP:BLOBSWETH_C1C73C.USD","d":[]},{"s":"POLONIEX:FTMUSDT","d":[]},{"s":"UNISWAP3ETH:USDCZERO","d":[]},{"s":"UNISWAP3POLYGON:MOCAWETH_69E1E8.USD","d":[]},{"s":"TRADERJOE:YUSDWAVAX_E73E1A.USD","d":[]},{"s":"POLONIEX:MPWRUSDT","d":[]},{"s":"UNISWAP3ETH:USDCCND","d":[]},{"s":"GATEIO:SOULUSDT","d":[]},{"s":"GEMINI:ETHGUSD.P","d":[]},{"s":"BITRUE:DGBSOL","d":[]},{"s":"BYBIT:AUDIOUSDT.P","d":[]},{"s":"UPBIT:CTCKRW","d":[]},{"s":"UNISWAP3ETH:BORATWETH_AD7002.USD","d":[]},{"s":"GATEIO:ARSWUSDT","d":[]},{"s":"GATEIO:PSTUSDT","d":[]},{"s":"KRAKEN:JTOUSD","d":[]},{"s":"UNISWAP:0XSWETH_5AFF70.USD","d":[]},{"s":"UNISWAP3ETH:MTHUSDT","d":[]},{"s":"SPOOKYSWAP:TGOLDWFTM_874AFD","d":[]},{"s":"BINANCEUS:FILUSDT","d":[]},{"s":"WHITEBIT:HIFIUSDT","d":[]},{"s":"BINGX:GLMUSDT.P","d":[]},{"s":"PHEMEX:ADAUSDC","d":[]},{"s":"UNISWAP3ETH:GNOMEWETH_F5DE7D.USD","d":[]},{"s":"UNISWAP:VEEWETH_0E8CC2","d":[]},{"s":"UNISWAP:ROOKWETH_70EC2F","d":[]},{"s":"GATEIO:CRVUSDT","d":[]},{"s":"UNISWAP:GFWETH_2F0B14.USD","d":[]},{"s":"UNISWAP:CFIWETH_36938D","d":[]},{"s":"UNISWAP3ETH:GYENUSDC","d":[]},{"s":"TRADERJOE:GVILLEWAVAX_81FD7F.USD","d":[]},{"s":"QUICKSWAP:NLTUSDC_E371DC.USD","d":[]},{"s":"UNISWAP3ETH:ANKRWETH_13DC0A.USD","d":[]},{"s":"BITFINEX:SWEATUSD","d":[]},{"s":"ZOOMEX:LTCUSDT.P","d":[]},{"s":"GATEIO:ROSEUSDT","d":[]},{"s":"BLOFIN:IDUSDT.P","d":[]},{"s":"UNISWAP:ALITWETH_9D30D2.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCUSDC_9801F7.USD","d":[]},{"s":"BITFINEX:LEOETH","d":[]},{"s":"UNISWAP:DADAWETH_CEBBF0.USD","d":[]},{"s":"TRADERJOE:BAVAWAVAX_5A9071","d":[]},{"s":"BITGET:SPOOLUSDT","d":[]},{"s":"GATEIO:AIMXUSDT","d":[]},{"s":"ZOOMEX:UNFIUSDT.P","d":[]},{"s":"UNISWAP:CUTWETH_63D325","d":[]},{"s":"BITRUE:ICPUSDT","d":[]},{"s":"TRADERJOE:AIDUNCWAVAX_6D19ED","d":[]},{"s":"MEXC:ZINUUSDT","d":[]},{"s":"UNISWAP3ETH:WPLSDAI","d":[]},{"s":"GATEIO:BXHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSPICE","d":[]},{"s":"WHITEBIT:WAXPUSDT","d":[]},{"s":"KRAKEN:MNGOEUR","d":[]},{"s":"HITBTC:LUNABTC","d":[]},{"s":"UNISWAP3ETH:DAIOPUL","d":[]},{"s":"UNISWAP3ARBITRUM:GMDWETH_33FCFB.USD","d":[]},{"s":"QUICKSWAP:GPAYUSDC_F1E9A8","d":[]},{"s":"UNISWAP3ETH:LMEOWWETH","d":[]},{"s":"COINEX:SNSUSDT","d":[]},{"s":"BLOFIN:RNDRUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:SMOLSIZE_D32164.USD","d":[]},{"s":"BITGET:EMLUSDT","d":[]},{"s":"POLONIEX:QTUMUSDT","d":[]},{"s":"BISWAP:WBNBBUSD_ACAAC9","d":[]},{"s":"OKX:INJUSDT.P","d":[]},{"s":"COINEX:RBCUSDT","d":[]},{"s":"UNISWAP:BLZUSDC_5FA956","d":[]},{"s":"UNISWAP:COCWETH_39FB7A.USD","d":[]},{"s":"UNISWAP3ETH:DGIUSDT_9D442A.USD","d":[]},{"s":"PHEMEX:APEUSDT","d":[]},{"s":"KRAKEN:SHIBUSD","d":[]},{"s":"UNISWAP:RDDTWETH_1C7EF8","d":[]},{"s":"UNISWAP3ETH:MUSLIMWETH_F6E1D8.USD","d":[]},{"s":"UNISWAP:PUBLXWETH_0E8D2A","d":[]},{"s":"COINEX:ENJUSDC","d":[]},{"s":"UNISWAP3ETH:WETHFUTURE","d":[]},{"s":"QUICKSWAP:QUIDDWMATIC_ADBD18","d":[]},{"s":"UNISWAP3ETH:ABDSWETH","d":[]},{"s":"BINANCE:FLOKITRY","d":[]},{"s":"UNISWAP3ETH:ERRDBWETH_F70B11.USD","d":[]},{"s":"UNISWAP3ETH:USDTREQ","d":[]},{"s":"QUICKSWAP:XENDWMATIC_D13845.USD","d":[]},{"s":"POLONIEX:POLYUSDT","d":[]},{"s":"GATEIO:ADSUSDT","d":[]},{"s":"UNISWAP:SHILWETH_2C8666.USD","d":[]},{"s":"HITBTC:ETHUSDT","d":[]},{"s":"MEXC:HCUSDT","d":[]},{"s":"UNISWAP:HASHWETH_069526","d":[]},{"s":"SPOOKYSWAP:CREAMWFTM_B77B22","d":[]},{"s":"MEXC:SOLOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGOOBY2.0","d":[]},{"s":"COINEX:RPLUSDT","d":[]},{"s":"HITBTC:XDNBTC","d":[]},{"s":"HITBTC:PASSETH","d":[]},{"s":"UNISWAP:CAPSWETH_456FB0","d":[]},{"s":"BYBIT:GODSUSDT.P","d":[]},{"s":"UNISWAP:ESPRWETH_7235C4.USD","d":[]},{"s":"COINEX:LIKEUSDT","d":[]},{"s":"UNISWAP3ETH:RENQWETH","d":[]},{"s":"MEXC:FORTUSDT","d":[]},{"s":"BYBIT:DOMEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBULLFROG","d":[]},{"s":"GATEIO:BRICKUSDT","d":[]},{"s":"BLOFIN:ETHWUSDT.P","d":[]},{"s":"HITBTC:EDUUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GMXWETH_80A9AE.USD","d":[]},{"s":"UNISWAP3ETH:TOKAWETH_A7818F.USD","d":[]},{"s":"BISWAP:TWTWBNB_F1A12E.USD","d":[]},{"s":"BITFINEX:ATOUST","d":[]},{"s":"COINBASE:OXTUSD","d":[]},{"s":"TRADERJOE:TOOTHLESSWAVAX_AFBAF3.USD","d":[]},{"s":"UNISWAP3ETH:BYTESWETH","d":[]},{"s":"UNISWAP3ETH:WETHPYR","d":[]},{"s":"BITGET:APTUSDT.P","d":[]},{"s":"UNISWAP:ILUMWETH_90DA59.USD","d":[]},{"s":"UNISWAP3OPTIMISM:RETHWETH_8F477A.USD","d":[]},{"s":"MEXC:EXGOUSDT","d":[]},{"s":"COINBASE:MASKUSD","d":[]},{"s":"BITMEX:SUPERUSDT.P","d":[]},{"s":"UNISWAP3ETH:BAMWETH_7B460F.USD","d":[]},{"s":"UNISWAP:ASTRAWETH_4DF1C4","d":[]},{"s":"UNISWAP3ETH:WETHWAVAX","d":[]},{"s":"MEXC:AYAUSDT","d":[]},{"s":"BITGET:PLSUSDT","d":[]},{"s":"QUICKSWAP:CRI3XWMATIC_AC36F0.USD","d":[]},{"s":"UNISWAP:JOKERWETH_38A917","d":[]},{"s":"UNISWAP3ETH:DUSKUSDT","d":[]},{"s":"UNISWAP3POLYGON:MKRWMATIC_04E115.USD","d":[]},{"s":"UNISWAP3ETH:USDTULX","d":[]},{"s":"BITRUE:TRXETH","d":[]},{"s":"MEXC:CPAYUSDT","d":[]},{"s":"BITSTAMP:GUSDUSD","d":[]},{"s":"QUICKSWAP:LIQWMATIC_2F5A5E.USD","d":[]},{"s":"UNISWAP3ETH:PRIMEWETH","d":[]},{"s":"PANGOLIN:MFIUSDTE_F4880E.USD","d":[]},{"s":"GATEIO:ALGOUSDT.3S","d":[]},{"s":"UNISWAP:SARATOSHIWETH_2D247F","d":[]},{"s":"HITBTC:HUBBTC","d":[]},{"s":"UNISWAP3OPTIMISM:VEEWETH_F0D0E5.USD","d":[]},{"s":"UNISWAP:KABOWETH_E4D227.USD","d":[]},{"s":"BINGX:LINKUSDT.PS","d":[]},{"s":"UNISWAP:0X0WETH_9EC936","d":[]},{"s":"BINGX:TLMUSDT.P","d":[]},{"s":"TRADERJOE:COXWAVAX_D66483.USD","d":[]},{"s":"UNISWAP:LYXEWETH_D583D0.USD","d":[]},{"s":"TRADERJOE:ZJOEJOE_CF80E3","d":[]},{"s":"MEXC:INSTUSDT","d":[]},{"s":"BINANCE:ETHZAR","d":[]},{"s":"PANGOLIN:PTPWAVAX_A7A175.USD","d":[]},{"s":"UNISWAP3ETH:FPWETH","d":[]},{"s":"SPOOKYSWAP:BULLWFTM_70F5C6","d":[]},{"s":"UNISWAP3ETH:LQTYUSDT","d":[]},{"s":"BITRUE:XRPETH","d":[]},{"s":"UNISWAP3ETH:WETHSTOS","d":[]},{"s":"GATEIO:LBRUSDT","d":[]},{"s":"UNISWAP:HYPCWETH_CC0FCD.USD","d":[]},{"s":"BITGET:MOGUSDT","d":[]},{"s":"UNISWAP3ETH:RNGLINK","d":[]},{"s":"UNISWAP3ETH:WETHXD","d":[]},{"s":"COINBASE:SPELLUSD","d":[]},{"s":"UNISWAP:BUDDYWETH_996684.USD","d":[]},{"s":"UNISWAP3ETH:JAMWETH","d":[]},{"s":"QUICKSWAP:CULOWMATIC_DBCDBD","d":[]},{"s":"UNISWAP:TAMAWETH_E20745.USD","d":[]},{"s":"BINANCE:BTCBIDR","d":[]},{"s":"GATEIO:KLAYUSDT.3L","d":[]},{"s":"POLONIEX:MUMUUSDT","d":[]},{"s":"COINEX:EULUSDT","d":[]},{"s":"HITBTC:JSTUSDT","d":[]},{"s":"SPOOKYSWAP:YFIETH_0845C0","d":[]},{"s":"PHEMEX:DEFIUSDT","d":[]},{"s":"BITFINEX:XTPUST","d":[]},{"s":"BLOFIN:ARUSDT.P","d":[]},{"s":"GATEIO:REVVUSDT","d":[]},{"s":"UNISWAP:PNKWETH_343FD1.USD","d":[]},{"s":"UNISWAP3POLYGON:RNDRWMATIC_62C208.USD","d":[]},{"s":"UNISWAP3ETH:WETHARKM","d":[]},{"s":"BITGET:XRPETH","d":[]},{"s":"UNISWAP3POLYGON:MOONEYWMATIC_FEE18C.USD","d":[]},{"s":"BYBIT:HBARUSDT.P","d":[]},{"s":"COINEX:RIFUSDT","d":[]},{"s":"UNISWAP:PTKNWETH_B053B0.USD","d":[]},{"s":"BITGET:PMPYUSDT","d":[]},{"s":"GEMINI:RAREUSD","d":[]},{"s":"GATEIO:WOOUSDT.3S","d":[]},{"s":"KRAKEN:PAXGUSD.PM","d":[]},{"s":"BINANCE:ALTBNB","d":[]},{"s":"COINEX:KASUSDT","d":[]},{"s":"MEXC:JEWELUSDT","d":[]},{"s":"GATEIO:YFIUSDT.3S","d":[]},{"s":"UNISWAP:NFTPWETH_974EA1.USD","d":[]},{"s":"TRADERJOE:VSOWAVAX_00979B.USD","d":[]},{"s":"BYBIT:ETHUSDH2024","d":[]},{"s":"TRADERJOE:MADWAVAX_67F0BF.USD","d":[]},{"s":"UNISWAP3ETH:PASWETH","d":[]},{"s":"MEXC:YDFUSDT","d":[]},{"s":"BLOFIN:GRTUSDT.P","d":[]},{"s":"KRAKEN:ENJBTC","d":[]},{"s":"BITGET:SPELLUSDT","d":[]},{"s":"QUICKSWAP:BONDLYUSDC_4A32B3","d":[]},{"s":"BISWAP:SOLWBNB_3530F7.USD","d":[]},{"s":"MEXC:DPEXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFUMO","d":[]},{"s":"UPBIT:GRSKRW","d":[]},{"s":"UNISWAP3ETH:WETHPNT","d":[]},{"s":"UNISWAP3ETH:AIOZWETH","d":[]},{"s":"UNISWAP3OPTIMISM:BTC.BWETH_C078BE.USD","d":[]},{"s":"GATEIO:NBOTUSDT","d":[]},{"s":"UNISWAP:ZINUWETH_FCAD5C.USD","d":[]},{"s":"UNISWAP3ETH:TPROWETH_E21F4C.USD","d":[]},{"s":"UNISWAP3ETH:DINGERWETH_034948.USD","d":[]},{"s":"UNISWAP3ETH:MLUSDT_546CE7.USD","d":[]},{"s":"BINGX:EDUUSDT.PS","d":[]},{"s":"UNISWAP3ARBITRUM:AMKTWETH_94EAB5.USD","d":[]},{"s":"OKX:MASKUSDT.P","d":[]},{"s":"GATEIO:SLRSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHEXNT","d":[]},{"s":"BITFINEX:EUTBTC","d":[]},{"s":"TRADERJOE:QEWAVAX_29DD14","d":[]},{"s":"POLONIEX:JUPUSDT","d":[]},{"s":"WHITEBIT:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHJPG","d":[]},{"s":"GATEIO:APYSUSDT","d":[]},{"s":"UNISWAP:CCBWETH_5BCEB3.USD","d":[]},{"s":"GATEIO:VPUSDT","d":[]},{"s":"UNISWAP3ETH:PURPLEUSDC","d":[]},{"s":"BTSE:ADAUSD.P","d":[]},{"s":"COINEX:FLOKIUSDT","d":[]},{"s":"GATEIO:GALFANUSDT","d":[]},{"s":"COINEX:DPXUSDT","d":[]},{"s":"GATEIO:XTZUSDT.3L","d":[]},{"s":"WHITEBIT:ALGOUSDT","d":[]},{"s":"QUICKSWAP:SMTWMATIC_A38BEF.USD","d":[]},{"s":"POLONIEX:OCISLYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUMA","d":[]},{"s":"UNISWAP3ARBITRUM:WSTETHWETH_7103B8.USD","d":[]},{"s":"PIONEX:SANDUSDT.P","d":[]},{"s":"UNISWAP:MONGWETH_7054B0","d":[]},{"s":"GATEIO:SNYUSDT","d":[]},{"s":"UNISWAP:WAGYUWETH_73F1D5","d":[]},{"s":"BITGET:DOMEUSDT","d":[]},{"s":"BINANCE:WIFUSDT","d":[]},{"s":"HITBTC:RVNBTC","d":[]},{"s":"COINEX:TOKENUSDT","d":[]},{"s":"QUICKSWAP:SOFIUSDT_BDF395","d":[]},{"s":"GATEIO:FORMUSDT","d":[]},{"s":"BINANCEUS:KSMUSDT","d":[]},{"s":"COINEX:UNIUSDC","d":[]},{"s":"UNISWAP:CLAVELLWETH_ADF529.USD","d":[]},{"s":"UNISWAP3ETH:TOKENWETH_5DC6B1.USD","d":[]},{"s":"BITGET:BANDUSDT.P","d":[]},{"s":"UNISWAP:TCRVWETH_1215CD","d":[]},{"s":"BYBIT:STRMUSDT","d":[]},{"s":"KRAKEN:SAMOEUR","d":[]},{"s":"UNISWAP3ETH:WETHOS","d":[]},{"s":"QUICKSWAP:GETWETH_3F7918","d":[]},{"s":"BITGET:JSTUSDT","d":[]},{"s":"GATEIO:ATOMUSDT.3L","d":[]},{"s":"POLONIEX:DIAUSDT","d":[]},{"s":"UNISWAP:PEPEWETH_BC3126.USD","d":[]},{"s":"UNISWAP3ETH:MPSUSDC","d":[]},{"s":"BITHUMB:EDUKRW","d":[]},{"s":"UNISWAP:PEPINUWETH_1CF4B2.USD","d":[]},{"s":"DYDX:1INCHUSD.P","d":[]},{"s":"MEXC:BABYBONKUSDT","d":[]},{"s":"GATEIO:FLRUSDT","d":[]},{"s":"PIONEX:LPTUSDT.P","d":[]},{"s":"UNISWAP3ETH:HDRNHEX_DD475E.USD","d":[]},{"s":"UNISWAP:SKEYWETH_F346D0.USD","d":[]},{"s":"UNISWAP:DOGE1WETH_D55287.USD","d":[]},{"s":"COINEX:PRISMAUSDT","d":[]},{"s":"UNISWAP:DIBBLEWETH_67A5E4","d":[]},{"s":"HITBTC:ALICEBTC","d":[]},{"s":"PANGOLIN:JEWELWAVAX_9AA76A","d":[]},{"s":"MEXC:CROUSDT.P","d":[]},{"s":"UNISWAP:ETHEREUMWETH_18EBA6.USD","d":[]},{"s":"UNISWAP:JANUSDT_6AEBF1","d":[]},{"s":"BITGET:DGIUSDT","d":[]},{"s":"BITMEX:XBTUSDH2024","d":[]},{"s":"MEXC:FOXUSDT","d":[]},{"s":"BITKUB:BATTHB","d":[]},{"s":"SPOOKYSWAP:TARTWFTM_09EB3A.USD","d":[]},{"s":"UNISWAP:DUCKWETH_C5ED73.USD","d":[]},{"s":"BINANCE:CHZUSD.P","d":[]},{"s":"UNISWAP3POLYGON:SMTWMATIC_F699CD.USD","d":[]},{"s":"QUICKSWAP:STZUSDC_AD308B","d":[]},{"s":"GATEIO:MIRUSDT","d":[]},{"s":"UNISWAP:RISEWETH_7250F7","d":[]},{"s":"BLOFIN:OPUSDT.P","d":[]},{"s":"COINEX:BTCUSDT","d":[]},{"s":"PANGOLIN:PRXWAVAX_650F65.USD","d":[]},{"s":"UNISWAP:DOGE1WETH_C0263B.USD","d":[]},{"s":"OKX:JTOUSDT.P","d":[]},{"s":"UNISWAP3ETH:MBXUSDT","d":[]},{"s":"BITMEX:SHIBUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSETH","d":[]},{"s":"UNISWAP:PINCHIWETH_4D4AB2.USD","d":[]},{"s":"TRADERJOE:WOLFCOQWAVAX_810A5E","d":[]},{"s":"MEXC:CGVUSDT","d":[]},{"s":"UNISWAP:AKROWETH_8CB77E","d":[]},{"s":"GATEIO:CLOUSDT","d":[]},{"s":"BINGX:PYTHUSDT.P","d":[]},{"s":"UNISWAP:NWETH_10BDE4","d":[]},{"s":"UNISWAP:THNDWETH_974771.USD","d":[]},{"s":"BINANCE:MANTABNB","d":[]},{"s":"BINGX:KNCUSDT.PS","d":[]},{"s":"GATEIO:NMRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSUSHI","d":[]},{"s":"UNISWAP:INFRAWETH_FDCDED.USD","d":[]},{"s":"UNISWAP:MUSEWETH_20D2C1.USD","d":[]},{"s":"UNISWAP:POFIWETH_4B2ACD.USD","d":[]},{"s":"GATEIO:BLURUSDT","d":[]},{"s":"KRAKEN:AUDIOUSD","d":[]},{"s":"UNISWAP:MNTWETH_E04B5A","d":[]},{"s":"QUICKSWAP:PMATICWMATIC_05EFA0","d":[]},{"s":"BINANCE:IRISBTC","d":[]},{"s":"UNISWAP:KEKEWETH_DBB9F2","d":[]},{"s":"UNISWAP3ETH:CREUSDT_CB250D.USD","d":[]},{"s":"SPOOKYSWAP:WFTMUSDC_90469A","d":[]},{"s":"UNISWAP3POLYGON:FACTRWMATIC_CB518D.USD","d":[]},{"s":"KRAKEN:XRPEUR","d":[]},{"s":"UNISWAP3ETH:MIXUSDT_286F65.USD","d":[]},{"s":"KRAKEN:BATEUR","d":[]},{"s":"UNISWAP:TIADAOWETH_39785F.USD","d":[]},{"s":"UNISWAP3ETH:BADGERWBTC","d":[]},{"s":"UNISWAP:CHANCEWETH_CC741A.USD","d":[]},{"s":"MEXC:SPUMEUSDT","d":[]},{"s":"BINGX:NEOUSDT.P","d":[]},{"s":"UNISWAP:CMBOTWETH_0CA1BB","d":[]},{"s":"UNISWAP:LUCKYSLPWETH_FD181F.USD","d":[]},{"s":"UNISWAP:SNSWETH_9D07DC","d":[]},{"s":"BITFINEX:APEUST","d":[]},{"s":"MEXC:TOMIUSDT","d":[]},{"s":"BITSTAMP:SUIUSD","d":[]},{"s":"MEXC:SKYDROMEUSDT","d":[]},{"s":"SPOOKYSWAP:GRAVEWFTM_DF5958","d":[]},{"s":"UNISWAP:PBTWETH_47AF7E","d":[]},{"s":"KRAKEN:BNTEUR","d":[]},{"s":"UNISWAP:TENSHIWETH_879DB9.USD","d":[]},{"s":"WOONETWORK:ATOMUSDT","d":[]},{"s":"UNISWAP3POLYGON:SYNWMATIC_F09A1B.USD","d":[]},{"s":"TRADERJOE:XAVAWAVAX_72C343.USD","d":[]},{"s":"COINBASE:APTUSDT","d":[]},{"s":"UNISWAP3POLYGON:PUSDPERI_D4C838.USD","d":[]},{"s":"BITGET:DFIUSDT","d":[]},{"s":"BITGET:API3USDT","d":[]},{"s":"UNISWAP3ETH:ENJWETH","d":[]},{"s":"UNISWAP3ETH:LYXEWETH_2418C4.USD","d":[]},{"s":"BLOFIN:1CATUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:RNDRWMATIC_1E5BD2.USD","d":[]},{"s":"BITRUE:BATUSDC","d":[]},{"s":"UNISWAP:WOOFIEWETH_C48093.USD","d":[]},{"s":"BINANCE:TUSDT","d":[]},{"s":"UNISWAP:TAONUWETH_00AA54","d":[]},{"s":"BITFINEX:DOTBTC","d":[]},{"s":"UNISWAP:AAVEWETH_DFC14D.USD","d":[]},{"s":"DELTA:XRPUSDT.P","d":[]},{"s":"BITFINEX:AVAXBTC","d":[]},{"s":"GATEIO:ZTGUSDT","d":[]},{"s":"UNISWAP3ETH:MATICUSDC_07A6E9.USD","d":[]},{"s":"BITHUMB:WOMKRW","d":[]},{"s":"UNISWAP3ETH:DOLLARMILLIWAYSWETH","d":[]},{"s":"UNISWAP3ETH:FOREXWETH","d":[]},{"s":"UNISWAP3ETH:WETHDPS","d":[]},{"s":"PHEMEX:LTCUSDC","d":[]},{"s":"BLOFIN:HNTUSDT.P","d":[]},{"s":"HITBTC:CNDUSD","d":[]},{"s":"HITBTC:TELETH","d":[]},{"s":"BINGX:KEYUSDT.P","d":[]},{"s":"ZOOMEX:WLDUSDT.P","d":[]},{"s":"PHEMEX:PONDUSDT","d":[]},{"s":"HITBTC:YGGUSDC","d":[]},{"s":"UNISWAP:VEIL404WETH_99ACCD.USD","d":[]},{"s":"BITGET:GMEEUSDT","d":[]},{"s":"PIONEX:IDUSDT.P","d":[]},{"s":"MEXC:SRDSUSDT","d":[]},{"s":"BITSTAMP:PEPEUSD","d":[]},{"s":"KRAKEN:ETHEUR","d":[]},{"s":"HITBTC:ZRXUSDC","d":[]},{"s":"MEXC:VRCUSDT","d":[]},{"s":"COINBASE:RLCUSD","d":[]},{"s":"POLONIEX:ROCKUSDT","d":[]},{"s":"BITFINEX:WILDUST","d":[]},{"s":"UNISWAP3ETH:WMCWETH","d":[]},{"s":"UNISWAP:BBOXWETH_7C54F6","d":[]},{"s":"UNISWAP:SAITABITWBTC_0A8E80.USD","d":[]},{"s":"MEXC:GMMUSDT","d":[]},{"s":"BITFINEX:HTXUSD","d":[]},{"s":"COINEX:BSSBUSDT","d":[]},{"s":"PHEMEX:1000FLOKIUSDT","d":[]},{"s":"PIONEX:ZENUSDT.P","d":[]},{"s":"MEXC:GPTUSDT.P","d":[]},{"s":"UNISWAP:RCNWETH_F0936E","d":[]},{"s":"GEMINI:QRDOUSD","d":[]},{"s":"UNISWAP3ETH:WETHFP","d":[]},{"s":"COINEX:BRWLUSDT","d":[]},{"s":"UPBIT:SCKRW","d":[]},{"s":"HITBTC:FTMUSD","d":[]},{"s":"GATEIO:UNCXUSDT","d":[]},{"s":"PANGOLIN:APEINWAVAX_8DED94","d":[]},{"s":"BITGET:AGIXUSDT.P","d":[]},{"s":"COINEX:STEEMBTC","d":[]},{"s":"SPOOKYSWAP:SDUSDC_EAA3C8","d":[]},{"s":"SPOOKYSWAP:CHARMWFTM_69B482","d":[]},{"s":"KRAKEN:FETUSD.PM","d":[]},{"s":"UNISWAP3ETH:XORWETH","d":[]},{"s":"UNISWAP3ETH:ZEROWETH","d":[]},{"s":"COINEX:TOWERUSDT","d":[]},{"s":"GATEIO:PINEUSDT","d":[]},{"s":"UNISWAP:DOBOWETH_54BD05.USD","d":[]},{"s":"POLONIEX:NLCUSDT","d":[]},{"s":"UNISWAP:HOKKWETH_F0510F","d":[]},{"s":"MEXC:OOKIUSDT","d":[]},{"s":"UNISWAP3ETH:STTAOUSDC_B0E573.USD","d":[]},{"s":"UNISWAP3ETH:WETHPCH","d":[]},{"s":"TRADERJOE:MONEYWAVAX_66D12E","d":[]},{"s":"UNISWAP3ETH:WETHRAE","d":[]},{"s":"UNISWAP:RAINWETH_C4A8C2","d":[]},{"s":"BYBIT:IOTAUSDT.P","d":[]},{"s":"BINANCE:ATOMFDUSD","d":[]},{"s":"BINANCE:BEAMXUSDT","d":[]},{"s":"TRADERJOE:CHECKWAVAX_5579CA","d":[]},{"s":"UNISWAP3POLYGON:FXVERSEWMATIC_EC95C8.USD","d":[]},{"s":"PHEMEX:ADAUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:BXCWMATIC_60DF85.USD","d":[]},{"s":"UNISWAP3ETH:RAINIWETH","d":[]},{"s":"GATEIO:FRRUSDT","d":[]},{"s":"TRADERJOE:NODLWAVAX_3F9BA2","d":[]},{"s":"QUICKSWAP:SHIBWMATIC_5FB641","d":[]},{"s":"MEXC:WACMEUSDT","d":[]},{"s":"BINANCE:GRTETH","d":[]},{"s":"MEXC:SUIUSDT","d":[]},{"s":"UNISWAP:PIKAWETH_EE5FFA.USD","d":[]},{"s":"HITBTC:ZILBTC","d":[]},{"s":"PIONEX:NKNUSDT.P","d":[]},{"s":"UNISWAP:SENATEWETH_9572E4","d":[]},{"s":"UNISWAP:OCISLYWETH_C32C2D","d":[]},{"s":"HITBTC:PSGUSDT","d":[]},{"s":"MEXC:NEBLUSDT","d":[]},{"s":"POLONIEX:WNXMUSDT","d":[]},{"s":"UNISWAP:GOVIWETH_1EE312","d":[]},{"s":"PHEMEX:LPTUSDT.P","d":[]},{"s":"UNISWAP:DUMMYWETH_F827FA","d":[]},{"s":"BITKUB:UNITHB","d":[]},{"s":"UNISWAP3ARBITRUM:REKTWETH_AF1F6C.USD","d":[]},{"s":"TRADERJOE:SHEIKWAVAX_D66891.USD","d":[]},{"s":"BYBIT:AVAXUSDT.2L","d":[]},{"s":"UNISWAP3ARBITRUM:NOISEGPTWETH_DA5660.USD","d":[]},{"s":"COINEX:GNOUSDT","d":[]},{"s":"UNISWAP3ETH:SLRWETH_149651.USD","d":[]},{"s":"BITSTAMP:ENSUSD","d":[]},{"s":"HITBTC:DASHBTC","d":[]},{"s":"BITGET:ALTUSDT","d":[]},{"s":"BLOFIN:EOSUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:LINKWETH_19EA02.USD","d":[]},{"s":"POLONIEX:WLKNUSDT","d":[]},{"s":"HITBTC:ARRRBTC","d":[]},{"s":"GATEIO:WESTUSDT","d":[]},{"s":"MEXC:JASMYUSDT.P","d":[]},{"s":"PIONEX:CRVUSDT.P","d":[]},{"s":"ZOOMEX:1000PEPEUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTWTAO","d":[]},{"s":"BINANCEUS:OXTUSDT","d":[]},{"s":"BITMEX:XRPUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCFOLD","d":[]},{"s":"UNISWAP:SUWETH_EF94DC","d":[]},{"s":"BISWAP:LIQWBNB_99E338","d":[]},{"s":"UNISWAP:CHADINDEXWETH_2DB071","d":[]},{"s":"UNISWAP:DOGEAIWETH_26AA7D","d":[]},{"s":"POLONIEX:REEFUSDT","d":[]},{"s":"UNISWAP:AEVOWETH_2DE216.USD","d":[]},{"s":"UNISWAP:UNCXWETH_C70BB2","d":[]},{"s":"TIMEX:ETHAUDT","d":[]},{"s":"POLONIEX:AKROUSDT","d":[]},{"s":"BINGX:BTCUSDT.P","d":[]},{"s":"GATEIO:ETHUSDT.5S","d":[]},{"s":"SPOOKYSWAP:JONESWFTM_21612A.USD","d":[]},{"s":"UNISWAP3ETH:SPELLWETH_2138A1.USD","d":[]},{"s":"UNISWAP:DOGE20WETH_D99034","d":[]},{"s":"ZOOMEX:STORJUSDT.P","d":[]},{"s":"HITBTC:ZSCUSDT","d":[]},{"s":"QUICKSWAP:NSDXUSDC_56B893","d":[]},{"s":"UNISWAP3ETH:WETHMFERS","d":[]},{"s":"UNISWAP3ETH:USDTMOOX","d":[]},{"s":"UNISWAP3ETH:BEDWETH","d":[]},{"s":"COINEX:SXPUSDT","d":[]},{"s":"UNISWAP:BADWETH_29C830","d":[]},{"s":"KRAKEN:AAVEUSD.PM","d":[]},{"s":"BITGET:TOMIUSDT","d":[]},{"s":"BITGET:RPLUSDT","d":[]},{"s":"UNISWAP3ETH:REEFWETH_52414C.USD","d":[]},{"s":"UNISWAP3ETH:WETHLCSN","d":[]},{"s":"POLONIEX:TRXUSDD","d":[]},{"s":"BITFINEX:ZILBTC","d":[]},{"s":"TRADERJOE:VIAGRAWAVAX_954757","d":[]},{"s":"UNISWAP:BLENDWETH_BB02C1","d":[]},{"s":"BITSTAMP:FETUSD","d":[]},{"s":"BYBIT:KAVAUSDT","d":[]},{"s":"BITKUB:ABTTHB","d":[]},{"s":"UNISWAP:UBWETH_DA3D83","d":[]},{"s":"UNISWAP3ETH:WETHFOAM","d":[]},{"s":"TRADERJOE:SOBWAVAX_B5048A.USD","d":[]},{"s":"UNISWAP:MVPWETH_2B7D0C.USD","d":[]},{"s":"GATEIO:AGSUSDT","d":[]},{"s":"UNISWAP:NEBOWETH_1657A2.USD","d":[]},{"s":"PHEMEX:IMXUSDT.P","d":[]},{"s":"UNISWAP:BETSWETH_A4592E","d":[]},{"s":"UNISWAP:CHARSTARAIWETH_848EF7.USD","d":[]},{"s":"UNISWAP3ETH:WETHRIPDOGE","d":[]},{"s":"HITBTC:BOSONBTC","d":[]},{"s":"HITBTC:OAXUSDT","d":[]},{"s":"COINEX:SLPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHOETH","d":[]},{"s":"UNISWAP:VABWETH_37DE1B.USD","d":[]},{"s":"BITHUMB:SFPKRW","d":[]},{"s":"HITBTC:PORTOUSDT","d":[]},{"s":"UNISWAP:ATHWETH_AB239E.USD","d":[]},{"s":"UNISWAP:TRVLWETH_827CBD.USD","d":[]},{"s":"MEXC:XAVAUSDT","d":[]},{"s":"QUICKSWAP:POLXWMATIC_EE3213","d":[]},{"s":"UNISWAP:QRWETH_AECA06","d":[]},{"s":"BITFINEX:SOLUST","d":[]},{"s":"UNISWAP:BORINGWETH_AACBF2","d":[]},{"s":"BINANCE:SXPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHOKB","d":[]},{"s":"UNISWAP:FCLWETH_DEC87F.USD","d":[]},{"s":"HITBTC:STAKBTC","d":[]},{"s":"UNISWAP3ETH:MULLETWETH","d":[]},{"s":"POLONIEX:ETHUSD","d":[]},{"s":"MEXC:MOBRCUSDT","d":[]},{"s":"BITHUMB:MXCKRW","d":[]},{"s":"UNISWAP:KNINEWETH_D7CEF1.USD","d":[]},{"s":"UNISWAP:KAIJUWETH_DA8F06.USD","d":[]},{"s":"QUICKSWAP:NXTTWMATIC_F25C87","d":[]},{"s":"MEXC:BLURUSDT.P","d":[]},{"s":"GATEIO:SKRTUSDT","d":[]},{"s":"ZOOMEX:OGNUSDT.P","d":[]},{"s":"BINANCE:CHESSUSDT","d":[]},{"s":"UNISWAP:BBLWETH_74E7B2","d":[]},{"s":"COINBASE:CVXUSD","d":[]},{"s":"WHITEBIT:BTCUSD","d":[]},{"s":"BISWAP:WINWBNB_5D55C0","d":[]},{"s":"UNISWAP:MLORDWETH_E0C006","d":[]},{"s":"GATEIO:CYSUSDT","d":[]},{"s":"BYBIT:PPTUSDT","d":[]},{"s":"POLONIEX:SUNUSDD","d":[]},{"s":"UNISWAP3ETH:TSUKAUSDC_216FB6.USD","d":[]},{"s":"GATEIO:OKBUSDT.3L","d":[]},{"s":"UNISWAP3ETH:USDTWMINIMA","d":[]},{"s":"MEXC:CGGUSDT","d":[]},{"s":"QUICKSWAP:POLYPADWMATIC_4F0135.USD","d":[]},{"s":"BITRUE:LTCXRP","d":[]},{"s":"PHEMEX:BTCUSD.P","d":[]},{"s":"BYBIT:10000NFTUSDT.P","d":[]},{"s":"MEXC:BTCUSDC","d":[]},{"s":"COINEX:MOCKJUPUSDT","d":[]},{"s":"UNISWAP:CABWETH_271972","d":[]},{"s":"TRADERJOE:STACKWAVAX_516C0B","d":[]},{"s":"TRADERJOE:FEEDEGG_AADF57.USD","d":[]},{"s":"UNISWAP3ETH:USDTONDO","d":[]},{"s":"BITFINEX:AVAXUSD","d":[]},{"s":"UNISWAP3ETH:PARUSDC","d":[]},{"s":"UNISWAP3ETH:HIFIUSDC","d":[]},{"s":"QUICKSWAP:BITEWETH_2D7D4D.USD","d":[]},{"s":"UNISWAP3ETH:RAILWETH","d":[]},{"s":"BINANCE:EDUUSDT","d":[]},{"s":"UNISWAP:X2Y2WETH_603336.USD","d":[]},{"s":"DELTA:INJUSDT.P","d":[]},{"s":"UNISWAP:ELYWETH_EED363.USD","d":[]},{"s":"PIONEX:DOGEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WPLSWETH_BF9CFC.USD","d":[]},{"s":"UNISWAP3ETH:WETHAXL","d":[]},{"s":"UNISWAP:HEXWETH_55D5C2.USD","d":[]},{"s":"WHITEBIT:EURTUSDT","d":[]},{"s":"UNISWAP:MAGWETH_D01436.USD","d":[]},{"s":"UNISWAP3ETH:TOKAWETH","d":[]},{"s":"COINBASE:BATBTC","d":[]},{"s":"MEXC:ZKFUSDT","d":[]},{"s":"UNISWAP:ROOWETH_FF578A.USD","d":[]},{"s":"MEXC:RCMUSDT","d":[]},{"s":"BYBIT:JSTUSDT","d":[]},{"s":"UNISWAP:FWTUSDC_FEE8F2","d":[]},{"s":"QUICKSWAP:UNDUSDC_55A08B","d":[]},{"s":"MEXC:XAIUSDT","d":[]},{"s":"BINANCEUS:GALAUSDT","d":[]},{"s":"POLONIEX:XLMBTC","d":[]},{"s":"BISWAP:AXSWBNB_190585.USD","d":[]},{"s":"PHEMEX:BIGTIMEUSDT.P","d":[]},{"s":"TRADERJOE:GXTWAVAX_776DB9.USD","d":[]},{"s":"WOONETWORK:CHZUSDT","d":[]},{"s":"TRADERJOE:KOVINCOQ_A8CBCC.USD","d":[]},{"s":"GATEIO:SHFTUSDT","d":[]},{"s":"UNISWAP3POLYGON:MNWWETH_426A2C.USD","d":[]},{"s":"MEXC:DOGAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGPC","d":[]},{"s":"UNISWAP3ETH:AAVEWBTC","d":[]},{"s":"UNISWAP:XSUNCWETH_67A0B9","d":[]},{"s":"OKX:STXUSDT.P","d":[]},{"s":"GATEIO:ALCXUSDT","d":[]},{"s":"ZOOMEX:HBARUSDT.P","d":[]},{"s":"MEXC:CAPOUSDT","d":[]},{"s":"UNISWAP:PEPECASHWETH_BE42FA.USD","d":[]},{"s":"COINEX:METAUSDT","d":[]},{"s":"UNISWAP3POLYGON:KLIMAUSDC_BA3B82.USD","d":[]},{"s":"UNISWAP:DOLAWETH_ECFBE9","d":[]},{"s":"UNISWAP3ETH:WARWETH","d":[]},{"s":"UNISWAP:PEEPEEWETH_9ECDAE","d":[]},{"s":"UNISWAP:BONKIWETH_30E9F1","d":[]},{"s":"BITRUE:CRVUSDT","d":[]},{"s":"BINGX:RNDRUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WETHDAI_A961F0.USD","d":[]},{"s":"COINEX:DEFIUSDT","d":[]},{"s":"WHITEBIT:LOOMUSDT.P","d":[]},{"s":"BTSE:WLDUSD.P","d":[]},{"s":"UNISWAP3ETH:VXVWETH_CBBC98.USD","d":[]},{"s":"UNISWAP3ETH:WSTETHWETH_109830.USD","d":[]},{"s":"SPOOKYSWAP:1ARTWFTM_671225.USD","d":[]},{"s":"QUICKSWAP:WBTCWMATIC_F6B871","d":[]},{"s":"SPOOKYSWAP:SCARWFTM_D2573A","d":[]},{"s":"MEXC:WOOOOOUSDT","d":[]},{"s":"BITGET:ATOMUSDT","d":[]},{"s":"BYBIT:STXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHALLBI","d":[]},{"s":"COINEX:YFIUSDC","d":[]},{"s":"UNISWAP:NUWETH_3A8AFC.USD","d":[]},{"s":"POLONIEX:IOUSDT","d":[]},{"s":"KRAKEN:MLNEUR","d":[]},{"s":"UNISWAP3ETH:ANTWETH_CD4391.USD","d":[]},{"s":"UNISWAP3ETH:TRIASWETH","d":[]},{"s":"MEXC:RDNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:LUSDWETH","d":[]},{"s":"UNISWAP:XDWETH_42D831.USD","d":[]},{"s":"COINBASE:IMXUSDT","d":[]},{"s":"QUICKSWAP:YAYOWMATIC_16590B","d":[]},{"s":"UNISWAP:CTRLWETH_8AEF2B.USD","d":[]},{"s":"HITBTC:IOTAUSDT","d":[]},{"s":"MEXC:AIBBUSDT","d":[]},{"s":"MEXC:DAPPXUSDT","d":[]},{"s":"QUICKSWAP:UNIXWMATIC_4E7FC7.USD","d":[]},{"s":"COINEX:PEPE2USDT","d":[]},{"s":"TRADERJOE:SAFEMOONAWAVAX_8E8258.USD","d":[]},{"s":"BLOFIN:IDEXUSDT.P","d":[]},{"s":"OKX:ZRXUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTFDUSD","d":[]},{"s":"GATEIO:XDCUSDT","d":[]},{"s":"UNISWAP:SCAPEWETH_BFE799","d":[]},{"s":"GEMINI:MATICGUSD.P","d":[]},{"s":"UNISWAP:CUBEWETH_F6C359","d":[]},{"s":"UNISWAP:FOURWETH_B15624","d":[]},{"s":"UNISWAP:VPPWETH_A24501.USD","d":[]},{"s":"UNISWAP3ETH:RAINWETH_30D7C1.USD","d":[]},{"s":"COINBASE:RNDRUSDT","d":[]},{"s":"UNISWAP:FLXWETH_D6F376.USD","d":[]},{"s":"PHEMEX:OGNUSDT.P","d":[]},{"s":"HITBTC:SPELLBTC","d":[]},{"s":"WAGYUSWAP:BUSDUSDT_115E5B","d":[]},{"s":"WOONETWORK:UBAYCUSDT","d":[]},{"s":"MEXC:JB2024USDT","d":[]},{"s":"UNISWAP3ETH:WPISDEX_E4F78D.USD","d":[]},{"s":"GATEIO:PIZABRCUSDT","d":[]},{"s":"COINBASE:ICPUSDT","d":[]},{"s":"UPBIT:MVLKRW","d":[]},{"s":"HITBTC:EDGBTC","d":[]},{"s":"TRADERJOE:MEOWWAVAX_BBF8E4","d":[]},{"s":"UNISWAP:MEOWWETH_19F026.USD","d":[]},{"s":"UNISWAP3ETH:USDCPEPE","d":[]},{"s":"UNISWAP3ETH:USDCNMR","d":[]},{"s":"UNISWAP3POLYGON:EUREUSDC_311647.USD","d":[]},{"s":"BITGET:APEUSDT","d":[]},{"s":"MEXC:MULTIUSDT","d":[]},{"s":"GATEIO:ADELUSDT","d":[]},{"s":"BITGET:AREAUSDT","d":[]},{"s":"BITGET:BABYELONUSDT","d":[]},{"s":"MEXC:FYNUSDT","d":[]},{"s":"BITGET:AVAXUSDC","d":[]},{"s":"GATEIO:ARBUSDT","d":[]},{"s":"DERIBIT:ADAUSDC.P","d":[]},{"s":"MEXC:STLUSDT","d":[]},{"s":"TRADERJOE:SKYWAVAX_471E63","d":[]},{"s":"MEXC:SEIUSDT","d":[]},{"s":"QUICKSWAP:OMPUSDT_9375DF","d":[]},{"s":"BINANCE:LUNATRY","d":[]},{"s":"QUICKSWAP:GLMWETH_7CAAC6","d":[]},{"s":"UNISWAP3ETH:DMTWETH","d":[]},{"s":"UNISWAP:ZEROWETH_1E11FC.USD","d":[]},{"s":"HITBTC:SEIUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:TWETH_C60D58.USD","d":[]},{"s":"BITGET:JOEUSDT.P","d":[]},{"s":"UNISWAP3ETH:NMRWETH_4B1F89.USD","d":[]},{"s":"PHEMEX:AGIXUSDT.P","d":[]},{"s":"UNISWAP3ETH:OG404WETH_475BC2.USD","d":[]},{"s":"BYBIT:ARKMUSDT","d":[]},{"s":"QUICKSWAP:CNTWMATIC_3D3A6B","d":[]},{"s":"UNISWAP:AKITAWETH_DA3A20","d":[]},{"s":"BITFINEX:ETHEUR","d":[]},{"s":"COINEX:UMAUSDT","d":[]},{"s":"PANGOLIN:HECWAVAX_C8F980","d":[]},{"s":"POLONIEX:POPCATUSDT","d":[]},{"s":"POLONIEX:SCUSDT","d":[]},{"s":"BYBIT:LDOUSDT.P","d":[]},{"s":"UPBIT:STXKRW","d":[]},{"s":"GATEIO:LYXUSDT","d":[]},{"s":"UNISWAP3ETH:GIVICHI_9E3F00.USD","d":[]},{"s":"POLONIEX:TITTYUSDT","d":[]},{"s":"POLONIEX:REPV2BTC","d":[]},{"s":"MEXC:BTSUSDT","d":[]},{"s":"BITHUMB:FCT2KRW","d":[]},{"s":"BINGX:BCHUSDT.P","d":[]},{"s":"BITFINEX:OGNBTC","d":[]},{"s":"DELTA:ETCUSDT.P","d":[]},{"s":"GATEIO:ARUSDT","d":[]},{"s":"COINEX:FACTUSDT","d":[]},{"s":"MEXC:MKOUSDT","d":[]},{"s":"HITBTC:INJUSDT","d":[]},{"s":"BITMEX:ADABTCH2024","d":[]},{"s":"UNISWAP3ETH:WBTCUSDC_9A7720.USD","d":[]},{"s":"UNISWAP:FATWETH_2EF289","d":[]},{"s":"UNISWAP3ETH:BLLBWETH_B7CF00.USD","d":[]},{"s":"UNISWAP3ETH:BUGSWETH","d":[]},{"s":"UNISWAP:GECKOWETH_73A81E","d":[]},{"s":"BINGX:TOKENUSDT.P","d":[]},{"s":"MEXC:FETUSDT.P","d":[]},{"s":"BTSE:ANKRUSD","d":[]},{"s":"COINEX:ONEBTC","d":[]},{"s":"UNISWAP:MKUSDPRISMA_FABDA4.USD","d":[]},{"s":"MEXC:ICPXUSDT","d":[]},{"s":"KRAKEN:WLDUSD.PM","d":[]},{"s":"KRAKEN:GMTUSD.PM","d":[]},{"s":"BITHUMB:METAKRW","d":[]},{"s":"BINANCE:SOLETH","d":[]},{"s":"DELTA:XAIUSDT.P","d":[]},{"s":"POLONIEX:RLBUSDT","d":[]},{"s":"UNISWAP:ZKMLWETH_315ED6","d":[]},{"s":"UNISWAP3ETH:TGOLDWETH_EEED57.USD","d":[]},{"s":"UNISWAP3POLYGON:MIMATICUSDC_1AFC32.USD","d":[]},{"s":"TRADERJOE:O3USDCE_19C6C7","d":[]},{"s":"UNISWAP:DWEBWETH_F4EAE3","d":[]},{"s":"POLONIEX:XEMUSDC","d":[]},{"s":"KRAKEN:DOTBTC","d":[]},{"s":"KRAKEN:ALPHAUSD","d":[]},{"s":"GATEIO:YIELDUSDT","d":[]},{"s":"UNISWAP3ETH:FXSRNG_93423F.USD","d":[]},{"s":"UNISWAP:PEPEWETH_D49FB5.USD","d":[]},{"s":"BYBIT:NEOUSDT.P","d":[]},{"s":"BITGET:STARLUSDT","d":[]},{"s":"BINANCEUS:ANKRUSDT","d":[]},{"s":"UNISWAP:HOSTAIWETH_88EE95.USD","d":[]},{"s":"HITBTC:PYRUSDT","d":[]},{"s":"TRADERJOE:YUSDWAVAX_E73E1A","d":[]},{"s":"UNISWAP:SHRWETH_D04511","d":[]},{"s":"QUICKSWAP:MCHCWMATIC_0CDF41.USD","d":[]},{"s":"HITBTC:BTCDAI","d":[]},{"s":"BYBIT:CHZUSDC","d":[]},{"s":"UNISWAP:TWEETYWETH_B780F8.USD","d":[]},{"s":"HITBTC:UUUUSD","d":[]},{"s":"MEXC:LNDXUSDT","d":[]},{"s":"POLONIEX:BATUSD","d":[]},{"s":"GATEIO:TARAUSDT","d":[]},{"s":"BINANCE:BCHEUR","d":[]},{"s":"UNISWAP:BIGMIKEWETH_41B330","d":[]},{"s":"COINBASE:TIMEUSD","d":[]},{"s":"UNISWAP:LOOTWETH_76E3B9.USD","d":[]},{"s":"GATEIO:NBPUSDT","d":[]},{"s":"UNISWAP3ETH:SILOUSDT_031DF2.USD","d":[]},{"s":"ZOOMEX:CYBERUSDT.P","d":[]},{"s":"GATEIO:SPEXUSDT","d":[]},{"s":"PHEMEX:LUNA2USDT.P","d":[]},{"s":"COINEX:GALAUSDT","d":[]},{"s":"COINEX:DASHBTC","d":[]},{"s":"HITBTC:CELOUSD","d":[]},{"s":"BTSE:TIAUSD.P","d":[]},{"s":"QUICKSWAP:PMATICWMATIC_532822.USD","d":[]},{"s":"GATEIO:MTDUSDT","d":[]},{"s":"GATEIO:FXUSDT","d":[]},{"s":"XEXCHANGE:UTKUSDC","d":[]},{"s":"UNISWAP3ETH:SKLWETH","d":[]},{"s":"BITHUMB:ALGOKRW","d":[]},{"s":"BINANCE:VGXUSDT","d":[]},{"s":"POLONIEX:LUNAUSDT","d":[]},{"s":"GATEIO:CGPTUSDT","d":[]},{"s":"HITBTC:AVAUSDT","d":[]},{"s":"BINANCE:BTCAEUR","d":[]},{"s":"HITBTC:BATBTC","d":[]},{"s":"PANGOLIN:SHAKEWAVAX_CACC38","d":[]},{"s":"UNISWAP3ETH:TWBTC","d":[]},{"s":"GATEIO:NIFTUSDT","d":[]},{"s":"UNISWAP:FBGWETH_147B03.USD","d":[]},{"s":"UNISWAP3ETH:HAYWETH","d":[]},{"s":"MEXC:VTROUSDT","d":[]},{"s":"UNISWAP3ETH:YUMEWETH","d":[]},{"s":"UNISWAP:SNOWWETH_B69EA5.USD","d":[]},{"s":"GATEIO:SSXUSDT","d":[]},{"s":"UNISWAP3ETH:TEXANWETH","d":[]},{"s":"UNISWAP:XBOTWETH_168E23","d":[]},{"s":"UNISWAP3ETH:WETHGHST","d":[]},{"s":"UNISWAP3POLYGON:LINKWMATIC_97EDFD.USD","d":[]},{"s":"UNISWAP3ETH:USDCSBIO","d":[]},{"s":"POLONIEX:JUVUSDD","d":[]},{"s":"POLONIEX:ZECETH","d":[]},{"s":"POLONIEX:ADABTC","d":[]},{"s":"BINANCE:CFXTUSD","d":[]},{"s":"UNISWAP:FOXEWETH_907DEB.USD","d":[]},{"s":"UNISWAP3ETH:ORCWETH","d":[]},{"s":"BITHUMB:JASMYKRW","d":[]},{"s":"MEXC:ATOMUSDC","d":[]},{"s":"HITBTC:SOLOBTC","d":[]},{"s":"MEXC:FOGRUSDT","d":[]},{"s":"UNISWAP3ETH:AGIIWETH_7FD9AE.USD","d":[]},{"s":"UNISWAP:DNWETH_0DC80E.USD","d":[]},{"s":"HITBTC:BNKETH","d":[]},{"s":"BINANCE:BTTCTRY","d":[]},{"s":"OKX:KLAYUSDT.P","d":[]},{"s":"BITGET:FRONTUSDT","d":[]},{"s":"UNISWAP3ETH:KOIWETH","d":[]},{"s":"UNISWAP:GOATWETH_B1D6E2","d":[]},{"s":"UNISWAP:CORNDAI_BA9A5E","d":[]},{"s":"UNISWAP3ETH:WETHAPEFI","d":[]},{"s":"BINANCE:FISUSDT","d":[]},{"s":"UNISWAP:PALAIWETH_7FA640","d":[]},{"s":"PHEMEX:AVAXUSDC","d":[]},{"s":"BITGET:THETAUSDT.P","d":[]},{"s":"SPOOKYSWAP:BNBWFTM_956DE1","d":[]},{"s":"UNISWAP3ETH:WETHLPT","d":[]},{"s":"SPOOKYSWAP:PREMIAETH_7B4E78.USD","d":[]},{"s":"UNISWAP:MMAIWETH_27EB76.USD","d":[]},{"s":"COINBASE:QNTUSDT","d":[]},{"s":"UNISWAP:AURAWETH_6C350E","d":[]},{"s":"UNISWAP:ZCNWETH_A6890A.USD","d":[]},{"s":"UNISWAP3ETH:USDCDCHF","d":[]},{"s":"BINANCE:DCRUSDT","d":[]},{"s":"BITHUMB:HOOKKRW","d":[]},{"s":"BITRUE:DOGEUSDT","d":[]},{"s":"UNISWAP:CLAWWETH_38E56E.USD","d":[]},{"s":"GATEIO:KSMUSDT.3S","d":[]},{"s":"MEXC:DORKLUSDT","d":[]},{"s":"BITHUMB:APMKRW","d":[]},{"s":"BITKUB:TIATHB","d":[]},{"s":"HITBTC:CELOBTC","d":[]},{"s":"HITBTC:BTCEOSDT","d":[]},{"s":"UNISWAP:SNPUSDT_0B4185","d":[]},{"s":"COINEX:FARMUSDT","d":[]},{"s":"MEXC:MEOWUSDT","d":[]},{"s":"WHITEBIT:FORUSDT","d":[]},{"s":"BINANCE:PAXGUSDT","d":[]},{"s":"UNISWAP:BOBWETH_BE8BC2.USD","d":[]},{"s":"UNISWAP3ETH:DOLLARMONGWETH","d":[]},{"s":"QUICKSWAP:MASQWMATIC_B5A7C5","d":[]},{"s":"COINEX:SDAOUSDT","d":[]},{"s":"BISWAP:WOOWBNB_D9C921.USD","d":[]},{"s":"MEXC:STETHUSDT","d":[]},{"s":"HITBTC:DAOUSDT","d":[]},{"s":"BITRUE:AXSADA","d":[]},{"s":"HITBTC:SATTUSDT","d":[]},{"s":"MEXC:GNSUSDT","d":[]},{"s":"QUICKSWAP:YLDWETH_3E3665","d":[]},{"s":"GATEIO:STOSUSDT","d":[]},{"s":"UNISWAP:TUPELOWETH_7CE819","d":[]},{"s":"COINEX:BELLSCOINUSDT","d":[]},{"s":"BITGET:MOBILEUSDT","d":[]},{"s":"UNISWAP3ETH:WBRGEWETH","d":[]},{"s":"GATEIO:STSOLUSDT","d":[]},{"s":"UNISWAP:BBBWETH_A2AADB.USD","d":[]},{"s":"MEXC:WSMUSDT","d":[]},{"s":"UNISWAP:TAONETWETH_30ED4D.USD","d":[]},{"s":"MEXC:GOLCUSDT","d":[]},{"s":"UNISWAP:ARTXWETH_F2F3E2.USD","d":[]},{"s":"COINEX:APTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMIYA","d":[]},{"s":"TRADERJOE:ABAKSWAVAX_A5258C","d":[]},{"s":"UNISWAP3ETH:WETHGTC","d":[]},{"s":"BINANCE:AVAXEUR","d":[]},{"s":"UNISWAP3ETH:DOGECOINWETH","d":[]},{"s":"BINANCE:XLMETH","d":[]},{"s":"BYBIT:YFIUSDT.P","d":[]},{"s":"KRAKEN:UNIUSD.PM","d":[]},{"s":"UNISWAP:ARTXWETH_F2F3E2","d":[]},{"s":"BITSTAMP:FLRUSD","d":[]},{"s":"BINGX:YGGUSDT.P","d":[]},{"s":"UNISWAP:BPDWETH_9BF92F","d":[]},{"s":"MEXC:CYFUSDT","d":[]},{"s":"BITGET:PROPSUSDT","d":[]},{"s":"ZOOMEX:GLMRUSDT.P","d":[]},{"s":"WHITEBIT:ALICEUSDT","d":[]},{"s":"UPBIT:AHTKRW","d":[]},{"s":"TRADERJOE:DRAGONWAVAX_CF05FC.USD","d":[]},{"s":"HITBTC:1INCHBTC","d":[]},{"s":"PHEMEX:DYDXUSDT.P","d":[]},{"s":"UNISWAP:BREWLABSWETH_D8A844.USD","d":[]},{"s":"UNISWAP:TRUTHWETH_46BFDD","d":[]},{"s":"BINGX:WOOUSDT.P","d":[]},{"s":"TRADERJOE:KOVINCOQ_A8CBCC","d":[]},{"s":"COINEX:ARDRBTC","d":[]},{"s":"UNISWAP3ETH:WETHID","d":[]},{"s":"BINGX:IDUSDT.P","d":[]},{"s":"UNISWAP:IDWETH_BCFFA1.USD","d":[]},{"s":"UNISWAP3ETH:USDCDEVT","d":[]},{"s":"UNISWAP:FTRBWETH_3E3B38.USD","d":[]},{"s":"HITBTC:ADAETH","d":[]},{"s":"UNISWAP3ETH:WETHSYNC","d":[]},{"s":"QUICKSWAP:QUIDDWMATIC_ADBD18.USD","d":[]},{"s":"UNISWAP3ETH:WETHBIT","d":[]},{"s":"UNISWAP:DAWGWETH_9694D6.USD","d":[]},{"s":"UNISWAP3ETH:WETHSEGA","d":[]},{"s":"MEXC:PTHUSDT","d":[]},{"s":"BYBIT:ORDIUSDT.P","d":[]},{"s":"BINANCE:JASMYUSDT","d":[]},{"s":"BITFINEX:GALABTC","d":[]},{"s":"UNISWAP:MBOTWETH_14B184","d":[]},{"s":"UNISWAP:RAILWETH_AC8690.USD","d":[]},{"s":"UNISWAP3ETH:SHIBUSDT","d":[]},{"s":"HITBTC:EGLDUSD","d":[]},{"s":"PIONEX:ARKUSDT.P","d":[]},{"s":"MEXC:DYMUSDT","d":[]},{"s":"BITGET:DOGEUSDT","d":[]},{"s":"BINANCE:RVNBTC","d":[]},{"s":"BYBIT:KUBUSDT","d":[]},{"s":"UNISWAP:GYSRWETH_5F0A85.USD","d":[]},{"s":"TRADERJOE:WBTCEWAVAX_D5A37D","d":[]},{"s":"UNISWAP3POLYGON:EUROEAGEUR_85CEB7.USD","d":[]},{"s":"BLOFIN:OCEANUSDT.P","d":[]},{"s":"UNISWAP:EEYORWETH_E8B8DB.USD","d":[]},{"s":"PIONEX:SUIUSDT.P","d":[]},{"s":"PIONEX:ICXUSDT.P","d":[]},{"s":"UNISWAP3ETH:AEGISWETH_3F2952.USD","d":[]},{"s":"BITHUMB:MBLKRW","d":[]},{"s":"MEXC:KLIMAUSDT","d":[]},{"s":"UNISWAP3POLYGON:MUDUSDT_533896.USD","d":[]},{"s":"UNISWAP:USDIWETH_63AAC7.USD","d":[]},{"s":"UNISWAP3ETH:DIAWETH_B60B34.USD","d":[]},{"s":"UNISWAP3POLYGON:WEB3WETH_39BAAC.USD","d":[]},{"s":"PHEMEX:CAKEUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTPEPE","d":[]},{"s":"UNISWAP:RACAUSDT_700FC8","d":[]},{"s":"COINEX:OKBBTC","d":[]},{"s":"UNISWAP:CHIBAWETH_746B4D.USD","d":[]},{"s":"UNISWAP:NGMIWETH_0C8FC2.USD","d":[]},{"s":"UNISWAP:SHUGGIWETH_67AED5.USD","d":[]},{"s":"UNISWAP:MAGAWETH_DCF175","d":[]},{"s":"BITGET:VEXTUSDT","d":[]},{"s":"TRADERJOE:EVICWETHE_8392A7.USD","d":[]},{"s":"UNISWAP:BLUESPARROWWETH_D2CE78.USD","d":[]},{"s":"UNISWAP3ETH:AUTUMNWETH","d":[]},{"s":"QUICKSWAP:ANRXWETH_3DD6A0.USD","d":[]},{"s":"UNISWAP:HEZDAI_9BD826","d":[]},{"s":"UNISWAP3ETH:AMPLWETH_86D257.USD","d":[]},{"s":"COINEX:PYRUSDT","d":[]},{"s":"MEXC:RIKUSDT","d":[]},{"s":"KRAKEN:AUDIOUSD.PM","d":[]},{"s":"UNISWAP3ETH:BANKUSDC","d":[]},{"s":"GATEIO:BSCPADUSDT","d":[]},{"s":"HITBTC:APMUSD","d":[]},{"s":"MEXC:RVNUSDT","d":[]},{"s":"UNISWAP3ETH:BULLFROGWETH","d":[]},{"s":"UNISWAP3POLYGON:RIAUSDT_78A750.USD","d":[]},{"s":"QUICKSWAP:CNTRWMATIC_06482D.USD","d":[]},{"s":"UNISWAP:FUSEWETH_4CE368.USD","d":[]},{"s":"SPOOKYSWAP:DPWFTM_E24270.USD","d":[]},{"s":"HITBTC:WIKIBTC","d":[]},{"s":"UNISWAP:LBRWETH_061883.USD","d":[]},{"s":"BINGX:LDOUSDT.P","d":[]},{"s":"MEXC:POLISUSDT","d":[]},{"s":"WHITEBIT:APEUSDT","d":[]},{"s":"WOONETWORK:BNBUSDT","d":[]},{"s":"XEXCHANGE:JOJOWEGLD","d":[]},{"s":"COINEX:LINKBTC","d":[]},{"s":"BITRUE:CSCXRP","d":[]},{"s":"OKX:SLPUSDT.P","d":[]},{"s":"UNISWAP3ETH:MUTEWETH","d":[]},{"s":"EXMO:BCHUSD","d":[]},{"s":"BITHUMB:NPTKRW","d":[]},{"s":"PANGOLIN:MAGEWAVAX_902C65.USD","d":[]},{"s":"HITBTC:CAKEBTC","d":[]},{"s":"UNISWAP:CXWETH_1B68A2","d":[]},{"s":"MEXC:FORTHUSDT.P","d":[]},{"s":"MEXC:MUSKMEMEUSDT","d":[]},{"s":"COINBASE:RNDRUSD","d":[]},{"s":"BINANCE:LDOFDUSD","d":[]},{"s":"BITGET:ABBCUSDT","d":[]},{"s":"WAGYUSWAP:WAGWVLX_33F879.USD","d":[]},{"s":"UNISWAP3ETH:PYRWETH","d":[]},{"s":"UNISWAP:ETH20WETH_04210C.USD","d":[]},{"s":"PHEMEX:1INCHUSDT","d":[]},{"s":"GATEIO:ASTRUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WALLETWETH","d":[]},{"s":"WAGYUSWAP:PLSPADBUSD_B5FE80","d":[]},{"s":"UNISWAP3ETH:WETHLGB","d":[]},{"s":"MEXC:ENSUSDT","d":[]},{"s":"BITFINEX:ETCUST.P","d":[]},{"s":"BINGX:BSVUSDT.P","d":[]},{"s":"BINANCE:SSVETH","d":[]},{"s":"BYBIT:TVKUSDT","d":[]},{"s":"MEXC:KLAYUSDT.P","d":[]},{"s":"BTSE:LDOUSD","d":[]},{"s":"BYBIT:PLANETUSDT","d":[]},{"s":"MEXC:OCEANETH","d":[]},{"s":"UNISWAP3ETH:DERPWETH","d":[]},{"s":"UNISWAP:SNXWETH_43AE24","d":[]},{"s":"BISWAP:NEARWBNB_E0E9FD","d":[]},{"s":"MEXC:PPMCUSDT","d":[]},{"s":"MEXC:SEROUSDT","d":[]},{"s":"MEXC:CTXCUSDT","d":[]},{"s":"UNISWAP:ICHIWETH_D07D43","d":[]},{"s":"UNISWAP:FRAXUSDC_97C4AD","d":[]},{"s":"ZOOMEX:BALUSDT.P","d":[]},{"s":"BITFINEX:FORTHBTC","d":[]},{"s":"UNISWAP3ETH:SPICEWETH","d":[]},{"s":"HITBTC:ARVBTC","d":[]},{"s":"QUICKSWAP:GONEWMATIC_BB1934","d":[]},{"s":"BINANCE:GMTEUR","d":[]},{"s":"KRAKEN:SGBUSD","d":[]},{"s":"BITFINEX:SHIBUSD","d":[]},{"s":"UNISWAP:GNOWETH_3E8468","d":[]},{"s":"WOONETWORK:ZRXUSDT","d":[]},{"s":"UNISWAP3POLYGON:PAXGWETH_0B1510.USD","d":[]},{"s":"UNISWAP:XAIWETH_01F491.USD","d":[]},{"s":"UNISWAP3ETH:SHRAPWETH_7DF301.USD","d":[]},{"s":"BITHUMB:ENTCKRW","d":[]},{"s":"COINEX:QIUSDT","d":[]},{"s":"KRAKEN:APTEUR","d":[]},{"s":"BINANCE:XRPTUSD","d":[]},{"s":"PHEMEX:YGGUSDT.P","d":[]},{"s":"UNISWAP3ETH:LINKUSDC_FAD57D.USD","d":[]},{"s":"BITFINEX:SUIUST","d":[]},{"s":"UNISWAP:NFPWETH_2472C3","d":[]},{"s":"GATEIO:EOSUSDT.5L","d":[]},{"s":"GATEIO:GRTUSDT.3S","d":[]},{"s":"GATEIO:DAIUSDT","d":[]},{"s":"COINBASE:SOLEUR","d":[]},{"s":"POLONIEX:SAMOUSDT","d":[]},{"s":"POLONIEX:STGUSDT","d":[]},{"s":"COINBASE:LOKAUSD","d":[]},{"s":"KRAKEN:TUSDUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHPLOT","d":[]},{"s":"UNISWAP3ETH:WBTCBBTC","d":[]},{"s":"UNISWAP:BMIWETH_A9BD7E.USD","d":[]},{"s":"UNISWAP3ETH:USDCUSDT_7858E5.USD","d":[]},{"s":"UNISWAP3ETH:WETHSYBZERO","d":[]},{"s":"UNISWAP3POLYGON:FOOMWETH_5FBE4C.USD","d":[]},{"s":"ZOOMEX:LINKUSDT.P","d":[]},{"s":"BINANCE:PSGTRY","d":[]},{"s":"UNISWAP:MODAIWETH_C2AF8F.USD","d":[]},{"s":"UNISWAP:DBUYWETH_131CAA","d":[]},{"s":"HITBTC:BAKEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPABLO","d":[]},{"s":"UNISWAP3ETH:BONEWETH_B011E4.USD","d":[]},{"s":"MEXC:METALUSDT","d":[]},{"s":"GATEIO:KRLUSDT","d":[]},{"s":"WHITEBIT:SNXUSDT.P","d":[]},{"s":"BITGET:IOSTUSDT.P","d":[]},{"s":"BTSE:EGLDUSD","d":[]},{"s":"UNISWAP3ETH:GHSTWETH","d":[]},{"s":"COINBASE:PROUSD","d":[]},{"s":"KRAKEN:RADEUR","d":[]},{"s":"COINBASE:BALUSD","d":[]},{"s":"UNISWAP:AMBWETH_898D88.USD","d":[]},{"s":"BINANCE:ETCBTC","d":[]},{"s":"TRADERJOE:PIZZAWAVAX_4D7450.USD","d":[]},{"s":"XEXCHANGE:RAREUSDC","d":[]},{"s":"PHEMEX:COMBOUSDT","d":[]},{"s":"UNISWAP:HOLDWETH_9E5F2B","d":[]},{"s":"MEXC:HFTUSDT.P","d":[]},{"s":"UNISWAP:ITPWETH_4DB2C7","d":[]},{"s":"UNISWAP3ETH:WMTWETH_654088.USD","d":[]},{"s":"UNISWAP3ETH:WETHCADC","d":[]},{"s":"GATEIO:XPRUSDT","d":[]},{"s":"BITKUB:USDTTHB","d":[]},{"s":"BINANCE:CFXBTC","d":[]},{"s":"HITBTC:CFXBTC","d":[]},{"s":"HITBTC:EKOUSD","d":[]},{"s":"UNISWAP3ETH:EDOGESDEX_D53D42.USD","d":[]},{"s":"GATEIO:OMUSDT","d":[]},{"s":"BITFLYER:FXBTCJPY","d":[]},{"s":"PIONEX:SOLETH.P","d":[]},{"s":"GATEIO:BRISEUSDT","d":[]},{"s":"UNISWAP3ETH:SWITCHWETH_2DF7F6.USD","d":[]},{"s":"WHITEBIT:XAIUSDT","d":[]},{"s":"UNISWAP:DEDWETH_4E4CC5","d":[]},{"s":"EXMO:ETCUSD","d":[]},{"s":"COINBASE:SEAMUSD","d":[]},{"s":"PIONEX:ETHUSDT.P","d":[]},{"s":"SPOOKYSWAP:BOMBWFTM_11F023","d":[]},{"s":"UNISWAP:MGWETH_2E5A4C","d":[]},{"s":"QUICKSWAP:1MILUSDT_A7BE1C","d":[]},{"s":"BTSE:SUSHIUSD","d":[]},{"s":"HITBTC:BOSONUSD","d":[]},{"s":"MEXC:ARPAUSDT","d":[]},{"s":"WOONETWORK:ETCUSDT","d":[]},{"s":"HITBTC:AXSUSD","d":[]},{"s":"GATEIO:SOILUSDT","d":[]},{"s":"BINGX:NTRNUSDT.PS","d":[]},{"s":"PANGOLIN:PNGUSDC_1784B2","d":[]},{"s":"ZOOMEX:XTZUSDT.P","d":[]},{"s":"BINANCE:DODOBTC","d":[]},{"s":"POLONIEX:ICENETWORKUSDT","d":[]},{"s":"POLONIEX:ETHTUSD","d":[]},{"s":"PANGOLIN:SFIWAVAX_18C8E1.USD","d":[]},{"s":"BYBIT:SUIUSDC","d":[]},{"s":"UNISWAP:PEPE20WETH_61BC0E.USD","d":[]},{"s":"BINANCE:CYBERFDUSD","d":[]},{"s":"UNISWAP:FIGUREWETH_8F6C01","d":[]},{"s":"BITGET:PEPE2USDT","d":[]},{"s":"UNISWAP:PERRPOHM_44BDAC.USD","d":[]},{"s":"HITBTC:SNTUSDC","d":[]},{"s":"UNISWAP:APXWETH_2DC905.USD","d":[]},{"s":"KRAKEN:DOTUSDT","d":[]},{"s":"UNISWAP:PROWETH_9B7463.USD","d":[]},{"s":"TRADERJOE:MUMUG_67D9AA","d":[]},{"s":"UNISWAP3ETH:PSALEWETH_F8FE25.USD","d":[]},{"s":"UNISWAP3ETH:WETHLNDX","d":[]},{"s":"QUICKSWAP:NXTTWMATIC_F25C87.USD","d":[]},{"s":"BINANCE:OPUSDC","d":[]},{"s":"BINANCE:SEIFDUSD","d":[]},{"s":"MEXC:PEPECOMMUNITYUSDT.P","d":[]},{"s":"POLONIEX:EACCUSDT","d":[]},{"s":"BINGX:HBARUSDT.PS","d":[]},{"s":"BITRUE:TWTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GMXWETH_B435EB.USD","d":[]},{"s":"TRADERJOE:DAMOWAVAX_81D138","d":[]},{"s":"UNISWAP:LMIWETH_C715A9.USD","d":[]},{"s":"HITBTC:DARUSD","d":[]},{"s":"UNISWAP3POLYGON:SENSOUSDT_D9AFF1.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCUSDT_0843E0.USD","d":[]},{"s":"BITRUE:IOTXUSDT","d":[]},{"s":"POLONIEX:LADYSUSDT","d":[]},{"s":"QUICKSWAP:WNTUSDT_21F9CC","d":[]},{"s":"HITBTC:PAXGBTC","d":[]},{"s":"GATEIO:POLYPADUSDT","d":[]},{"s":"MEXC:ORDIUSDT.P","d":[]},{"s":"BITGET:SAMOUSDT","d":[]},{"s":"UNISWAP:DUCKERWETH_20E966","d":[]},{"s":"MEXC:DEXTFUSDT","d":[]},{"s":"SPOOKYSWAP:YOSHIWFTM_6BB685.USD","d":[]},{"s":"GATEIO:ORDSUSDT","d":[]},{"s":"POLONIEX:SPEEROUSDT","d":[]},{"s":"UNISWAP3ETH:HBOTWETH_3AB72A.USD","d":[]},{"s":"BYBIT:IOSTUSDT.P","d":[]},{"s":"TRADERJOE:CNRWAVAX_2B35C0.USD","d":[]},{"s":"BINANCE:XRPBTC","d":[]},{"s":"BYBIT:USDYUSDT","d":[]},{"s":"UPBIT:ADAKRW","d":[]},{"s":"UNISWAP:NUTWETH_36708B.USD","d":[]},{"s":"UNISWAP:COPIWETH_57FC98.USD","d":[]},{"s":"BINANCE:SUSHIBTC","d":[]},{"s":"HITBTC:TVUSDT","d":[]},{"s":"UNISWAP:RUSHAIWETH_185CEA","d":[]},{"s":"COINEX:YUPUSDT","d":[]},{"s":"COINEX:UNFIUSDT","d":[]},{"s":"POLONIEX:INJUSD","d":[]},{"s":"BITGET:ARGUSDT","d":[]},{"s":"BINGX:GMXUSDT.P","d":[]},{"s":"UNISWAP:ITXWETH_3B7CA4.USD","d":[]},{"s":"MEXC:MEFAUSDT","d":[]},{"s":"UNISWAP3ETH:RPILLWETH_540AB7.USD","d":[]},{"s":"UNISWAP3ETH:WETHLIT","d":[]},{"s":"BTSE:INJUSD.P","d":[]},{"s":"UNISWAP:BASEWETH_C03692.USD","d":[]},{"s":"COINBASE:DOTGBP","d":[]},{"s":"UNISWAP3ETH:USDCATOR","d":[]},{"s":"UNISWAP:C2H6WETH_E1EBBF","d":[]},{"s":"KRAKEN:LUNA2USD","d":[]},{"s":"UNISWAP3ETH:CRIMINGOWETH","d":[]},{"s":"UNISWAP:CYPHERWETH_421F66","d":[]},{"s":"HITBTC:CHZETH","d":[]},{"s":"BLOFIN:AERGOUSDT.P","d":[]},{"s":"GATEIO:PRAREUSDT","d":[]},{"s":"XEXCHANGE:EMRWEGLD","d":[]},{"s":"BINANCE:NFPBTC","d":[]},{"s":"WHITEBIT:ADAUSD","d":[]},{"s":"MEXC:SCLPUSDT","d":[]},{"s":"UNISWAP:ZENITSUKA_B60E1B","d":[]},{"s":"QUICKSWAP:IBEXWETH_E186DA.USD","d":[]},{"s":"UNISWAP:LEXAWETH_6F72B3","d":[]},{"s":"MEXC:OSTUSDT","d":[]},{"s":"UNISWAP3ETH:AITWETH_BD7F4C.USD","d":[]},{"s":"MEXC:HIPPUSDT","d":[]},{"s":"BITFINEX:GBPEUT","d":[]},{"s":"BITHUMB:DARKRW","d":[]},{"s":"UNISWAP:MARSWETH_FDDE7B","d":[]},{"s":"BISWAP:AAVEWBNB_FC2B26.USD","d":[]},{"s":"GATEIO:POLISUSDT","d":[]},{"s":"UNISWAP3ETH:DYDXWETH_E0CFA1.USD","d":[]},{"s":"UNISWAP3ETH:MYRIAWETH","d":[]},{"s":"UNISWAP3ETH:USDCMICKEY","d":[]},{"s":"POLONIEX:LSKBTC","d":[]},{"s":"UNISWAP3ETH:WETHHDRN","d":[]},{"s":"COINEX:RINGUSDT","d":[]},{"s":"UNISWAP:WOLFWETH_6AA6AE.USD","d":[]},{"s":"UNISWAP3ETH:TRBSDEX_F56216.USD","d":[]},{"s":"WHITEBIT:LTCUSD","d":[]},{"s":"PIONEX:ORDIBTC.P","d":[]},{"s":"UNISWAP3ETH:WETHHBOT","d":[]},{"s":"POLONIEX:FCT2USD","d":[]},{"s":"POLONIEX:FARMUSDT","d":[]},{"s":"WOONETWORK:RONUSDT","d":[]},{"s":"UNISWAP:VPPWETH_A24501","d":[]},{"s":"TRADERJOE:CRAWAVAX_140CAC.USD","d":[]},{"s":"MEXC:LINAUSDT.P","d":[]},{"s":"HITBTC:SANDUSD","d":[]},{"s":"UNISWAP:WASWETH_095397.USD","d":[]},{"s":"UNISWAP:CUMINUWETH_7B412F","d":[]},{"s":"UNISWAP3ETH:CRVRNG_91CDDC.USD","d":[]},{"s":"UNISWAP:METAWETH_5D4164.USD","d":[]},{"s":"OKX:ANTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WAXPUSDT","d":[]},{"s":"BYBIT:STATUSDT","d":[]},{"s":"UNISWAP:SQUIDWETH_DF8EF4.USD","d":[]},{"s":"BITGET:VICUSDT","d":[]},{"s":"UNISWAP3ETH:WETHERBB","d":[]},{"s":"MEXC:COUSDT","d":[]},{"s":"BINANCE:CYBERUSDT","d":[]},{"s":"BITGET:TROSSUSDT","d":[]},{"s":"UNISWAP:DOGGYWETH_68FD08.USD","d":[]},{"s":"COINEX:BEAMBTC","d":[]},{"s":"GATEIO:KCALUSDT","d":[]},{"s":"UNISWAP:STARWETH_D5D481.USD","d":[]},{"s":"UNISWAP3ETH:BETSWETH","d":[]},{"s":"GATEIO:CEURUSDT","d":[]},{"s":"BITRUE:PNTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:PSMWETH_A3CC74.USD","d":[]},{"s":"BINGX:PORTALUSDT.P","d":[]},{"s":"HITBTC:BRGUSDT","d":[]},{"s":"UNISWAP3ETH:USDCLINK","d":[]},{"s":"GATEIO:BCHUSDT.5L","d":[]},{"s":"HITBTC:GMTBTC","d":[]},{"s":"UNISWAP3ETH:XTREMEWETH_0297D7.USD","d":[]},{"s":"BITGET:STRMUSDT","d":[]},{"s":"MEXC:GAIAUSDT","d":[]},{"s":"UNISWAP:SXSWETH_8EFF34.USD","d":[]},{"s":"HITBTC:PEAKUSD","d":[]},{"s":"UNISWAP3ETH:USDCQLT","d":[]},{"s":"COINEX:HIFIUSDT","d":[]},{"s":"BITGET:TURBOUSDT","d":[]},{"s":"PHEMEX:KSMUSDT.P","d":[]},{"s":"BINANCE:STXFDUSD","d":[]},{"s":"MEXC:MAGICUSDT.P","d":[]},{"s":"UNISWAP:SENTWETH_B42CF2","d":[]},{"s":"UNISWAP3ETH:WETHAPW","d":[]},{"s":"BINGX:ACHUSDT.P","d":[]},{"s":"UNISWAP:MTAWETH_0D0D65.USD","d":[]},{"s":"HITBTC:SNCUSD","d":[]},{"s":"BITGET:AGIXUSDT","d":[]},{"s":"GATEIO:GROKUSDT","d":[]},{"s":"MEXC:SPTUSDT","d":[]},{"s":"HITBTC:BGBUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LINKUSDC_655C16.USD","d":[]},{"s":"POLONIEX:RENUSD","d":[]},{"s":"BITGET:NUUMUSDT","d":[]},{"s":"UNISWAP3ETH:BLUSDLUSD_CB3131.USD","d":[]},{"s":"HITBTC:XMRDAI","d":[]},{"s":"POLONIEX:CLVUSDT","d":[]},{"s":"PHEMEX:CAKEUSDT","d":[]},{"s":"COINEX:KDABTC","d":[]},{"s":"UNISWAP3ETH:FLUXUSDT","d":[]},{"s":"GATEIO:MONIUSDT","d":[]},{"s":"UNISWAP3ETH:OGVWETH_A0B30E.USD","d":[]},{"s":"UNISWAP:KOTOWETH_47287D","d":[]},{"s":"BINANCE:GALATRY","d":[]},{"s":"UNISWAP:CHAPWETH_3268EC.USD","d":[]},{"s":"UNISWAP3OPTIMISM:OATHERN_CF215E.USD","d":[]},{"s":"UNISWAP:XCADWETH_A14E05.USD","d":[]},{"s":"UNISWAP:GTCWETH_A3509A.USD","d":[]},{"s":"MEXC:TNLUSDT","d":[]},{"s":"UNISWAP:DJ15WETH_6A164D","d":[]},{"s":"BYBIT:AZYUSDT","d":[]},{"s":"MEXC:FLOKICEOUSDT","d":[]},{"s":"BITRUE:LTCBTC","d":[]},{"s":"UNISWAP:IBETHALPHA_411A9B.USD","d":[]},{"s":"UNISWAP3ETH:EUREUSDC_614BBB.USD","d":[]},{"s":"UNISWAP3ETH:COWWETH","d":[]},{"s":"BINANCE:HBARTRY","d":[]},{"s":"BINGX:MINAUSDT.PS","d":[]},{"s":"UNISWAP3ETH:SWTHWETH","d":[]},{"s":"COINEX:NUMUSDT","d":[]},{"s":"TRADERJOE:TRESRWAVAX_71DDEB.USD","d":[]},{"s":"UNISWAP3ETH:BNBWETH_9E7809.USD","d":[]},{"s":"BITMEX:MEMEUSDT.P","d":[]},{"s":"BITMEX:MATICUSDT","d":[]},{"s":"MEXC:RARIUSDT","d":[]},{"s":"QUICKSWAP:MAMAIWMATIC_71501F","d":[]},{"s":"UNISWAP:QUINNWETH_427237","d":[]},{"s":"UNISWAP3ETH:NCTWETH","d":[]},{"s":"KRAKEN:GNOEUR","d":[]},{"s":"UNISWAP:EQXWETH_09062C.USD","d":[]},{"s":"MEXC:WRLDUSDT","d":[]},{"s":"UNISWAP:ATAIWETH_79F46E","d":[]},{"s":"UNISWAP:HELIOSWETH_886FBB","d":[]},{"s":"KRAKEN:AAVEUSD","d":[]},{"s":"BINANCE:MANAETH","d":[]},{"s":"BLOFIN:INJUSDT.P","d":[]},{"s":"HITBTC:CHATETH","d":[]},{"s":"UNISWAP:SAUDIPEPEWETH_72BA7A.USD","d":[]},{"s":"UNISWAP3ETH:WETHXCUR","d":[]},{"s":"HITBTC:SUBUSDT","d":[]},{"s":"PANGOLIN:DYPWAVAX_497070.USD","d":[]},{"s":"BITGET:BGBBTC","d":[]},{"s":"UNISWAP3ETH:GHXWETH","d":[]},{"s":"UNISWAP3ETH:SUPERWETH_5B7819.USD","d":[]},{"s":"UNISWAP3ETH:CUDOSUSDT","d":[]},{"s":"PHEMEX:ROSEUSDT.P","d":[]},{"s":"BITGET:DZOOUSDT","d":[]},{"s":"BITRUE:HOTETH","d":[]},{"s":"UNISWAP3ETH:HUNTWETH_E2680F.USD","d":[]},{"s":"WHITEBIT:SHIBEUR","d":[]},{"s":"UNISWAP:BOOSTWETH_72D55C","d":[]},{"s":"UNISWAP3ETH:FRAXUSDC_9A834B.USD","d":[]},{"s":"UNISWAP:CLAWWETH_2DF91C","d":[]},{"s":"WAGYUSWAP:BITORBWVLX_A4C1EE","d":[]},{"s":"BINANCE:SKLBTC","d":[]},{"s":"BITKUB:STGTHB","d":[]},{"s":"MEXC:DVIUSDT","d":[]},{"s":"BITFINEX:LIFIIIUSD","d":[]},{"s":"TRADERJOE:OHWAVAX_361B62.USD","d":[]},{"s":"PIONEX:BONDUSDT.P","d":[]},{"s":"UPBIT:ELFKRW","d":[]},{"s":"GATEIO:MANAUSDT.3L","d":[]},{"s":"MEXC:ZKFUSDT.P","d":[]},{"s":"BYBIT:HOTUSDT.P","d":[]},{"s":"UNISWAP:APESWETH_847FAE.USD","d":[]},{"s":"POLONIEX:ESDUSDT","d":[]},{"s":"PIONEX:PEOPLEUSDT.P","d":[]},{"s":"BTSE:SANDUSD.P","d":[]},{"s":"UNISWAP:NCDTWETH_1921B8.USD","d":[]},{"s":"HITBTC:XETAUSDT","d":[]},{"s":"UNISWAP3POLYGON:CCDAOWMATIC_247CFC.USD","d":[]},{"s":"PHEMEX:LOOMUSDT.P","d":[]},{"s":"COINEX:LEASHUSDT","d":[]},{"s":"SPOOKYSWAP:MIMWFTM_6F86E6.USD","d":[]},{"s":"PANGOLIN:CNRWAVAX_C04DE3.USD","d":[]},{"s":"UNISWAP3ARBITRUM:TBTCWETH_CB198A.USD","d":[]},{"s":"PHEMEX:RONUSDT.P","d":[]},{"s":"QUICKSWAP:IOENWMATIC_316BC1","d":[]},{"s":"PHEMEX:LOKAUSDT","d":[]},{"s":"ZOOMEX:DYMUSDT.P","d":[]},{"s":"BINANCE:KSMUSDT","d":[]},{"s":"COINEX:ROSEBTC","d":[]},{"s":"UNISWAP:SHILLDWETH_B2F616.USD","d":[]},{"s":"UNISWAP3ETH:WETHINU","d":[]},{"s":"POLONIEX:OGUSDT","d":[]},{"s":"COINBASE:EURCEUR","d":[]},{"s":"BINANCE:HIVEBTC","d":[]},{"s":"COINEX:VVUSDT","d":[]},{"s":"UNISWAP3ETH:ZEROUSDC","d":[]},{"s":"UNISWAP3ETH:SUPERWETH_3CD808.USD","d":[]},{"s":"HITBTC:XVSUSDT","d":[]},{"s":"HITBTC:ATOMUSD","d":[]},{"s":"POLONIEX:FARMUSD","d":[]},{"s":"QUICKSWAP:BONWMATIC_26432F","d":[]},{"s":"UNISWAP:PUTINWETH_3DD9AA.USD","d":[]},{"s":"BLOFIN:ENJUSDT.P","d":[]},{"s":"WOONETWORK:UDEGODUSDT","d":[]},{"s":"UNISWAP:ZWWETH_D189D0","d":[]},{"s":"BISWAP:ZILWBNB_E41F46.USD","d":[]},{"s":"UNISWAP3ETH:WINTERWETH","d":[]},{"s":"UNISWAP3ETH:SNXWETH_EDE8DD.USD","d":[]},{"s":"UNISWAP:VOICEWETH_06E4C1","d":[]},{"s":"UNISWAP:OLYWETH_2B68E9","d":[]},{"s":"UNISWAP3ETH:SABRWETH_6DB1D8.USD","d":[]},{"s":"MEXC:DICEUSDT","d":[]},{"s":"SPOOKYSWAP:CREDITWFTM_06F3CB","d":[]},{"s":"GATEIO:BICOUSDT","d":[]},{"s":"UNISWAP3ETH:RNGWBTC","d":[]},{"s":"BYBIT:RPKUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GNSDAI_4D2FE0.USD","d":[]},{"s":"OKX:SWEATUSDT.P","d":[]},{"s":"GATEIO:SUTERUSDT","d":[]},{"s":"BITGET:BSWUSDT","d":[]},{"s":"UNISWAP3ETH:MKRWETH_E8C6C9.USD","d":[]},{"s":"GATEIO:SWASHUSDT","d":[]},{"s":"BYBIT:COVALUSDT.P","d":[]},{"s":"TRADERJOE:USDTEFITFI_D82FFD.USD","d":[]},{"s":"UNISWAP:CATWETH_AE30F1.USD","d":[]},{"s":"UNISWAP3ARBITRUM:JOEWETH_809E6D.USD","d":[]},{"s":"UNISWAP3POLYGON:EURSAGEUR_D72009.USD","d":[]},{"s":"COINEX:COTIUSDT","d":[]},{"s":"UNISWAP:PYROWETH_11DC5E.USD","d":[]},{"s":"UNISWAP3ETH:WETHDC","d":[]},{"s":"UNISWAP3POLYGON:JPYCUSDC_34248E.USD","d":[]},{"s":"MEXC:NEMSUSDT","d":[]},{"s":"UNISWAP:SHIELDWETH_8C4071","d":[]},{"s":"UNISWAP3ETH:SMOGWETH_BCAA74.USD","d":[]},{"s":"UNISWAP:DRCWETH_53455F.USD","d":[]},{"s":"BITRUE:LTCUSDC","d":[]},{"s":"UNISWAP3ETH:WETHDXN","d":[]},{"s":"UNISWAP:MUZZWETH_06D9CD","d":[]},{"s":"BYBIT:KRLUSDT","d":[]},{"s":"ZOOMEX:DUSKUSDT.P","d":[]},{"s":"UNISWAP:AIMBOTWETH_E05D09","d":[]},{"s":"GATEIO:FIWAUSDT","d":[]},{"s":"UNISWAP:MSTRWETH_6D9350.USD","d":[]},{"s":"POLONIEX:BANANAUSDT","d":[]},{"s":"BINANCE:FTMTRY","d":[]},{"s":"BITRUE:ORNUSDT","d":[]},{"s":"UNISWAP:FETCHWETH_149D20.USD","d":[]},{"s":"UNISWAP:VLTWETH_966053","d":[]},{"s":"UNISWAP3ETH:ROARWETH","d":[]},{"s":"UNISWAP3ETH:INFINITEUSDC","d":[]},{"s":"UNISWAP3ETH:USDCOSETH","d":[]},{"s":"BYBIT:MELOSUSDT","d":[]},{"s":"UNISWAP:ASCWETH_E8F2BC","d":[]},{"s":"UNISWAP:ZONEWETH_953326","d":[]},{"s":"BITFINEX:OPXUSD","d":[]},{"s":"PHEMEX:TWTUSDT.P","d":[]},{"s":"POLONIEX:EOSUSDT","d":[]},{"s":"KRAKEN:ICPUSD","d":[]},{"s":"UNISWAP:GAIWETH_8328C8.USD","d":[]},{"s":"UNISWAP:PAPEPOHM_435626.USD","d":[]},{"s":"BINGX:YFIUSDT.PS","d":[]},{"s":"BITGET:NEARUSDT","d":[]},{"s":"KRAKEN:LPTUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHRBX","d":[]},{"s":"ZOOMEX:BSVUSDT.P","d":[]},{"s":"QUICKSWAP:PFIWMATIC_B75B89","d":[]},{"s":"BITGET:LUNAUSDT","d":[]},{"s":"MEXC:SXPUSDT.P","d":[]},{"s":"UNISWAP:KUKUWETH_2FEC2A","d":[]},{"s":"BYBIT:ZILUSDT.P","d":[]},{"s":"UNISWAP:LONGWETH_7CE52D.USD","d":[]},{"s":"BITHUMB:COMPKRW","d":[]},{"s":"UNISWAP3ETH:RPKWETH","d":[]},{"s":"PIONEX:RNDRUSDT.P","d":[]},{"s":"PANGOLIN:BCASHWAVAX_07280F","d":[]},{"s":"UNISWAP:BOLTWETH_92AD5F","d":[]},{"s":"UNISWAP:BIDWETH_0F9768.USD","d":[]},{"s":"WAGYUSWAP:USDVWVLX_5080E9.USD","d":[]},{"s":"HITBTC:DAIUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:ROSNETWETH_049183.USD","d":[]},{"s":"GATEIO:FALCONSUSDT","d":[]},{"s":"UNISWAP:PNODEWETH_C4AAE4","d":[]},{"s":"MEXC:ZECUSDT.P","d":[]},{"s":"PANGOLIN:MSTRWAVAX_3BD58A.USD","d":[]},{"s":"BITRUE:MDXUSDT","d":[]},{"s":"MEXC:PACUSDT","d":[]},{"s":"UNISWAP3ETH:WMCWETH_F44876.USD","d":[]},{"s":"BYBIT:ACMUSDT","d":[]},{"s":"SPOOKYSWAP:RCWFTM_D52183","d":[]},{"s":"UNISWAP3ETH:BAKCAPE_05B536.USD","d":[]},{"s":"BINGX:GLMUSDT.PS","d":[]},{"s":"MEXC:MOVRUSDT.P","d":[]},{"s":"UNISWAP3ETH:RENBTCWETH","d":[]},{"s":"UNISWAP:OCPWETH_935A1D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:PLSUSDS_649D81.USD","d":[]},{"s":"UNISWAP:MANDOXWETH_C6C875","d":[]},{"s":"UNISWAP:MAGAWETH_E6E4AB","d":[]},{"s":"BITFINEX:SIDUSUSD","d":[]},{"s":"KRAKEN:MIREUR","d":[]},{"s":"BITGET:PENDLEUSDT","d":[]},{"s":"BISWAP:GHNYBUSD_2B702B","d":[]},{"s":"BINANCE:GNOUSDT","d":[]},{"s":"HITBTC:NEOETH","d":[]},{"s":"UNISWAP3OPTIMISM:HAIWETH_2A087F.USD","d":[]},{"s":"UNISWAP:TRUMPWETH_F266AC.USD","d":[]},{"s":"UNISWAP:CHANWETH_173B99.USD","d":[]},{"s":"BITGET:MOVERUSDT","d":[]},{"s":"HITBTC:ALGOUSDC","d":[]},{"s":"UNISWAP3ETH:VPPWETH_3B725B.USD","d":[]},{"s":"HITBTC:ARBUSD","d":[]},{"s":"UNISWAP3ETH:TKBWETH_415B5A.USD","d":[]},{"s":"BITGET:QKCUSDT","d":[]},{"s":"BITKUB:GALTHB","d":[]},{"s":"UNISWAP3ETH:STKAAVEAAVE","d":[]},{"s":"UNISWAP:ZIONWETH_073577","d":[]},{"s":"BITKUB:AAVETHB","d":[]},{"s":"UNISWAP3ETH:GOFURSWETH","d":[]},{"s":"BINANCE:BALBTC","d":[]},{"s":"KRAKEN:USDCAD","d":[]},{"s":"MEXC:INFRAUSDT","d":[]},{"s":"QUICKSWAP:PCTWMATIC_DF9549.USD","d":[]},{"s":"QUICKSWAP:MMSATOSHI_2903C7","d":[]},{"s":"BINANCE:DARBTC","d":[]},{"s":"KRAKEN:BLZUSD","d":[]},{"s":"WAGYUSWAP:WWYBUSD_07F93F","d":[]},{"s":"SPOOKYSWAP:OATHWFTM_084F50.USD","d":[]},{"s":"BINGX:FXSUSDT.P","d":[]},{"s":"GATEIO:BLTUSDT","d":[]},{"s":"BITSTAMP:BCHEUR","d":[]},{"s":"MEXC:EPIKOUSDT","d":[]},{"s":"COINEX:APEXUSDT","d":[]},{"s":"UNISWAP3ETH:ZARPUSDC","d":[]},{"s":"TIMEX:BTCUSDT","d":[]},{"s":"COINEX:MYRIAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TRUCEUSDC_EA8404.USD","d":[]},{"s":"DELTA:ETHUSD.P","d":[]},{"s":"MEXC:TOMIUSDT.P","d":[]},{"s":"HITBTC:ETHTRY","d":[]},{"s":"COINEX:TURBOUSDT","d":[]},{"s":"MEXC:DOGWIFHATUSDT","d":[]},{"s":"BINGX:SANDUSDT.PS","d":[]},{"s":"UNISWAP:WOJAK20WETH_4A99ED","d":[]},{"s":"BITMEX:ADAUSDT.P","d":[]},{"s":"BYBIT:FETUSDT.P","d":[]},{"s":"UNISWAP:XODEXWETH_B1CEBF","d":[]},{"s":"UNISWAP3ETH:PEPEWETH_F23900.USD","d":[]},{"s":"COINEX:AITECHUSDT","d":[]},{"s":"UNISWAP:BARKWETH_4ADD88","d":[]},{"s":"MEXC:WSTORUSDT","d":[]},{"s":"QUICKSWAP:ANYQUICK_EB275D","d":[]},{"s":"UNISWAP3ETH:WOLFWETH","d":[]},{"s":"BINANCE:FARMUSDT","d":[]},{"s":"COINBASE:ALGOUSD","d":[]},{"s":"BITRUE:ADABTC","d":[]},{"s":"GATEIO:JASMYUSDT","d":[]},{"s":"UNISWAP:STEALTHWETH_626BB5","d":[]},{"s":"GATEIO:NORDUSDT","d":[]},{"s":"UNISWAP:C2H6WETH_E1EBBF.USD","d":[]},{"s":"PIONEX:SFPUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDT_580392.USD","d":[]},{"s":"UNISWAP:DUCKUSDC_E93DC4","d":[]},{"s":"TRADERJOE:AGEURUSDC_0B7E75.USD","d":[]},{"s":"GATEIO:NAOSUSDT","d":[]},{"s":"GATEIO:BLACKUSDT","d":[]},{"s":"BYBIT:BADGERUSDT.P","d":[]},{"s":"BINANCE:BURGERUSDT","d":[]},{"s":"UNISWAP3ETH:SILOUSDT","d":[]},{"s":"GATEIO:BISOUSDT","d":[]},{"s":"GATEIO:PIASUSDT","d":[]},{"s":"GATEIO:AXSUSDT.3S","d":[]},{"s":"BITGET:ANTUSDT","d":[]},{"s":"BINANCE:MAVTRY","d":[]},{"s":"UNISWAP3ETH:HILOUSDC_D57D35.USD","d":[]},{"s":"COINEX:LINKUSDT","d":[]},{"s":"BITGET:LOOMUSDT","d":[]},{"s":"BITFINEX:BGBBTC","d":[]},{"s":"KRAKEN:LINKBTC","d":[]},{"s":"POLONIEX:GMEUSDT","d":[]},{"s":"KRAKEN:SRMUSD","d":[]},{"s":"PANGOLIN:BAVAWAVAX_EB6965","d":[]},{"s":"UNISWAP3ETH:WBTCWETH_285884.USD","d":[]},{"s":"QUICKSWAP:BLANKUSDC_3B480D","d":[]},{"s":"UNISWAP:DISWETH_4E37DC","d":[]},{"s":"UNISWAP:DGRNWETH_8521A3","d":[]},{"s":"UNISWAP3OPTIMISM:WLDWETH_250E21.USD","d":[]},{"s":"QUICKSWAP:PYRWMATIC_6FC336.USD","d":[]},{"s":"GATEIO:KINGSHIBUSDT","d":[]},{"s":"GATEIO:SAKEUSDT","d":[]},{"s":"BLOFIN:MNTUSDT.P","d":[]},{"s":"MEXC:KLVUSDT","d":[]},{"s":"BINGX:FILUSDT.PS","d":[]},{"s":"ZOOMEX:RONUSDT.P","d":[]},{"s":"UNISWAP3ETH:MONWETH_21F396.USD","d":[]},{"s":"KRAKEN:MATICBTC","d":[]},{"s":"UNISWAP3ARBITRUM:USDCUSDT_9957AB.USD","d":[]},{"s":"UNISWAP3ETH:OSQTHWETH_82C427.USD","d":[]},{"s":"UNISWAP:TRAVAWETH_C1969D","d":[]},{"s":"KRAKEN:KEYEUR","d":[]},{"s":"MEXC:NKNUSDT.P","d":[]},{"s":"BITMEX:FETUSD.P","d":[]},{"s":"WOONETWORK:KUBUSDT","d":[]},{"s":"UNISWAP:SSTWETH_4E293C.USD","d":[]},{"s":"UNISWAP:0X9469D0WETH_A32523.USD","d":[]},{"s":"HITBTC:NUTUSD","d":[]},{"s":"DELTA:SUSHIUSDT.P","d":[]},{"s":"BYBIT:METHUSDT","d":[]},{"s":"WOONETWORK:ZKFUSDT","d":[]},{"s":"UNISWAP:KONGWETH_3BA47C.USD","d":[]},{"s":"HITBTC:TRXUSDC","d":[]},{"s":"UNISWAP3ETH:KASWETH_6916F7.USD","d":[]},{"s":"HITBTC:TRXETH","d":[]},{"s":"UNISWAP3ETH:WETHATH","d":[]},{"s":"BITGET:PUNDIXUSDT","d":[]},{"s":"UNISWAP:GMEWETH_FA7005.USD","d":[]},{"s":"OKX:CRVUSD.P","d":[]},{"s":"BINANCE:SANDBNB","d":[]},{"s":"UNISWAP:FINALEWETH_4A6670","d":[]},{"s":"MEXC:VCTUSDT","d":[]},{"s":"BINANCE:PONDBTC","d":[]},{"s":"TRADERJOE:MUMIM_6BB1CF","d":[]},{"s":"UNISWAP3ETH:RVSTWETH","d":[]},{"s":"UNISWAP:BITEWETH_F8C904.USD","d":[]},{"s":"SPOOKYSWAP:MORPHWFTM_7D4244","d":[]},{"s":"UNISWAP3ETH:OG404WETH","d":[]},{"s":"UNISWAP:ABCWETH_C290F0.USD","d":[]},{"s":"MEXC:ABSUSDT","d":[]},{"s":"WAGYUSWAP:VLXPADUSDT_427974","d":[]},{"s":"WHITEBIT:FTMUSDT","d":[]},{"s":"BINANCE:PERPBTC","d":[]},{"s":"MEXC:MYRIAUSDT","d":[]},{"s":"MEXC:DODOUSDT.P","d":[]},{"s":"UNISWAP:STRUMPWETH_94CA40.USD","d":[]},{"s":"KRAKEN:SOLETH","d":[]},{"s":"UNISWAP:XBOTWETH_168E23.USD","d":[]},{"s":"COINEX:ARTYUSDT","d":[]},{"s":"WHITEBIT:LUNAUSDT","d":[]},{"s":"BITGET:USDVUSDC","d":[]},{"s":"PANGOLIN:VOIDWAVAX_7056B7","d":[]},{"s":"UNISWAP3ETH:ASMWETH","d":[]},{"s":"QUICKSWAP:MCHCWETH_E90056.USD","d":[]},{"s":"BYBIT:LQTYUSDT.P","d":[]},{"s":"UNISWAP:PNDCWETH_27B82B.USD","d":[]},{"s":"COINEX:LINAUSDT","d":[]},{"s":"HITBTC:MDXBTC","d":[]},{"s":"PHEMEX:ARKMUSDT.P","d":[]},{"s":"GATEIO:DCUSDT","d":[]},{"s":"BINANCE:FETUSDT","d":[]},{"s":"COINEX:RLCUSDC","d":[]},{"s":"POLONIEX:SWFTCTRX","d":[]},{"s":"UNISWAP:GEOWETH_D10122","d":[]},{"s":"UNISWAP:ATOSUSDT_C2839A","d":[]},{"s":"COINEX:WOOUSDT","d":[]},{"s":"MEXC:SPRTUSDT","d":[]},{"s":"GATEIO:USDGUSDT","d":[]},{"s":"UNISWAP3ETH:STRDYWETH_A499B5.USD","d":[]},{"s":"UNISWAP:QUESTWETH_AC9373","d":[]},{"s":"KRAKEN:ZECBTC","d":[]},{"s":"UNISWAP:BRIGHTWETH_F4835A","d":[]},{"s":"MEXC:UNIUSDC","d":[]},{"s":"UNISWAP:TASWETH_40849D.USD","d":[]},{"s":"UNISWAP:DOGWETH_86F5D5","d":[]},{"s":"COINEX:ALUUSDT","d":[]},{"s":"KRAKEN:RNDRUSD.PM","d":[]},{"s":"COINBASE:SKLUSD","d":[]},{"s":"UNISWAP3ETH:LICKWETH_06B009.USD","d":[]},{"s":"UNISWAP3ETH:SHFLUSDC_D0A4C8.USD","d":[]},{"s":"GATEIO:RCNUSDT","d":[]},{"s":"UNISWAP3ETH:MOONCATWETH","d":[]},{"s":"UNISWAP3ETH:WETHIPET","d":[]},{"s":"BYBIT:VANRYUSDT.P","d":[]},{"s":"BINANCE:XRPUSD.P","d":[]},{"s":"COINEX:AERGOUSDT","d":[]},{"s":"GATEIO:VRAUSDT","d":[]},{"s":"UNISWAP3ETH:SAMALTMANWETH","d":[]},{"s":"HITBTC:DENTUSD","d":[]},{"s":"BINANCE:BCHUSDM2024","d":[]},{"s":"TRADERJOE:OBXWAVAX_1A95F0.USD","d":[]},{"s":"QUICKSWAP:WRLDWMATIC_B3DF7C.USD","d":[]},{"s":"UNISWAP3ETH:PUFETHWETH_C641E1.USD","d":[]},{"s":"HITBTC:OSMOUSDT","d":[]},{"s":"COINEX:AUCTIONUSDT","d":[]},{"s":"PIONEX:MOVRUSDT.P","d":[]},{"s":"XEXCHANGE:EBUDUSDC","d":[]},{"s":"COINEX:SYSUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:USDCDOLA_6352D9.USD","d":[]},{"s":"UNISWAP:NRDCWETH_316D5F.USD","d":[]},{"s":"WHITEBIT:CTSIUSDT","d":[]},{"s":"BINANCE:MDTUSDT","d":[]},{"s":"XEXCHANGE:EBUDWEGLD","d":[]},{"s":"UNISWAP3ETH:HYVEUSDT_623027.USD","d":[]},{"s":"BINANCE:USDTPLN","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCDAI_46C47C.USD","d":[]},{"s":"UNISWAP:DGPUWETH_E988FF.USD","d":[]},{"s":"UNISWAP:SHSWETH_C817FD","d":[]},{"s":"UNISWAP:SPRMWETH_9D2DFD","d":[]},{"s":"UNISWAP:HOKKWETH_931494.USD","d":[]},{"s":"BINGX:APEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHOPTIMUS","d":[]},{"s":"PANGOLIN:FRAXWAVAX_0CE543.USD","d":[]},{"s":"UNISWAP:VRXWETH_BC159C","d":[]},{"s":"UNISWAP:OCAIWETH_23BC66.USD","d":[]},{"s":"MEXC:RENQUSDT","d":[]},{"s":"COINEX:AZEROUSDT","d":[]},{"s":"MEXC:5IREUSDT","d":[]},{"s":"BITGET:MBXUSDT","d":[]},{"s":"UNISWAP3POLYGON:ARENAWMATIC_BC44B6.USD","d":[]},{"s":"UNISWAP:ONYXWETH_536056.USD","d":[]},{"s":"PHEMEX:ETHWUSDT.P","d":[]},{"s":"KRAKEN:HFTUSD","d":[]},{"s":"MEXC:HYPCUSDT","d":[]},{"s":"UNISWAP:PIGEWETH_CC4794.USD","d":[]},{"s":"UNISWAP:OGSMWETH_7BDB64","d":[]},{"s":"MEXC:LUNAUSDT.P","d":[]},{"s":"BINGX:ZILUSDT.P","d":[]},{"s":"UNISWAP3ETH:SLRWETH","d":[]},{"s":"BITFINEX:QRDOUST","d":[]},{"s":"UNISWAP3ETH:PRIMEWETH_165887.USD","d":[]},{"s":"PHEMEX:ALPHAUSDT","d":[]},{"s":"MEXC:KARUSDT","d":[]},{"s":"UNISWAP:CHRPWETH_124030.USD","d":[]},{"s":"UNISWAP3ETH:WETHSNX","d":[]},{"s":"UNISWAP:DOGEWETH_C0067D.USD","d":[]},{"s":"UPBIT:SNTKRW","d":[]},{"s":"WHITEBIT:ADAUAH","d":[]},{"s":"UNISWAP3ARBITRUM:QKNTLWETH_95BBD8.USD","d":[]},{"s":"UNISWAP:CWSWETH_40449D.USD","d":[]},{"s":"BITFINEX:ATOBTC","d":[]},{"s":"GATEIO:HADESUSDT","d":[]},{"s":"MEXC:MKRUSDT","d":[]},{"s":"MEXC:GFUSDT","d":[]},{"s":"UNISWAP3ETH:STTAOUSDC_142831.USD","d":[]},{"s":"COINEX:MOVRBTC","d":[]},{"s":"UNISWAP:UPBOWETH_5EF42A.USD","d":[]},{"s":"UNISWAP3ETH:UNTWETH_829326.USD","d":[]},{"s":"BINANCE:DOTUSDH2024","d":[]},{"s":"GATEIO:CROUSDT","d":[]},{"s":"BYBIT:TURBOSUSDT","d":[]},{"s":"UNISWAP:CRWETH_35571C.USD","d":[]},{"s":"UNISWAP3ETH:FLIPWETH_7F7FF8.USD","d":[]},{"s":"TRADERJOE:FORTMIM_3E5F19.USD","d":[]},{"s":"POLONIEX:ETHUSDD","d":[]},{"s":"BITGET:HOOKUSDT.P","d":[]},{"s":"UNISWAP:RAMPWETH_ECFE2C","d":[]},{"s":"MEXC:DAMEXUSDT","d":[]},{"s":"UNISWAP:SMBRWETH_088480.USD","d":[]},{"s":"QUICKSWAP:TELEBTCWMATIC_0035D2","d":[]},{"s":"UNISWAP3ETH:WETHCVX","d":[]},{"s":"UNISWAP3ARBITRUM:PENDLEWETH_E8629B.USD","d":[]},{"s":"UNISWAP3ETH:WETHNOW","d":[]},{"s":"HONEYSWAPPOLYGON:WETHWMATIC","d":[]},{"s":"BITGET:BICOUSDT","d":[]},{"s":"MEXC:ULRUSDT","d":[]},{"s":"KRAKEN:EURCAD","d":[]},{"s":"UNISWAP3ETH:LUSDUSDC","d":[]},{"s":"UNISWAP3ETH:0XBTCWETH","d":[]},{"s":"WAGYUSWAP:SWAPZWAG_3F3C90.USD","d":[]},{"s":"UNISWAP3ETH:ERC20WETH","d":[]},{"s":"UNISWAP3POLYGON:CENTUSUSDT_FD84F3.USD","d":[]},{"s":"BYBIT:UNFIUSDT.P","d":[]},{"s":"BINGX:ICPUSDT.P","d":[]},{"s":"KRAKEN:ETHBTC","d":[]},{"s":"PHEMEX:PEPEUSDT","d":[]},{"s":"UNISWAP:BOTTOWETH_9FF68F.USD","d":[]},{"s":"BLOFIN:HOOKUSDT.P","d":[]},{"s":"KRAKEN:WIFUSD","d":[]},{"s":"GATEIO:DEKUSDT","d":[]},{"s":"BITRUE:BONKUSDT","d":[]},{"s":"COINEX:HEGICUSDT","d":[]},{"s":"MEXC:SXMUSDT","d":[]},{"s":"UNISWAP3ETH:GALUSDC_4721F2.USD","d":[]},{"s":"UNISWAP3ETH:RARIWETH_FAACE6.USD","d":[]},{"s":"HITBTC:ILVBTC","d":[]},{"s":"MEXC:ODDZUSDT","d":[]},{"s":"HITBTC:BADGERBTC","d":[]},{"s":"COINBASE:FILGBP","d":[]},{"s":"MEXC:GMUSDT","d":[]},{"s":"UNISWAP3ETH:USDTPRE","d":[]},{"s":"GATEIO:ANTUSDT","d":[]},{"s":"BITGET:NOMUSDT","d":[]},{"s":"COINEX:ETNUSDT","d":[]},{"s":"UNISWAP3ETH:USDCXCM","d":[]},{"s":"WHITEBIT:SHIBUAH","d":[]},{"s":"COINEX:CWSUSDT","d":[]},{"s":"UNISWAP3ETH:FUNGWETH","d":[]},{"s":"UNISWAP3ARBITRUM:POGAIWETH_186220.USD","d":[]},{"s":"UNISWAP3ETH:WLYXWETH","d":[]},{"s":"PHEMEX:SUSHIUSDT.P","d":[]},{"s":"DERIBIT:ETHUSD29H2024","d":[]},{"s":"BTSE:ETHUSDH2024","d":[]},{"s":"UNISWAP3ETH:USDTMTH","d":[]},{"s":"UNISWAP3ETH:BAYCWETH_E72377.USD","d":[]},{"s":"BYBIT:GRTUSDT.P","d":[]},{"s":"BITSTAMP:ANTEUR","d":[]},{"s":"UNISWAP3ETH:PRQWETH_A34F0D.USD","d":[]},{"s":"UNISWAP:ETH2XFLIWETH_F91C12","d":[]},{"s":"GATEIO:SXPUSDT","d":[]},{"s":"COINEX:OCTAUSDT","d":[]},{"s":"HITBTC:EOSUSDC","d":[]},{"s":"COINBASE:USDTUSDC","d":[]},{"s":"GATEIO:DOSUSDT","d":[]},{"s":"UNISWAP3POLYGON:WGHOSTWMATIC_348F52.USD","d":[]},{"s":"UNISWAP:FROGDOGWETH_5DC653.USD","d":[]},{"s":"BITMEX:P_SBFJAILZ2026","d":[]},{"s":"GATEIO:ECOXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFCO","d":[]},{"s":"BITKUB:XLMTHB","d":[]},{"s":"BITMEX:XPLAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAKITA","d":[]},{"s":"BITRUE:DARUSDT","d":[]},{"s":"UNISWAP3ETH:CSCSUSDT","d":[]},{"s":"MEXC:ATOMBTC","d":[]},{"s":"UNISWAP3ARBITRUM:WNTUSDT_84C201.USD","d":[]},{"s":"UNISWAP3ETH:KONWETH","d":[]},{"s":"BLOFIN:PEPEUSDT.P","d":[]},{"s":"UNISWAP3ETH:DOGEGFWETH_E744F5.USD","d":[]},{"s":"BINGX:BNBUSDT.PS","d":[]},{"s":"BINANCE:FTTUSDT","d":[]},{"s":"UNISWAP:PODWETH_000B9F","d":[]},{"s":"UNISWAP3ETH:NWETH","d":[]},{"s":"UNISWAP3ETH:ARBWETH","d":[]},{"s":"BYBIT:BTCDAI","d":[]},{"s":"UNISWAP3ETH:USDTMAP","d":[]},{"s":"UNISWAP3ETH:USDCPAS","d":[]},{"s":"BITFINEX:SUSHIUSD","d":[]},{"s":"GATEIO:BSVUSDT.3S","d":[]},{"s":"UNISWAP:HOTDOGWETH_40A7FC.USD","d":[]},{"s":"PHEMEX:ZECUSDT.P","d":[]},{"s":"UNISWAP:DINGERWETH_21A7AF.USD","d":[]},{"s":"BITFINEX:GMMTUSD","d":[]},{"s":"ZOOMEX:UMAUSDT.P","d":[]},{"s":"MEXC:HOOKUSDT.P","d":[]},{"s":"PANGOLIN:ZOOWAVAX_97BD1E.USD","d":[]},{"s":"MEXC:KSCUSDT","d":[]},{"s":"BINANCE:ATABTC","d":[]},{"s":"GATEIO:LITUSDT","d":[]},{"s":"GEMINI:LTCBTC","d":[]},{"s":"BITKUB:TRXTHB","d":[]},{"s":"PANGOLIN:GEGGSCOQ_9A1108.USD","d":[]},{"s":"BINGX:FLOKIUSDT.P","d":[]},{"s":"MEXC:CRACUSDT","d":[]},{"s":"BITSTAMP:1INCHUSD","d":[]},{"s":"SPOOKYSWAP:AXLUSDTWFTM_7F2B4D","d":[]},{"s":"UNISWAP3ETH:WETHPOINTS","d":[]},{"s":"HITBTC:UNFIUSDT","d":[]},{"s":"UNISWAP:YOYOWETH_66914D","d":[]},{"s":"UNISWAP3ETH:WETHSWISE","d":[]},{"s":"COINEX:HFTUSDT","d":[]},{"s":"GATEIO:ATOMUSDT","d":[]},{"s":"UNISWAP3ETH:USDTRATS","d":[]},{"s":"GATEIO:NPTUSDT","d":[]},{"s":"TRADERJOE:CHROWAVAX_D138F9","d":[]},{"s":"BITHUMB:KLAYKRW","d":[]},{"s":"OKX:BALUSDT.P","d":[]},{"s":"PIONEX:IOTXUSDT.P","d":[]},{"s":"UNISWAP:CATGPTWETH_A8BC3B","d":[]},{"s":"UNISWAP3ETH:WETHLINQ","d":[]},{"s":"ZOOMEX:DASHUSDT.P","d":[]},{"s":"UNISWAP3ETH:PANDAWETH","d":[]},{"s":"COINEX:USDCUSDT","d":[]},{"s":"WOONETWORK:GRTUSDT","d":[]},{"s":"UNISWAP:DHBUSDT_9DE18A","d":[]},{"s":"UNISWAP:SWAPPWETH_17EC16.USD","d":[]},{"s":"BITFINEX:NEXOBTC","d":[]},{"s":"UNISWAP3ETH:BOOPWETH_7C46E6.USD","d":[]},{"s":"BYBIT:AIUSDT.P","d":[]},{"s":"COINEX:GODSUSDT","d":[]},{"s":"BITHUMB:FLRKRW","d":[]},{"s":"BTSE:CTSIUSD.P","d":[]},{"s":"BITRUE:DUSKXRP","d":[]},{"s":"BITGET:REEFUSDT","d":[]},{"s":"GATEIO:DOGEUSDT","d":[]},{"s":"UNISWAP:TOWERMYTH_3E1FFD","d":[]},{"s":"GATEIO:ADAUSDT.3S","d":[]},{"s":"UNISWAP3ETH:EEFIWETH_0B1D8F.USD","d":[]},{"s":"TRADERJOE:PIGGYWAVAX_244088.USD","d":[]},{"s":"BITFINEX:LEOUST","d":[]},{"s":"BITFINEX:FILBTC","d":[]},{"s":"UNISWAP:DICEWETH_9DF468.USD","d":[]},{"s":"BYBIT:DCRUSDT","d":[]},{"s":"UNISWAP:CBYWETH_B09BA3","d":[]},{"s":"BINANCE:CHRUSDT","d":[]},{"s":"POLONIEX:SOLCHATUSDT","d":[]},{"s":"BYBIT:FLRUSDT","d":[]},{"s":"UNISWAP:GIGACHADWETH_29C699.USD","d":[]},{"s":"QUICKSWAP:MOCEANWMATIC_5A94F8.USD","d":[]},{"s":"HITBTC:FDUSDUSDT","d":[]},{"s":"WOONETWORK:NEONUSDT","d":[]},{"s":"BITFINEX:XRPUSD","d":[]},{"s":"UNISWAP3POLYGON:MKFWMATIC_D5D302.USD","d":[]},{"s":"MEXC:LFUSDT","d":[]},{"s":"UNISWAP3ETH:ANKRETHANKR_1FEE92.USD","d":[]},{"s":"UNISWAP3ETH:MPLUSDC","d":[]},{"s":"MEXC:CHOUSDT","d":[]},{"s":"BITHUMB:FETKRW","d":[]},{"s":"UNISWAP:ALFAWETH_12490E","d":[]},{"s":"UNISWAP:UDXWETH_A97B45.USD","d":[]},{"s":"GATEIO:QWANUSDT","d":[]},{"s":"UNISWAP:DOGEGFWETH_6060AD.USD","d":[]},{"s":"BITSTAMP:ETHBTC","d":[]},{"s":"UNISWAP:NINUWETH_0FF6C9","d":[]},{"s":"ZOOMEX:SUPERUSDT.P","d":[]},{"s":"TRADERJOE:BANKSYUSDTE_CF34F2.USD","d":[]},{"s":"HITBTC:KMDUSDT","d":[]},{"s":"GATEIO:FURUCOMBOUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:SNXWETH_FEA834.USD","d":[]},{"s":"COINEX:ZILUSDC","d":[]},{"s":"WHITEBIT:DATAUSDT","d":[]},{"s":"UNISWAP:TOMIUSDT_E5D5F8","d":[]},{"s":"MEXC:FARMUSDT","d":[]},{"s":"KRAKEN:ALGOUSD","d":[]},{"s":"BINANCE:GRTFDUSD","d":[]},{"s":"SPOOKYSWAP:DSHAREUSDC_1B622B","d":[]},{"s":"BITFINEX:VRAUSD","d":[]},{"s":"GATEIO:GLMUSDT","d":[]},{"s":"UNISWAP3ETH:DEXTFUSDT","d":[]},{"s":"MEXC:CVCUSDT.P","d":[]},{"s":"UNISWAP:VEGASWETH_20B019.USD","d":[]},{"s":"UNISWAP:IOIUSDT_F6887A","d":[]},{"s":"UNISWAP3ETH:FLCWETH","d":[]},{"s":"MEXC:HFTUSDT","d":[]},{"s":"MEXC:RAREUSDT.P","d":[]},{"s":"UNISWAP:RABBITWETH_C4E978.USD","d":[]},{"s":"UNISWAP3ETH:LIKEUSDT","d":[]},{"s":"BITRUE:QNTXRP","d":[]},{"s":"PIONEX:RATSUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHGMS","d":[]},{"s":"UNISWAP3ETH:00WETH","d":[]},{"s":"UNISWAP:XMAILWETH_75A1BB","d":[]},{"s":"BITHUMB:HFTKRW","d":[]},{"s":"WHITEBIT:XRPUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSLR","d":[]},{"s":"UNISWAP3ETH:WETHBARA","d":[]},{"s":"KRAKEN:FTMUSD.PM","d":[]},{"s":"POLONIEX:C98USDT","d":[]},{"s":"COINBASE:BTCUSD","d":[]},{"s":"UNISWAP3ARBITRUM:BTC.BWETH_681C2A.USD","d":[]},{"s":"UNISWAP3ETH:SESWETH","d":[]},{"s":"HITBTC:UNIBTC","d":[]},{"s":"BINANCE:EOSUSDT","d":[]},{"s":"TRADERJOE:DONKWAVAX_893BC0.USD","d":[]},{"s":"UNISWAP3ETH:EXDUSDT","d":[]},{"s":"COINBASE:UMAUSD","d":[]},{"s":"WHITEBIT:DODOUSDT","d":[]},{"s":"UNISWAP:MAGAWETH_E6E4AB.USD","d":[]},{"s":"COINBASE:GMTUSD","d":[]},{"s":"MEXC:LYNXUSDT","d":[]},{"s":"WHITEBIT:FRONTUSDT","d":[]},{"s":"UNISWAP3ETH:DXNWETH","d":[]},{"s":"TRADERJOE:ALPHAUSDC_E7C906","d":[]},{"s":"HITBTC:MYSTBTC","d":[]},{"s":"UNISWAP:CHUBWETH_D50123.USD","d":[]},{"s":"HITBTC:LSKUSDC","d":[]},{"s":"UNISWAP:LNQWETH_82B8EE.USD","d":[]},{"s":"UNISWAP:OPCWETH_C046B2.USD","d":[]},{"s":"BITHUMB:CVCKRW","d":[]},{"s":"MEXC:RICEUSDT","d":[]},{"s":"HITBTC:LTCTUSD","d":[]},{"s":"TRADERJOE:EGGSWAVAX_12D1E1","d":[]},{"s":"UNISWAP:UNITAOWETH_43BEC8.USD","d":[]},{"s":"GATEIO:QKCUSDT","d":[]},{"s":"UNISWAP:SUSDWETH_F80758","d":[]},{"s":"UNISWAP:DIAMONDWETH_01AE40","d":[]},{"s":"HITBTC:VTCBTC","d":[]},{"s":"MEXC:CELLUSDT","d":[]},{"s":"BITKUB:AXLTHB","d":[]},{"s":"UNISWAP:PIRATESWETH_3C2247","d":[]},{"s":"MEXC:OLEUSDT","d":[]},{"s":"BINANCE:TIAUSDT","d":[]},{"s":"MEXC:BLURUSDT","d":[]},{"s":"UNISWAP:BOUNTYWETH_C66DF5","d":[]},{"s":"KRAKEN:REPUSD","d":[]},{"s":"GATEIO:EQXUSDT","d":[]},{"s":"COINEX:ROSEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:OHMUSDC_C0FF1B.USD","d":[]},{"s":"PIONEX:XLMUSDT.P","d":[]},{"s":"MEXC:PRISMAUSDT","d":[]},{"s":"PHEMEX:ATOMUSDT","d":[]},{"s":"BITSTAMP:NEXOEUR","d":[]},{"s":"UNISWAP:BTCWETH_4B398F","d":[]},{"s":"GEMINI:AVAXGUSD.P","d":[]},{"s":"UNISWAP:CHAMPZWETH_C43DCA.USD","d":[]},{"s":"GATEIO:CLHUSDT","d":[]},{"s":"UNISWAP:SNIBBUWETH_1C726D","d":[]},{"s":"UNISWAP3ETH:LUNAUSDT","d":[]},{"s":"MEXC:PRXUSDT","d":[]},{"s":"MEXC:GSYSUSDT","d":[]},{"s":"BINANCE:XTZUSD.P","d":[]},{"s":"UNISWAP3ETH:OKUSDT","d":[]},{"s":"QUICKSWAP:PBORAWMATIC_4EF715.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ICHILMR_AC419B.USD","d":[]},{"s":"HITBTC:ONTUSDT","d":[]},{"s":"UNISWAP:PEPEWETH_647B36.USD","d":[]},{"s":"QUICKSWAP:SHNUSDC_4F6A32","d":[]},{"s":"UNISWAP3ARBITRUM:BONZAIWETH_A77D77.USD","d":[]},{"s":"GATEIO:STBUUSDT","d":[]},{"s":"ZOOMEX:ENSUSDT.P","d":[]},{"s":"UPBIT:EGLDKRW","d":[]},{"s":"BITFINEX:NEARUSD","d":[]},{"s":"BISWAP:XLMWBNB_F7AA26.USD","d":[]},{"s":"BINGX:SUSHIUSDT.PS","d":[]},{"s":"BITGET:FTNUSDT","d":[]},{"s":"HITBTC:POA20USDT","d":[]},{"s":"PIONEX:LEVERUSDT.P","d":[]},{"s":"UNISWAP:TIPJAWETH_9C625E","d":[]},{"s":"MEXC:WNTUSDT","d":[]},{"s":"BINANCE:MAGICUSDT","d":[]},{"s":"POLONIEX:UPDOGUSDT","d":[]},{"s":"UNISWAP:CAPOWETH_8C297D","d":[]},{"s":"BINANCE:TIATRY","d":[]},{"s":"COINBASE:LINKUSD","d":[]},{"s":"HITBTC:SRMUSDT","d":[]},{"s":"UNISWAP:DEAIWETH_E2BAAA.USD","d":[]},{"s":"BITFINEX:MXNTBTC","d":[]},{"s":"POLONIEX:USDDUSDT","d":[]},{"s":"BISWAP:BFGUSDT_E06259","d":[]},{"s":"BITGET:MUBIUSDT","d":[]},{"s":"BINGX:ENJUSDT.P","d":[]},{"s":"COINBASE:MASKUSDT","d":[]},{"s":"QUICKSWAP:CHAMPUSDT_320A50","d":[]},{"s":"GATEIO:POLSUSDT","d":[]},{"s":"MEXC:MANUSDT","d":[]},{"s":"HITBTC:NWCBTC","d":[]},{"s":"UNISWAP:BULLWETH_327C91.USD","d":[]},{"s":"GATEIO:ARPAUSDT.3L","d":[]},{"s":"UNISWAP3ETH:PEPEWETH","d":[]},{"s":"PANGOLIN:DGNXWAVAX_4A8323.USD","d":[]},{"s":"BLOFIN:ETHUSDT.P","d":[]},{"s":"BINANCE:WBTCBTC","d":[]},{"s":"POLONIEX:PYRUSDT","d":[]},{"s":"BLOFIN:1000FLOKIUSDT.P","d":[]},{"s":"UNISWAP3ETH:MATICUSDC","d":[]},{"s":"BINANCE:APEUSD.P","d":[]},{"s":"UNISWAP3ARBITRUM:EBONDSUSDC_67AC55.USD","d":[]},{"s":"PHEMEX:LRCUSDT","d":[]},{"s":"GATEIO:PPTUSDT","d":[]},{"s":"UNISWAP3ETH:ZVTWETH","d":[]},{"s":"HITBTC:SOLOUSDT","d":[]},{"s":"KRAKEN:EURAUD","d":[]},{"s":"UNISWAP3POLYGON:AKREUSDC_65906D.USD","d":[]},{"s":"UNISWAP:ITSWETH_24D9F6.USD","d":[]},{"s":"COINEX:STARSUSDT","d":[]},{"s":"TRADERJOE:KGCUSDTE_9CE225","d":[]},{"s":"GATEIO:GALAUSDT.5S","d":[]},{"s":"QUICKSWAP:NASMGWMATIC_CA7300.USD","d":[]},{"s":"BITGET:GMTUSDT.P","d":[]},{"s":"UNISWAP3ETH:SNTWETH","d":[]},{"s":"MEXC:VEMPUSDT","d":[]},{"s":"MEXC:IDEXUSDT","d":[]},{"s":"UNISWAP:PONDUSDC_D18748","d":[]},{"s":"KRAKEN:TBTCUSD","d":[]},{"s":"MEXC:XTZUSDT","d":[]},{"s":"UNISWAP:GROKBOTWETH_625FF6","d":[]},{"s":"UNISWAP:WPOKTWETH_A7FD8F","d":[]},{"s":"COINEX:ALGOUSDT","d":[]},{"s":"POLONIEX:EOSUSD","d":[]},{"s":"PANGOLIN:NCASHWAVAX_B8F66A.USD","d":[]},{"s":"UNISWAP:KODACHIWETH_7F72BF.USD","d":[]},{"s":"UNISWAP:XGPTWETH_7734AC","d":[]},{"s":"UNISWAP3ETH:USDTSQT","d":[]},{"s":"UNISWAP3ETH:FXSWETH_CD8286.USD","d":[]},{"s":"ZOOMEX:GTCUSDT.P","d":[]},{"s":"PIONEX:YGGUSDT.P","d":[]},{"s":"UNISWAP:NOWWETH_9730B0","d":[]},{"s":"BITFINEX:SGBUSD","d":[]},{"s":"TRADERJOE:PAPERWAVAX_774350.USD","d":[]},{"s":"COINEX:VTCBTC","d":[]},{"s":"UNISWAP:RELAYWETH_3AED5B","d":[]},{"s":"GATEIO:WOMUSDT","d":[]},{"s":"MEXC:PEOPLEUSDT","d":[]},{"s":"GATEIO:BABYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNFD","d":[]},{"s":"TRADERJOE:AIDUNCWAVAX_6D19ED.USD","d":[]},{"s":"UNISWAP3ETH:RSRWETH_32D925.USD","d":[]},{"s":"UNISWAP:GPWETH_4FAC94.USD","d":[]},{"s":"WOONETWORK:ETHWUSDT","d":[]},{"s":"COINBASE:CGLDEUR","d":[]},{"s":"UNISWAP3ETH:MVIWETH","d":[]},{"s":"UNISWAP:MAXXWETH_B61870.USD","d":[]},{"s":"UNISWAP:SCRAMBLEWETH_ED7985","d":[]},{"s":"XEXCHANGE:UNITYXUSDC","d":[]},{"s":"UNISWAP3ETH:TONCOINWETH","d":[]},{"s":"BITRUE:TRXXRP","d":[]},{"s":"POLONIEX:COLLABUSDT","d":[]},{"s":"BINGX:MAVIAUSDT.P","d":[]},{"s":"SPOOKYSWAP:POOCHUSDC_3EE606","d":[]},{"s":"BITHUMB:CELRKRW","d":[]},{"s":"SPOOKYSWAP:SMELTWFTM_02E060","d":[]},{"s":"UNISWAP3ETH:ETH2.0WETH","d":[]},{"s":"PHEMEX:SXPUSDT.P","d":[]},{"s":"TRADERJOE:USTWAVAX_7BF98B.USD","d":[]},{"s":"COINEX:XAVAUSDT","d":[]},{"s":"COINEX:STCBTC","d":[]},{"s":"HITBTC:LEVLBTC","d":[]},{"s":"BISWAP:APEWBNB_C2619B","d":[]},{"s":"BINANCE:ETHBTC","d":[]},{"s":"UNISWAP3ETH:SOTUWBTC","d":[]},{"s":"COINEX:ANGLEUSDT","d":[]},{"s":"KRAKEN:FLOWBTC","d":[]},{"s":"BISWAP:BIFIWBNB_EB8053.USD","d":[]},{"s":"UNISWAP3ETH:FLCUSDT","d":[]},{"s":"KRAKEN:STXEUR","d":[]},{"s":"HITBTC:DATXBTC","d":[]},{"s":"UNISWAP:AMPWETH_08650B","d":[]},{"s":"GATEIO:CTTUSDT","d":[]},{"s":"BITFINEX:XDCUSD","d":[]},{"s":"GATEIO:ROOMUSDT","d":[]},{"s":"HITBTC:LUNCETH","d":[]},{"s":"HITBTC:STCUSD","d":[]},{"s":"UNISWAP:TONWETH_4F1A2E.USD","d":[]},{"s":"QUICKSWAP:UPOUSDT_C1E49D","d":[]},{"s":"UNISWAP3ETH:RBNUSDC_FE0DF7.USD","d":[]},{"s":"UNISWAP:CUMINUWETH_7B412F.USD","d":[]},{"s":"UNISWAP3ETH:USDPUSDC_A6DE8D.USD","d":[]},{"s":"DELTA:DOTUSDT.P","d":[]},{"s":"POLONIEX:REPV2USD","d":[]},{"s":"UNISWAP3ETH:FRGWETH_7FB33D.USD","d":[]},{"s":"WHITEBIT:XMRUSDT.P","d":[]},{"s":"BITKUB:ALGOTHB","d":[]},{"s":"UNISWAP3ETH:ZEROWETH_45D314.USD","d":[]},{"s":"HITBTC:BSWUSDT","d":[]},{"s":"MEXC:BTTUSDT","d":[]},{"s":"UNISWAP3ETH:KITDAI","d":[]},{"s":"MEXC:CNSUSDT","d":[]},{"s":"COINEX:HMNDUSDT","d":[]},{"s":"MEXC:BEXUSDT","d":[]},{"s":"TRADERJOE:SCATDAIE_C7A1A9","d":[]},{"s":"BLOFIN:WLDUSDT.P","d":[]},{"s":"GATEIO:BEYONDUSDT","d":[]},{"s":"BITRUE:ARBUSDT","d":[]},{"s":"HITBTC:FORTHUSD","d":[]},{"s":"KRAKEN:ADAEUR","d":[]},{"s":"UNISWAP3ARBITRUM:WSTETHUSDC_C7341E.USD","d":[]},{"s":"UNISWAP3ETH:LIQWETH","d":[]},{"s":"HITBTC:DENTUSDT","d":[]},{"s":"UNISWAP:WANDWETH_96D7BF.USD","d":[]},{"s":"BTSE:EOSUSD","d":[]},{"s":"QUICKSWAP:FUSEWETH_9AB6E8","d":[]},{"s":"QUICKSWAP:IRONUSDC_2BBE0F","d":[]},{"s":"BTSE:ATOMUSD.P","d":[]},{"s":"MEXC:DFUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:PANTHEONWETH_965200.USD","d":[]},{"s":"MEXC:BAXUSDT","d":[]},{"s":"UNISWAP:FEYWETH_B6E544","d":[]},{"s":"QUICKSWAP:IOENWMATIC_316BC1.USD","d":[]},{"s":"GATEIO:LIMEUSDT","d":[]},{"s":"QUICKSWAP:GETWETH_3F7918.USD","d":[]},{"s":"MEXC:TOMBPLUSUSDT","d":[]},{"s":"UNISWAP:OHMIWETH_41A3CD.USD","d":[]},{"s":"GATEIO:CGGUSDT","d":[]},{"s":"UNISWAP3ETH:PUFETHWETH_BF7D01.USD","d":[]},{"s":"MEXC:AXUSDT","d":[]},{"s":"PHEMEX:CHZUSDT.P","d":[]},{"s":"HITBTC:COMBOUSDT","d":[]},{"s":"PANGOLIN:COQWAVAX_C4D630","d":[]},{"s":"TRADERJOE:COSMICUSDC_20B51E","d":[]},{"s":"BITGET:MDTUSDT","d":[]},{"s":"BITFINEX:ETHBTC.P","d":[]},{"s":"UNISWAP3ETH:DEXTFWETH","d":[]},{"s":"GATEIO:DRACUSDT","d":[]},{"s":"UNISWAP3ETH:DIVERWETH_B5851E.USD","d":[]},{"s":"MEXC:MOONEYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHALCA","d":[]},{"s":"KRAKEN:BCHUSD","d":[]},{"s":"HITBTC:BTCTRY","d":[]},{"s":"UNISWAP3ETH:USDTAGRS","d":[]},{"s":"BITFINEX:FLOKIUSD","d":[]},{"s":"GATEIO:MASKUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHALPHABET","d":[]},{"s":"UNISWAP:MIXWETH_E7F70C.USD","d":[]},{"s":"MEXC:TOKAUSDT","d":[]},{"s":"UNISWAP:0NECIV_A65653","d":[]},{"s":"UNISWAP3ETH:BSGGUSDT_29E280.USD","d":[]},{"s":"GATEIO:OLVUSDT","d":[]},{"s":"GATEIO:ROOTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDOP","d":[]},{"s":"UNISWAP:UMXWETH_383D02","d":[]},{"s":"UNISWAP:SWIFTIESWETH_28B66B","d":[]},{"s":"UNISWAP:PBASEDPOHM_C4BAB0","d":[]},{"s":"MEXC:KRESTUSDT","d":[]},{"s":"GATEIO:MBLKUSDT","d":[]},{"s":"BITRUE:RAREUSDT","d":[]},{"s":"UNISWAP:VROOMWETH_89CA17.USD","d":[]},{"s":"BITFINEX:PEPEUST","d":[]},{"s":"HITBTC:BTGUSD","d":[]},{"s":"UNISWAP3ETH:CZPEPECOIN_BB3003.USD","d":[]},{"s":"UNISWAP3ETH:SBIOUSDC","d":[]},{"s":"GATEIO:QSPUSDT","d":[]},{"s":"PANGOLIN:DGNXWAVAX_4A8323","d":[]},{"s":"GATEIO:TRACUSDT","d":[]},{"s":"UNISWAP:DRAGONWETH_7CA83D","d":[]},{"s":"UNISWAP3ETH:AXLWETH_E7F672.USD","d":[]},{"s":"BITGET:ARBUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCWETH_2F5E87.USD","d":[]},{"s":"UNISWAP3OPTIMISM:THALESWETH_FF7FBD.USD","d":[]},{"s":"MEXC:VTCUSDT","d":[]},{"s":"UNISWAP3ETH:USDCFLC","d":[]},{"s":"GATEIO:FSTUSDT","d":[]},{"s":"MEXC:CRFUSDT","d":[]},{"s":"BINANCE:EGLDUSDT","d":[]},{"s":"BITRUE:SFPUSDT","d":[]},{"s":"BITSTAMP:ETHUSD","d":[]},{"s":"UNISWAP:UNNWETH_7F1DA3.USD","d":[]},{"s":"GATEIO:RIDEUSDT","d":[]},{"s":"UNISWAP:BBOTWETH_9BBD3D.USD","d":[]},{"s":"BITRUE:PROUSDT","d":[]},{"s":"HITBTC:FRONTUSD","d":[]},{"s":"UNISWAP3POLYGON:DREAMUSDC_36228D.USD","d":[]},{"s":"UNISWAP:JPGDWETH_B9CF5B","d":[]},{"s":"BITHUMB:EGLDKRW","d":[]},{"s":"COINEX:MXMUSDT","d":[]},{"s":"COINEX:RMRKBTC","d":[]},{"s":"PANGOLIN:DAIPEFI_94DF69.USD","d":[]},{"s":"UNISWAP3POLYGON:PROFITWETH_D3B1F1.USD","d":[]},{"s":"COINBASE:00USD","d":[]},{"s":"QUICKSWAP:LICREKT_C1507C.USD","d":[]},{"s":"QUICKSWAP:OMWETH_FF2BBC.USD","d":[]},{"s":"SPOOKYSWAP:WOOMYWFTM_FE1379","d":[]},{"s":"MEXC:DGBUSDT.P","d":[]},{"s":"MEXC:MLNUSDT","d":[]},{"s":"SPOOKYSWAP:DNAWFTM_692784.USD","d":[]},{"s":"KRAKEN:ENJUSD.PM","d":[]},{"s":"BINANCE:OCEANTRY","d":[]},{"s":"MEXC:EVOUSDT","d":[]},{"s":"HITBTC:ZAPUSD","d":[]},{"s":"COINBASE:AXSBTC","d":[]},{"s":"ZOOMEX:BNXUSDT.P","d":[]},{"s":"BINANCE:CHZBRL","d":[]},{"s":"BITGET:MATICUSDT","d":[]},{"s":"MEXC:METFIUSDT","d":[]},{"s":"BITGET:LINKUSDC","d":[]},{"s":"BITFINEX:JSTBTC","d":[]},{"s":"BITGET:INTERUSDT","d":[]},{"s":"GATEIO:XTAGUSDT","d":[]},{"s":"UNISWAP3ETH:BTCINUWETH_80464C.USD","d":[]},{"s":"UNISWAP3POLYGON:ZEDUSDC_48B166.USD","d":[]},{"s":"UNISWAP:HAMSWETH_479D7A.USD","d":[]},{"s":"UNISWAP:YUPWETH_916560.USD","d":[]},{"s":"UNISWAP3ETH:COVFEFEWETH_6A28C9.USD","d":[]},{"s":"TRADERJOE:AKITAXWAVAX_837D44.USD","d":[]},{"s":"HITBTC:OPUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:SAIXWETH_D3E9BA.USD","d":[]},{"s":"POLONIEX:XMRUSDT","d":[]},{"s":"TRADERJOE:MODWAVAX_8BE568","d":[]},{"s":"COINEX:WENUSDT","d":[]},{"s":"POLONIEX:MDTUSD","d":[]},{"s":"COINBASE:DOTBTC","d":[]},{"s":"BYBIT:ARKMUSDT.P","d":[]},{"s":"UNISWAP:DOGCWETH_22453F.USD","d":[]},{"s":"BITGET:ZKFUSDT","d":[]},{"s":"UNISWAP:LYVEWETH_341C0B.USD","d":[]},{"s":"COINEX:NOTEUSDT","d":[]},{"s":"BYBIT:DYMUSDT.P","d":[]},{"s":"PHEMEX:CFXUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRADEWETH","d":[]},{"s":"UNISWAP3ETH:TUSDUSDT","d":[]},{"s":"TRADERJOE:TRACTORWAVAX_601E0F","d":[]},{"s":"MEXC:ZZUSDT","d":[]},{"s":"COINEX:TKOUSDT","d":[]},{"s":"UNISWAP3ETH:KCSWETH_0DF407.USD","d":[]},{"s":"HONEYSWAPPOLYGON:USDCMSTRM","d":[]},{"s":"PHEMEX:SLPUSDT","d":[]},{"s":"UNISWAP:YESWETH_08CA99.USD","d":[]},{"s":"BITKUB:KNCTHB","d":[]},{"s":"KRAKEN:KAVABTC","d":[]},{"s":"QUICKSWAP:WETHWMATIC_ADBF18","d":[]},{"s":"WAGYUSWAP:PENTWVLX_960957","d":[]},{"s":"UNISWAP3POLYGON:DHTWETH_62DEFA.USD","d":[]},{"s":"SPOOKYSWAP:WTRTLWFTM_A8DE53.USD","d":[]},{"s":"UNISWAP:FNDWETH_6D9B5E.USD","d":[]},{"s":"UNISWAP3POLYGON:DUSTWMATIC_982E75.USD","d":[]},{"s":"COINEX:DUSKUSDT","d":[]},{"s":"BINANCE:ADABNB","d":[]},{"s":"UNISWAP:DOORWETH_FC70C0","d":[]},{"s":"UNISWAP3ARBITRUM:TIGWETH_96F869.USD","d":[]},{"s":"QUICKSWAP:PDMTRWMATIC_3879CA.USD","d":[]},{"s":"GATEIO:HGPTUSDT","d":[]},{"s":"BYBIT:TRIBEUSDT","d":[]},{"s":"MEXC:CLIPSUSDT","d":[]},{"s":"QUICKSWAP:TOTEMWETH_944602.USD","d":[]},{"s":"GATEIO:TLOSUSDT","d":[]},{"s":"UNISWAP3ETH:USDTMONAI","d":[]},{"s":"MEXC:BELUSDT.P","d":[]},{"s":"COINEX:KMDBTC","d":[]},{"s":"UNISWAP3ETH:O404WETH_B3F613.USD","d":[]},{"s":"HITBTC:CHRUSD","d":[]},{"s":"GATEIO:API3USDT","d":[]},{"s":"MEXC:DEXEETH","d":[]},{"s":"UNISWAP:SENTWETH_B42CF2.USD","d":[]},{"s":"COINEX:NEARUSDT","d":[]},{"s":"BINANCE:TIAUSDC","d":[]},{"s":"GATEIO:NANOUSDT","d":[]},{"s":"PHEMEX:BELUSDT","d":[]},{"s":"UNISWAP3ETH:VADERWETH","d":[]},{"s":"UNISWAP3ETH:BADGERWETH_74092C.USD","d":[]},{"s":"UNISWAP:BFTWETH_623AC7.USD","d":[]},{"s":"TRADERJOE:FORTMIM_3E5F19","d":[]},{"s":"BLOFIN:GTCUSDT.P","d":[]},{"s":"UNISWAP3ETH:RYOSHIWETH_66D2FC.USD","d":[]},{"s":"GATEIO:ITSBUSDT","d":[]},{"s":"MEXC:DOSEUSDT","d":[]},{"s":"UNISWAP3POLYGON:ANKOWMATIC_DA6187.USD","d":[]},{"s":"BINANCE:LINKUSDM2024","d":[]},{"s":"UNISWAP:FELIXWETH_BAF584","d":[]},{"s":"BYBIT:BNBUSDT","d":[]},{"s":"BITGET:REPUSDT","d":[]},{"s":"MEXC:OGVUSDT","d":[]},{"s":"BITGET:STMXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHIAI","d":[]},{"s":"BLOFIN:FUNUSDT.P","d":[]},{"s":"GATEIO:KYVEUSDT","d":[]},{"s":"UNISWAP3ETH:USDTWBTC","d":[]},{"s":"MEXC:ARKMUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:NOLAWETH_DB9A76.USD","d":[]},{"s":"SPOOKYSWAP:KALMUSDC_6C43CA","d":[]},{"s":"BYBIT:PTUUSDT","d":[]},{"s":"PIONEX:OCEANUSDT.P","d":[]},{"s":"MEXC:VVUSDT","d":[]},{"s":"TRADERJOE:BCASHWAVAX_AA8D62.USD","d":[]},{"s":"GATEIO:YLDUSDT","d":[]},{"s":"SPOOKYSWAP:3OMBWFTM_83A52E","d":[]},{"s":"GEMINI:OXTBTC","d":[]},{"s":"MEXC:HONUSDT","d":[]},{"s":"BITSTAMP:ALPHAUSD","d":[]},{"s":"XEXCHANGE:RIDEWEGLD","d":[]},{"s":"SPOOKYSWAP:FRAXHEC_0F8D69","d":[]},{"s":"BITRUE:RVNXRP","d":[]},{"s":"HITBTC:PORTOUSD","d":[]},{"s":"MEXC:MBPUSDT","d":[]},{"s":"BTSE:SKLUSD","d":[]},{"s":"POLONIEX:TRACUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBAT","d":[]},{"s":"BITRUE:OMGUSDC","d":[]},{"s":"GATEIO:EGLDUSDT.3L","d":[]},{"s":"QUICKSWAP:GMEEWMATIC_7AFA30","d":[]},{"s":"UNISWAP:TRUMPJRWETH_12A539","d":[]},{"s":"POLONIEX:SHIBUSDC","d":[]},{"s":"UNISWAP3ETH:WETHGNUS","d":[]},{"s":"GEMINI:DOGEBTC","d":[]},{"s":"UNISWAP3ETH:USDCSMT","d":[]},{"s":"COINBASE:HNTUSD","d":[]},{"s":"UNISWAP3ETH:OHMWETH_F1B63C.USD","d":[]},{"s":"UNISWAP:DIGIWETH_52084D.USD","d":[]},{"s":"BYBIT:BABYDOGEUSDT","d":[]},{"s":"GATEIO:POLUSDT","d":[]},{"s":"UNISWAP3ETH:DEXTFUSDC_6BFC42.USD","d":[]},{"s":"UNISWAP:WIKWETH_2308B6","d":[]},{"s":"SPOOKYSWAP:WSHECWFTM_0BFE6F.USD","d":[]},{"s":"UNISWAP:DSYNCAIUSDT_A5FAB0","d":[]},{"s":"UNISWAP3ETH:USDCHERA","d":[]},{"s":"UNISWAP3ETH:LOCUSDT_B643F0.USD","d":[]},{"s":"BITRUE:HIGHUSDT","d":[]},{"s":"HITBTC:DCNETH","d":[]},{"s":"BYBIT:VRAUSDT.P","d":[]},{"s":"GEMINI:RNDRUSD","d":[]},{"s":"QUICKSWAP:WUBQWETH_8DCCC1","d":[]},{"s":"HITBTC:DENTBTC","d":[]},{"s":"UNISWAP:FRAPPEWETH_A0FB74.USD","d":[]},{"s":"PHEMEX:SSVUSDT","d":[]},{"s":"HITBTC:NEXOBTC","d":[]},{"s":"TRADERJOE:KACYWAVAX_C45893","d":[]},{"s":"UNISWAP3ETH:WETHINJ","d":[]},{"s":"BITGET:RIFUSDT","d":[]},{"s":"UNISWAP:GALIWETH_00D210","d":[]},{"s":"UNISWAP3ETH:LOCKWETH","d":[]},{"s":"BINGX:DUSKUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:GRIMACEWETH_58CE66.USD","d":[]},{"s":"GATEIO:XDEFIUSDT","d":[]},{"s":"UNISWAP3ETH:DAICOREDAO","d":[]},{"s":"WHITEBIT:NEOUSDT","d":[]},{"s":"TRADERJOE:ICEWAVAX_F8BA19.USD","d":[]},{"s":"BITSTAMP:IMXUSD","d":[]},{"s":"UNISWAP3ETH:MUBIWETH","d":[]},{"s":"POLONIEX:PORTNOYUSDT","d":[]},{"s":"BINANCE:QNTUSDT","d":[]},{"s":"MEXC:QTUMBTC","d":[]},{"s":"BISWAP:MBOXWBNB_76E1B3.USD","d":[]},{"s":"COINEX:VEGAUSDT","d":[]},{"s":"MEXC:OCFUSDT","d":[]},{"s":"GATEIO:CKBUSDT","d":[]},{"s":"TRADERJOE:MAJINWAVAX_F261EB.USD","d":[]},{"s":"UNISWAP:CGGWETH_C8CA3C.USD","d":[]},{"s":"BINANCE:SNXUSDT","d":[]},{"s":"MEXC:XIDOUSDT","d":[]},{"s":"QUICKSWAP:ARCADIUMWMATIC_0BBAFA.USD","d":[]},{"s":"UNISWAP:DEXTFWETH_A1444A","d":[]},{"s":"UNISWAP:PADREWETH_3B8F9B.USD","d":[]},{"s":"BYBIT:KARATEUSDT","d":[]},{"s":"BITGET:DYDXUSDT","d":[]},{"s":"BINGX:ETCUSDT.PS","d":[]},{"s":"UNISWAP3POLYGON:RINGWMATIC_FCB0CB.USD","d":[]},{"s":"WHITEBIT:CVPUSDT","d":[]},{"s":"BITGET:FLOWUSDT","d":[]},{"s":"UNISWAP:STAKWETH_EFF2DB.USD","d":[]},{"s":"QUICKSWAP:REVVUSDC_E4139D","d":[]},{"s":"UNISWAP3ARBITRUM:BETSWETH_ABC990.USD","d":[]},{"s":"BLOFIN:RDNTUSDT.P","d":[]},{"s":"QUICKSWAP:ERNWMATIC_124DE7.USD","d":[]},{"s":"UNISWAP:MLPWETH_06C4BE.USD","d":[]},{"s":"UNISWAP:SPECWETH_B64DE2","d":[]},{"s":"GATEIO:HXAUSDT","d":[]},{"s":"TRADERJOE:SPELLWAVAX_62CF16","d":[]},{"s":"WAGYUSWAP:VSHBUSD_B37524","d":[]},{"s":"BITFINEX:GTXBTC","d":[]},{"s":"COINEX:WOJAKUSDT","d":[]},{"s":"BINGX:WIFUSDT.P","d":[]},{"s":"UNISWAP:BTEWETH_130AE7.USD","d":[]},{"s":"BISWAP:WINWBNB_5D55C0.USD","d":[]},{"s":"UNISWAP:PARAWETH_BCC900","d":[]},{"s":"GATEIO:BONDLYUSDT","d":[]},{"s":"EXMO:XRPBTC","d":[]},{"s":"UNISWAP3POLYGON:DAIUSDT_42F053.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SPAUSDS_08E0B4.USD","d":[]},{"s":"ZOOMEX:BELUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHUNDER","d":[]},{"s":"MEXC:PSUSDT","d":[]},{"s":"BINANCE:WANBTC","d":[]},{"s":"WHITEBIT:UNIUSDT","d":[]},{"s":"PHEMEX:DYDXUSDT","d":[]},{"s":"UNISWAP:MAGAWETH_DCF175.USD","d":[]},{"s":"UNISWAP3ETH:WETHWOOF","d":[]},{"s":"PANGOLIN:AVAIWAVAX_6CBFB9.USD","d":[]},{"s":"COINEX:ZECBTC","d":[]},{"s":"POLONIEX:NEARUSDT","d":[]},{"s":"BITMEX:SUIUSDT.P","d":[]},{"s":"KRAKEN:OPEUR","d":[]},{"s":"PHEMEX:BATUSDT","d":[]},{"s":"UNISWAP:NEBULAWETH_87BEA3.USD","d":[]},{"s":"TRADERJOE:KLOWAVAX_B2FF08.USD","d":[]},{"s":"UPBIT:ANKRKRW","d":[]},{"s":"BITFINEX:OGNUST","d":[]},{"s":"DERIBIT:BTCUSD28M2024","d":[]},{"s":"BINANCE:ACEBTC","d":[]},{"s":"UNISWAP:CAWWETH_48D20B","d":[]},{"s":"BINGX:MAGICUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHBPRO","d":[]},{"s":"UNISWAP3ETH:WBTCSOTU","d":[]},{"s":"MEXC:BBIUSDT","d":[]},{"s":"UNISWAP3ETH:SUWETH","d":[]},{"s":"TRADERJOE:SYNWAVAX_20ABDC.USD","d":[]},{"s":"HITBTC:MESHUSDT","d":[]},{"s":"UNISWAP:ILUMWETH_90DA59","d":[]},{"s":"SPOOKYSWAP:POWERWFTM_8EAE6A.USD","d":[]},{"s":"UNISWAP:FINUWETH_478DC5.USD","d":[]},{"s":"TRADERJOE:XETAUSDC_D1CADC","d":[]},{"s":"UNISWAP3ETH:LMEOWWETH_65BA64.USD","d":[]},{"s":"GATEIO:POOHUSDT","d":[]},{"s":"GATEIO:AQTUSDT","d":[]},{"s":"PHEMEX:ICPUSDT.P","d":[]},{"s":"DELTA:DOGEUSDT.P","d":[]},{"s":"MEXC:SDAOUSDT","d":[]},{"s":"BITRUE:GALAUSDT","d":[]},{"s":"UNISWAP:SARCOWETH_8D3C9F","d":[]},{"s":"HITBTC:BCHBTC","d":[]},{"s":"UNISWAP3ETH:RICEUSDT","d":[]},{"s":"UNISWAP:LAELAPSWETH_811A10.USD","d":[]},{"s":"GATEIO:AIRTNTUSDT","d":[]},{"s":"COINEX:VELAUSDT","d":[]},{"s":"BYBIT:LINKUSDT","d":[]},{"s":"COINEX:FRENUSDT","d":[]},{"s":"BINANCE:LOOMUSDT","d":[]},{"s":"UNISWAP3POLYGON:TXPTUSDC_A451AC.USD","d":[]},{"s":"UNISWAP3ETH:FEIUSDC","d":[]},{"s":"UNISWAP3ETH:ACXUSDC","d":[]},{"s":"KRAKEN:MATICEUR","d":[]},{"s":"COINEX:HNTBTC","d":[]},{"s":"ZOOMEX:PENDLEUSDT.P","d":[]},{"s":"MEXC:TFIUSDT","d":[]},{"s":"UNISWAP:RUNICWETH_DCEA99.USD","d":[]},{"s":"UNISWAP:SAYLORWETH_8DEB1A.USD","d":[]},{"s":"UNISWAP3ETH:LYXEWLYX_EFA7EF.USD","d":[]},{"s":"UNISWAP:ALCZWETH_627850.USD","d":[]},{"s":"UNISWAP3ETH:ETHXWETH","d":[]},{"s":"UNISWAP:BENANCEWETH_AB3F65","d":[]},{"s":"COINEX:PLAUSDT","d":[]},{"s":"QUICKSWAP:MAXXWMATIC_4787B7","d":[]},{"s":"UNISWAP3ARBITRUM:ICHIUSDC_E02E1D.USD","d":[]},{"s":"PHEMEX:BLZUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:AAVEWETH_2ACEDA.USD","d":[]},{"s":"UNISWAP:NOODWETH_2DB8B6.USD","d":[]},{"s":"GATEIO:RINUSDT","d":[]},{"s":"KRAKEN:OMGUSD.PM","d":[]},{"s":"WHITEBIT:STPTUSDT","d":[]},{"s":"UNISWAP:CFWETH_BD4B1B.USD","d":[]},{"s":"UNISWAP:0XDEXWETH_FFBC87","d":[]},{"s":"HITBTC:XVGETH","d":[]},{"s":"MEXC:TOKENUSDT.P","d":[]},{"s":"POLONIEX:RFDUSDT","d":[]},{"s":"BINGX:LADYSUSDT.PS","d":[]},{"s":"BITGET:OPULUSDT","d":[]},{"s":"GATEIO:UPIUSDT","d":[]},{"s":"UNISWAP:DEEZNUTSWETH_6664C1.USD","d":[]},{"s":"BITRUE:APEUSDC","d":[]},{"s":"UNISWAP3ETH:ICHIUSDC_8F0350.USD","d":[]},{"s":"BITRUE:DOTUSDT","d":[]},{"s":"UNISWAP3ETH:FWBWETH","d":[]},{"s":"COINBASE:AXSEUR","d":[]},{"s":"UNISWAP:PORAWETH_7EFEFF.USD","d":[]},{"s":"UNISWAP3ETH:MATICUSDT","d":[]},{"s":"GEMINI:ZECUSD","d":[]},{"s":"COINEX:ELONUSDT","d":[]},{"s":"UNISWAP3ETH:ATORUSDC_00DC4F.USD","d":[]},{"s":"WHITEBIT:APTTRY","d":[]},{"s":"UNISWAP:INUWETH_C51171","d":[]},{"s":"UNISWAP:ORBNWETH_CFB162.USD","d":[]},{"s":"UNISWAP3ETH:WETHDOGECOIN","d":[]},{"s":"MEXC:STOSUSDT","d":[]},{"s":"UNISWAP:ZATWETH_3B77E5","d":[]},{"s":"KRAKEN:ASTREUR","d":[]},{"s":"UNISWAP:0XTWETH_AE48CD.USD","d":[]},{"s":"MEXC:UMBUSDT","d":[]},{"s":"TRADERJOE:KALMUSDC_FC9BA2","d":[]},{"s":"COINBASE:LDOUSD","d":[]},{"s":"BISWAP:MBOXWBNB_76E1B3","d":[]},{"s":"GEMINI:DOGEGUSD.P","d":[]},{"s":"MEXC:APTUSDT.P","d":[]},{"s":"BITGET:EULUSDT","d":[]},{"s":"UNISWAP3ETH:THOLWETH_D33023.USD","d":[]},{"s":"SPOOKYSWAP:UUBWFTM_488F42.USD","d":[]},{"s":"TRADERJOE:PIGGYWAVAX_244088","d":[]},{"s":"ZOOMEX:ALPHAUSDT.P","d":[]},{"s":"TRADERJOE:SUREWETHE_DF910F.USD","d":[]},{"s":"BINANCE:JUPUSDT","d":[]},{"s":"PHEMEX:TRXUSDC","d":[]},{"s":"UNISWAP3POLYGON:HEXWMATIC_E7F8E0.USD","d":[]},{"s":"UNISWAP3ETH:GTCETHWETH_3306C0.USD","d":[]},{"s":"BISWAP:THOREUMWBNB_D822E1.USD","d":[]},{"s":"BITRUE:ATOMADA","d":[]},{"s":"UNISWAP3ETH:GAPEWETH","d":[]},{"s":"UNISWAP3POLYGON:ULTWETH_865F45.USD","d":[]},{"s":"UNISWAP:ALVAWETH_4D2BEB.USD","d":[]},{"s":"BITGET:FLOWUSDT.P","d":[]},{"s":"GATEIO:HELLOUSDT","d":[]},{"s":"UNISWAP:XMONWETH_4BACAA","d":[]},{"s":"UNISWAP:OPENAIWETH_670B68","d":[]},{"s":"UNISWAP3ETH:XYOWETH","d":[]},{"s":"UNISWAP:RAPTORWETH_50D1E7.USD","d":[]},{"s":"BYBIT:APTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSUDO","d":[]},{"s":"KRAKEN:DOTJPY","d":[]},{"s":"HITBTC:BRDUSD","d":[]},{"s":"UNISWAP3ETH:APXWETH_1EB1E3.USD","d":[]},{"s":"UNISWAP:BFTWETH_623AC7","d":[]},{"s":"UNISWAP:TKSTWETH_BF519F.USD","d":[]},{"s":"UNISWAP:ZAMAWETH_13CB90","d":[]},{"s":"UNISWAP:GMEWETH_FA7005","d":[]},{"s":"UNISWAP3ETH:DONUTWETH","d":[]},{"s":"SPOOKYSWAP:FUSDTUSDC_FDEF39","d":[]},{"s":"UNISWAP:UNIVERSEWETH_69CB46.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LOTUSWETH_22BC79.USD","d":[]},{"s":"BYBIT:HIGHUSDT.P","d":[]},{"s":"UNISWAP:CLOUDWETH_01B464.USD","d":[]},{"s":"MEXC:NAPUSDT","d":[]},{"s":"UNISWAP3ETH:DOMOWETH","d":[]},{"s":"MEXC:EPIUSDT","d":[]},{"s":"SPOOKYSWAP:MMYUSDC_2A6538","d":[]},{"s":"COINBASE:SNXBTC","d":[]},{"s":"ZOOMEX:GPTUSDT.P","d":[]},{"s":"TRADERJOE:APEXWAVAX_824CA8.USD","d":[]},{"s":"QUICKSWAP:GMEEWETH_388509.USD","d":[]},{"s":"BINANCE:BAKEUSDT","d":[]},{"s":"GATEIO:MNZUSDT","d":[]},{"s":"UNISWAP3ETH:EXRDUSDT_7360D4.USD","d":[]},{"s":"UNISWAP3ETH:EGGXWETH","d":[]},{"s":"BTSE:1KSHIBUSD.P","d":[]},{"s":"UNISWAP3POLYGON:USDCEURE_AA05A8.USD","d":[]},{"s":"SPOOKYSWAP:APEWFTM_C9FB68.USD","d":[]},{"s":"PIONEX:WIFUSDT.P","d":[]},{"s":"HITBTC:TTCCUSDT","d":[]},{"s":"UNISWAP:GRASSWETH_D05C85","d":[]},{"s":"UNISWAP:RSTWETH_0F027D","d":[]},{"s":"BINANCE:DODOUSDT","d":[]},{"s":"UNISWAP3ETH:XCURWETH","d":[]},{"s":"WHITEBIT:ICXUSDT","d":[]},{"s":"MEXC:CONXUSDT","d":[]},{"s":"UNISWAP:KIROWETH_5CD136.USD","d":[]},{"s":"MEXC:MODELUSDT","d":[]},{"s":"MEXC:SUNUSDT.P","d":[]},{"s":"PHEMEX:SEIUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:FRAXUSDC_98D9AE.USD","d":[]},{"s":"UNISWAP3ETH:RPLWETH_CF15AD.USD","d":[]},{"s":"UNISWAP3ETH:OXTWETH","d":[]},{"s":"UNISWAP:ASTOUSDC_11181B","d":[]},{"s":"MEXC:APXUSDT","d":[]},{"s":"POLONIEX:FOMOUSDT","d":[]},{"s":"MEXC:BKNUSDT","d":[]},{"s":"MEXC:WYNNUSDT","d":[]},{"s":"UNISWAP3ETH:WFLOWUSDC_D42926.USD","d":[]},{"s":"BINANCE:LTCBRL","d":[]},{"s":"UNISWAP:NFYWETH_146D34","d":[]},{"s":"UNISWAP3ETH:RSETHWETH_059615.USD","d":[]},{"s":"MEXC:ZCXUSDT","d":[]},{"s":"MEXC:BATUSDT","d":[]},{"s":"KRAKEN:ENSEUR","d":[]},{"s":"BITMEX:SEIUSDT.P","d":[]},{"s":"MEXC:STRIKEUSDT","d":[]},{"s":"UNISWAP:HACHIWETH_006AB1.USD","d":[]},{"s":"UNISWAP3ETH:WETHPEPE2.0","d":[]},{"s":"COINEX:WANBTC","d":[]},{"s":"UNISWAP:IXSWETH_C09BF2","d":[]},{"s":"UNISWAP3POLYGON:TRENDWMATIC_6E430D.USD","d":[]},{"s":"UNISWAP3ETH:USDCRND","d":[]},{"s":"PHEMEX:WOOUSDT.P","d":[]},{"s":"UNISWAP3ETH:PAPERUSDT","d":[]},{"s":"UNISWAP3ETH:TURTWETH_79DB69.USD","d":[]},{"s":"BINANCE:AXSUSDT","d":[]},{"s":"UNISWAP:SHITCOINWETH_F02F20.USD","d":[]},{"s":"SPOOKYSWAP:TREEBWFTM_E8B72A.USD","d":[]},{"s":"PIONEX:COMBOUSDT.P","d":[]},{"s":"GEMINI:GUSDGBP","d":[]},{"s":"BINANCEUS:ADABTC","d":[]},{"s":"UNISWAP:BOOBYWETH_942C0C","d":[]},{"s":"XEXCHANGE:SHARDUSDC","d":[]},{"s":"BINANCE:LITBTC","d":[]},{"s":"MEXC:AIHUSDT","d":[]},{"s":"UNISWAP3ETH:GNOWETH_A46466.USD","d":[]},{"s":"BINANCEUS:REQUSDT","d":[]},{"s":"QUICKSWAP:POLYSHIBAWMATIC_F934AD.USD","d":[]},{"s":"BITMEX:RBNUSDT.P","d":[]},{"s":"UNISWAP:PIRBWETH_32B680.USD","d":[]},{"s":"MEXC:SMILEAIUSDT","d":[]},{"s":"MEXC:F3USDT","d":[]},{"s":"PANGOLIN:DAIWAVAX_17A2E8","d":[]},{"s":"BYBIT:MINAUSDT","d":[]},{"s":"BINANCE:AIBNB","d":[]},{"s":"BINANCE:BATUSDT","d":[]},{"s":"TRADERJOE:YAYWAVAX_BCDA59.USD","d":[]},{"s":"UNISWAP3POLYGON:HFGUSDT_014045.USD","d":[]},{"s":"UNISWAP3ETH:WETHDAI_A80964.USD","d":[]},{"s":"UNISWAP:NEOBOTWETH_513C94","d":[]},{"s":"QUICKSWAP:NACHOWETH_8D25FE","d":[]},{"s":"WOONETWORK:C98USDT","d":[]},{"s":"BINANCE:HBARBTC","d":[]},{"s":"TRADERJOE:WOODWAVAX_DD4601.USD","d":[]},{"s":"WHITEBIT:ADATRY","d":[]},{"s":"UNISWAP:SDGWETH_5DEE35","d":[]},{"s":"BITGET:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:CRVUSDC_91381A.USD","d":[]},{"s":"PHEMEX:BONDUSDT.P","d":[]},{"s":"MEXC:SKUSDT","d":[]},{"s":"UNISWAP3ETH:JANKAUSDC","d":[]},{"s":"UNISWAP:BWLWETH_6CADD6.USD","d":[]},{"s":"PIONEX:BSVUSDT.P","d":[]},{"s":"UNISWAP:BUSDUSDC_524847","d":[]},{"s":"BINGX:ROSEUSDT.P","d":[]},{"s":"PIONEX:MAVUSDT.P","d":[]},{"s":"UNISWAP3ETH:UNCXWETH_E0F0E0.USD","d":[]},{"s":"UNISWAP:BABYDOGEWETH_ABA7AF.USD","d":[]},{"s":"UNISWAP3ETH:VMXWETH","d":[]},{"s":"UNISWAP3OPTIMISM:WLDUSDT_4D6726.USD","d":[]},{"s":"WHITEBIT:MAVUSDT","d":[]},{"s":"BITRUE:ARPAUSDT","d":[]},{"s":"MEXC:XPNETUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBOSON","d":[]},{"s":"TRADERJOE:JEWELUSDC_A05900.USD","d":[]},{"s":"COINEX:BAGUSDT","d":[]},{"s":"COINBASE:GODSUSD","d":[]},{"s":"WHITEBIT:AVAXTRY","d":[]},{"s":"BITFINEX:TRXEUR","d":[]},{"s":"UNISWAP3ETH:RPLWETH","d":[]},{"s":"UNISWAP3ETH:WBTCT","d":[]},{"s":"UNISWAP:DEVWETH_4168CE.USD","d":[]},{"s":"UNISWAP:MODAIWETH_C2AF8F","d":[]},{"s":"BLOFIN:MASKUSDT.P","d":[]},{"s":"BITFINEX:MATICUSD","d":[]},{"s":"UNISWAP:OPIUMWETH_1885DE.USD","d":[]},{"s":"KRAKEN:BTCUSDM2024","d":[]},{"s":"UNISWAP:MOOVWETH_7C5F2A","d":[]},{"s":"BINANCE:EOSBTC","d":[]},{"s":"UNISWAP3ETH:WETHGLM","d":[]},{"s":"BYBIT:KOKUSDT","d":[]},{"s":"BITFINEX:TRXBTC","d":[]},{"s":"COINEX:PLANETUSDT","d":[]},{"s":"UNISWAP:GEEQWETH_2C814E.USD","d":[]},{"s":"MEXC:HIFIUSDT","d":[]},{"s":"BITSTAMP:NEXOUSD","d":[]},{"s":"UNISWAP:SEEDSWETH_9AD55F","d":[]},{"s":"PHEMEX:TIAUSDT","d":[]},{"s":"BINGX:SUSHIUSDT.P","d":[]},{"s":"TRADERJOE:BENDWAVAX_C5EC2A.USD","d":[]},{"s":"KRAKEN:MXCUSD","d":[]},{"s":"BITHUMB:RVNKRW","d":[]},{"s":"KRAKEN:PYUSDUSD","d":[]},{"s":"UNISWAP:TYRIONWETH_5FE638.USD","d":[]},{"s":"MEXC:KUJIUSDT","d":[]},{"s":"UNISWAP:BABYFLOKIWETH_52C469","d":[]},{"s":"UNISWAP:RUSDWETH_9EB369.USD","d":[]},{"s":"BITMEX:PIXELUSDT.P","d":[]},{"s":"UNISWAP3ETH:SEEDWETH","d":[]},{"s":"COINBASE:AVAXUSDT","d":[]},{"s":"TRADERJOE:ABAXWAVAX_9A1950","d":[]},{"s":"UNISWAP3POLYGON:PKRUSDT_38BB6F.USD","d":[]},{"s":"PHEMEX:MOVRUSDT.P","d":[]},{"s":"UNISWAP:STRNGRWETH_453A43","d":[]},{"s":"BINANCEUS:AAVEUSDT","d":[]},{"s":"GATEIO:HIVEUSDT","d":[]},{"s":"UNISWAP:REPV2WETH_8979A3.USD","d":[]},{"s":"BISWAP:FATCATWBNB_8BDF24","d":[]},{"s":"HITBTC:ONEUSD","d":[]},{"s":"BITRUE:OMUSDT","d":[]},{"s":"BITFINEX:STGUST.P","d":[]},{"s":"BITGET:ZBCUSDT","d":[]},{"s":"GATEIO:HIGHUSDT","d":[]},{"s":"GATEIO:OLANDUSDT","d":[]},{"s":"QUICKSWAP:DWEBWMATIC_FCA921","d":[]},{"s":"GATEIO:SPAYUSDT","d":[]},{"s":"UNISWAP:SVPNWETH_1686F2","d":[]},{"s":"UPBIT:LOOMKRW","d":[]},{"s":"TRADERJOE:ZOOWAVAX_34EA62","d":[]},{"s":"UNISWAP3ETH:BCATWETH","d":[]},{"s":"UNISWAP:JAMWETH_C3C41A","d":[]},{"s":"BITRUE:BCHADA","d":[]},{"s":"BITGET:WLKNUSDT","d":[]},{"s":"UNISWAP3POLYGON:FITTUSDC_7BCCEE.USD","d":[]},{"s":"UNISWAP3ARBITRUM:Y2KWETH_10E105.USD","d":[]},{"s":"BINGX:CAKEUSDT.P","d":[]},{"s":"UPBIT:SOLKRW","d":[]},{"s":"UNISWAP3ETH:WETHFORT","d":[]},{"s":"UNISWAP:KP4RWETH_7EF85D.USD","d":[]},{"s":"HITBTC:XDNUSD","d":[]},{"s":"UNISWAP3ETH:DEFROGSWETH_38EAC0.USD","d":[]},{"s":"MEXC:ADFUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:AXLUSDCUSDC_3405C7.USD","d":[]},{"s":"UNISWAP3ARBITRUM:KUJIUSDC_AE5AA1.USD","d":[]},{"s":"MEXC:REKTUSDT","d":[]},{"s":"UNISWAP3ETH:LEOXWETH","d":[]},{"s":"UNISWAP3ETH:HOPEUSDT","d":[]},{"s":"UNISWAP3ETH:CBXUSDT","d":[]},{"s":"UNISWAP:BISTWETH_CC290A","d":[]},{"s":"KRAKEN:BTCUSD.P","d":[]},{"s":"UNISWAP:FUTUREAIWETH_2CA606.USD","d":[]},{"s":"UNISWAP:LEGENDWETH_A60A25.USD","d":[]},{"s":"BITSTAMP:RNDREUR","d":[]},{"s":"QUICKSWAP:MILKWETH_C089C1","d":[]},{"s":"BITGET:QRDOUSDT","d":[]},{"s":"PANGOLIN:DAIPEFI_94DF69","d":[]},{"s":"UNISWAP3ETH:DOXWETH","d":[]},{"s":"COINBASE:DOTUSDT","d":[]},{"s":"UNISWAP:HGETUSDT_4D5EBB","d":[]},{"s":"POLONIEX:KNCUSD","d":[]},{"s":"UNISWAP:GPUAIWETH_089D49","d":[]},{"s":"UNISWAP3ETH:OPULDAI_828426.USD","d":[]},{"s":"BITGET:AVAUSDT","d":[]},{"s":"BITGET:ICXUSDT.P","d":[]},{"s":"POLONIEX:BAMUSDT","d":[]},{"s":"HITBTC:ATAUSDT","d":[]},{"s":"HITBTC:LOANBTC","d":[]},{"s":"UNISWAP:SCRAMBLEWETH_ED7985.USD","d":[]},{"s":"BITGET:COMBOUSDT","d":[]},{"s":"UNISWAP3ETH:CLBUSDC_8DBD33.USD","d":[]},{"s":"UNISWAP3ETH:BLOBWETH","d":[]},{"s":"MEXC:BALUSDT","d":[]},{"s":"BINANCE:STRKBTC","d":[]},{"s":"BLOFIN:TRUUSDT.P","d":[]},{"s":"BYBIT:XDCUSDT","d":[]},{"s":"UNISWAP3ETH:CRAMERWETH","d":[]},{"s":"UNISWAP:PURSEWETH_057EF9","d":[]},{"s":"TRADERJOE:MCVWAVAX_1BDB43","d":[]},{"s":"XEXCHANGE:BHATUSDC","d":[]},{"s":"UNISWAP3POLYGON:STGWMATIC_190BE4.USD","d":[]},{"s":"UNISWAP:TELEPATHYWETH_CC335B","d":[]},{"s":"SPOOKYSWAP:TOMBWFTM_8F1CD0.USD","d":[]},{"s":"UNISWAP3ETH:FLCWETH_01A822.USD","d":[]},{"s":"UNISWAP:SERPWETH_6F7621.USD","d":[]},{"s":"UNISWAP3ETH:WETHRFK","d":[]},{"s":"UNISWAP3ETH:WETHDIMO","d":[]},{"s":"UNISWAP3ETH:RASWETH_C16463.USD","d":[]},{"s":"MEXC:AGIUSDT.P","d":[]},{"s":"BINANCE:ROSEBTC","d":[]},{"s":"UNISWAP:YUPWETH_916560","d":[]},{"s":"COINEX:SIDUSUSDT","d":[]},{"s":"GATEIO:BSVUSDT.3L","d":[]},{"s":"MEXC:MUDOL2USDT","d":[]},{"s":"BYBIT:COMBOUSDT.P","d":[]},{"s":"QUICKSWAP:FIREWMATIC_D58190","d":[]},{"s":"MEXC:DMTUSDT","d":[]},{"s":"BITGET:PERPUSDT","d":[]},{"s":"COINEX:MCBUSDT","d":[]},{"s":"MEXC:FEVRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMICKEY","d":[]},{"s":"UNISWAP3ETH:BASEHEX_E181F3.USD","d":[]},{"s":"MEXC:KADUSDT","d":[]},{"s":"BISWAP:WOOWBNB_D9C921","d":[]},{"s":"BITGET:SKEBUSDT","d":[]},{"s":"BINANCE:ROSEUSD.P","d":[]},{"s":"POLONIEX:SORAUSDT","d":[]},{"s":"UNISWAP3ETH:USDTPANDORA","d":[]},{"s":"GATEIO:MODAUSDT","d":[]},{"s":"HITBTC:TRACUSD","d":[]},{"s":"QUICKSWAP:MIMATICUSDT_E89FAE","d":[]},{"s":"MEXC:ETHAUSDT","d":[]},{"s":"UNISWAP3ETH:LUNAWETH_16B70F.USD","d":[]},{"s":"QUICKSWAP:ORBUSDC_2DAB44","d":[]},{"s":"GATEIO:AGIXUSDT","d":[]},{"s":"MEXC:MAVUSDT.P","d":[]},{"s":"HITBTC:OXTUSDT","d":[]},{"s":"HITBTC:TFUELBTC","d":[]},{"s":"UNISWAP3ETH:APEFIWETH","d":[]},{"s":"BITFINEX:TRYUST.P","d":[]},{"s":"MEXC:ENTCUSDT","d":[]},{"s":"UNISWAP3ETH:APUWETH_120FFA.USD","d":[]},{"s":"UNISWAP:SHARBIWETH_5ACC53","d":[]},{"s":"BYBIT:NEARUSDT.P","d":[]},{"s":"UNISWAP3ETH:MATICSTMATIC","d":[]},{"s":"MEXC:CRKUSDT","d":[]},{"s":"BITGET:DOGEUSDT.P","d":[]},{"s":"UNISWAP:SATAWETH_BC00E7","d":[]},{"s":"UNISWAP:RBCWETH_B69985","d":[]},{"s":"BITSTAMP:PERPEUR","d":[]},{"s":"BINGX:AXLUSDT.P","d":[]},{"s":"QUICKSWAP:TUSDUSDC_17A782","d":[]},{"s":"UNISWAP3ARBITRUM:FXUSDUSDS_7F18D4.USD","d":[]},{"s":"UNISWAP:IBETHALPHA_411A9B","d":[]},{"s":"OKX:TRBUSDT.P","d":[]},{"s":"GATEIO:CHZUSDT.3L","d":[]},{"s":"BINANCE:LPTBTC","d":[]},{"s":"UNISWAP:TROYUSDT_8A4686","d":[]},{"s":"COINEX:MOOVUSDT","d":[]},{"s":"SPOOKYSWAP:RIPWFTM_EDDB9F","d":[]},{"s":"UNISWAP3ETH:XRGBWETH_C50F5F.USD","d":[]},{"s":"UNISWAP:A4MWETH_91C8DB.USD","d":[]},{"s":"UNISWAP:CHOPPYWETH_79DDDE.USD","d":[]},{"s":"MEXC:BISTUSDT","d":[]},{"s":"GATEIO:ELUUSDT","d":[]},{"s":"BLOFIN:IOSTUSDT.P","d":[]},{"s":"OKX:DOTUSDT.P","d":[]},{"s":"HITBTC:BTCEURST","d":[]},{"s":"BITGET:DOGEUSD.P","d":[]},{"s":"UNISWAP:BELUSDT_F0D110","d":[]},{"s":"UNISWAP:CCXWETH_39159C","d":[]},{"s":"HITBTC:OCCBTC","d":[]},{"s":"UNISWAP3ETH:PORWETH","d":[]},{"s":"HITBTC:TLMBTC","d":[]},{"s":"MEXC:XLSUSDT","d":[]},{"s":"HITBTC:HEDGUSDT","d":[]},{"s":"PHEMEX:NTRNUSDT.P","d":[]},{"s":"UNISWAP:DSTWETH_D36FE2","d":[]},{"s":"QUICKSWAP:BUSDUSDC_7A6028","d":[]},{"s":"MEXC:INSCRIBEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:RSETHWETH_48B0AB.USD","d":[]},{"s":"COINEX:SUKUUSDT","d":[]},{"s":"BITRUE:XDCUSDC","d":[]},{"s":"BITGET:AUCTIONUSDT","d":[]},{"s":"BLOFIN:GODSUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHTURT","d":[]},{"s":"PHEMEX:FTMUSDT","d":[]},{"s":"UNISWAP3ETH:CJPYWETH","d":[]},{"s":"PANGOLIN:TERRAUSDTE_C74B55.USD","d":[]},{"s":"BITFINEX:NEARUST.P","d":[]},{"s":"PHEMEX:STMXUSDT.P","d":[]},{"s":"POLONIEX:BNXUSDT","d":[]},{"s":"UNISWAP:TYRANTWETH_3AF73B","d":[]},{"s":"UNISWAP:FRINWETH_461DDA.USD","d":[]},{"s":"QUICKSWAP:WOOLYWMATIC_71CED8.USD","d":[]},{"s":"BINANCE:QIUSDT","d":[]},{"s":"KRAKEN:ARPAUSD","d":[]},{"s":"QUICKSWAP:NEXOWETH_10062E","d":[]},{"s":"UNISWAP3ETH:FORTHUSDT_71EAA3.USD","d":[]},{"s":"UNISWAP:PBASEDPOHM_C4BAB0.USD","d":[]},{"s":"UNISWAP3ETH:WETHSEED","d":[]},{"s":"BITGET:IGUUSDT","d":[]},{"s":"UNISWAP:MONKEWETH_93F768","d":[]},{"s":"TRADERJOE:CRVWAVAX_78DA10","d":[]},{"s":"PANGOLIN:TUSWAVAX_BCED3B","d":[]},{"s":"BITRUE:XRPBTC","d":[]},{"s":"QUICKSWAP:WETHASTRAFER_DE4FEA.USD","d":[]},{"s":"BYBIT:FILUSDC","d":[]},{"s":"BINANCE:FRONTBTC","d":[]},{"s":"UNISWAP3POLYGON:FANXWETH_6C14C5.USD","d":[]},{"s":"UNISWAP:RIORUSD_06ED87","d":[]},{"s":"UNISWAP:CHANCEWETH_CC741A","d":[]},{"s":"MEXC:IDXUSDT","d":[]},{"s":"BITGET:ZETAUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:COMPWETH_DFA19E.USD","d":[]},{"s":"SPOOKYSWAP:BSLURPWFTM_245E6C","d":[]},{"s":"MEXC:GPTPLUSUSDT","d":[]},{"s":"MEXC:ELONUSDT","d":[]},{"s":"BYBIT:ADAUSDT","d":[]},{"s":"UNISWAP:FGMWETH_030587.USD","d":[]},{"s":"GATEIO:TRIBEUSDT","d":[]},{"s":"UNISWAP3ETH:HARAMBEWETH_C68417.USD","d":[]},{"s":"UNISWAP3ETH:WETHJNE","d":[]},{"s":"BINANCE:ZILUSDT","d":[]},{"s":"UNISWAP3ETH:SVETHWSTETH_2BC86A.USD","d":[]},{"s":"ZOOMEX:SPELLUSDT.P","d":[]},{"s":"GATEIO:MOBUSDT","d":[]},{"s":"BINANCEUS:ACHUSDT","d":[]},{"s":"UNISWAP3ETH:RADWETH","d":[]},{"s":"UNISWAP:MONKEWETH_93F768.USD","d":[]},{"s":"UNISWAP3ARBITRUM:UNIWETH_C24F7D.USD","d":[]},{"s":"UNISWAP:KITTYWETH_937E88","d":[]},{"s":"UNISWAP:PROOFWETH_AE65DE.USD","d":[]},{"s":"MEXC:WAVESUSDT","d":[]},{"s":"ZOOMEX:ACHUSDT.P","d":[]},{"s":"UNISWAP:PROMPTIDEWETH_E9DA0A.USD","d":[]},{"s":"UNISWAP3ETH:DAOUSDC_C84046.USD","d":[]},{"s":"GATEIO:TROLLUSDT","d":[]},{"s":"TRADERJOE:SBOTWAVAX_0F1913.USD","d":[]},{"s":"BINANCE:AGIXTRY","d":[]},{"s":"UNISWAP3ETH:USDTROYA","d":[]},{"s":"GATEIO:APEDUSDT","d":[]},{"s":"COINEX:IOTAUSDC","d":[]},{"s":"SPOOKYSWAP:FKNUCKLESWFTM_981C6A.USD","d":[]},{"s":"BINANCE:ACMUSDT","d":[]},{"s":"UNISWAP:MTWTRUST_34856B.USD","d":[]},{"s":"BITGET:GALUSDT","d":[]},{"s":"UNISWAP:DNODEWETH_36386E.USD","d":[]},{"s":"UNISWAP:SHFTWETH_8627C8","d":[]},{"s":"PIONEX:FLOKIUSDT.P","d":[]},{"s":"KRAKEN:APEEUR","d":[]},{"s":"GATEIO:BIFIUSDT","d":[]},{"s":"COINEX:LUMIUSDT","d":[]},{"s":"UPBIT:ZRXKRW","d":[]},{"s":"GATEIO:LQTYUSDT","d":[]},{"s":"UNISWAP:DEUSWETH_367E2D","d":[]},{"s":"BYBIT:SWEATUSDT.P","d":[]},{"s":"MEXC:CROWNUSDT","d":[]},{"s":"HITBTC:SUSHIUSDC","d":[]},{"s":"ZOOMEX:XRPUSDT.P","d":[]},{"s":"HITBTC:VEGAUSDT","d":[]},{"s":"UNISWAP3ETH:HOPEUSDT_BEEE07.USD","d":[]},{"s":"SPOOKYSWAP:BTCFUSDT_E51813","d":[]},{"s":"BINANCE:MTLTRY","d":[]},{"s":"UNISWAP:NGLWETH_20D996","d":[]},{"s":"UNISWAP3ETH:HEXWETH_82743C.USD","d":[]},{"s":"UNISWAP:CRGPTWETH_0FA0AF","d":[]},{"s":"MEXC:VICSUSDT","d":[]},{"s":"UNISWAP:OPIUMWETH_1885DE","d":[]},{"s":"MEXC:XDAOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMONKGG","d":[]},{"s":"TRADERJOE:PANDAWAVAX_ED3D6E.USD","d":[]},{"s":"PHEMEX:FETUSDT","d":[]},{"s":"GEMINI:GALUSD","d":[]},{"s":"BITHUMB:STEEMKRW","d":[]},{"s":"MEXC:AWTUSDT","d":[]},{"s":"SPOOKYSWAP:SEEDWFTM_437A6B","d":[]},{"s":"UNISWAP3ETH:USDCXSGD","d":[]},{"s":"MEXC:BLLBUSDT","d":[]},{"s":"SPOOKYSWAP:MCCWFTM_23635B","d":[]},{"s":"HITBTC:RARIUSD","d":[]},{"s":"UNISWAP3POLYGON:USDCUSDT_24555B.USD","d":[]},{"s":"BINGX:MANTAUSDT.PS","d":[]},{"s":"UPBIT:QTUMKRW","d":[]},{"s":"UNISWAP3ETH:USDTNYM","d":[]},{"s":"ZOOMEX:SNXUSDT.P","d":[]},{"s":"PANGOLIN:YDRWAVAX_0EAEEC","d":[]},{"s":"MEXC:IQUSDT","d":[]},{"s":"BYBIT:CFXUSDT.P","d":[]},{"s":"BITKUB:COMPTHB","d":[]},{"s":"UNISWAP3ARBITRUM:ABIWSTETH_88180F.USD","d":[]},{"s":"UNISWAP3ETH:LINKWETH","d":[]},{"s":"MEXC:AIATUSDT","d":[]},{"s":"WAGYUSWAP:VICIWVLX_13526C","d":[]},{"s":"BITGET:DAIUSDC","d":[]},{"s":"TRADERJOE:FEEDEGG_AADF57","d":[]},{"s":"UNISWAP3ETH:TMNTWETH","d":[]},{"s":"BITFINEX:BOBABTC","d":[]},{"s":"BISWAP:EGLDWBNB_46C2B9","d":[]},{"s":"PIONEX:UMAUSDT.P","d":[]},{"s":"UNISWAP:BLENDRWETH_56D8BB","d":[]},{"s":"BYBIT:IDEXUSDT.P","d":[]},{"s":"OKX:RSRUSDT.P","d":[]},{"s":"HITBTC:BNBBTC","d":[]},{"s":"COINEX:SOLAMAUSDT","d":[]},{"s":"PIONEX:ONGUSDT.P","d":[]},{"s":"UNISWAP3ETH:UOSWETH_E8B977.USD","d":[]},{"s":"BITHUMB:AZITKRW","d":[]},{"s":"MEXC:BONDUSDT.P","d":[]},{"s":"UNISWAP3ETH:HILOWETH","d":[]},{"s":"UNISWAP:CETIWTAO_114020","d":[]},{"s":"UNISWAP:SUDOWETH_1533F6.USD","d":[]},{"s":"UNISWAP3ETH:ITXWETH","d":[]},{"s":"TRADERJOE:UNIXWAVAX_5F8D03","d":[]},{"s":"BINANCE:RDNTBTC","d":[]},{"s":"POLONIEX:GPTUSDT","d":[]},{"s":"COINEX:RADARUSDT","d":[]},{"s":"BITRUE:AVAXBTR","d":[]},{"s":"TRADERJOE:AXIALWAVAX_5305A6","d":[]},{"s":"UNISWAP3POLYGON:POINTLESSWMATIC_BCA71D.USD","d":[]},{"s":"POLONIEX:MASKUSDT","d":[]},{"s":"OKX:TUSDT.P","d":[]},{"s":"DERIBIT:LTCUSDC.P","d":[]},{"s":"UNISWAP:NOLOWETH_E511EE.USD","d":[]},{"s":"UNISWAP:GOOSEWETH_A0AD89.USD","d":[]},{"s":"MEXC:UMMAUSDT","d":[]},{"s":"GATEIO:ABTUSDT","d":[]},{"s":"BITGET:AVAXUSDT.P","d":[]},{"s":"UNISWAP:PIKAWETH_C31C59.USD","d":[]},{"s":"BITRUE:BTRUSDT","d":[]},{"s":"PHEMEX:AGIXUSDT","d":[]},{"s":"BITRUE:DJEDUSDT","d":[]},{"s":"UNISWAP:OTCBOTWETH_E272CB","d":[]},{"s":"BINANCE:RADBTC","d":[]},{"s":"UNISWAP:SUSHIWETH_CE8486.USD","d":[]},{"s":"UNISWAP:JUICEWETH_BA8381.USD","d":[]},{"s":"UNISWAP3ETH:USDCRNDR","d":[]},{"s":"UNISWAP:PLANETWETH_9B20E0.USD","d":[]},{"s":"PANGOLIN:AAVEWAVAX_5F233A.USD","d":[]},{"s":"OKX:UMAUSDT.P","d":[]},{"s":"UNISWAP:TRESTLEWETH_C8F03F.USD","d":[]},{"s":"WHITEBIT:XLMBTC","d":[]},{"s":"COINEX:ZEPHUSDT","d":[]},{"s":"HITBTC:BCUGBTC","d":[]},{"s":"UNISWAP:MRWETH_B5D7E3.USD","d":[]},{"s":"GATEIO:LOGTUSDT","d":[]},{"s":"COINBASE:XLMEUR","d":[]},{"s":"BLOFIN:10000COQUSDT.P","d":[]},{"s":"POLONIEX:WYNNUSDT","d":[]},{"s":"GATEIO:MNWUSDT","d":[]},{"s":"MEXC:BNCUSDT","d":[]},{"s":"UNISWAP:BABYSHIBWETH_97FEAD.USD","d":[]},{"s":"UNISWAP:CNFRGWETH_174E3E.USD","d":[]},{"s":"UNISWAP3ETH:ALPHUSDT_A34485.USD","d":[]},{"s":"COINEX:YGGUSDT","d":[]},{"s":"GATEIO:VVSUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:TBTCWETH_A1507A.USD","d":[]},{"s":"HITBTC:BLZBTC","d":[]},{"s":"QUICKSWAP:SNEUSDC_23BAF6","d":[]},{"s":"POLONIEX:CEEKUSDT","d":[]},{"s":"UNISWAP:SAITAMAWETH_E3D355.USD","d":[]},{"s":"UNISWAP:BIDENWETH_7EDC29","d":[]},{"s":"GATEIO:HOPRUSDT","d":[]},{"s":"UNISWAP:TIMEWETH_5D7FE3","d":[]},{"s":"TRADERJOE:NOCHILLWAVAX_2D38BD","d":[]},{"s":"BINGX:LINAUSDT.P","d":[]},{"s":"GATEIO:KILTUSDT","d":[]},{"s":"COINEX:ILVUSDT","d":[]},{"s":"UNISWAP3POLYGON:AAVEUSDC_A23627.USD","d":[]},{"s":"UNISWAP:X7RWETH_613924.USD","d":[]},{"s":"BITSTAMP:BLUREUR","d":[]},{"s":"SPOOKYSWAP:WATERFALLUSDC_7080F2","d":[]},{"s":"BITRUE:POWRUSDT","d":[]},{"s":"BINANCE:DOTUSDM2024","d":[]},{"s":"UNISWAP:YETICWETH_E4253A.USD","d":[]},{"s":"BISWAP:ETHWBNB_5BF694.USD","d":[]},{"s":"UNISWAP3ETH:FLCTENJIN_076D38.USD","d":[]},{"s":"BITHUMB:ONTKRW","d":[]},{"s":"COINEX:NIMUSDT","d":[]},{"s":"DELTA:LTCUSDT.P","d":[]},{"s":"GEMINI:USDCUSD","d":[]},{"s":"BITGET:YFIUSDT","d":[]},{"s":"UNISWAP3ETH:USDTMCADE","d":[]},{"s":"QUICKSWAP:RAINWMATIC_EA0FB6","d":[]},{"s":"COINEX:IOSTBTC","d":[]},{"s":"BINANCE:SOLTRY","d":[]},{"s":"COINBASE:LTCGBP","d":[]},{"s":"GATEIO:ZONEUSDT","d":[]},{"s":"QUICKSWAP:BITSUSDC_970AB5","d":[]},{"s":"HITBTC:CNDUSDT","d":[]},{"s":"BITFINEX:BCHNUSD","d":[]},{"s":"BINGX:LAIUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:AIDOGEWBTC_00765C.USD","d":[]},{"s":"UNISWAP3ETH:PEASWETH","d":[]},{"s":"UNISWAP3ETH:WETHUSDC_88E6A0.USD","d":[]},{"s":"POLONIEX:AMPBTC","d":[]},{"s":"MEXC:GNUSDT","d":[]},{"s":"UNISWAP3ETH:TRUTHWETH_4D4A27.USD","d":[]},{"s":"WAGYUSWAP:VDGTWVLX_7B714B","d":[]},{"s":"UNISWAP3ETH:FRXETHFRAX_36C060.USD","d":[]},{"s":"UNISWAP3ETH:WETHDIP","d":[]},{"s":"MEXC:ZENUSDT.P","d":[]},{"s":"PHEMEX:COMPUSDT.P","d":[]},{"s":"POLONIEX:ACEUSDT","d":[]},{"s":"BLOFIN:ALGOUSDT.P","d":[]},{"s":"MEXC:HNKUSDT","d":[]},{"s":"BITRUE:ALICEXRP","d":[]},{"s":"MEXC:BGBUSDT","d":[]},{"s":"GEMINI:QNTUSD","d":[]},{"s":"UNISWAP3ETH:ENJWETH_E16BE1.USD","d":[]},{"s":"GATEIO:NRFBUSDT","d":[]},{"s":"UNISWAP:PEPINUWETH_5EF564.USD","d":[]},{"s":"UNISWAP:ANKRWETH_520188.USD","d":[]},{"s":"OKX:AVAXUSD.P","d":[]},{"s":"WAGYUSWAP:VICIUSDT_E6BDD4","d":[]},{"s":"UNISWAP3ETH:WETHTIME","d":[]},{"s":"UNISWAP3ETH:KABOSUUSDC","d":[]},{"s":"UNISWAP3ETH:FUNDWETH","d":[]},{"s":"TRADERJOE:SQRCATWAVAX_BC274B","d":[]},{"s":"UNISWAP:AIBOTWETH_66086E","d":[]},{"s":"UNISWAP:HEARTWETH_5C8DD8.USD","d":[]},{"s":"GATEIO:BLURUSDT.3L","d":[]},{"s":"POLONIEX:SPURDOUSDT","d":[]},{"s":"KRAKEN:IDEXUSD","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDC_A37409.USD","d":[]},{"s":"POLONIEX:LINKUSDC","d":[]},{"s":"UNISWAP:STANWETH_4283FA.USD","d":[]},{"s":"MEXC:MMSSCATUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBELP","d":[]},{"s":"BINANCEUS:COTIUSDT","d":[]},{"s":"PIONEX:GMXUSDT.P","d":[]},{"s":"GATEIO:INSCUSDT","d":[]},{"s":"UNISWAP3ETH:DEVTUSDC_CAE20C.USD","d":[]},{"s":"BITRUE:ALGOUSDT","d":[]},{"s":"HITBTC:VIBEUSD","d":[]},{"s":"UNISWAP3ETH:WETH0XBTC","d":[]},{"s":"UNISWAP:HALALWETH_5F4B8C","d":[]},{"s":"UNISWAP:SSTWETH_4E293C","d":[]},{"s":"UNISWAP3ETH:USDCSHU","d":[]},{"s":"UNISWAP3ARBITRUM:BIRDIEWETH_2EECC8.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LMRWETH_40878C.USD","d":[]},{"s":"COINEX:ZKBUSDT","d":[]},{"s":"BINGX:DOTUSDT.PS","d":[]},{"s":"DELTA:ETHBTC.P","d":[]},{"s":"BINANCE:XRPUSDM2024","d":[]},{"s":"UNISWAP3ETH:RUSDUSDC_1D2E8E.USD","d":[]},{"s":"HITBTC:IOTXUSD","d":[]},{"s":"UNISWAP:REVOWETH_EDC25E.USD","d":[]},{"s":"POLONIEX:TRXBTC","d":[]},{"s":"UNISWAP:FMONWETH_DD59B0","d":[]},{"s":"UNISWAP3ETH:USDCSD","d":[]},{"s":"MEXC:PETUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDOG","d":[]},{"s":"BITSTAMP:ALGOUSD","d":[]},{"s":"MEXC:QUINTUSDT","d":[]},{"s":"GATEIO:TRIASUSDT","d":[]},{"s":"UNISWAP:DGNWETH_B88267.USD","d":[]},{"s":"BITGET:MATICUSDC","d":[]},{"s":"TRADERJOE:GECWAVAX_2ADE4F","d":[]},{"s":"TIMEX:LINKUSDT","d":[]},{"s":"GATEIO:ZENUSDT","d":[]},{"s":"XEXCHANGE:XBIDUSDC","d":[]},{"s":"ZOOMEX:KAVAUSDT.P","d":[]},{"s":"BITGET:FLOKIUSDT","d":[]},{"s":"GEMINI:MASKUSD","d":[]},{"s":"UNISWAP:RACAWETH_521274","d":[]},{"s":"MEXC:EGLDUSDT","d":[]},{"s":"BLOFIN:VGXUSDT.P","d":[]},{"s":"UNISWAP:TETWETH_EFDF4D.USD","d":[]},{"s":"HITBTC:COTIUSDT","d":[]},{"s":"POLONIEX:SATSUSDT","d":[]},{"s":"UNISWAP3ETH:USDTXMT","d":[]},{"s":"UNISWAP3ETH:EMPWETH","d":[]},{"s":"UNISWAP3ETH:HUNTUSDT","d":[]},{"s":"GATEIO:IBFKUSDT","d":[]},{"s":"QUICKSWAP:SPACEWMATIC_D6AB3F.USD","d":[]},{"s":"UNISWAP:BSLWETH_EC5409.USD","d":[]},{"s":"COINEX:DFLUSDT","d":[]},{"s":"DERIBIT:TRXUSDC.P","d":[]},{"s":"ZOOMEX:AXLUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCPRIME","d":[]},{"s":"UNISWAP:GOLD1WETH_C277C0","d":[]},{"s":"UNISWAP3ETH:RENBTCWBTC","d":[]},{"s":"UNISWAP3ETH:DPSWETH","d":[]},{"s":"PANGOLIN:ARTWAVAX_B0009F","d":[]},{"s":"UNISWAP:FEELSWETH_B42018.USD","d":[]},{"s":"TRADERJOE:GOHMWAVAX_B674F9","d":[]},{"s":"GATEIO:MEMEUSDT","d":[]},{"s":"BINANCEUS:ICPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPXETH","d":[]},{"s":"COINBASE:ETCBTC","d":[]},{"s":"PIONEX:VETUSDT.P","d":[]},{"s":"MEXC:MOCHIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAD","d":[]},{"s":"GATEIO:AISCUSDT","d":[]},{"s":"HITBTC:BEAMXUSDT","d":[]},{"s":"COINBASE:XRPUSD","d":[]},{"s":"TRADERJOE:SBWAVAX_A3D2CF.USD","d":[]},{"s":"COINEX:NEXAUSDT","d":[]},{"s":"KRAKEN:TRXETH","d":[]},{"s":"UNISWAP:VISIONWETH_A323FC.USD","d":[]},{"s":"MEXC:AIWLDUSDT","d":[]},{"s":"UNISWAP3ETH:CHIBWETH_23E11B.USD","d":[]},{"s":"COINEX:VICUSDT","d":[]},{"s":"UNISWAP:NSWETH_CF55BD.USD","d":[]},{"s":"BITHUMB:AAVEKRW","d":[]},{"s":"GATEIO:NEERUSDT","d":[]},{"s":"GATEIO:OASUSDT","d":[]},{"s":"BINANCE:COMBOUSDT","d":[]},{"s":"COINEX:EDUUSDT","d":[]},{"s":"MEXC:THNUSDT","d":[]},{"s":"BYBIT:MOVEZUSDT","d":[]},{"s":"UNISWAP:FLOKIWETH_CA7C27.USD","d":[]},{"s":"MEXC:RABIUSDT","d":[]},{"s":"UNISWAP3ETH:FOTTIEWETH_DBF655.USD","d":[]},{"s":"BITRUE:UNFIUSDT","d":[]},{"s":"BYBIT:NFPUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:CRVUSDC_ED37FD.USD","d":[]},{"s":"UNISWAP:ISPWETH_000DD0.USD","d":[]},{"s":"WHITEBIT:IOSTUSDT","d":[]},{"s":"PANGOLIN:ORBSWAVAX_00D10D","d":[]},{"s":"BITRUE:DODOUSDT","d":[]},{"s":"WHITEBIT:TUSDUSDT","d":[]},{"s":"UNISWAP:PIERWETH_B5B76E.USD","d":[]},{"s":"PANGOLIN:IDYPWAVAX_66EECC.USD","d":[]},{"s":"UNISWAP3ETH:USDTKLUB","d":[]},{"s":"TRADERJOE:ALPHAEWAVAX_F723FE","d":[]},{"s":"BYBIT:TRXUSDT.P","d":[]},{"s":"BITHUMB:NEOKRW","d":[]},{"s":"COINEX:RNDRUSDT","d":[]},{"s":"HITBTC:STRAXUSDT","d":[]},{"s":"GATEIO:SUDOUSDT","d":[]},{"s":"UNISWAP:INUINUWETH_E388C2.USD","d":[]},{"s":"UNISWAP3ETH:SNXUSDC_020C34.USD","d":[]},{"s":"UNISWAP:LOVEUSDT_E24AB7","d":[]},{"s":"MEXC:SPFCUSDT","d":[]},{"s":"SPOOKYSWAP:SPOOKWFTM_F7920E.USD","d":[]},{"s":"UNISWAP3POLYGON:YGGWETH_D4659F.USD","d":[]},{"s":"PHEMEX:RNDRUSDT","d":[]},{"s":"GATEIO:GMATUSDT","d":[]},{"s":"HITBTC:DOGEUSD","d":[]},{"s":"UNISWAP3ETH:OOKIWETH","d":[]},{"s":"UNISWAP:AIRWETH_BC562B.USD","d":[]},{"s":"UNISWAP3ETH:TRESTLEWETH","d":[]},{"s":"MEXC:AAVEUSDC","d":[]},{"s":"UNISWAP:SHIBDAOWETH_775569","d":[]},{"s":"UNISWAP:369WETH_C27D2F.USD","d":[]},{"s":"UNISWAP:PBTWETH_47AF7E.USD","d":[]},{"s":"TRADERJOE:ENIGMA404WAVAX_737268.USD","d":[]},{"s":"UNISWAP:MECHAWETH_185024.USD","d":[]},{"s":"HITBTC:SRXXDC","d":[]},{"s":"QUICKSWAP:GHSTQUICK_8B1FD7.USD","d":[]},{"s":"UNISWAP:TXWETH_7F095E","d":[]},{"s":"QUICKSWAP:ICEWMATIC_BD3547.USD","d":[]},{"s":"UNISWAP3ETH:OPULDAI","d":[]},{"s":"UNISWAP:AETHIRWETH_976C6F","d":[]},{"s":"BITGET:SCLPUSDT","d":[]},{"s":"ZOOMEX:10000STARLUSDT.P","d":[]},{"s":"MEXC:BCHUSDT","d":[]},{"s":"UNISWAP3POLYGON:UNIUSDC_74D3C8.USD","d":[]},{"s":"COINEX:STARLUSDT","d":[]},{"s":"POLONIEX:HIGHUSDT","d":[]},{"s":"UNISWAP:NEONWETH_950A24.USD","d":[]},{"s":"BINANCE:MEMEETH","d":[]},{"s":"COINEX:MAGICUSDT","d":[]},{"s":"POLONIEX:CLIPSUSDT","d":[]},{"s":"UNISWAP3ETH:WSTETHUSDT","d":[]},{"s":"MEXC:MIRUSDT","d":[]},{"s":"UNISWAP:DBNBWETH_1E969A.USD","d":[]},{"s":"MEXC:ARUSDT.P","d":[]},{"s":"WHITEBIT:BANDUSDT","d":[]},{"s":"MEXC:MUBIUSDT.P","d":[]},{"s":"UNISWAP3ETH:LINKSDL","d":[]},{"s":"PHEMEX:XAIUSDT.P","d":[]},{"s":"UNISWAP:OMEGAWETH_40F8DA.USD","d":[]},{"s":"UNISWAP3POLYGON:ZCHFUSDT_DE04B2.USD","d":[]},{"s":"BISWAP:EGLDWBNB_46C2B9.USD","d":[]},{"s":"BITGET:CLOREUSDT","d":[]},{"s":"UNISWAP:BVMWETH_BCFEA8","d":[]},{"s":"WHITEBIT:XRPBTC","d":[]},{"s":"QUICKSWAP:ERPUSDC_C4BF2A","d":[]},{"s":"WHITEBIT:PONDUSDT","d":[]},{"s":"TRADERJOE:PENGUWAVAX_3BB461.USD","d":[]},{"s":"UNISWAP3ETH:AUDIOWETH_8ECC22.USD","d":[]},{"s":"UNISWAP3ETH:BEPROWETH","d":[]},{"s":"PHEMEX:QTUMUSDT","d":[]},{"s":"TRADERJOE:COQWAVAX_41AB86.USD","d":[]},{"s":"UNISWAP:MILEIWETH_74CE30","d":[]},{"s":"BYBIT:BTCUSDT","d":[]},{"s":"GATEIO:PAWUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSPLY","d":[]},{"s":"POLONIEX:OGGYUSDT","d":[]},{"s":"UNISWAP:ARCAIWETH_94CE5A","d":[]},{"s":"PHEMEX:KEYUSDT","d":[]},{"s":"UNISWAP:NPTRWETH_03FE32.USD","d":[]},{"s":"GATEIO:ARKMUSDT","d":[]},{"s":"BYBIT:AVAXUSDT.2S","d":[]},{"s":"BTSE:AXSUSD","d":[]},{"s":"BYBIT:DOTUSD.P","d":[]},{"s":"UNISWAP:OTSEAWETH_75EABB","d":[]},{"s":"BINGX:WOOUSDT.PS","d":[]},{"s":"BTSE:MATICUSD","d":[]},{"s":"BINANCE:STRAXBTC","d":[]},{"s":"UNISWAP3ARBITRUM:PEPEWETH_8AB645.USD","d":[]},{"s":"BINANCE:ARKMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTINHAT","d":[]},{"s":"WHITEBIT:CELOUSDT","d":[]},{"s":"WHITEBIT:PORTALBTC","d":[]},{"s":"SPOOKYSWAP:KALMWFTM_0A96B0.USD","d":[]},{"s":"QUICKSWAP:PGENWMATIC_B6FBB5","d":[]},{"s":"BITGET:MTCUSDT","d":[]},{"s":"MEXC:LUFFYUSDT","d":[]},{"s":"PHEMEX:PENDLEUSDT.P","d":[]},{"s":"UNISWAP:HOODWETH_9DD2BB.USD","d":[]},{"s":"UNISWAP3ETH:BZZWETH","d":[]},{"s":"MEXC:NTRNUSDT","d":[]},{"s":"GATEIO:RLCUSDT","d":[]},{"s":"BITGET:MAVUSDT","d":[]},{"s":"UNISWAP:SHAKEWETH_8F30BA","d":[]},{"s":"UNISWAP:VERSEWETH_1BB1D4","d":[]},{"s":"COINBASE:NKNUSD","d":[]},{"s":"UNISWAP:REEFWETH_793761.USD","d":[]},{"s":"POLONIEX:STPTUSDT","d":[]},{"s":"POLONIEX:BOBUSDT","d":[]},{"s":"BINGX:VETUSDT.PS","d":[]},{"s":"BITFINEX:DYMBTC","d":[]},{"s":"UNISWAP3ETH:USDTCGPT","d":[]},{"s":"COINEX:WSMUSDT","d":[]},{"s":"BINGX:EGLDUSDT.P","d":[]},{"s":"GEMINI:SHIBUSD","d":[]},{"s":"COINEX:KDAUSDC","d":[]},{"s":"COINEX:LITHUSDT","d":[]},{"s":"QUICKSWAP:PLRWMATIC_A7EC31","d":[]},{"s":"UNISWAP3ETH:OSWETH_CCC42C.USD","d":[]},{"s":"BITGET:VELO1USDT","d":[]},{"s":"TRADERJOE:BARKWAVAX_176864","d":[]},{"s":"PIONEX:CFXUSDT.P","d":[]},{"s":"BITGET:JTOUSDT","d":[]},{"s":"BITRUE:ETHUSDC","d":[]},{"s":"BYBIT:FXSUSDT.P","d":[]},{"s":"BITSTAMP:XRPEUR","d":[]},{"s":"SPOOKYSWAP:ORBSUSDC_4FAA52","d":[]},{"s":"UNISWAP:GROKWETH_53B93B","d":[]},{"s":"GATEIO:ZKBUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GNSWETH_C91B7B.USD","d":[]},{"s":"UNISWAP:NFYWETH_146D34.USD","d":[]},{"s":"BINANCE:ICXUSD.P","d":[]},{"s":"HITBTC:CVNXBTC","d":[]},{"s":"BINANCE:XRPEUR","d":[]},{"s":"KRAKEN:USDCCAD","d":[]},{"s":"HITBTC:XRDBTC","d":[]},{"s":"UNISWAP:TRENDAIWETH_9CEB11.USD","d":[]},{"s":"MEXC:METAVUSDT","d":[]},{"s":"UNISWAP3ETH:SWOBWETH","d":[]},{"s":"PHEMEX:VETUSDT.P","d":[]},{"s":"BITRUE:VETUSDC","d":[]},{"s":"UNISWAP:SKIDWETH_A7BFC9.USD","d":[]},{"s":"BISWAP:NEARWBNB_E0E9FD.USD","d":[]},{"s":"BITGET:PIXELUSDT.P","d":[]},{"s":"WHITEBIT:IMXUSDT","d":[]},{"s":"POLONIEX:RMVUSDT","d":[]},{"s":"KRAKEN:XTZEUR","d":[]},{"s":"TRADERJOE:ALPHAWAVAX_889F58.USD","d":[]},{"s":"HITBTC:RPZXBTC","d":[]},{"s":"PIONEX:SUPERUSDT.P","d":[]},{"s":"HITBTC:SRMBTC","d":[]},{"s":"DERIBIT:BTCUSD22H2024","d":[]},{"s":"HITBTC:JSTBTC","d":[]},{"s":"MEXC:AGIXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGROW","d":[]},{"s":"UNISWAP3ARBITRUM:GRAILUSD_3DF109.USD","d":[]},{"s":"WHITEBIT:ONTUSDT","d":[]},{"s":"KRAKEN:DYMUSD","d":[]},{"s":"MEXC:ALICEUSDT","d":[]},{"s":"COINBASE:FETUSD","d":[]},{"s":"BINGX:AUDIOUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHRYOSHI","d":[]},{"s":"PHEMEX:BLZUSDT","d":[]},{"s":"HITBTC:JSTUSD","d":[]},{"s":"BITGET:FIREUSDT","d":[]},{"s":"OKX:KISHUUSDT.P","d":[]},{"s":"UNISWAP:SPIRITWETH_683FD5.USD","d":[]},{"s":"COINEX:ENTANGLEUSDT","d":[]},{"s":"UNISWAP3ETH:UOSUSDC_094A28.USD","d":[]},{"s":"MEXC:CAKEUSDT","d":[]},{"s":"KRAKEN:EULEUR","d":[]},{"s":"BITRUE:UMAUSDT","d":[]},{"s":"HITBTC:BCNETH","d":[]},{"s":"BINANCE:PEPEUSDT","d":[]},{"s":"BITRUE:PYRUSDT","d":[]},{"s":"MEXC:AMOUSDT","d":[]},{"s":"UNISWAP3ETH:RBLZWETH","d":[]},{"s":"UNISWAP:QUIDDMYTH_9042F4","d":[]},{"s":"UNISWAP3ETH:ALLBIWETH","d":[]},{"s":"MEXC:BNXUSDT","d":[]},{"s":"UNISWAP3ETH:RCMWETH","d":[]},{"s":"UNISWAP3ETH:WETHFWIF","d":[]},{"s":"MEXC:CREOUSDT","d":[]},{"s":"COINEX:CTXCUSDT","d":[]},{"s":"POLONIEX:LPTUSD","d":[]},{"s":"TRADERJOE:PNGWAVAX_3DAF1C.USD","d":[]},{"s":"UNISWAP3ETH:WETHSHARES","d":[]},{"s":"WHITEBIT:CHRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCMPT","d":[]},{"s":"UNISWAP:MKWETH_6EF244.USD","d":[]},{"s":"TRADERJOE:SMRTWAVAX_F07084.USD","d":[]},{"s":"UNISWAP3ETH:WETHCFD","d":[]},{"s":"KRAKEN:CTSIUSD","d":[]},{"s":"UNISWAP3ETH:TDAI","d":[]},{"s":"PIONEX:COTIUSDT.P","d":[]},{"s":"BINGX:ZETAUSDT.PS","d":[]},{"s":"GATEIO:DOPUSDT","d":[]},{"s":"UNISWAP:AZRWETH_54E4BA.USD","d":[]},{"s":"UNISWAP3ETH:DBCUSDT","d":[]},{"s":"BITGET:BIGTIMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPUNDIX","d":[]},{"s":"UNISWAP3ETH:EXNTWETH_64A0D8.USD","d":[]},{"s":"DELTA:SEIUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:WTPOKTUSDC_3CC6F5.USD","d":[]},{"s":"UNISWAP:SDUSDC_4177D1","d":[]},{"s":"UNISWAP:BARTWETH_CA166F.USD","d":[]},{"s":"GATEIO:1INCHUSDT","d":[]},{"s":"ZOOMEX:ANKRUSDT.P","d":[]},{"s":"HITBTC:GMTTUSDT","d":[]},{"s":"MEXC:ELON2024USDT","d":[]},{"s":"UNISWAP:BMDAWETH_43B82C","d":[]},{"s":"BITFINEX:1INCHUST","d":[]},{"s":"BYBIT:1CATUSDT.P","d":[]},{"s":"UNISWAP:THEXWETH_E990AB.USD","d":[]},{"s":"QUICKSWAP:MOCEANWMATIC_5A94F8","d":[]},{"s":"KRAKEN:KSMETH","d":[]},{"s":"UNISWAP:TRUMP2024WETH_F9DE58.USD","d":[]},{"s":"UNISWAP3ETH:SENATEWETH","d":[]},{"s":"COINEX:SCUSDT","d":[]},{"s":"UNISWAP3ETH:MKRWETH_3AFDC5.USD","d":[]},{"s":"UNISWAP:WTFWETH_BAD5A4.USD","d":[]},{"s":"BITSTAMP:BLURUSD","d":[]},{"s":"UNISWAP:USDIWETH_63AAC7","d":[]},{"s":"UNISWAP3POLYGON:DUCKIESWMATIC_801B68.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SUSHIUSDC_D87377.USD","d":[]},{"s":"ZOOMEX:HNTUSDT.P","d":[]},{"s":"UNISWAP:UDTWETH_9CA8AE.USD","d":[]},{"s":"UNISWAP:VAIWETH_AF95D3","d":[]},{"s":"HITBTC:KCSBTC","d":[]},{"s":"UNISWAP3ARBITRUM:GOAWETH_970EAF.USD","d":[]},{"s":"GATEIO:OCTOUSDT","d":[]},{"s":"UNISWAP:MACHINAWETH_BFC7E1","d":[]},{"s":"UNISWAP:PUDGWETH_6F7271","d":[]},{"s":"UNISWAP:BLANKWETH_D8A07E.USD","d":[]},{"s":"SPOOKYSWAP:PAEWFTM_2DC234","d":[]},{"s":"MEXC:AMAUSDT","d":[]},{"s":"MEXC:STORJUSDT.P","d":[]},{"s":"PHEMEX:EOSUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:MMYWETH_71FFF2.USD","d":[]},{"s":"DYDX:ZECUSD.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBFRAX_490009.USD","d":[]},{"s":"QUICKSWAP:BOOKWMATIC_E66725","d":[]},{"s":"MEXC:FUNJRUSDT","d":[]},{"s":"UNISWAP:DGWETH_44C21F","d":[]},{"s":"HITBTC:QTUMUSDT","d":[]},{"s":"QUICKSWAP:FISHWMATIC_289CF2.USD","d":[]},{"s":"UNISWAP:MAILWETH_BB4392.USD","d":[]},{"s":"UNISWAP3ETH:WETHUOS","d":[]},{"s":"HITBTC:ORMEUSUSD","d":[]},{"s":"GATEIO:WOOUSDT","d":[]},{"s":"COINEX:KIMBOUSDT","d":[]},{"s":"BINGX:AXSUSDT.P","d":[]},{"s":"BITHUMB:TEMCOKRW","d":[]},{"s":"BLOFIN:DYDXUSDT.P","d":[]},{"s":"UNISWAP:FLOKIWETH_CA7C27","d":[]},{"s":"BINANCE:MANTABTC","d":[]},{"s":"TRADERJOE:CHEEMSXWAVAX_6B51D4","d":[]},{"s":"PANGOLIN:SHAKEWAVAX_CACC38.USD","d":[]},{"s":"COINBASE:FLRUSD","d":[]},{"s":"UNISWAP3ETH:SDEXWETH_C7CBFF.USD","d":[]},{"s":"UNISWAP:LOVELYWETH_BE5A0B.USD","d":[]},{"s":"QUICKSWAP:DEODUSDT_FF8A4B","d":[]},{"s":"GATEIO:EOSUSDT","d":[]},{"s":"UNISWAP3POLYGON:MPHWMATIC_2FCCDD.USD","d":[]},{"s":"WHITEBIT:PEPEUSDT","d":[]},{"s":"UNISWAP3ETH:SHIAWETH_52DB71.USD","d":[]},{"s":"GATEIO:RLYUSDT","d":[]},{"s":"WHITEBIT:SOLUAH","d":[]},{"s":"UNISWAP3ETH:WSMWETH_58D7E1.USD","d":[]},{"s":"BLOFIN:ACEUSDT.P","d":[]},{"s":"KRAKEN:GTCUSD","d":[]},{"s":"UNISWAP3ETH:S4FWETH","d":[]},{"s":"UNISWAP3ETH:HDRNUSDC_E85904.USD","d":[]},{"s":"MEXC:EVDCUSDT","d":[]},{"s":"COINEX:PUNDIXUSDT","d":[]},{"s":"UNISWAP:GUILTYWETH_36AA84.USD","d":[]},{"s":"UNISWAP:SOLARWETH_C21CD7.USD","d":[]},{"s":"UNISWAP:XRP20WETH_CD09B7.USD","d":[]},{"s":"GATEIO:CONVUSDT","d":[]},{"s":"UNISWAP:HOMMIESWETH_106B3F","d":[]},{"s":"ZOOMEX:CRVUSDT.P","d":[]},{"s":"BITRUE:TRXUSDT","d":[]},{"s":"UNISWAP:GARBAGEUSDC_C01EDA","d":[]},{"s":"BINANCE:KMDBTC","d":[]},{"s":"GATEIO:VEGAUSDT","d":[]},{"s":"QUICKSWAP:XPUSDC_0E14F3","d":[]},{"s":"MEXC:RPLUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTCRPT","d":[]},{"s":"ZOOMEX:USTCUSDT.P","d":[]},{"s":"BYBIT:THETAUSDT.P","d":[]},{"s":"TRADERJOE:OSAKWAVAX_FB1AB8","d":[]},{"s":"BINANCE:MANTAUSDC","d":[]},{"s":"GATEIO:C98USDT.3L","d":[]},{"s":"POLONIEX:WEWEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFOTTIE","d":[]},{"s":"UNISWAP3ETH:RENDAI","d":[]},{"s":"UNISWAP:SUNCWETH_AF5A74","d":[]},{"s":"GATEIO:MHUNTUSDT","d":[]},{"s":"HITBTC:ACHUSD","d":[]},{"s":"POLONIEX:FTTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCUSDT_5969EF.USD","d":[]},{"s":"UNISWAP3ARBITRUM:IMXUSDC_47BA3E.USD","d":[]},{"s":"UNISWAP3ETH:USDCNKN","d":[]},{"s":"UNISWAP:CCV2WETH_BEBC35","d":[]},{"s":"UNISWAP3ETH:CXWETH_592F9D.USD","d":[]},{"s":"UNISWAP:FTTCWETH_7F44F5","d":[]},{"s":"PANGOLIN:USDTEJOE_D50A48","d":[]},{"s":"UNISWAP:SERWETH_D8E29D.USD","d":[]},{"s":"UNISWAP:NEONAIWETH_CA538D","d":[]},{"s":"UNISWAP3ETH:CVWETH","d":[]},{"s":"GATEIO:PERAUSDT","d":[]},{"s":"KRAKEN:DASHUSD.PM","d":[]},{"s":"HITBTC:MANAETH","d":[]},{"s":"BINANCEUS:ENSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTAI","d":[]},{"s":"HITBTC:FLIPUSDT","d":[]},{"s":"ZOOMEX:SXPUSDT.P","d":[]},{"s":"POLONIEX:WFAIUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:HOPWETH_570A8A.USD","d":[]},{"s":"UNISWAP:BABYTRUMPWETH_FD2553.USD","d":[]},{"s":"UNISWAP3ETH:INVDOLA_BD1F92.USD","d":[]},{"s":"MEXC:VPRUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GDAIDAI_9F934D.USD","d":[]},{"s":"UNISWAP:WOLFWETH_25752D.USD","d":[]},{"s":"BITGET:C98USDT","d":[]},{"s":"MEXC:CALUSDT","d":[]},{"s":"UNISWAP3ETH:XYOUSDT","d":[]},{"s":"PIONEX:DOTUSDT.P","d":[]},{"s":"TRADERJOE:LINKEUSDCE_B9F425","d":[]},{"s":"HITBTC:GASUSDT","d":[]},{"s":"BINANCE:HOOKBTC","d":[]},{"s":"MEXC:TUSDUSDT","d":[]},{"s":"MEXC:BIGTIMEUSDT","d":[]},{"s":"POLONIEX:SHIBUSDD","d":[]},{"s":"UNISWAP3ETH:WETHAGEUR","d":[]},{"s":"BITHUMB:FLOWKRW","d":[]},{"s":"WHITEBIT:CHZUSDT","d":[]},{"s":"UNISWAP3ETH:GASWETH_CDC0B2.USD","d":[]},{"s":"SPOOKYSWAP:TOMBWFTM_8F1CD0","d":[]},{"s":"BYBIT:10000STARLUSDT.P","d":[]},{"s":"UNISWAP:PEPE05PEPE_F8BED3","d":[]},{"s":"BITFINEX:ZETAUST","d":[]},{"s":"MEXC:ULXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHIBA2","d":[]},{"s":"UNISWAP3ETH:BANANAUSDC_9F6E92.USD","d":[]},{"s":"POLONIEX:SNOWUSDT","d":[]},{"s":"TRADERJOE:BULLWAVAX_76EAB3.USD","d":[]},{"s":"UNISWAP:XSTUSDWETH_165AB5.USD","d":[]},{"s":"COINBASE:ETHUSD","d":[]},{"s":"UNISWAP3ETH:NAVIWETH_884ACC.USD","d":[]},{"s":"UNISWAP:RIOWETH_0B85B3.USD","d":[]},{"s":"QUICKSWAP:MATWMATIC_16770E.USD","d":[]},{"s":"BINANCE:ETCUSD.P","d":[]},{"s":"BTSE:BTSEUSD","d":[]},{"s":"UNISWAP:CRWETH_05AE02","d":[]},{"s":"BLOFIN:DYMUSDT.P","d":[]},{"s":"GATEIO:ONSUSDT","d":[]},{"s":"BINANCE:JUVTRY","d":[]},{"s":"UNISWAP3ETH:GNOWETH","d":[]},{"s":"UPBIT:TFUELKRW","d":[]},{"s":"MEXC:GXTUSDT","d":[]},{"s":"MEXC:VRAUSDT.P","d":[]},{"s":"UNISWAP:VUZZWETH_5E9315","d":[]},{"s":"QUICKSWAP:TORAUSDC_A9A98A","d":[]},{"s":"QUICKSWAP:QUICKCHARTWMATIC_545C67.USD","d":[]},{"s":"UNISWAP:HOSHIWBTC_542C3B","d":[]},{"s":"GATEIO:TCPUSDT","d":[]},{"s":"COINBASE:BICOEUR","d":[]},{"s":"UNISWAP:FORTUNEWETH_01E6DD","d":[]},{"s":"UNISWAP:GATSBYWETH_33D2AE.USD","d":[]},{"s":"BITRUE:ALPACAUSDT","d":[]},{"s":"UNISWAP3ETH:USDCMPS","d":[]},{"s":"GATEIO:HOMEUSDT","d":[]},{"s":"PANGOLIN:TOKWAVAX_7B2AC2","d":[]},{"s":"HITBTC:MITXBTC","d":[]},{"s":"BTSE:ENSUSD","d":[]},{"s":"HITBTC:TFUELUSDC","d":[]},{"s":"MEXC:ELDAUSDT","d":[]},{"s":"HITBTC:VETBTC","d":[]},{"s":"BITRUE:YFIUSDT","d":[]},{"s":"MEXC:HAPIUSDT","d":[]},{"s":"GATEIO:DFUSDT","d":[]},{"s":"UNISWAP:HASHWETH_92B8CE","d":[]},{"s":"TRADERJOE:FRAXWAVAX_862905.USD","d":[]},{"s":"MEXC:EGLDUSDT.P","d":[]},{"s":"HITBTC:SUPERUSDT","d":[]},{"s":"MEXC:EGOUSDT","d":[]},{"s":"UNISWAP:SHIB20WETH_8249CA","d":[]},{"s":"UNISWAP3ETH:WETHSTATE","d":[]},{"s":"BITMEX:FLIPUSDT.P","d":[]},{"s":"UNISWAP3ETH:ADSWETH_E40511.USD","d":[]},{"s":"BINANCE:PENDLETRY","d":[]},{"s":"BINANCE:XRPUSDT","d":[]},{"s":"UNISWAP3POLYGON:SBCUSDC_98A5A5.USD","d":[]},{"s":"UNISWAP:8A31A2WETH_46F29A","d":[]},{"s":"GATEIO:AXISUSDT","d":[]},{"s":"EXMO:ATOMBTC","d":[]},{"s":"MEXC:HDNUSDT","d":[]},{"s":"UNISWAP:UOSWETH_42D528","d":[]},{"s":"BITRUE:ILVUSDT","d":[]},{"s":"COINEX:GRTBTC","d":[]},{"s":"BITFINEX:DOTUST","d":[]},{"s":"HITBTC:COMPUSDC","d":[]},{"s":"COINEX:STCUSDT","d":[]},{"s":"MEXC:XYMFUSDT","d":[]},{"s":"BINANCE:AXLTRY","d":[]},{"s":"BINANCE:CVPUSDT","d":[]},{"s":"UNISWAP:BLZEWETH_6BFCDA","d":[]},{"s":"BINANCE:JSTBTC","d":[]},{"s":"BINANCEUS:LRCUSDT","d":[]},{"s":"UNISWAP:TRUMPWETH_AC084D.USD","d":[]},{"s":"BINGX:CFXUSDT.P","d":[]},{"s":"COINEX:XNAUSDT","d":[]},{"s":"BITGET:ROOTUSDT","d":[]},{"s":"MEXC:MUNITYUSDT","d":[]},{"s":"UNISWAP3POLYGON:SOONWMATIC_2E3EAC.USD","d":[]},{"s":"UNISWAP3ETH:WETHBEBE","d":[]},{"s":"PIONEX:USDCUSDT.P","d":[]},{"s":"SPOOKYSWAP:USDCWFTM_2B4C76","d":[]},{"s":"POLONIEX:SENSOBTC","d":[]},{"s":"SPOOKYSWAP:DPWFTM_E24270","d":[]},{"s":"UNISWAP3POLYGON:ASKWETH_370198.USD","d":[]},{"s":"UNISWAP:ROBOPEPEWETH_854BC9.USD","d":[]},{"s":"UNISWAP3ETH:WMINIMAUSDT","d":[]},{"s":"HITBTC:REEFUSD","d":[]},{"s":"GATEIO:MBOXUSDT","d":[]},{"s":"UNISWAP:NFAIWETH_2BE069","d":[]},{"s":"GATEIO:IRISUSDT","d":[]},{"s":"BITGET:MANAUSDT.P","d":[]},{"s":"COINEX:YFIUSDT","d":[]},{"s":"BYBIT:DOGEEUR","d":[]},{"s":"WHITEBIT:SHIBUSDT.P","d":[]},{"s":"UNISWAP3ETH:WILDUSDC_F4BFFD.USD","d":[]},{"s":"MEXC:WLDUSDT.P","d":[]},{"s":"HITBTC:SHIBUSDC","d":[]},{"s":"BITKUB:HBARTHB","d":[]},{"s":"UNISWAP:XRPWETH_07E3FA.USD","d":[]},{"s":"UNISWAP3ETH:WILDFIREWETH","d":[]},{"s":"QUICKSWAP:BETSWMATIC_76BBA0","d":[]},{"s":"MEXC:EMTUSDT","d":[]},{"s":"UPBIT:GRTKRW","d":[]},{"s":"GATEIO:NFTUSDT","d":[]},{"s":"UNISWAP:WSIENNAWETH_B8207F.USD","d":[]},{"s":"UNISWAP:GETWETH_2680A9","d":[]},{"s":"UNISWAP3ETH:CHIBWETH","d":[]},{"s":"XEXCHANGE:ZOGUSDC","d":[]},{"s":"QUICKSWAP:UCOWETH_25BAE7","d":[]},{"s":"HITBTC:ANKRUSDC","d":[]},{"s":"DELTA:BTCUSDT.P","d":[]},{"s":"UNISWAP:CENTWETH_D1B32D","d":[]},{"s":"UNISWAP3ETH:SKEBUSDC","d":[]},{"s":"KRAKEN:CHREUR","d":[]},{"s":"UNISWAP3ETH:PANDORAWETH","d":[]},{"s":"QUICKSWAP:AMBERWMATIC_2E7D9D.USD","d":[]},{"s":"UNISWAP3ETH:AZURWETH","d":[]},{"s":"HITBTC:MKRUSDC","d":[]},{"s":"GATEIO:NSUREUSDT","d":[]},{"s":"WHITEBIT:AAVEUSDT","d":[]},{"s":"KRAKEN:SEIEUR","d":[]},{"s":"UNISWAP3POLYGON:BRLAUSDC_63610C.USD","d":[]},{"s":"MEXC:WAGMIGAMESUSDT","d":[]},{"s":"PHEMEX:WAVESUSDT.P","d":[]},{"s":"MEXC:GSFUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTKB","d":[]},{"s":"UNISWAP3ARBITRUM:USDCUSDT_BCE73C.USD","d":[]},{"s":"BISWAP:BTCBWBNB_C7E9D7.USD","d":[]},{"s":"KRAKEN:ALPHAEUR","d":[]},{"s":"QUICKSWAP:GGTKWETH_19B5F1","d":[]},{"s":"UNISWAP3ETH:USDCSHIB","d":[]},{"s":"UNISWAP3ETH:WETHSABR","d":[]},{"s":"BINANCE:ENSFDUSD","d":[]},{"s":"BYBIT:KMONUSDT","d":[]},{"s":"HITBTC:RARIBTC","d":[]},{"s":"UNISWAP:BOOSTWETH_72D55C.USD","d":[]},{"s":"MEXC:XRPETH","d":[]},{"s":"BITGET:XPRUSDT","d":[]},{"s":"POLONIEX:AGIXUSDT","d":[]},{"s":"BITMEX:TIAUSDT.P","d":[]},{"s":"KRAKEN:USDTCHF","d":[]},{"s":"UNISWAP:DSQWETH_C49125","d":[]},{"s":"MEXC:COTIUSDT","d":[]},{"s":"GATEIO:ALEPHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTRADE","d":[]},{"s":"POLONIEX:AKITAUSDT","d":[]},{"s":"UNISWAP:PLUWETH_87C952.USD","d":[]},{"s":"BITGET:MAGICUSDT","d":[]},{"s":"UNISWAP:TGCWETH_85AA97.USD","d":[]},{"s":"UNISWAP3ETH:BAGWETH_373CC7.USD","d":[]},{"s":"MEXC:XCVUSDT","d":[]},{"s":"BITGET:FLMUSDT","d":[]},{"s":"KRAKEN:KARUSD","d":[]},{"s":"PANGOLIN:FXSWAVAX_86814A","d":[]},{"s":"BITFINEX:ETHEUT","d":[]},{"s":"UNISWAP:BASEDAIWETH_8D58E2.USD","d":[]},{"s":"UNISWAP3ETH:VINUWETH_E935FA.USD","d":[]},{"s":"UNISWAP3ETH:WETHARIA20","d":[]},{"s":"UNISWAP:UNDXWETH_16D30E.USD","d":[]},{"s":"QUICKSWAP:PLAWETH_DE6DAA","d":[]},{"s":"HITBTC:ZECETH","d":[]},{"s":"UNISWAP3ETH:MOGWETH","d":[]},{"s":"UNISWAP:TYPEWETH_26577F.USD","d":[]},{"s":"OKX:DYDXUSDT.P","d":[]},{"s":"PANGOLIN:WAVAXUSDT_E3BA3D","d":[]},{"s":"UNISWAP3ETH:DUSKUSDT_FF29D3.USD","d":[]},{"s":"HITBTC:BAKEUSD","d":[]},{"s":"BINANCE:MBOXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHICE","d":[]},{"s":"UNISWAP3ETH:WETHFENGFENG","d":[]},{"s":"BINANCE:ZILETH","d":[]},{"s":"UNISWAP3ETH:USDTSEND","d":[]},{"s":"UNISWAP:FSTWETH_88AE9E.USD","d":[]},{"s":"MEXC:MXTUSDT","d":[]},{"s":"UNISWAP:CVPWETH_12D444","d":[]},{"s":"UNISWAP:GRTWETH_2E81EC.USD","d":[]},{"s":"UPBIT:BTGKRW","d":[]},{"s":"WHITEBIT:BTCGEL","d":[]},{"s":"TRADERJOE:STGWAVAX_2F5499.USD","d":[]},{"s":"ZOOMEX:10000WENUSDT.P","d":[]},{"s":"UNISWAP3ETH:SYBZEROWETH_9495C7.USD","d":[]},{"s":"BITGET:USDCEUR","d":[]},{"s":"GATEIO:BNSXUSDT","d":[]},{"s":"KRAKEN:ATOMUSDT","d":[]},{"s":"UNISWAP3POLYGON:RNDRUSDC_3AB2EA.USD","d":[]},{"s":"PHEMEX:PEOPLEUSDT","d":[]},{"s":"PANGOLIN:AXIALWAVAX_53D4BF.USD","d":[]},{"s":"COINBASE:GNOUSD","d":[]},{"s":"MEXC:USDDUSDT","d":[]},{"s":"UNISWAP3ETH:WINWETH","d":[]},{"s":"UNISWAP3ETH:NKNUSDC","d":[]},{"s":"GATEIO:FRMUSDT","d":[]},{"s":"COINEX:IOTABTC","d":[]},{"s":"BYBIT:FIDAUSDT","d":[]},{"s":"QUICKSWAP:EQUADWETH_74BF9B","d":[]},{"s":"UNISWAP:9527WETH_C8C1B6.USD","d":[]},{"s":"UNISWAP:PEMWETH_EFFFFD.USD","d":[]},{"s":"KRAKEN:TRXUSD","d":[]},{"s":"UNISWAP3ETH:PSYOPWETH_A3BC06.USD","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDT_3C92BD.USD","d":[]},{"s":"MEXC:BONKBESTUSDT","d":[]},{"s":"BYBIT:STARUSDT","d":[]},{"s":"HITBTC:HITETH","d":[]},{"s":"BITGET:RSRUSDT","d":[]},{"s":"BINANCE:MEMEBNB","d":[]},{"s":"BITFINEX:HIXUST","d":[]},{"s":"UNISWAP3ETH:PORWETH_5B4DF7.USD","d":[]},{"s":"GATEIO:RARIUSDT","d":[]},{"s":"GATEIO:KUBEUSDT","d":[]},{"s":"QUICKSWAP:RIOTWETH_E63943","d":[]},{"s":"UNISWAP3ETH:BENWETH","d":[]},{"s":"UNISWAP3ETH:PEOPLEWETH_83ABEC.USD","d":[]},{"s":"BITHUMB:IMXKRW","d":[]},{"s":"UNISWAP3ETH:GHOUSDT","d":[]},{"s":"UNISWAP3POLYGON:SPONGEWMATIC_A01F64.USD","d":[]},{"s":"HITBTC:STCUSDT","d":[]},{"s":"UNISWAP3POLYGON:EUREUSDC_7D4324.USD","d":[]},{"s":"BITRUE:MATICADA","d":[]},{"s":"POLONIEX:PCUSDT","d":[]},{"s":"UNISWAP3ETH:RLBUSDT_336763.USD","d":[]},{"s":"BYBIT:DOGEUSDC","d":[]},{"s":"MEXC:SPHUSDT","d":[]},{"s":"POLONIEX:ARGUSDT","d":[]},{"s":"UNISWAP3POLYGON:SANDUSDC_B69D18.USD","d":[]},{"s":"MEXC:MANCUSDT","d":[]},{"s":"TRADERJOE:DUCKWAVAX_6783C4.USD","d":[]},{"s":"PHEMEX:CRVUSDT","d":[]},{"s":"UNISWAP:ZEROWETH_1E11FC","d":[]},{"s":"MEXC:PEPAUSDT","d":[]},{"s":"UNISWAP3ETH:RNGWETH","d":[]},{"s":"HITBTC:HITUSDT","d":[]},{"s":"UNISWAP:SPOOWETH_36CC64.USD","d":[]},{"s":"POLONIEX:NFTUSDD","d":[]},{"s":"BTSE:CHZUSD","d":[]},{"s":"UNISWAP3OPTIMISM:LINKWETH_3202C4.USD","d":[]},{"s":"HITBTC:ZAPETH","d":[]},{"s":"HONEYSWAPPOLYGON:WETHWBTC","d":[]},{"s":"UNISWAP:TSUKAWETH_A1AF3B","d":[]},{"s":"UNISWAP:OASISWETH_B608DD.USD","d":[]},{"s":"MEXC:BIFUSDT","d":[]},{"s":"QUICKSWAP:4INTWMATIC_029717","d":[]},{"s":"BLOFIN:BALUSDT.P","d":[]},{"s":"BITRUE:DIAUSDT","d":[]},{"s":"ZOOMEX:IOTXUSDT.P","d":[]},{"s":"BITFINEX:CRVUSD","d":[]},{"s":"TRADERJOE:TECHWAVAX_2A68EE.USD","d":[]},{"s":"BYBIT:COTIUSDT.P","d":[]},{"s":"UNISWAP3ETH:DCARDWETH","d":[]},{"s":"UNISWAP3ETH:WETHCX","d":[]},{"s":"QUICKSWAP:PINWMATIC_4CD730","d":[]},{"s":"UNISWAP3ETH:SELFWETH_C539D6.USD","d":[]},{"s":"UNISWAP3ETH:WETHTGOLD","d":[]},{"s":"MEXC:SSTUSDT","d":[]},{"s":"TRADERJOE:AGXUSDC_30B7FD","d":[]},{"s":"UNISWAP3ETH:SYNCWBTC_E07915.USD","d":[]},{"s":"UNISWAP:IBOXWETH_B6AF31","d":[]},{"s":"BYBIT:MATICUSDC","d":[]},{"s":"UNISWAP3ETH:MMUSDC","d":[]},{"s":"UNISWAP:PEPECWETH_3AFD96","d":[]},{"s":"UNISWAP:CUTWETH_4F4D05.USD","d":[]},{"s":"COINEX:ZEROUSDT","d":[]},{"s":"UNISWAP3ETH:RENUSDC_8DD240.USD","d":[]},{"s":"HITBTC:GRINETH","d":[]},{"s":"BITMEX:FILUSD.P","d":[]},{"s":"MEXC:DMOUSDT","d":[]},{"s":"HITBTC:AABUSDT","d":[]},{"s":"TRADERJOE:DAXEUSDTE_BDFD85.USD","d":[]},{"s":"HITBTC:MDXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSCHAP","d":[]},{"s":"UNISWAP3ETH:GENIEUSDT","d":[]},{"s":"BITFINEX:BGBUST","d":[]},{"s":"TRADERJOE:AVATUSDC_070F23.USD","d":[]},{"s":"UNISWAP:SHUBWETH_A54C1E.USD","d":[]},{"s":"UNISWAP:0NEFUND_5996C0.USD","d":[]},{"s":"UNISWAP3ETH:WETHDOX","d":[]},{"s":"BINANCE:NTRNTRY","d":[]},{"s":"BINANCEUS:STGUSDT","d":[]},{"s":"TRADERJOE:NULLWAVAX_CFE6CB.USD","d":[]},{"s":"GATEIO:KIMCHIUSDT","d":[]},{"s":"BITHUMB:LINKKRW","d":[]},{"s":"TRADERJOE:MUWAVAX_DAD81E.USD","d":[]},{"s":"BINGX:MTLUSDT.P","d":[]},{"s":"GATEIO:BACUSDT","d":[]},{"s":"UNISWAP:EGGXWETH_9EAC34.USD","d":[]},{"s":"BYBIT:IRLUSDT","d":[]},{"s":"UNISWAP3ETH:POHMWETH","d":[]},{"s":"UNISWAP:MOLLYWETH_81A954","d":[]},{"s":"WHITEBIT:SOLUSDT.P","d":[]},{"s":"UNISWAP3ETH:BOOWETH_27F82C.USD","d":[]},{"s":"TRADERJOE:DEVSWAVAX_B13B6F.USD","d":[]},{"s":"UNISWAP:MILEIWETH_74CE30.USD","d":[]},{"s":"COINEX:LOOMUSDT","d":[]},{"s":"PIONEX:LINKUSDT.P","d":[]},{"s":"UNISWAP:FAKEWETH_89225F","d":[]},{"s":"MEXC:PRIMALUSDT","d":[]},{"s":"BITFINEX:DVFBTC","d":[]},{"s":"UNISWAP3ETH:NEMSUSDT","d":[]},{"s":"BYBIT:QNTUSDT.P","d":[]},{"s":"BINANCE:BTCUSDM2024","d":[]},{"s":"COINEX:SFPUSDT","d":[]},{"s":"BITGET:CYBERUSDT","d":[]},{"s":"UNISWAP:NUKEMUSDT_C99888","d":[]},{"s":"UNISWAP:AGIXWETH_E45B4A.USD","d":[]},{"s":"KRAKEN:CRVETH","d":[]},{"s":"WHITEBIT:SUIUSDT.P","d":[]},{"s":"WHITEBIT:ETCUSDT","d":[]},{"s":"BYBIT:USDTBRZ","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCUSDT_53C6CA.USD","d":[]},{"s":"QUICKSWAP:SPORTREVV_5005A8","d":[]},{"s":"GEMINI:LINKGUSD.P","d":[]},{"s":"MEXC:KNFTUSDT","d":[]},{"s":"UNISWAP3ETH:PEPEWETH_757A19.USD","d":[]},{"s":"PIONEX:ORBSUSDT.P","d":[]},{"s":"HITBTC:NWCUSD","d":[]},{"s":"BITFINEX:MEMEUSD","d":[]},{"s":"UNISWAP3ETH:USDTHYVE","d":[]},{"s":"POLONIEX:API3USDT","d":[]},{"s":"UNISWAP3ETH:WFIOWETH_937D91.USD","d":[]},{"s":"UNISWAP3ETH:BUSDUSDT","d":[]},{"s":"UNISWAP3POLYGON:DAIUSDT_88AAEE.USD","d":[]},{"s":"UNISWAP3ETH:OLASUSDC","d":[]},{"s":"UNISWAP3ETH:DOGWETH","d":[]},{"s":"UNISWAP:EXNTWETH_E875D8","d":[]},{"s":"BINANCEUS:IOSTUSDT","d":[]},{"s":"UNISWAP:TAOBOTWETH_8FE920.USD","d":[]},{"s":"KRAKEN:SPELLUSD.PM","d":[]},{"s":"TRADERJOE:HECWAVAX_4DC529","d":[]},{"s":"UNISWAP:CWSWETH_40449D","d":[]},{"s":"GEMINI:MANAUSD","d":[]},{"s":"BINGX:JOEUSDT.PS","d":[]},{"s":"BTSE:GALUSD.P","d":[]},{"s":"UNISWAP3ETH:SHIWETH","d":[]},{"s":"KRAKEN:BICOEUR","d":[]},{"s":"UNISWAP:WCHIWETH_5F005A.USD","d":[]},{"s":"UNISWAP:USXDF_DAE6E5","d":[]},{"s":"UNISWAP3ETH:WETHNETH","d":[]},{"s":"ZOOMEX:FETUSDT.P","d":[]},{"s":"UNISWAP:NAOWETH_345E39.USD","d":[]},{"s":"MEXC:CYBERUSDT.P","d":[]},{"s":"BITGET:AEVOUSDT","d":[]},{"s":"MEXC:TSUKAUSDT","d":[]},{"s":"HITBTC:DCNUSDT","d":[]},{"s":"UNISWAP:HIDWETH_0F225F.USD","d":[]},{"s":"UNISWAP:FNDWETH_6D9B5E","d":[]},{"s":"BINGX:UMAUSDT.PS","d":[]},{"s":"BINANCE:WLDFDUSD","d":[]},{"s":"HITBTC:OGNUSD","d":[]},{"s":"ZOOMEX:EDUUSDT.P","d":[]},{"s":"UNISWAP:DEDEWETH_04F01D.USD","d":[]},{"s":"POLONIEX:MVLUSDT","d":[]},{"s":"BYBIT:CYBERUSDT","d":[]},{"s":"QUICKSWAP:ECOUSDT_F1BB6C","d":[]},{"s":"BINANCE:RONINUSDT","d":[]},{"s":"HITBTC:BCUGUSD","d":[]},{"s":"BTSE:AAVEUSD.P","d":[]},{"s":"BINGX:RATSUSDT.PS","d":[]},{"s":"HITBTC:RVNUSDT","d":[]},{"s":"WOONETWORK:PYRUSDT","d":[]},{"s":"SPOOKYSWAP:WLANDWFTM_CEC487","d":[]},{"s":"UNISWAP3ARBITRUM:ARCHIWETH_1B4A3F.USD","d":[]},{"s":"KRAKEN:BTCGBP","d":[]},{"s":"SPOOKYSWAP:INVWFTM_938048","d":[]},{"s":"UNISWAP:RENTWETH_77FCA8.USD","d":[]},{"s":"COINEX:VOLTUSDT","d":[]},{"s":"COINEX:YFIIUSDT","d":[]},{"s":"UNISWAP:SPOWETH_6FCC7D","d":[]},{"s":"HITBTC:SCRTUSDT","d":[]},{"s":"BITGET:HOOKUSDT","d":[]},{"s":"UNISWAP:NOTHINGWETH_278ACE","d":[]},{"s":"BITGET:LITTUSDT","d":[]},{"s":"UNISWAP:STICKWETH_FB7927.USD","d":[]},{"s":"MEXC:MTRMUSDT","d":[]},{"s":"BINGX:ACEUSDT.P","d":[]},{"s":"BITSTAMP:VEXTEUR","d":[]},{"s":"POLONIEX:CHRBTC","d":[]},{"s":"COINEX:MNTUSDT","d":[]},{"s":"PHEMEX:XRPUSDC","d":[]},{"s":"UNISWAP:THUGWETH_6512D5","d":[]},{"s":"UNISWAP:HOBBESWETH_617808","d":[]},{"s":"HITBTC:ILVUSDT","d":[]},{"s":"TRADERJOE:PAPERINK_16C57F","d":[]},{"s":"TRADERJOE:RLOOPWAVAX_6D4BDE.USD","d":[]},{"s":"UNISWAP:SPECWETH_B64DE2.USD","d":[]},{"s":"BITGET:GINOAUSDT","d":[]},{"s":"SPOOKYSWAP:PILAWFTM_D3C751","d":[]},{"s":"HITBTC:MATICHIT","d":[]},{"s":"UNISWAP:PNFWETH_B5B4EF.USD","d":[]},{"s":"BYBIT:SHILLUSDT","d":[]},{"s":"BITFINEX:THETAUSD","d":[]},{"s":"UNISWAP:GROKWETH_69C66B","d":[]},{"s":"BITFINEX:GOMININGBTC","d":[]},{"s":"UNISWAP3ETH:WAVAXWETH","d":[]},{"s":"QUICKSWAP:ICEUSDC_9E3880","d":[]},{"s":"SPOOKYSWAP:PILAWFTM_D3C751.USD","d":[]},{"s":"UNISWAP3ETH:WETHPOL","d":[]},{"s":"WOONETWORK:DYDXUSDT","d":[]},{"s":"ZOOMEX:VRAUSDT.P","d":[]},{"s":"BISWAP:VETWBNB_6882A3.USD","d":[]},{"s":"UNISWAP3ETH:USDCWPLS","d":[]},{"s":"BITHUMB:DVIKRW","d":[]},{"s":"BINANCE:TROYUSDT","d":[]},{"s":"MEXC:XAIGROKUSDT","d":[]},{"s":"UNISWAP3ETH:UERIIUSDC","d":[]},{"s":"DERIBIT:DOGEUSDC.P","d":[]},{"s":"BINANCE:PIXELBNB","d":[]},{"s":"WOONETWORK:STFXUSDT","d":[]},{"s":"UNISWAP3ETH:CELLDAI","d":[]},{"s":"UNISWAP:DINGERWETH_21A7AF","d":[]},{"s":"SPOOKYSWAP:BADGERICE_1B07D5","d":[]},{"s":"HITBTC:BRDUSDT","d":[]},{"s":"WHITEBIT:STEEMUSDT","d":[]},{"s":"KRAKEN:REQEUR","d":[]},{"s":"BINANCE:XEMUSDT","d":[]},{"s":"BITGET:ALGOUSDT.P","d":[]},{"s":"BITSTAMP:USDTUSD","d":[]},{"s":"COINBASE:NEARUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSAFETH","d":[]},{"s":"UNISWAP3OPTIMISM:ERNUSDC_4CE4A1.USD","d":[]},{"s":"UNISWAP3ETH:MILFLC_E900AA.USD","d":[]},{"s":"UNISWAP:OMWETH_E46935.USD","d":[]},{"s":"UNISWAP3ETH:GELWETH_2DD31C.USD","d":[]},{"s":"MEXC:SHITUSDC","d":[]},{"s":"MEXC:RIFUSDT.P","d":[]},{"s":"UNISWAP:MEMESWETH_73F743.USD","d":[]},{"s":"UNISWAP:MLTWETH_9B3DF8","d":[]},{"s":"GATEIO:PMGUSDT","d":[]},{"s":"BINANCE:TKOUSDT","d":[]},{"s":"BITFINEX:KARATEBTC","d":[]},{"s":"UNISWAP:JEFFWETH_6CC5A4.USD","d":[]},{"s":"UNISWAP:WPEBHNY_9EC96D","d":[]},{"s":"BITSTAMP:NEAREUR","d":[]},{"s":"MEXC:HUSLUSDT","d":[]},{"s":"BYBIT:HFTUSDC","d":[]},{"s":"UNISWAP3ETH:WETHTEXAN","d":[]},{"s":"UNISWAP3ETH:FLRBRGWETH","d":[]},{"s":"UNISWAP:DEXEDWETH_FE559F","d":[]},{"s":"MEXC:TREEBUSDT","d":[]},{"s":"TRADERJOE:JUICEWAVAX_DED83F","d":[]},{"s":"HITBTC:ANKRUSD","d":[]},{"s":"UNISWAP:MUSKWETH_19F96B.USD","d":[]},{"s":"MEXC:VOYUSDT","d":[]},{"s":"BYBIT:AVAXUSDT","d":[]},{"s":"UNISWAP3ETH:DONUTWETH_A9FC40.USD","d":[]},{"s":"BINANCE:PDABTC","d":[]},{"s":"MEXC:SCARUSDT","d":[]},{"s":"BITFINEX:OMGUST.P","d":[]},{"s":"GATEIO:LEOUSDT","d":[]},{"s":"TRADERJOE:SUBWAVAX_EE7263.USD","d":[]},{"s":"UNISWAP3ETH:WETHOSAK","d":[]},{"s":"MEXC:STFXUSDT","d":[]},{"s":"BINGX:IOSTUSDT.P","d":[]},{"s":"GATEIO:CSIXUSDT","d":[]},{"s":"UNISWAP:TRAVAWETH_C1969D.USD","d":[]},{"s":"BITRUE:LPTUSDT","d":[]},{"s":"POLONIEX:FARMBTC","d":[]},{"s":"COINBASE:ROSEUSDT","d":[]},{"s":"UNISWAP:SQUID20WETH_D001D5.USD","d":[]},{"s":"HITBTC:MTLXUSD","d":[]},{"s":"BITGET:DOTUSDT","d":[]},{"s":"UNISWAP:UPIWETH_FFE8DF","d":[]},{"s":"BINANCE:INJFDUSD","d":[]},{"s":"COINEX:RFDUSDT","d":[]},{"s":"GATEIO:ORCAUSDT","d":[]},{"s":"UNISWAP:KLEEWETH_3BD203.USD","d":[]},{"s":"UNISWAP:CRTXWETH_35D8B9","d":[]},{"s":"KRAKEN:LINKUSD","d":[]},{"s":"UNISWAP3ETH:EURTWETH_1AE3B4.USD","d":[]},{"s":"UNISWAP3POLYGON:GNUSWMATIC_D1140B.USD","d":[]},{"s":"UNISWAP:BCNTRWETH_1A7489.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCWETH_37FFD1.USD","d":[]},{"s":"UPBIT:PYTHKRW","d":[]},{"s":"DELTA:ATOMUSDT.P","d":[]},{"s":"UNISWAP3ETH:MIXUSDT","d":[]},{"s":"UNISWAP3ETH:AAVESTKAAVE","d":[]},{"s":"COINEX:BRICKUSDT","d":[]},{"s":"BITFINEX:BONKUST","d":[]},{"s":"SPOOKYSWAP:FORGWFTM_F1F065.USD","d":[]},{"s":"UNISWAP3ETH:AEVOWETH","d":[]},{"s":"XEXCHANGE:CHECKRWEGLD","d":[]},{"s":"WHITEBIT:ETHUAH","d":[]},{"s":"BITKUB:IMXTHB","d":[]},{"s":"POLONIEX:LSKUSD","d":[]},{"s":"UNISWAP:OPCATWETH_88DB1D","d":[]},{"s":"POLONIEX:RSRUSDT","d":[]},{"s":"HITBTC:OCCUSD","d":[]},{"s":"GATEIO:XAIUSDT","d":[]},{"s":"DYDX:ZRXUSD.P","d":[]},{"s":"UNISWAP3ETH:SUMUSDT","d":[]},{"s":"BITMEX:ONDOUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:USDCUSDT_EE9569.USD","d":[]},{"s":"BINGX:STPTUSDT.P","d":[]},{"s":"BITHUMB:AERGOKRW","d":[]},{"s":"UNISWAP3POLYGON:LINKWETH_5CB707.USD","d":[]},{"s":"BINANCE:PORTOBTC","d":[]},{"s":"UNISWAP:RACWETH_F74441.USD","d":[]},{"s":"UNISWAP:LINDAWETH_EBEEDE.USD","d":[]},{"s":"GATEIO:KAVAUSDT.3S","d":[]},{"s":"UNISWAP3ETH:PANDORAUSDT_66FAA6.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBCARBT_5280C4.USD","d":[]},{"s":"MEXC:NMDUSDT","d":[]},{"s":"MEXC:ORAREUSDT","d":[]},{"s":"POLONIEX:MANAUSDT","d":[]},{"s":"UNISWAP3ETH:AFWETH_F182AA.USD","d":[]},{"s":"UPBIT:THETAKRW","d":[]},{"s":"PANGOLIN:YAKWAVAX_D2F01C.USD","d":[]},{"s":"MEXC:CTNUSDT","d":[]},{"s":"POLONIEX:STEEMTRX","d":[]},{"s":"HITBTC:GRINBTC","d":[]},{"s":"ZOOMEX:GALAUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEPEWETH_CE0F0A.USD","d":[]},{"s":"UNISWAP:WETHUSDC_B4E16D","d":[]},{"s":"UNISWAP3POLYGON:YINWETH_8FE503.USD","d":[]},{"s":"UNISWAP:ALTDUSDC_C18086","d":[]},{"s":"UNISWAP3ETH:RICEWETH_BDCCCD.USD","d":[]},{"s":"QUICKSWAP:QIWETH_8C1B40","d":[]},{"s":"POLONIEX:COREUSDT","d":[]},{"s":"BINGX:QNTUSDT.PS","d":[]},{"s":"UNISWAP:REVVWETH_724D5C.USD","d":[]},{"s":"UNISWAP3ETH:VITACRYO_31A665.USD","d":[]},{"s":"BINGX:RUNEUSDT.P","d":[]},{"s":"UNISWAP:FLOKITAWETH_98ACE7","d":[]},{"s":"UNISWAP3POLYGON:STGWMATIC_A35E3B.USD","d":[]},{"s":"XEXCHANGE:CGGWEGLD","d":[]},{"s":"UNISWAP3ETH:FORTHWETH","d":[]},{"s":"MEXC:ECCUSDT","d":[]},{"s":"GATEIO:1INCHUSDT.3L","d":[]},{"s":"UNISWAP:ZUZALUWETH_D40C30.USD","d":[]},{"s":"UNISWAP:ETHWETH_E518E8.USD","d":[]},{"s":"UNISWAP3ETH:WETHSHEB","d":[]},{"s":"BLOFIN:CSPRUSDT.P","d":[]},{"s":"KRAKEN:LPTGBP","d":[]},{"s":"UNISWAP:LYVEWETH_341C0B","d":[]},{"s":"MEXC:WMIUSDT","d":[]},{"s":"BYBIT:10000LADYSUSDT.P","d":[]},{"s":"UNISWAP:ELMOWETH_306EEA.USD","d":[]},{"s":"BINANCEUS:ONTUSDT","d":[]},{"s":"UNISWAP3ETH:UWUWETH_98C588.USD","d":[]},{"s":"MEXC:HYUSDT","d":[]},{"s":"UNISWAP:CARTELWETH_A7F9F9","d":[]},{"s":"POLONIEX:WINUSDT","d":[]},{"s":"TRADERJOE:HAILWAVAX_D643AA.USD","d":[]},{"s":"MEXC:TINUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTWETH_4C4DD1.USD","d":[]},{"s":"HITBTC:PTOYUSD","d":[]},{"s":"BYBIT:RSS3USDT","d":[]},{"s":"HITBTC:XMRUSDT","d":[]},{"s":"UNISWAP:CGGWETH_C8CA3C","d":[]},{"s":"XEXCHANGE:MOOVEWEGLD","d":[]},{"s":"HITBTC:WSMUSDT","d":[]},{"s":"GATEIO:ADFUSDT","d":[]},{"s":"ZOOMEX:BLZUSDT.P","d":[]},{"s":"MEXC:MXUSDT.P","d":[]},{"s":"UNISWAP:MUUWETH_21F149.USD","d":[]},{"s":"KRAKEN:KSMEUR","d":[]},{"s":"UNISWAP3ETH:PENDLEWETH_57AF95.USD","d":[]},{"s":"POLONIEX:SXPUSDT","d":[]},{"s":"GATEIO:BITCIUSDT","d":[]},{"s":"PIONEX:XECUSDT.P","d":[]},{"s":"UNISWAP:TVKWETH_0F5A2E","d":[]},{"s":"TRADERJOE:WSHAREUSDCE_03D15E","d":[]},{"s":"BYBIT:ZETAUSDT","d":[]},{"s":"PHEMEX:BTCTRY","d":[]},{"s":"UNISWAP:CXWETH_2906BB.USD","d":[]},{"s":"UNISWAP:TAILWETH_55B71C.USD","d":[]},{"s":"UNISWAP3ETH:SHIBA2USDT_3D7102.USD","d":[]},{"s":"UNISWAP3ETH:WETHROCK","d":[]},{"s":"MEXC:FLOKIUSDT","d":[]},{"s":"BITFINEX:BTCEUR","d":[]},{"s":"UNISWAP:PKFWETH_FE903A.USD","d":[]},{"s":"COINBASE:LTCBTC","d":[]},{"s":"UNISWAP3ETH:MEMEWETH_198063.USD","d":[]},{"s":"BLOFIN:MINAUSDT.P","d":[]},{"s":"UNISWAP:AEVOWETH_2DE216","d":[]},{"s":"BINANCE:AXLBTC","d":[]},{"s":"QUICKSWAP:MODAWETH_A19460.USD","d":[]},{"s":"BYBIT:FLOWUSDT.P","d":[]},{"s":"UNISWAP:BITEWETH_F8C904","d":[]},{"s":"UNISWAP3ETH:DAIVOLT","d":[]},{"s":"TRADERJOE:CLYUSDTE_1435ED.USD","d":[]},{"s":"UNISWAP3ETH:WETHXPR","d":[]},{"s":"UNISWAP:STEALTHWETH_626BB5.USD","d":[]},{"s":"GATEIO:BATUSDT.3S","d":[]},{"s":"HITBTC:FUNUSD","d":[]},{"s":"HITBTC:BNBETH","d":[]},{"s":"BYBIT:HONUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUNA.WEMIX","d":[]},{"s":"UNISWAP:FRENWETH_7AAE7A.USD","d":[]},{"s":"BYBIT:LUNAUSDT","d":[]},{"s":"QUICKSWAP:AXIAWETH_FA447E.USD","d":[]},{"s":"UNISWAP:LOTTYWETH_1840C5.USD","d":[]},{"s":"HITBTC:ETLUSDT","d":[]},{"s":"UNISWAP:DEIWETH_CEBAB1","d":[]},{"s":"GATEIO:SOLRUSDT","d":[]},{"s":"MEXC:MCCHEESEUSDT","d":[]},{"s":"UNISWAP:VINLINKWETH_D20A4C","d":[]},{"s":"UNISWAP3ETH:COMPWETH","d":[]},{"s":"UNISWAP:FABRICWETH_8224F6","d":[]},{"s":"WAGYUSWAP:VDGTBUSD_2A107C","d":[]},{"s":"UNISWAP3ETH:GAMMAWETH_4006BE.USD","d":[]},{"s":"BITFINEX:OCEANUST","d":[]},{"s":"UNISWAP:FISWETH_6DA6C5.USD","d":[]},{"s":"BINANCE:POWRUSDT","d":[]},{"s":"COINBASE:XLMUSDT","d":[]},{"s":"UNISWAP3ETH:ACHWETH_EB4626.USD","d":[]},{"s":"BINANCE:IOTAETH","d":[]},{"s":"BINANCE:USDTIDRT","d":[]},{"s":"UNISWAP3ETH:METUSDC_EBD2C6.USD","d":[]},{"s":"UNISWAP:GPUBOTWETH_2F044D.USD","d":[]},{"s":"UNISWAP3ETH:WETHBOBA","d":[]},{"s":"UNISWAP3ETH:DMTRWETH","d":[]},{"s":"UNISWAP3ETH:DINO404WETH","d":[]},{"s":"UNISWAP:BULLETWETH_0D0A17.USD","d":[]},{"s":"UNISWAP3ETH:ERSDLWETH","d":[]},{"s":"UNISWAP:NYANWETH_7C2543","d":[]},{"s":"QUICKSWAP:POLIWETH_660EF3.USD","d":[]},{"s":"BINANCE:ATMUSDT","d":[]},{"s":"BITFINEX:XAUTBTC.P","d":[]},{"s":"PANGOLIN:AXLATOMWAVAX_8A998B.USD","d":[]},{"s":"UNISWAP:NAOWETH_345E39","d":[]},{"s":"MEXC:OGGYETHUSDT","d":[]},{"s":"GATEIO:ARBIUSDT","d":[]},{"s":"TRADERJOE:QIWAVAX_277451","d":[]},{"s":"QUICKSWAP:1MANWMATIC_BFB605.USD","d":[]},{"s":"UNISWAP:NOONWETH_8A8A13","d":[]},{"s":"BITSTAMP:ENJEUR","d":[]},{"s":"UNISWAP:FWBWETH_0A965A.USD","d":[]},{"s":"TRADERJOE:DGNXWAVAX_BCABB9.USD","d":[]},{"s":"GATEIO:SOLUSDT.3L","d":[]},{"s":"COINEX:DOGEBTC","d":[]},{"s":"MEXC:QTUMUSDT","d":[]},{"s":"UNISWAP:HOSHITSUKA_28F77A","d":[]},{"s":"UNISWAP3ETH:LCXWETH","d":[]},{"s":"GATEIO:NBSUSDT","d":[]},{"s":"XEXCHANGE:EXRUSDC","d":[]},{"s":"GATEIO:PUNDIXUSDT","d":[]},{"s":"MEXC:AROSUSDT","d":[]},{"s":"PHEMEX:WINUSDT","d":[]},{"s":"BISWAP:DOMEWBNB_BC8F17.USD","d":[]},{"s":"UNISWAP:USFWETH_1FBF00","d":[]},{"s":"TRADERJOE:WILLYWAVAX_AA67ED","d":[]},{"s":"UNISWAP3ETH:DAIFRAX","d":[]},{"s":"QUICKSWAP:GHSTFOMO_641CA8.USD","d":[]},{"s":"HITBTC:MAIDBTC","d":[]},{"s":"UNISWAP3ETH:CBABYWETH_421B26.USD","d":[]},{"s":"KRAKEN:C98USD","d":[]},{"s":"UNISWAP3ARBITRUM:PETWETH_388137.USD","d":[]},{"s":"UNISWAP:SHIELDWETH_F5C927.USD","d":[]},{"s":"UNISWAP3ETH:WETHWILDFIRE","d":[]},{"s":"UNISWAP3ETH:WETHDVT","d":[]},{"s":"UNISWAP3ETH:WETHNYM","d":[]},{"s":"UNISWAP3ETH:USDTCND","d":[]},{"s":"UNISWAP3ETH:CAHUSDT_A4CA75.USD","d":[]},{"s":"BYBIT:ENJUSDT.P","d":[]},{"s":"UNISWAP:STANWETH_4283FA","d":[]},{"s":"QUICKSWAP:BLOKUSDT_A022AE","d":[]},{"s":"WAGYUSWAP:MATICWAG_DBBCBF.USD","d":[]},{"s":"UNISWAP:BOGWETH_F3DA3E.USD","d":[]},{"s":"MEXC:SMLUSDT","d":[]},{"s":"MEXC:RBCUSDT","d":[]},{"s":"HITBTC:NXTUSDT","d":[]},{"s":"UNISWAP3POLYGON:SNXUSDC_61F260.USD","d":[]},{"s":"UNISWAP:OXNWETH_99C590.USD","d":[]},{"s":"UNISWAP3ETH:MDTUSDT_4B60F2.USD","d":[]},{"s":"MEXC:SHIDOUSDT","d":[]},{"s":"BITRUE:FETUSDT","d":[]},{"s":"UNISWAP:GUYWETH_15A91F.USD","d":[]},{"s":"BITKUB:LDOTHB","d":[]},{"s":"UNISWAP3ETH:MULLETWETH_7216C5.USD","d":[]},{"s":"GATEIO:WLDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWOLF","d":[]},{"s":"UNISWAP:BTCMEMEWETH_579DA7","d":[]},{"s":"UNISWAP:HOBBESWETH_9CCA66","d":[]},{"s":"UNISWAP3ETH:WETHFACTR","d":[]},{"s":"UNISWAP3ETH:ACXUSDC_B975DE.USD","d":[]},{"s":"PANGOLIN:SHIBXWAVAX_82AB53","d":[]},{"s":"UNISWAP3ETH:WETHDEL","d":[]},{"s":"GATEIO:ETCUSDT","d":[]},{"s":"SPOOKYSWAP:DMDFUSDT_03DA3E","d":[]},{"s":"BYBIT:DOGEUSDT.2L","d":[]},{"s":"PANGOLIN:YAKUSDC_D9BF8B","d":[]},{"s":"PHEMEX:ORBSUSDT.P","d":[]},{"s":"BINANCE:SKLTRY","d":[]},{"s":"GATEIO:GELUSDT","d":[]},{"s":"UNISWAP3ETH:SOLVEWETH","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDT_C21B96.USD","d":[]},{"s":"MEXC:JCOUSDT","d":[]},{"s":"MEXC:SOBERUSDT","d":[]},{"s":"BITGET:CEEKUSDT","d":[]},{"s":"BITRUE:AVAXSOL","d":[]},{"s":"POLONIEX:SXPUSD","d":[]},{"s":"QUICKSWAP:CSMATICWMATIC_F161E3","d":[]},{"s":"BITRUE:OGNUSDC","d":[]},{"s":"UNISWAP3OPTIMISM:AGEURUSDC_F44ACA.USD","d":[]},{"s":"UNISWAP3OPTIMISM:HAISUSD_B55DC2.USD","d":[]},{"s":"COINEX:TRUUSDT","d":[]},{"s":"HITBTC:TORNUSDT","d":[]},{"s":"BITGET:SOLSUSDT","d":[]},{"s":"BITGET:CGPTUSDT","d":[]},{"s":"BINANCE:SCRTBTC","d":[]},{"s":"UNISWAP3ETH:WETH00","d":[]},{"s":"MEXC:WAVESUSDC","d":[]},{"s":"UNISWAP:SPACEPIWETH_959873","d":[]},{"s":"BITGET:APMUSDT","d":[]},{"s":"COINEX:KAIBTC","d":[]},{"s":"UNISWAP:ISHIWETH_C2A568.USD","d":[]},{"s":"MEXC:SUIPUSDT","d":[]},{"s":"UNISWAP:FROGDOGWETH_5DC653","d":[]},{"s":"COINEX:BRISEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBPVC","d":[]},{"s":"UNISWAP:PLSPADWETH_B8DB28.USD","d":[]},{"s":"XEXCHANGE:VITALUSDC","d":[]},{"s":"UNISWAP:DONGOWETH_D1E3E4.USD","d":[]},{"s":"BITFINEX:MLNUSD","d":[]},{"s":"POLONIEX:NEOTRX","d":[]},{"s":"UNISWAP:MANAWETH_11B1F5.USD","d":[]},{"s":"COINEX:BABYUSDT","d":[]},{"s":"POLONIEX:NYMUSDT","d":[]},{"s":"UNISWAP3ETH:ETFWETH_C56EEF.USD","d":[]},{"s":"QUICKSWAP:SFLWMATIC_6F9E92.USD","d":[]},{"s":"MEXC:100000AIDOGEUSDT.P","d":[]},{"s":"UNISWAP:CABWETH_271972.USD","d":[]},{"s":"BITKUB:ALTTHB","d":[]},{"s":"XEXCHANGE:ITHEUMUSDC","d":[]},{"s":"KRAKEN:ALGOBTC","d":[]},{"s":"UNISWAP3ETH:USDCHDRN","d":[]},{"s":"UNISWAP3ETH:SILVWETH","d":[]},{"s":"BITHUMB:MTLKRW","d":[]},{"s":"UNISWAP3ETH:OMIWETH_71C1D3.USD","d":[]},{"s":"SPOOKYSWAP:USDCWFTM_2B4C76.USD","d":[]},{"s":"HITBTC:LINABTC","d":[]},{"s":"UNISWAP3ETH:SAITOUSDT","d":[]},{"s":"UNISWAP:XRTWETH_318562.USD","d":[]},{"s":"UNISWAP3ETH:WETHBAND","d":[]},{"s":"BINANCE:UNIUSDT","d":[]},{"s":"UNISWAP:HDRNUSDC_841BB1","d":[]},{"s":"UNISWAP3ETH:WETHHAKA","d":[]},{"s":"BLOFIN:TIAUSDT.P","d":[]},{"s":"TRADERJOE:ACTAUSDT_8E0BEF","d":[]},{"s":"UNISWAP:FAOWETH_0BA7C0.USD","d":[]},{"s":"UNISWAP:0XBETWETH_859B6B.USD","d":[]},{"s":"MEXC:TROLLUSDT","d":[]},{"s":"GATEIO:SYLOUSDT","d":[]},{"s":"COINEX:DMAILUSDT","d":[]},{"s":"UNISWAP:ANDYWETH_DA5DC4.USD","d":[]},{"s":"SPOOKYSWAP:CONKDWFTM_E8EFD6.USD","d":[]},{"s":"UNISWAP3POLYGON:GEODUSDC_B372B5.USD","d":[]},{"s":"WHITEBIT:CHZBTC","d":[]},{"s":"BITFINEX:ALT2612BTC","d":[]},{"s":"COINBASE:ASTUSD","d":[]},{"s":"UNISWAP3ETH:FLPUSDC","d":[]},{"s":"PHEMEX:GMXUSDT","d":[]},{"s":"BINGX:API3USDT.P","d":[]},{"s":"UNISWAP3POLYGON:YPREDWMATIC_CE7A2C.USD","d":[]},{"s":"TRADERJOE:USDCUSDCE_2A8A31","d":[]},{"s":"BITRUE:GRTUSDC","d":[]},{"s":"BITGET:MASKUSDT","d":[]},{"s":"BLOFIN:BLZUSDT.P","d":[]},{"s":"HITBTC:JAMUSDT","d":[]},{"s":"UNISWAP3ETH:LUCHOWWETH","d":[]},{"s":"MEXC:ACSUSDT","d":[]},{"s":"KRAKEN:EULUSD","d":[]},{"s":"QUICKSWAP:IDNWMATIC_013F67","d":[]},{"s":"UNISWAP3ETH:HIFIUSDC_C44805.USD","d":[]},{"s":"SPOOKYSWAP:MCCWFTM_23635B.USD","d":[]},{"s":"PHEMEX:SFPUSDT.P","d":[]},{"s":"UNISWAP:JIMWETH_E34225.USD","d":[]},{"s":"UNISWAP:TAOSWETH_117CC7","d":[]},{"s":"UNISWAP3OPTIMISM:CBETHWETH_72FAAC.USD","d":[]},{"s":"UNISWAP3ETH:BLUSDLUSD_3E48DF.USD","d":[]},{"s":"UNISWAP3POLYGON:COMPWETH_2260E0.USD","d":[]},{"s":"UNISWAP:NEONAIWETH_CA538D.USD","d":[]},{"s":"BINANCE:ONEBTC","d":[]},{"s":"UNISWAP:WDOGEWETH_C3D7AA.USD","d":[]},{"s":"BINANCE:THETATRY","d":[]},{"s":"COINEX:AYABTC","d":[]},{"s":"UNISWAP:UCLXWETH_9891B0.USD","d":[]},{"s":"HITBTC:CLOUSDT","d":[]},{"s":"MEXC:DOGE69USDT","d":[]},{"s":"UNISWAP3POLYGON:USDCDAI_E023D2.USD","d":[]},{"s":"BINGX:BATUSDT.PS","d":[]},{"s":"UNISWAP:PIXELCOINWETH_AFECD1.USD","d":[]},{"s":"GATEIO:OCNUSDT","d":[]},{"s":"UNISWAP3ETH:FPISFRAX_8FE536.USD","d":[]},{"s":"WOONETWORK:WLDUSDT","d":[]},{"s":"POLONIEX:DMTUSDT","d":[]},{"s":"UNISWAP3ETH:SWEATUSDC","d":[]},{"s":"UNISWAP3ETH:ONDOWETH_7B1E5D.USD","d":[]},{"s":"BINANCEUS:LOKAUSDT","d":[]},{"s":"UNISWAP3ETH:DIAUSDC_A14AFC.USD","d":[]},{"s":"POLONIEX:ZECUSDT","d":[]},{"s":"HITBTC:SENTETH","d":[]},{"s":"POLONIEX:KONUSDT","d":[]},{"s":"UNISWAP:SBFWETH_C82A24","d":[]},{"s":"BYBIT:SUSHIUSDT","d":[]},{"s":"KRAKEN:CHZUSD","d":[]},{"s":"UNISWAP3POLYGON:NEXUSDC_C50B95.USD","d":[]},{"s":"POLONIEX:XEMUSDT","d":[]},{"s":"GATEIO:SSVUSDT","d":[]},{"s":"BINANCE:REEFTRY","d":[]},{"s":"UNISWAP3ETH:USDTD2T","d":[]},{"s":"BITGET:STRIKEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDVI","d":[]},{"s":"WAGYUSWAP:JUNGLEWVLX_E9A515.USD","d":[]},{"s":"BITRUE:FTMXRP","d":[]},{"s":"OKX:THETAUSD.P","d":[]},{"s":"BINANCE:COSBTC","d":[]},{"s":"BITGET:VGXUSDT","d":[]},{"s":"COINEX:BNCUSDT","d":[]},{"s":"TRADERJOE:AKITAWAVAX_5928F0","d":[]},{"s":"UNISWAP3ETH:MINERWETH","d":[]},{"s":"UNISWAP3POLYGON:USDCWMATIC_C9F9F6.USD","d":[]},{"s":"COINEX:SATSUSDT","d":[]},{"s":"UNISWAP3ETH:ZCHFWETH_79DC83.USD","d":[]},{"s":"BISWAP:SHIBWBNB_498594","d":[]},{"s":"COINEX:SAVMUSDT","d":[]},{"s":"MEXC:UNIUSDT.P","d":[]},{"s":"COINEX:CHESSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCWPPC","d":[]},{"s":"UNISWAP3ETH:GLMDAI_60A531.USD","d":[]},{"s":"QUICKSWAP:NX7USDT_E859EE","d":[]},{"s":"UNISWAP3ETH:WTONWETH_C29271.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCOP_0893E3.USD","d":[]},{"s":"UNISWAP:SPIRITWETH_683FD5","d":[]},{"s":"HITBTC:NMRUSDT","d":[]},{"s":"HITBTC:FTTUSDT","d":[]},{"s":"GATEIO:VRUSDT","d":[]},{"s":"COINEX:DYDXUSDC","d":[]},{"s":"BITGET:IDUSDT.P","d":[]},{"s":"MEXC:AGIUSDT","d":[]},{"s":"SPOOKYSWAP:ONIWFTM_710872.USD","d":[]},{"s":"PIONEX:SEIUSDT.P","d":[]},{"s":"BYBIT:DOGEUSDT.P","d":[]},{"s":"BINANCE:WAVESETH","d":[]},{"s":"BITKUB:LRCTHB","d":[]},{"s":"KRAKEN:NODLUSD","d":[]},{"s":"UNISWAP:ELFWETH_A6BE7F","d":[]},{"s":"GATEIO:UMBUSDT","d":[]},{"s":"PIONEX:TUSDT.P","d":[]},{"s":"COINEX:MDTUSDT","d":[]},{"s":"BITKUB:SOLTHB","d":[]},{"s":"UNISWAP:ELFWETH_A6BE7F.USD","d":[]},{"s":"SPOOKYSWAP:ONIWFTM_710872","d":[]},{"s":"UNISWAP:GETHWETH_408D1F","d":[]},{"s":"BINANCE:SFPUSDT","d":[]},{"s":"PHEMEX:DOTUSDC","d":[]},{"s":"BINANCE:COMPBTC","d":[]},{"s":"BITGET:PAWUSDT","d":[]},{"s":"UNISWAP3ETH:OGSMWETH_B1CA6E.USD","d":[]},{"s":"UNISWAP3ETH:ZARPWETH_447631.USD","d":[]},{"s":"UNISWAP:BLZWETH_CF4236.USD","d":[]},{"s":"PIONEX:XVGUSDT.P","d":[]},{"s":"BITGET:SOLEUR","d":[]},{"s":"MEXC:EVADOREUSDT","d":[]},{"s":"KRAKEN:ALCXUSD","d":[]},{"s":"BINANCE:SHIBBRL","d":[]},{"s":"COINEX:FILBTC","d":[]},{"s":"UNISWAP3ETH:GHOSTFLC_BBB139.USD","d":[]},{"s":"BINANCE:DYDXBTC","d":[]},{"s":"QUICKSWAP:FIREWMATIC_D58190.USD","d":[]},{"s":"GATEIO:NOIAUSDT","d":[]},{"s":"POLONIEX:CHADUSDT","d":[]},{"s":"UNISWAP3ETH:DAWNWETH","d":[]},{"s":"UNISWAP3ETH:WETHESS","d":[]},{"s":"BITGET:WEMIXUSDT","d":[]},{"s":"BITHUMB:CTKKRW","d":[]},{"s":"UNISWAP3ETH:AGEURWETH","d":[]},{"s":"GATEIO:EOSUSDT.3S","d":[]},{"s":"QUICKSWAP:EMONWAVY_61DAB2.USD","d":[]},{"s":"HITBTC:AUDIOUSD","d":[]},{"s":"PANGOLIN:IDYPWAVAX_66EECC","d":[]},{"s":"MEXC:DOLPHINUSDT","d":[]},{"s":"GATEIO:NKNUSDT","d":[]},{"s":"BINANCE:ACEBNB","d":[]},{"s":"COINEX:BOBAUSDT","d":[]},{"s":"GATEIO:FOREXUSDT","d":[]},{"s":"MEXC:FILECOINUSDT.P","d":[]},{"s":"COINEX:BIGTIMEUSDT","d":[]},{"s":"QUICKSWAP:LFIWETH_E3108C.USD","d":[]},{"s":"UNISWAP3ETH:SOLANAWETH_2F7D02.USD","d":[]},{"s":"UNISWAP3ETH:CLOSEDAIWETH_1238EA.USD","d":[]},{"s":"UNISWAP:YODAWETH_345F09","d":[]},{"s":"UNISWAP:1MILWETH_BEE123","d":[]},{"s":"UNISWAP:DDWETH_E8C19B.USD","d":[]},{"s":"UNISWAP3ETH:GOVIWETH_A32650.USD","d":[]},{"s":"UNISWAP:ASTROWETH_7DF4A1.USD","d":[]},{"s":"UNISWAP3ETH:APUWETH","d":[]},{"s":"BLOFIN:SUIUSDT.P","d":[]},{"s":"PHEMEX:FTMUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_AC9A19.USD","d":[]},{"s":"UNISWAP:PANWETH_C53781.USD","d":[]},{"s":"HITBTC:RPZXUSD","d":[]},{"s":"BITGET:XRDUSDT","d":[]},{"s":"UNISWAP:RNBWETH_C8FAE2.USD","d":[]},{"s":"BITGET:EOSETH","d":[]},{"s":"MEXC:MANTAUSDT.P","d":[]},{"s":"UNISWAP:WOLFYWETH_75C83C.USD","d":[]},{"s":"BINANCE:LOKAUSDT","d":[]},{"s":"MEXC:SPARTAUSDT","d":[]},{"s":"UNISWAP3ETH:BULLFIWETH","d":[]},{"s":"BITFINEX:BOBAUSD","d":[]},{"s":"UNISWAP3ETH:ALPHABETWETH","d":[]},{"s":"UNISWAP:HAPIWETH_EC7A66","d":[]},{"s":"TRADERJOE:UVICUSDCE_4DCFFA","d":[]},{"s":"BYBIT:RPLUSDT","d":[]},{"s":"BITFINEX:ADAUST.P","d":[]},{"s":"BINANCE:BNBETH","d":[]},{"s":"TRADERJOE:WOODWAVAX_B8A539","d":[]},{"s":"UNISWAP3POLYGON:PYMUSDT_24EFC8.USD","d":[]},{"s":"BITGET:ACEUSDT","d":[]},{"s":"TRADERJOE:SLFTWAVAX_5CECB3.USD","d":[]},{"s":"UNISWAP3POLYGON:SHIBWMATIC_B4B4D3.USD","d":[]},{"s":"HITBTC:1INCHUSD","d":[]},{"s":"BITFINEX:ETH2XBTC","d":[]},{"s":"GATEIO:AZYUSDT","d":[]},{"s":"PHEMEX:TOMIUSDT","d":[]},{"s":"UNISWAP:PROPHETWETH_A07674.USD","d":[]},{"s":"BINANCE:LEVERUSDT","d":[]},{"s":"GATEIO:TAKIUSDT","d":[]},{"s":"UNISWAP:LBRWETH_3FC429.USD","d":[]},{"s":"GATEIO:DXGMUSDT","d":[]},{"s":"BITGET:SDEXUSDT","d":[]},{"s":"POLONIEX:STORJUSD","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARNET","d":[]},{"s":"UNISWAP3ETH:USDTISK","d":[]},{"s":"COINBASE:SHIBEUR","d":[]},{"s":"QUICKSWAP:TOWERASTRAFER_516F2B","d":[]},{"s":"UNISWAP:SNTWETH_59E7BE.USD","d":[]},{"s":"COINEX:TIAUSDT","d":[]},{"s":"WHITEBIT:RNDRUSDT","d":[]},{"s":"MEXC:CELOUSDT.P","d":[]},{"s":"XEXCHANGE:WBTCUSDC","d":[]},{"s":"GATEIO:JTOUSDT","d":[]},{"s":"UNISWAP:EGGSWETH_C54BA7.USD","d":[]},{"s":"UNISWAP:UCOWETH_F89830.USD","d":[]},{"s":"GATEIO:MOVEZUSDT","d":[]},{"s":"TRADERJOE:AVSTRMUSDC_D7732A","d":[]},{"s":"MEXC:AAVEUSDT","d":[]},{"s":"COINEX:CREAMUSDT","d":[]},{"s":"HITBTC:BATUSDC","d":[]},{"s":"BITSTAMP:LDOEUR","d":[]},{"s":"BINANCE:SANTOSTRY","d":[]},{"s":"MEXC:HANDYUSDT","d":[]},{"s":"HITBTC:ERGBTC","d":[]},{"s":"POLONIEX:RATSUSDT","d":[]},{"s":"TRADERJOE:SHIBXWAVAX_9A053B","d":[]},{"s":"GATEIO:POOLXUSDT","d":[]},{"s":"BLOFIN:DOGEUSDT.P","d":[]},{"s":"HITBTC:SOLOUSD","d":[]},{"s":"BITRUE:GMTUSDT","d":[]},{"s":"BYBIT:1000BONKUSDT.P","d":[]},{"s":"BLOFIN:UMAUSDT.P","d":[]},{"s":"PANGOLIN:TOKWAVAX_7B2AC2.USD","d":[]},{"s":"POLONIEX:XVSUSDT","d":[]},{"s":"BITHUMB:GHXKRW","d":[]},{"s":"OKX:ALGOUSD.P","d":[]},{"s":"UNISWAP:LUNCHWETH_950BF5.USD","d":[]},{"s":"UNISWAP:SOBWETH_8F4CA0.USD","d":[]},{"s":"GEMINI:LPTUSD","d":[]},{"s":"QUICKSWAP:WERXWMATIC_734A8C.USD","d":[]},{"s":"UNISWAP3ETH:Y00TDUST_91DAF1.USD","d":[]},{"s":"UNISWAP3ETH:EFIWETH_04DD76.USD","d":[]},{"s":"BINANCE:HIGHBTC","d":[]},{"s":"MEXC:AGIXUSDT.P","d":[]},{"s":"HITBTC:XYMBTC","d":[]},{"s":"POLONIEX:TRUUSD","d":[]},{"s":"PANGOLIN:ISAWAVAX_FBA309","d":[]},{"s":"PANGOLIN:BAVAWAVAX_EB6965.USD","d":[]},{"s":"UNISWAP:MASKUSDC_A40BB1","d":[]},{"s":"UNISWAP3ETH:EURTWETH","d":[]},{"s":"HITBTC:ADXNUSDT","d":[]},{"s":"UNISWAP3ETH:ENSWETH_92560C.USD","d":[]},{"s":"HITBTC:USDTBRL","d":[]},{"s":"BITSTAMP:VEGAEUR","d":[]},{"s":"BISWAP:SXPWBNB_EDC3F1","d":[]},{"s":"BITFINEX:LTCBTC.P","d":[]},{"s":"COINEX:HONEYUSDT","d":[]},{"s":"MEXC:GMXUSDT.P","d":[]},{"s":"MEXC:RMNUSDT","d":[]},{"s":"POLONIEX:OMGUSD","d":[]},{"s":"TRADERJOE:BUSINESSESWAVAX_5E7297","d":[]},{"s":"UNISWAP3ETH:ELONUSDC","d":[]},{"s":"UNISWAP3ETH:WPOKTWETH","d":[]},{"s":"COINEX:FLIPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWCELL","d":[]},{"s":"UNISWAP3ETH:SSVWETH","d":[]},{"s":"UNISWAP3ETH:IPXWETH_829336.USD","d":[]},{"s":"COINBASE:MKRUSD","d":[]},{"s":"BINANCE:AXSBTC","d":[]},{"s":"UNISWAP:DEXTFWETH_A1444A.USD","d":[]},{"s":"UNISWAP3ETH:EGAMEWETH","d":[]},{"s":"UNISWAP3ETH:WETHIC21","d":[]},{"s":"UNISWAP3ETH:WETHRCM","d":[]},{"s":"UNISWAP:CATAIWETH_F40B22.USD","d":[]},{"s":"MEXC:TWTUSDT.P","d":[]},{"s":"BINANCE:EGLDFDUSD","d":[]},{"s":"MEXC:LEMCUSDT","d":[]},{"s":"BLOFIN:SCUSDT.P","d":[]},{"s":"UNISWAP3ETH:GMEEUSDC","d":[]},{"s":"BINGX:AGIXUSDT.P","d":[]},{"s":"MEXC:MINAUSDT.P","d":[]},{"s":"MEXC:LUCAUSDT","d":[]},{"s":"BITFINEX:SANDUSD","d":[]},{"s":"BINANCE:CELRUSDT","d":[]},{"s":"MEXC:ORBSUSDT.P","d":[]},{"s":"MEXC:WMTUSDT","d":[]},{"s":"UNISWAP3ETH:FOLDUSDC_E081EE.USD","d":[]},{"s":"UNISWAP3ETH:TKAIWETH_9573CE.USD","d":[]},{"s":"UNISWAP:TESTWETH_176BB3.USD","d":[]},{"s":"TRADERJOE:PERAWAVAX_75BEBD.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARPWETH_111B1F.USD","d":[]},{"s":"UNISWAP3ETH:GMSWETH","d":[]},{"s":"HITBTC:MYSTUSD","d":[]},{"s":"BITGET:ALPACAUSDT","d":[]},{"s":"HITBTC:APEUSDT","d":[]},{"s":"UNISWAP:FLORKYWETH_384949.USD","d":[]},{"s":"MEXC:PNDCUSDT","d":[]},{"s":"COINEX:IGUUSDT","d":[]},{"s":"BITFINEX:DUSKUSD","d":[]},{"s":"BYBIT:RPLUSDT.P","d":[]},{"s":"BITSTAMP:USDCEUR","d":[]},{"s":"POLONIEX:REPV2USDT","d":[]},{"s":"BISWAP:SUSHIETH_4C2139","d":[]},{"s":"TRADERJOE:GRAPEMIM_B38224.USD","d":[]},{"s":"GATEIO:ETCUSDT.3S","d":[]},{"s":"UNISWAP:DLANCEWETH_600728","d":[]},{"s":"BITHUMB:BTGKRW","d":[]},{"s":"BITRUE:DOTBTC","d":[]},{"s":"UNISWAP3ETH:WETHORN","d":[]},{"s":"UNISWAP:SPGBBWETH_BE2F4E.USD","d":[]},{"s":"UNISWAP3ETH:QANXWETH","d":[]},{"s":"POLONIEX:KNCUSDT","d":[]},{"s":"BINANCE:EURUSDC","d":[]},{"s":"BITSTAMP:KNCEUR","d":[]},{"s":"UNISWAP3POLYGON:KREDWMATIC_632825.USD","d":[]},{"s":"UNISWAP:MRPOTATOWETH_A5E379.USD","d":[]},{"s":"UNISWAP:SMOKEWETH_98DBA9","d":[]},{"s":"UNISWAP3ETH:MNWWETH_78194B.USD","d":[]},{"s":"UNISWAP3POLYGON:WETHDAI_3F82D2.USD","d":[]},{"s":"MEXC:NAOSUSDT","d":[]},{"s":"MEXC:PLEXUSDT","d":[]},{"s":"BITFINEX:SGBBTC","d":[]},{"s":"SPOOKYSWAP:BROUSDC_08F93E","d":[]},{"s":"UNISWAP3ETH:SHMUUSDT","d":[]},{"s":"UNISWAP:PRFWETH_DE5522.USD","d":[]},{"s":"HITBTC:CLOETH","d":[]},{"s":"UNISWAP3ETH:WETHTOWER","d":[]},{"s":"TRADERJOE:PSHAREWAVAX_40128A","d":[]},{"s":"UNISWAP:PAALWETH_58BD02","d":[]},{"s":"UNISWAP:VOLDEMORTWETH_39A4B7","d":[]},{"s":"BINANCE:FILBTC","d":[]},{"s":"UNISWAP:LENDSWETH_FE7956","d":[]},{"s":"UNISWAP:TSUKAWETH_A1AF3B.USD","d":[]},{"s":"UNISWAP:AMPLWETH_C5BE99.USD","d":[]},{"s":"UNISWAP:OPTIMUSWETH_8DE7A9.USD","d":[]},{"s":"BITGET:XETAUSDT","d":[]},{"s":"BITFINEX:OMNBTC","d":[]},{"s":"UPBIT:AXSKRW","d":[]},{"s":"BISWAP:DOGEWBNB_1EF315.USD","d":[]},{"s":"BITFLYER:ETHBTC","d":[]},{"s":"BINANCE:OMGUSDT","d":[]},{"s":"WAGYUSWAP:USDVWAG_545DAD","d":[]},{"s":"SPOOKYSWAP:PPDEXUSDC_5C1EF5","d":[]},{"s":"UNISWAP:OCISLYWETH_C32C2D.USD","d":[]},{"s":"UNISWAP3ETH:GENIEUSDT_C548E8.USD","d":[]},{"s":"UNISWAP:YFDAIWETH_84E34D","d":[]},{"s":"UNISWAP3ETH:WETHCRIMINGO","d":[]},{"s":"UNISWAP3ETH:AAVEWETH_5AB53E.USD","d":[]},{"s":"BITGET:PRIME1USDT","d":[]},{"s":"UNISWAP:A9A839WETH_CFB2FA.USD","d":[]},{"s":"TRADERJOE:FERTWAVAX_3B90A4","d":[]},{"s":"TRADERJOE:MINDWAVAX_F62679.USD","d":[]},{"s":"UNISWAP3ETH:SAILWETH_A6D781.USD","d":[]},{"s":"UNISWAP3ETH:DGIUSDT","d":[]},{"s":"SPOOKYSWAP:XRUNEWFTM_D7749B","d":[]},{"s":"KRAKEN:ETHWETH","d":[]},{"s":"UNISWAP:VLXPADWETH_CDF5AD.USD","d":[]},{"s":"UNISWAP:TONEWETH_89751F","d":[]},{"s":"UNISWAP:PBTCWETH_8D50D0","d":[]},{"s":"UNISWAP:ZKLABWETH_99797F","d":[]},{"s":"UNISWAP3ETH:HOPRWETH","d":[]},{"s":"TRADERJOE:BRIGWAVAX_3D04DB.USD","d":[]},{"s":"QUICKSWAP:JPYCUSDC_205995","d":[]},{"s":"MEXC:JUSTICEUSDT","d":[]},{"s":"MEXC:ZECUSDT","d":[]},{"s":"UNISWAP:TRUMPINUWETH_A20379","d":[]},{"s":"UNISWAP3ETH:FXSDAI","d":[]},{"s":"UNISWAP3ETH:FLAMEWETH","d":[]},{"s":"TRADERJOE:CDTWAVAX_A1F5D7.USD","d":[]},{"s":"COINEX:ARPAUSDT","d":[]},{"s":"UNISWAP:M87WETH_2049DF.USD","d":[]},{"s":"HITBTC:SFPBTC","d":[]},{"s":"HITBTC:MOBBTC","d":[]},{"s":"TRADERJOE:PIEWAVAX_2B0E98","d":[]},{"s":"COINEX:OXENUSDT","d":[]},{"s":"WHITEBIT:NEARUSDT","d":[]},{"s":"BITGET:BAKEUSDT","d":[]},{"s":"UNISWAP3ETH:CHEQUSDT_A305F3.USD","d":[]},{"s":"TRADERJOE:STRUMPWAVAX_581B82","d":[]},{"s":"GEMINI:LRCUSD","d":[]},{"s":"GATEIO:NBTUSDT","d":[]},{"s":"GATEIO:XMRUSDT.3S","d":[]},{"s":"BITGET:ADAUSDC","d":[]},{"s":"BITGET:ALITAUSDT","d":[]},{"s":"UNISWAP:RBXWETH_3B7143","d":[]},{"s":"KRAKEN:ALGOUSD.PM","d":[]},{"s":"MEXC:MEMEMUSKUSDT","d":[]},{"s":"UNISWAP:USDCDAI_AE461C","d":[]},{"s":"BINANCE:POLYXUSDT","d":[]},{"s":"UNISWAP3ETH:VINCEWETH_02249F.USD","d":[]},{"s":"TRADERJOE:WBTCEUSDCE_62475F","d":[]},{"s":"UNISWAP3ETH:WETHPENDLE","d":[]},{"s":"BITHUMB:ALTKRW","d":[]},{"s":"HITBTC:WIKIUSDT","d":[]},{"s":"POLONIEX:LUSDT","d":[]},{"s":"UNISWAP3ETH:USDCEUROC","d":[]},{"s":"MEXC:SRLTYUSDT","d":[]},{"s":"KRAKEN:EGLDUSD","d":[]},{"s":"WHITEBIT:AVAXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHENJ","d":[]},{"s":"WAGYUSWAP:ETHBUSD_63BA88","d":[]},{"s":"PHEMEX:ARUSDT.P","d":[]},{"s":"BINGX:STXUSDT.PS","d":[]},{"s":"MEXC:PENGUSDT","d":[]},{"s":"BTSE:IMXUSD","d":[]},{"s":"UNISWAP3ETH:WETHMOBY","d":[]},{"s":"TRADERJOE:BIFIWAVAX_361221.USD","d":[]},{"s":"BITFINEX:GRTUSD","d":[]},{"s":"GATEIO:XLMUSDT","d":[]},{"s":"BINGX:ROSEUSDT.PS","d":[]},{"s":"UNISWAP:BETWETH_6AE265","d":[]},{"s":"MEXC:CULTUSDT","d":[]},{"s":"UNISWAP3ETH:BOXFEEWETH","d":[]},{"s":"BITFINEX:JUPBTC","d":[]},{"s":"UNISWAP3ETH:XFTWETH_701B31.USD","d":[]},{"s":"UNISWAP:SEEDSWETH_9AD55F.USD","d":[]},{"s":"UNISWAP:APPUSDC_3787E2","d":[]},{"s":"MEXC:STXUSDT","d":[]},{"s":"UNISWAP:ONIWETH_DD7EF7","d":[]},{"s":"UNISWAP3ETH:USDTOBOT","d":[]},{"s":"UNISWAP3POLYGON:WLOKAWMATIC_A3E4A1.USD","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARZKP","d":[]},{"s":"PHEMEX:DENTUSDT","d":[]},{"s":"UNISWAP:CNTRWETH_A12B7A","d":[]},{"s":"KRAKEN:GNOBTC","d":[]},{"s":"POLONIEX:LINKBTC","d":[]},{"s":"UNISWAP:BIAOWETH_7B1C96","d":[]},{"s":"UNISWAP3ETH:USDTBKN","d":[]},{"s":"BINANCE:NTRNBNB","d":[]},{"s":"GATEIO:BTCUSDT.5S","d":[]},{"s":"GATEIO:ORCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMUMU","d":[]},{"s":"COINEX:CVPUSDT","d":[]},{"s":"UNISWAP3ETH:KEXWETH","d":[]},{"s":"UNISWAP:BOZOWETH_688447.USD","d":[]},{"s":"COINEX:DMINDUSDT","d":[]},{"s":"COINBASE:GFIUSD","d":[]},{"s":"SPOOKYSWAP:KIRBYWFTM_368470","d":[]},{"s":"GATEIO:IMXUSDT","d":[]},{"s":"UNISWAP:MUSKWETH_19F96B","d":[]},{"s":"PANGOLIN:BUSDEDAIE_66143D","d":[]},{"s":"HITBTC:SANETH","d":[]},{"s":"COINEX:NEARBTC","d":[]},{"s":"UNISWAP:CRBNWETH_61122B","d":[]},{"s":"QUICKSWAP:MSCMSU_71EBEA.USD","d":[]},{"s":"UNISWAP:RFKWETH_C74888.USD","d":[]},{"s":"MEXC:ICEUSDT","d":[]},{"s":"BTSE:KNCUSD.P","d":[]},{"s":"UNISWAP:BSTWETH_61F49F","d":[]},{"s":"POLONIEX:BSSB1USDT","d":[]},{"s":"PANGOLIN:USTUSDC_3C0ECF.USD","d":[]},{"s":"COINEX:DGBBTC","d":[]},{"s":"UNISWAP:MONKEYWETH_82A3B9.USD","d":[]},{"s":"KRAKEN:SANDUSD.PM","d":[]},{"s":"MEXC:BTCTUSD","d":[]},{"s":"UNISWAP3ETH:HOPRDAI_87986A.USD","d":[]},{"s":"MEXC:DEGENUSDT","d":[]},{"s":"UNISWAP3ETH:FOLDUSDC","d":[]},{"s":"MEXC:XWGUSDC","d":[]},{"s":"UNISWAP3ETH:WETHVSP","d":[]},{"s":"BITGET:TAMAUSDT","d":[]},{"s":"COINEX:TROLLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRLTD","d":[]},{"s":"UNISWAP:WCTWETH_65B16E","d":[]},{"s":"ZOOMEX:ACEUSDT.P","d":[]},{"s":"MEXC:NMRUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTPIKA","d":[]},{"s":"MEXC:AIXUSDT","d":[]},{"s":"UNISWAP3ETH:PSYOPUSDC","d":[]},{"s":"BYBIT:LISUSDT","d":[]},{"s":"MEXC:ISLMUSDT","d":[]},{"s":"UPBIT:CHZKRW","d":[]},{"s":"POLONIEX:SPELLUSDT","d":[]},{"s":"BINANCE:FORTHBTC","d":[]},{"s":"UNISWAP3ETH:CPOOLWETH","d":[]},{"s":"BINANCEUS:FORTHUSDT","d":[]},{"s":"UNISWAP:DONUTWETH_718DD8","d":[]},{"s":"UNISWAP3ETH:WETHTOKEN","d":[]},{"s":"UNISWAP3ETH:LPTWETH_251904.USD","d":[]},{"s":"POLONIEX:BFICUSDT","d":[]},{"s":"BITFINEX:AZEROBTC","d":[]},{"s":"GATEIO:TTKUSDT","d":[]},{"s":"SPOOKYSWAP:SHADOWWFTM_B77D58.USD","d":[]},{"s":"SPOOKYSWAP:LIQRWFTM_6AB8F0.USD","d":[]},{"s":"BITGET:ORAIUSDT","d":[]},{"s":"WHITEBIT:ETHKZT","d":[]},{"s":"BINANCE:IOSTBTC","d":[]},{"s":"BITGET:RABBITUSDT","d":[]},{"s":"UNISWAP:WSCRTWETH_438D3E.USD","d":[]},{"s":"UNISWAP3ETH:RUGWETH_E12644.USD","d":[]},{"s":"MEXC:NIBIUSDT","d":[]},{"s":"COINEX:AAVEUSDT","d":[]},{"s":"GATEIO:SRGUSDT","d":[]},{"s":"UNISWAP:LSDWETH_3322F4.USD","d":[]},{"s":"BITMEX:TRXUSDT.P","d":[]},{"s":"MEXC:BRISEUSDT","d":[]},{"s":"MEXC:DIABLOUSDT","d":[]},{"s":"UNISWAP:ARMORWETH_648450","d":[]},{"s":"BINGX:MANTAUSDT.P","d":[]},{"s":"UNISWAP:PSMARKPOHM_664A8D.USD","d":[]},{"s":"MEXC:VICUSDT","d":[]},{"s":"COINEX:IOSTUSDT","d":[]},{"s":"GATEIO:SFILUSDT","d":[]},{"s":"UNISWAP:NEXWETH_1475EC","d":[]},{"s":"OKX:BICOUSDT.P","d":[]},{"s":"GATEIO:MUSICUSDT","d":[]},{"s":"ZOOMEX:TRBUSDT.P","d":[]},{"s":"WHITEBIT:AVAXUSDT.P","d":[]},{"s":"COINEX:KAVAUSDC","d":[]},{"s":"UNISWAP3ETH:ARWDAI","d":[]},{"s":"MEXC:CLEOUSDT","d":[]},{"s":"BINANCE:BNBFDUSD","d":[]},{"s":"UNISWAP3ETH:DXDWETH_FAD251.USD","d":[]},{"s":"PIONEX:DUSKUSDT.P","d":[]},{"s":"BITFINEX:GOCUSD","d":[]},{"s":"BITGET:GNSUSDT","d":[]},{"s":"KRAKEN:ICXBTC","d":[]},{"s":"BYBIT:CUSDUSDT","d":[]},{"s":"UNISWAP:KOMPETEWETH_07840B.USD","d":[]},{"s":"KRAKEN:ETHAUD","d":[]},{"s":"UNISWAP3ETH:BRWLUSDT_487475.USD","d":[]},{"s":"BITFINEX:JPYUST","d":[]},{"s":"COINBASE:SUSHIUSD","d":[]},{"s":"BINANCE:LTCUSD.P","d":[]},{"s":"UNISWAP3ARBITRUM:GSWIFTWETH_5EE828.USD","d":[]},{"s":"UNISWAP:AIDOGEXWETH_EE0575.USD","d":[]},{"s":"UNISWAP3ETH:SORAWETH_19C1F6.USD","d":[]},{"s":"COINBASE:LSETHETH","d":[]},{"s":"HITBTC:WRXUSDT","d":[]},{"s":"UNISWAP3ETH:EPIKOUSDT_60527A.USD","d":[]},{"s":"BINANCE:LUNCTRY","d":[]},{"s":"BLOFIN:BAKEUSDT.P","d":[]},{"s":"BINANCE:ICXBTC","d":[]},{"s":"DYDX:BTCUSD.P","d":[]},{"s":"KRAKEN:BATJPY","d":[]},{"s":"UNISWAP:MCLWETH_EFAF70.USD","d":[]},{"s":"BYBIT:3PUSDT","d":[]},{"s":"GATEIO:IDOODLESUSDT","d":[]},{"s":"BINANCE:WRXUSDT","d":[]},{"s":"BITGET:OCEANUSDT","d":[]},{"s":"UNISWAP3ETH:BITCOINWETH_0C3006.USD","d":[]},{"s":"TRADERJOE:TECHWAVAX_2A68EE","d":[]},{"s":"BINGX:QNTUSDT.P","d":[]},{"s":"GATEIO:TSLUSDT","d":[]},{"s":"UNISWAP:FERRETWETH_A88544.USD","d":[]},{"s":"GATEIO:PRIMALUSDT","d":[]},{"s":"ZOOMEX:MAVUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCPACT","d":[]},{"s":"UNISWAP:WAR3LOVE_1C9189.USD","d":[]},{"s":"GATEIO:1INCHUSDT.3S","d":[]},{"s":"UNISWAP3POLYGON:TRCUSDT_E43E9A.USD","d":[]},{"s":"UNISWAP:POGWETH_556EB7","d":[]},{"s":"UNISWAP:BAGWETH_C15E41","d":[]},{"s":"UNISWAP:DRCWETH_53455F","d":[]},{"s":"SPOOKYSWAP:HNDWFTM_16B6DE.USD","d":[]},{"s":"COINBASE:HOPRUSD","d":[]},{"s":"UNISWAP3ETH:WETHDYDX","d":[]},{"s":"BLOFIN:QNTUSDT.P","d":[]},{"s":"MEXC:YAYUSDT","d":[]},{"s":"BTSE:DYDXUSD.P","d":[]},{"s":"QUICKSWAP:TELUSDC_A5CABF","d":[]},{"s":"PHEMEX:NEARUSDT.P","d":[]},{"s":"BINGX:AAVEUSDT.PS","d":[]},{"s":"SPOOKYSWAP:BTCWFTM_FDB9AB.USD","d":[]},{"s":"POLONIEX:MBOXUSDT","d":[]},{"s":"MEXC:SILLYUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSAITAMA","d":[]},{"s":"BISWAP:REEFWBNB_FBBD09","d":[]},{"s":"MEXC:XRPUSDT","d":[]},{"s":"UNISWAP3ETH:MYSTWETH","d":[]},{"s":"HITBTC:BORGUSDT","d":[]},{"s":"BYBIT:WAXPUSDT.P","d":[]},{"s":"BITFINEX:VETBTC","d":[]},{"s":"BINANCE:XAIBTC","d":[]},{"s":"UNISWAP:VROOMWETH_89CA17","d":[]},{"s":"BISWAP:SXPWBNB_EDC3F1.USD","d":[]},{"s":"GATEIO:GBPTUSDT","d":[]},{"s":"MEXC:IRISUSDT","d":[]},{"s":"BLOFIN:HIGHUSDT.P","d":[]},{"s":"HITBTC:STGUSDT","d":[]},{"s":"UNISWAP:DIAMONDWETH_01AE40.USD","d":[]},{"s":"PANGOLIN:QIWAVAX_E530DC.USD","d":[]},{"s":"BLOFIN:ONTUSDT.P","d":[]},{"s":"MEXC:ANKRUSDT.P","d":[]},{"s":"TRADERJOE:GENIUSDC_57E027","d":[]},{"s":"KRAKEN:MOONUSD","d":[]},{"s":"BINANCEUS:VETUSDT","d":[]},{"s":"HITBTC:AGIXUSD","d":[]},{"s":"UNISWAP3OPTIMISM:BOOWETH_42F493.USD","d":[]},{"s":"UNISWAP3ETH:COMBOWETH","d":[]},{"s":"GATEIO:KTNUSDT","d":[]},{"s":"BITMEX:AXSUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHFINE","d":[]},{"s":"MEXC:MYSTUSDT","d":[]},{"s":"QUICKSWAP:WERXWMATIC_734A8C","d":[]},{"s":"HITBTC:SOLETH","d":[]},{"s":"WHITEBIT:SUNUSDT","d":[]},{"s":"UNISWAP:WSBWETH_436065","d":[]},{"s":"BLOFIN:USTCUSDT.P","d":[]},{"s":"XEXCHANGE:XLHWEGLD","d":[]},{"s":"BINANCE:FLMBTC","d":[]},{"s":"XEXCHANGE:SUPERWEGLD","d":[]},{"s":"TRADERJOE:ABAXWAVAX_9A1950.USD","d":[]},{"s":"UNISWAP3ETH:WETHPASG","d":[]},{"s":"UNISWAP:ELMOWETH_306EEA","d":[]},{"s":"QUICKSWAP:SAFLEUSDT_EF77D1","d":[]},{"s":"QUICKSWAP:ODINDAI_9C7BFF.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GTCWETH_48D0B2.USD","d":[]},{"s":"HITBTC:MIRUSDT","d":[]},{"s":"UNISWAP:CUTWETH_4F4D05","d":[]},{"s":"UNISWAP:NITROWETH_3716AF","d":[]},{"s":"GATEIO:ACAUSDT","d":[]},{"s":"MEXC:CAREUSDT","d":[]},{"s":"GATEIO:TABOOUSDT","d":[]},{"s":"COINEX:BSVUSDT","d":[]},{"s":"SPOOKYSWAP:GALCXWFTM_D5B545.USD","d":[]},{"s":"BISWAP:BSCEPKWBNB_0CD339","d":[]},{"s":"BINANCE:STEEMETH","d":[]},{"s":"PHEMEX:ETCUSDT","d":[]},{"s":"UNISWAP3POLYGON:PGCWMATIC_5F757F.USD","d":[]},{"s":"BITGET:SKLUSDT","d":[]},{"s":"GATEIO:RENUSDT","d":[]},{"s":"UNISWAP:DMTRWETH_CF3F7D.USD","d":[]},{"s":"UNISWAP:AIRWETH_BC562B","d":[]},{"s":"UNISWAP3POLYGON:SDEXWMATIC_C19023.USD","d":[]},{"s":"GATEIO:MEDUSDT","d":[]},{"s":"UNISWAP:DOUGWETH_6A607A","d":[]},{"s":"UNISWAP3ETH:WETHGMT","d":[]},{"s":"BLOFIN:CVXUSDT.P","d":[]},{"s":"MEXC:NEXOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHKP3R","d":[]},{"s":"MEXC:UUSDT","d":[]},{"s":"UNISWAP:SIPHERWETH_F3FDCF.USD","d":[]},{"s":"BYBIT:CSPRUSDT","d":[]},{"s":"POLONIEX:APXUSDT","d":[]},{"s":"BITRUE:SNTSOL","d":[]},{"s":"BITGET:CRETAUSDT","d":[]},{"s":"UNISWAP:XFOURWETH_452C91","d":[]},{"s":"UNISWAP:HAPIWETH_EC7A66.USD","d":[]},{"s":"BINANCE:LTCUSDM2024","d":[]},{"s":"MEXC:BLOKUSDT","d":[]},{"s":"UNISWAP3POLYGON:WETHWMATIC_167384.USD","d":[]},{"s":"PHEMEX:MKRUSDT","d":[]},{"s":"MEXC:TRXUSDT","d":[]},{"s":"WHITEBIT:CAKEUSDT","d":[]},{"s":"BITSTAMP:ETHEUR","d":[]},{"s":"BITHUMB:GMXKRW","d":[]},{"s":"UNISWAP:OMWETH_E46935","d":[]},{"s":"UNISWAP:TRUTHWETH_46BFDD.USD","d":[]},{"s":"HITBTC:CBCUSDT","d":[]},{"s":"BYBIT:RATSUSDT","d":[]},{"s":"BINANCEUS:ATOMUSDT","d":[]},{"s":"MEXC:AURAUSDT","d":[]},{"s":"HITBTC:CTXCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHOGV","d":[]},{"s":"HITBTC:ELFBTC","d":[]},{"s":"UNISWAP:AIWETH_1B8D13","d":[]},{"s":"GATEIO:C98USDT","d":[]},{"s":"GATEIO:DIAUSDT","d":[]},{"s":"PIONEX:PIXELUSDT.P","d":[]},{"s":"MEXC:JOEUSDT","d":[]},{"s":"COINEX:DIMOUSDT","d":[]},{"s":"COINEX:VSYSBTC","d":[]},{"s":"HITBTC:EDGUSDT","d":[]},{"s":"BINANCE:DOGETUSD","d":[]},{"s":"PHEMEX:TRBUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHGET","d":[]},{"s":"POLONIEX:APEUSDT","d":[]},{"s":"BITGET:UMAUSDT","d":[]},{"s":"UNISWAP:TAIL0NE_09B40A.USD","d":[]},{"s":"UNISWAP3ETH:RNGUSDT","d":[]},{"s":"BLOFIN:THETAUSDT.P","d":[]},{"s":"QUICKSWAP:PANDORAWMATIC_359C63.USD","d":[]},{"s":"POLONIEX:XLMUSDT","d":[]},{"s":"GATEIO:OORTUSDT","d":[]},{"s":"TRADERJOE:LIZARDWAVAX_5A926E","d":[]},{"s":"PIONEX:GALUSDT.P","d":[]},{"s":"UNISWAP3ETH:METISUSDC_FC289C.USD","d":[]},{"s":"COINEX:BEPROUSDT","d":[]},{"s":"GATEIO:GRAILUSDT","d":[]},{"s":"UNISWAP:GMEWETH_030D4F.USD","d":[]},{"s":"GATEIO:GOVUSDT","d":[]},{"s":"BYBIT:STEEMUSDT.P","d":[]},{"s":"PANGOLIN:WOWWAVAX_508567.USD","d":[]},{"s":"QUICKSWAP:OMSXWMATIC_1D1FA3.USD","d":[]},{"s":"GATEIO:SHIBUSDT.3S","d":[]},{"s":"UNISWAP:FREDWETH_D9E5A2.USD","d":[]},{"s":"MEXC:BEEFUSDT","d":[]},{"s":"BLOFIN:STXUSDT.P","d":[]},{"s":"POLONIEX:VOLTUSDT","d":[]},{"s":"QUICKSWAP:UNLOCKWMATIC_0010CC","d":[]},{"s":"UNISWAP:MARSHWETH_9C5DE3.USD","d":[]},{"s":"BITFINEX:SNXUST","d":[]},{"s":"UNISWAP:AIMEEWETH_1D2F23.USD","d":[]},{"s":"UNISWAP3ETH:FLCUSDT_EBCE36.USD","d":[]},{"s":"BYBIT:STRKUSDT.P","d":[]},{"s":"BINANCEUS:TRACUSDT","d":[]},{"s":"BITGET:BTCUSD.P","d":[]},{"s":"BITMEX:LDOUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:TRADEWETH_C80765.USD","d":[]},{"s":"HITBTC:WMTUSDT","d":[]},{"s":"COINEX:BLDUSDT","d":[]},{"s":"UNISWAP:GENWETH_A95E77.USD","d":[]},{"s":"UNISWAP3ETH:WETHGREEN","d":[]},{"s":"UNISWAP3ETH:XAIWETH","d":[]},{"s":"GATEIO:AERGOUSDT","d":[]},{"s":"UNISWAP:QNTWETH_0C4A68.USD","d":[]},{"s":"GATEIO:CVAULTCOREUSDT","d":[]},{"s":"HITBTC:G999BTC","d":[]},{"s":"UNISWAP3ETH:LAIUSDC","d":[]},{"s":"UNISWAP3ETH:USDCPAR","d":[]},{"s":"QUICKSWAP:STACKWETH_EFF9DF.USD","d":[]},{"s":"UNISWAP3ETH:WETHGSWIFT","d":[]},{"s":"GEMINI:BCHUSD","d":[]},{"s":"BINGX:UNIUSDT.P","d":[]},{"s":"GATEIO:GITCOINUSDT","d":[]},{"s":"UNISWAP3ETH:SIDUSWETH","d":[]},{"s":"BINANCE:WLDBTC","d":[]},{"s":"UNISWAP3ETH:WETHSOV","d":[]},{"s":"BYBIT:10000COQUSDT.P","d":[]},{"s":"SPOOKYSWAP:MESOUSDC_9927D2","d":[]},{"s":"UNISWAP:LYMWETH_80DDBE.USD","d":[]},{"s":"UNISWAP3ETH:VOMBATUSWETH","d":[]},{"s":"MEXC:METISUSDT.P","d":[]},{"s":"QUICKSWAP:PPYWMATIC_76F53A","d":[]},{"s":"UNISWAP3ETH:USDTBUSD","d":[]},{"s":"TRADERJOE:RLOOPWAVAX_6D4BDE","d":[]},{"s":"BINANCE:ANKRBTC","d":[]},{"s":"TRADERJOE:MONKWAVAX_1B180E.USD","d":[]},{"s":"HITBTC:DODOUSDT","d":[]},{"s":"BITFINEX:XAUTBTC","d":[]},{"s":"COINEX:IXTUSDT","d":[]},{"s":"UNISWAP3ETH:SHROOMWETH","d":[]},{"s":"UNISWAP:WEXOWETH_8ABDB4.USD","d":[]},{"s":"BITHUMB:PDAKRW","d":[]},{"s":"MEXC:API3USDT","d":[]},{"s":"COINBASE:POLSUSD","d":[]},{"s":"UNISWAP3ETH:ELMTWETH_533783.USD","d":[]},{"s":"UNISWAP3POLYGON:OMNIWETH_D766C8.USD","d":[]},{"s":"PANGOLIN:MAGEWAVAX_902C65","d":[]},{"s":"BITFINEX:SUSHIBTC","d":[]},{"s":"BINANCE:PHABTC","d":[]},{"s":"UNISWAP3ETH:DRGNWETH_44F946.USD","d":[]},{"s":"MEXC:HTXUSDT","d":[]},{"s":"UNISWAP:AGRSWETH_D89F1E","d":[]},{"s":"SPOOKYSWAP:FOOWFTM_157F91","d":[]},{"s":"UNISWAP3POLYGON:XSGDWETH_B5A1FD.USD","d":[]},{"s":"UNISWAP3POLYGON:MFENIXMXEN_E82031.USD","d":[]},{"s":"BITGET:MATICEUR","d":[]},{"s":"UNISWAP3ETH:WETHBRIGHT","d":[]},{"s":"UNISWAP3POLYGON:UNIMUSDC_DB11B3.USD","d":[]},{"s":"BINANCE:VICTRY","d":[]},{"s":"HITBTC:AMPUSD","d":[]},{"s":"BINANCE:AXSUSD.P","d":[]},{"s":"BLOFIN:COMBOUSDT.P","d":[]},{"s":"POLONIEX:DOGEUSDT","d":[]},{"s":"BINANCEUS:VOXELUSDT","d":[]},{"s":"PHEMEX:GALAUSDT","d":[]},{"s":"UNISWAP:OILUSDC_0E9C81","d":[]},{"s":"UNISWAP:WMCWETH_AAEA0D","d":[]},{"s":"UNISWAP3ETH:KETWETH","d":[]},{"s":"BLOFIN:RSS3USDT.P","d":[]},{"s":"UNISWAP3ETH:WETHWEETH","d":[]},{"s":"BYBIT:SPELLUSDT","d":[]},{"s":"UNISWAP:BLOBWETH_520BF6.USD","d":[]},{"s":"UNISWAP:INXWETH_F8E0B5","d":[]},{"s":"UNISWAP:BASEWETH_DE5B7F","d":[]},{"s":"QUICKSWAP:ANGLEAGEUR_BF1AC3.USD","d":[]},{"s":"GATEIO:EGSUSDT","d":[]},{"s":"TRADERJOE:ALOTWAVAX_1D07AB","d":[]},{"s":"POLONIEX:ANALOSUSDT","d":[]},{"s":"UNISWAP:BRAINWETH_941FAE","d":[]},{"s":"BITFINEX:BTCGBP","d":[]},{"s":"UNISWAP:GMACWETH_126262.USD","d":[]},{"s":"ZOOMEX:ONDOUSDT.P","d":[]},{"s":"ZOOMEX:KNCUSDT.P","d":[]},{"s":"HITBTC:LTCEURS","d":[]},{"s":"MEXC:GASUSDT.P","d":[]},{"s":"UNISWAP:HTWETH_26CE49","d":[]},{"s":"BYBIT:BOMEUSDT.P","d":[]},{"s":"BITRUE:VEMPUSDT","d":[]},{"s":"COINEX:LTCUSDC","d":[]},{"s":"BINANCE:XECUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGTC","d":[]},{"s":"UNISWAP:PEPLWETH_1BFD93","d":[]},{"s":"BINANCE:SHIBDOGE","d":[]},{"s":"MEXC:MAGICSHOESUSDT","d":[]},{"s":"UNISWAP:DOGEWETH_C0067D","d":[]},{"s":"UNISWAP3POLYGON:DIMOWETH_500174.USD","d":[]},{"s":"UNISWAP3ETH:POLAUSDC_6D6D95.USD","d":[]},{"s":"BITFINEX:GALAUSD","d":[]},{"s":"BITFINEX:BTCTRY","d":[]},{"s":"UNISWAP3ARBITRUM:TBTCUSDC_75CD05.USD","d":[]},{"s":"MEXC:YFXUSDT","d":[]},{"s":"POLONIEX:RDEXUSDT","d":[]},{"s":"UNISWAP:FUNCWETH_D11196.USD","d":[]},{"s":"MEXC:AKROUSDT.P","d":[]},{"s":"BYBIT:LUNA2USDT.P","d":[]},{"s":"UNISWAP:LAYERWETH_B1A824.USD","d":[]},{"s":"BINGX:SEIUSDT.PS","d":[]},{"s":"MEXC:MEMESUSDT","d":[]},{"s":"BITRUE:GMTBTR","d":[]},{"s":"UNISWAP3ETH:MASQWETH_AA6F40.USD","d":[]},{"s":"GATEIO:QNTUSDT","d":[]},{"s":"KRAKEN:WAVESEUR","d":[]},{"s":"BTSE:TUSD","d":[]},{"s":"UNISWAP3ETH:DAITFT","d":[]},{"s":"COINBASE:VELOUSD","d":[]},{"s":"QUICKSWAP:IONSUSDC_FCE9B0","d":[]},{"s":"UNISWAP:MANEWETH_401347","d":[]},{"s":"GATEIO:AMUSDT","d":[]},{"s":"BINANCE:DIAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHORANGEPEPE","d":[]},{"s":"POLONIEX:XLMUSDC","d":[]},{"s":"POLONIEX:BTTUSDC","d":[]},{"s":"UNISWAP:BUHWETH_4DEB71.USD","d":[]},{"s":"UNISWAP:UNCLWETH_43FDBE","d":[]},{"s":"COINBASE:ALGOBTC","d":[]},{"s":"MEXC:TETUSDT","d":[]},{"s":"MEXC:TLMUSDT.P","d":[]},{"s":"MEXC:PAWUSDT","d":[]},{"s":"QUICKSWAP:WBTCUSDC_F6A637","d":[]},{"s":"GATEIO:BXCUSDT","d":[]},{"s":"COINBASE:UNFIUSD","d":[]},{"s":"UNISWAP3ETH:WETHDEXTF","d":[]},{"s":"BINANCE:JUPTRY","d":[]},{"s":"TRADERJOE:HATWAVAX_4B5CDF.USD","d":[]},{"s":"UNISWAP:ORDIBOTWETH_5A80A3.USD","d":[]},{"s":"GATEIO:LATUSDT","d":[]},{"s":"UNISWAP:SANSHUWETH_A2FDB9.USD","d":[]},{"s":"WHITEBIT:MANAUSDT","d":[]},{"s":"BLOFIN:ASTRUSDT.P","d":[]},{"s":"UNISWAP:CRGPTWETH_0FA0AF.USD","d":[]},{"s":"UNISWAP3ETH:PEENWETH","d":[]},{"s":"BTSE:APTUSD.P","d":[]},{"s":"UNISWAP3ETH:PDTWETH_75EA68.USD","d":[]},{"s":"BITHUMB:RLCKRW","d":[]},{"s":"UNISWAP3ETH:IMXWETH_FD76BE.USD","d":[]},{"s":"UNISWAP:BREEDWETH_3478B3.USD","d":[]},{"s":"QUICKSWAP:SRSWMATIC_FE0C00","d":[]},{"s":"UNISWAP3ETH:COWWETH_FCFDFC.USD","d":[]},{"s":"UNISWAP3ETH:NRGWETH","d":[]},{"s":"BITHUMB:INJKRW","d":[]},{"s":"WOONETWORK:SPELLUSDT","d":[]},{"s":"POLONIEX:TONUSDT","d":[]},{"s":"UNISWAP3ETH:DOLZUSDT","d":[]},{"s":"UNISWAP:0XANONWETH_76BFF3.USD","d":[]},{"s":"TRADERJOE:OSAKCOQ_257D3B.USD","d":[]},{"s":"MEXC:SCTUSDT","d":[]},{"s":"BITHUMB:ELFKRW","d":[]},{"s":"UNISWAP3ARBITRUM:XRICEUSDC_F516BF.USD","d":[]},{"s":"BITGET:DPXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAVA","d":[]},{"s":"PHEMEX:C98USDT","d":[]},{"s":"BINANCE:SXPBNB","d":[]},{"s":"GATEIO:GSUSDT","d":[]},{"s":"UNISWAP:VRAWETH_600318","d":[]},{"s":"UNISWAP:RGWETH_8AB0FF","d":[]},{"s":"POLONIEX:FAIRUSDT","d":[]},{"s":"UNISWAP3ETH:CELOWETH_402519.USD","d":[]},{"s":"ZOOMEX:CHZUSDT.P","d":[]},{"s":"DELTA:TRBUSDT.P","d":[]},{"s":"MEXC:MMITUSDT","d":[]},{"s":"UNISWAP3ETH:ICHI1INCH","d":[]},{"s":"UNISWAP3ETH:IOTXWETH_489CEB.USD","d":[]},{"s":"TRADERJOE:PENDLEWAVAX_3ACD2F.USD","d":[]},{"s":"UNISWAP3ARBITRUM:AFGWETH_0FD451.USD","d":[]},{"s":"COINEX:WANUSDT","d":[]},{"s":"UNISWAP:HOLEWETH_C5EE2F.USD","d":[]},{"s":"BITGET:TWTUSDT","d":[]},{"s":"MEXC:FACTRUSDT","d":[]},{"s":"UNISWAP3ETH:BICOWETH_AD6B65.USD","d":[]},{"s":"BINANCE:INJUSDC","d":[]},{"s":"UNISWAP3ETH:EEFIWETH","d":[]},{"s":"UNISWAP3ARBITRUM:APEXWETH_EFD072.USD","d":[]},{"s":"UNISWAP3ETH:L2WETH_58CCB8.USD","d":[]},{"s":"BITFINEX:APPUSD","d":[]},{"s":"UNISWAP3ETH:TCAPWETH_11456B.USD","d":[]},{"s":"QUICKSWAP:LFIWETH_E3108C","d":[]},{"s":"UNISWAP3ETH:FORTUSDC","d":[]},{"s":"UNISWAP3ETH:PRIMEWETH_CD423F.USD","d":[]},{"s":"POLONIEX:APTUSDT","d":[]},{"s":"UNISWAP3ETH:USDTTRADE","d":[]},{"s":"UNISWAP:ETEWETH_C20E1F.USD","d":[]},{"s":"UNISWAP:MAGEWETH_95EF68.USD","d":[]},{"s":"BITGET:PEEPOUSDT","d":[]},{"s":"KRAKEN:HNTUSD.PM","d":[]},{"s":"UNISWAP:SPOTWETH_C0E1CB.USD","d":[]},{"s":"UNISWAP3ETH:ONDOWETH","d":[]},{"s":"GEMINI:ETHBTC","d":[]},{"s":"POLONIEX:SNXTRX","d":[]},{"s":"QUICKSWAP:KIROWMATIC_3F245C","d":[]},{"s":"UNISWAP3ARBITRUM:ANKRANKRETH_95B441.USD","d":[]},{"s":"UNISWAP3ETH:CGPTUSDT_7D4E22.USD","d":[]},{"s":"COINEX:GGGUSDT","d":[]},{"s":"BLOFIN:QTUMUSDT.P","d":[]},{"s":"UNISWAP:DARKWETH_F7031F","d":[]},{"s":"MEXC:IMXUSDT.P","d":[]},{"s":"UNISWAP3ETH:FLCPOTATOZ_2D07FB.USD","d":[]},{"s":"TRADERJOE:W3ULLWAVAX_CCD7DE.USD","d":[]},{"s":"GATEIO:LOOTUSDT","d":[]},{"s":"UNISWAP:TAILSWETH_B74446.USD","d":[]},{"s":"UNISWAP:PSWEARWETH_34E0B3","d":[]},{"s":"HITBTC:SRXUSDT","d":[]},{"s":"COINBASE:ARPAUSD","d":[]},{"s":"UNISWAP:CAPYWETH_B2843C","d":[]},{"s":"GATEIO:MTLUSDT.3S","d":[]},{"s":"BITGET:MAVIAUSDT","d":[]},{"s":"UNISWAP3ETH:MAIWETH_C52A18.USD","d":[]},{"s":"UNISWAP:SHIBWETH_811BEE.USD","d":[]},{"s":"UNISWAP3ETH:AUSDUSDT_A82F91.USD","d":[]},{"s":"BITGET:NEARUSDT.P","d":[]},{"s":"UNISWAP3ETH:AIWETH","d":[]},{"s":"UNISWAP:TISMWETH_2B38C0.USD","d":[]},{"s":"TRADERJOE:WBRGEUSDC_237543.USD","d":[]},{"s":"GATEIO:FLURRYUSDT","d":[]},{"s":"UNISWAP3ETH:CROWETH_87B1D1.USD","d":[]},{"s":"UNISWAP:CCXWETH_39159C.USD","d":[]},{"s":"UNISWAP3ARBITRUM:KEWLWETH_1876A1.USD","d":[]},{"s":"PIONEX:BAKEUSDT.P","d":[]},{"s":"BYBIT:CETUSUSDT.P","d":[]},{"s":"UNISWAP:FRENSWETH_36AB41","d":[]},{"s":"COINEX:ASTROUSDT","d":[]},{"s":"COINEX:LTCBTC","d":[]},{"s":"POLONIEX:FITFIUSDT","d":[]},{"s":"BITGET:GCAKEUSDT","d":[]},{"s":"UNISWAP3ETH:DAIUSDC_6C6BC9.USD","d":[]},{"s":"UNISWAP:DXYWETH_0FC81D","d":[]},{"s":"BITGET:YGGUSDT","d":[]},{"s":"UNISWAP:RVSTWETH_649082","d":[]},{"s":"UNISWAP3ARBITRUM:KIBSHIWETH_197DA8.USD","d":[]},{"s":"UNISWAP:RNBWETH_C8FAE2","d":[]},{"s":"UNISWAP3ETH:POPUSDC","d":[]},{"s":"UNISWAP3ETH:USDCCGG","d":[]},{"s":"GATEIO:SDEXUSDT","d":[]},{"s":"BYBIT:CAPSUSDT","d":[]},{"s":"COINBASE:COTIUSD","d":[]},{"s":"TRADERJOE:JUICEWAVAX_DED83F.USD","d":[]},{"s":"GATEIO:LUNRUSDT","d":[]},{"s":"UNISWAP:USTMIR_87DA82","d":[]},{"s":"QUICKSWAP:QUICKUSDC_1F1E4C","d":[]},{"s":"UNISWAP3ETH:PTOYWETH","d":[]},{"s":"QUICKSWAP:ORIOWMATIC_19568B.USD","d":[]},{"s":"MEXC:MTRGUSDT","d":[]},{"s":"COINEX:ANTUSDT","d":[]},{"s":"UNISWAP3ETH:LINKRNG","d":[]},{"s":"UNISWAP3ETH:SCANSWETH_C0DC0E.USD","d":[]},{"s":"UNISWAP3ETH:ACXWETH","d":[]},{"s":"BINGX:OMUSDT.P","d":[]},{"s":"UNISWAP:MONAWETH_CA5B18","d":[]},{"s":"GATEIO:ORAOUSDT","d":[]},{"s":"GATEIO:DUELUSDT","d":[]},{"s":"UNISWAP3POLYGON:VOXELWMATIC_2A08C3.USD","d":[]},{"s":"UNISWAP3POLYGON:GVVUSDT_2F400B.USD","d":[]},{"s":"BYBIT:TRXUSDT","d":[]},{"s":"BYBIT:KDAUSDT","d":[]},{"s":"UNISWAP3ETH:SAPSFLC_E6A347.USD","d":[]},{"s":"UNISWAP3POLYGON:MATICXUSDC_B6F484.USD","d":[]},{"s":"TRADERJOE:SUBOWAVAX_F382D2.USD","d":[]},{"s":"PANGOLIN:BNBWAVAX_F776EF","d":[]},{"s":"POLONIEX:SAITAMAUSDT","d":[]},{"s":"SPOOKYSWAP:PPBLZUSDC_AB48B0","d":[]},{"s":"UNISWAP3ETH:WETHPLAY","d":[]},{"s":"UNISWAP3ARBITRUM:SPAUSDC_7BB5E7.USD","d":[]},{"s":"GATEIO:EMPIREUSDT","d":[]},{"s":"TRADERJOE:BROOMWAVAX_C4769F","d":[]},{"s":"UNISWAP3ETH:ELONUSDT_543842.USD","d":[]},{"s":"COINEX:OGNUSDC","d":[]},{"s":"UNISWAP:MEPEWETH_175444.USD","d":[]},{"s":"UNISWAP3ETH:ALEPHWETH","d":[]},{"s":"HITBTC:IPLUSD","d":[]},{"s":"BINANCE:TLMTRY","d":[]},{"s":"BINANCE:ICPUSDT","d":[]},{"s":"BITFINEX:ETHWBTC","d":[]},{"s":"UNISWAP3POLYGON:HYDRAWMATIC_EADECD.USD","d":[]},{"s":"MEXC:GMEEUSDT","d":[]},{"s":"COINEX:TOKEUSDT","d":[]},{"s":"BITGET:COMBOUSDT.P","d":[]},{"s":"GATEIO:CSPRUSDT","d":[]},{"s":"UNISWAP:LYWETH_C05371.USD","d":[]},{"s":"BITKUB:IOSTTHB","d":[]},{"s":"UNISWAP:SOPHWETH_9DD361","d":[]},{"s":"BTSE:XMRUSD.P","d":[]},{"s":"TRADERJOE:GOHMFRAX_3E6BE7","d":[]},{"s":"UNISWAP3ETH:WETHBRET","d":[]},{"s":"BYBIT:ILVUSDT.P","d":[]},{"s":"UNISWAP:CARDSWETH_94AE6D.USD","d":[]},{"s":"BITMEX:XRPBTCH2024","d":[]},{"s":"BINANCE:MOVRTRY","d":[]},{"s":"MEXC:FAIUSDT","d":[]},{"s":"BITGET:CELOUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:LINKWMATIC_0A28C2.USD","d":[]},{"s":"UNISWAP:ICSAHEX_BAAF3B.USD","d":[]},{"s":"GATEIO:KNJUSDT","d":[]},{"s":"POLONIEX:AAVEUSDT","d":[]},{"s":"UNISWAP:WIZWETH_3E43EF.USD","d":[]},{"s":"UNISWAP:ROGANWETH_A09B37.USD","d":[]},{"s":"PHEMEX:PYRUSDT","d":[]},{"s":"UNISWAP:MODWETH_FCA090","d":[]},{"s":"BITSTAMP:AAVEBTC","d":[]},{"s":"COINEX:BCHUSDT","d":[]},{"s":"UNISWAP:ULTIMATEBOTWETH_C60CC8","d":[]},{"s":"BISWAP:ALUWBNB_CA7172.USD","d":[]},{"s":"GATEIO:TRADEUSDT","d":[]},{"s":"UNISWAP3ETH:UNIWBTC","d":[]},{"s":"BINANCE:ARUSDT","d":[]},{"s":"PANGOLIN:AKITAXWAVAX_34C212","d":[]},{"s":"UNISWAP:KEEPWETH_E6F19D.USD","d":[]},{"s":"COINEX:AVAXUSDT","d":[]},{"s":"GATEIO:BFT1USDT","d":[]},{"s":"UNISWAP:UBTWETH_B27DE0","d":[]},{"s":"GATEIO:MNGOUSDT","d":[]},{"s":"BITFINEX:AAVEUSD","d":[]},{"s":"SPOOKYSWAP:TORWFTM_41D886","d":[]},{"s":"GATEIO:KGCUSDT","d":[]},{"s":"MEXC:RAMUSDT","d":[]},{"s":"BINANCE:UNFITRY","d":[]},{"s":"UNISWAP3ETH:APWWETH_C4090B.USD","d":[]},{"s":"UNISWAP3ETH:WSTETHUSDT_EC5055.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDC_2039F8.USD","d":[]},{"s":"KRAKEN:RARIUSD","d":[]},{"s":"BINGX:RUNEUSDT.PS","d":[]},{"s":"BINANCE:RVNUSDT","d":[]},{"s":"COINEX:STXBTC","d":[]},{"s":"BINANCE:LAZIOBTC","d":[]},{"s":"QUICKSWAP:DAIMIMATIC_74214F","d":[]},{"s":"UNISWAP3ETH:WETHGAL","d":[]},{"s":"UNISWAP3ETH:CELLWETH_E6A2EC.USD","d":[]},{"s":"UNISWAP3ETH:WETHCARB","d":[]},{"s":"WAGYUSWAP:SWAPZWVLX_A9858D","d":[]},{"s":"UNISWAP:ALBTOCEAN_18A5C0","d":[]},{"s":"POLONIEX:GUACUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBUGS","d":[]},{"s":"GATEIO:OOKIUSDT","d":[]},{"s":"MEXC:VCFUSDT","d":[]},{"s":"UNISWAP3POLYGON:EURSUSDC_C9D0CA.USD","d":[]},{"s":"UNISWAP3ETH:GMMWETH_22D8EC.USD","d":[]},{"s":"QUICKSWAP:STARWMATIC_7256EA.USD","d":[]},{"s":"MEXC:UPIUSDT","d":[]},{"s":"HITBTC:TTCCBTC","d":[]},{"s":"UNISWAP3ETH:WETHPTOY","d":[]},{"s":"QUICKSWAP:OMWETH_FF2BBC","d":[]},{"s":"MEXC:DTEUSDT","d":[]},{"s":"BITRUE:MATICUSDC","d":[]},{"s":"UNISWAP:FINEWETH_B54CE2","d":[]},{"s":"UNISWAP:ZAPIWETH_16B072.USD","d":[]},{"s":"HITBTC:AXSUSDT","d":[]},{"s":"BYBIT:ROSEUSDT","d":[]},{"s":"TRADERJOE:LUCKYWAVAX_374AF2","d":[]},{"s":"COINEX:AVAXBTC","d":[]},{"s":"GEMINI:XRPUSD","d":[]},{"s":"UNISWAP3ETH:THEOWETH","d":[]},{"s":"UNISWAP3ETH:ITGRUSDC","d":[]},{"s":"BINANCE:HOTETH","d":[]},{"s":"POLONIEX:RFRUSDT","d":[]},{"s":"BITGET:SANTOSUSDT","d":[]},{"s":"MEXC:YPREDUSDT","d":[]},{"s":"POLONIEX:ORDSUSDT","d":[]},{"s":"UNISWAP:NEZUKOWETH_CEFDEA.USD","d":[]},{"s":"BLOFIN:COMPUSDT.P","d":[]},{"s":"TRADERJOE:HOOFWAVAX_BC7073","d":[]},{"s":"UNISWAP:SORAWETH_7EEC7A","d":[]},{"s":"GATEIO:WAMUSDT","d":[]},{"s":"UNISWAP:MARKSWETH_C1F82F.USD","d":[]},{"s":"GATEIO:YFIUSDT.3L","d":[]},{"s":"BINANCEUS:WBTCBTC","d":[]},{"s":"UNISWAP:GECWETH_A2CAAD.USD","d":[]},{"s":"UNISWAP:DEAIWETH_E2BAAA","d":[]},{"s":"COINEX:YDFUSDT","d":[]},{"s":"BYBIT:SLGUSDT","d":[]},{"s":"MEXC:JTOUSDT","d":[]},{"s":"UNISWAP:SANI0NE_EF6242.USD","d":[]},{"s":"WAGYUSWAP:ETHWAG_8ECB48.USD","d":[]},{"s":"COINEX:FISUSDT","d":[]},{"s":"UNISWAP3ETH:USDCHBOT","d":[]},{"s":"HITBTC:OOKIUSDT","d":[]},{"s":"MEXC:MDXUSDT","d":[]},{"s":"BLOFIN:FLOWUSDT.P","d":[]},{"s":"UNISWAP:NMRWETH_B784CE.USD","d":[]},{"s":"KRAKEN:BTCUSDH2024","d":[]},{"s":"UNISWAP3ETH:WCKWETH","d":[]},{"s":"WHITEBIT:POWRBTC","d":[]},{"s":"BINANCEUS:ADAUSDT","d":[]},{"s":"BITGET:MANAUSDT","d":[]},{"s":"GATEIO:GMMTUSDT","d":[]},{"s":"UPBIT:DOGEKRW","d":[]},{"s":"UNISWAP3ETH:AXSWETH_3019D4.USD","d":[]},{"s":"UNISWAP:KATAWETH_DC1D67.USD","d":[]},{"s":"KRAKEN:DAIUSD","d":[]},{"s":"PANGOLIN:FRAXWAVAX_0CE543","d":[]},{"s":"MEXC:AREAUSDT","d":[]},{"s":"UNISWAP3ETH:AMOWETH","d":[]},{"s":"MEXC:HIVEBTC","d":[]},{"s":"WOONETWORK:STRKUSDT","d":[]},{"s":"UNISWAP3ETH:WDOGEWETH","d":[]},{"s":"UNISWAP3ETH:ALTUSDT_2AAAFE.USD","d":[]},{"s":"ZOOMEX:STEEMUSDT.P","d":[]},{"s":"HITBTC:STXUSDT","d":[]},{"s":"COINBASE:ICPGBP","d":[]},{"s":"GATEIO:BOXUSDT","d":[]},{"s":"COINEX:XENUSDT","d":[]},{"s":"BITGET:SHILLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTRVL","d":[]},{"s":"UNISWAP3ETH:BETSWETH_E883FE.USD","d":[]},{"s":"UNISWAP3ETH:WETHBOJACK","d":[]},{"s":"COINEX:BABYDOGEUSDT","d":[]},{"s":"SPOOKYSWAP:GALCXWFTM_D5B545","d":[]},{"s":"UNISWAP:PINGWETH_DC96E9","d":[]},{"s":"UNISWAP3POLYGON:BONKWMATIC_88EB11.USD","d":[]},{"s":"BITFINEX:FTMBTC","d":[]},{"s":"BINANCE:SANDUSDT","d":[]},{"s":"UNISWAP3ETH:ELONWETH_381FE4.USD","d":[]},{"s":"UNISWAP3ETH:FOAMWETH_223A3D.USD","d":[]},{"s":"UNISWAP3ETH:MIMWETH","d":[]},{"s":"PHEMEX:ASTRUSDT.P","d":[]},{"s":"GATEIO:FORUSDT","d":[]},{"s":"PHEMEX:KAVAUSDT.P","d":[]},{"s":"POLONIEX:RUNEUSDT","d":[]},{"s":"UNISWAP3ETH:AMPWETH","d":[]},{"s":"BINANCE:PHBUSDT","d":[]},{"s":"UNISWAP:0XOSWETH_CAC5B1","d":[]},{"s":"UNISWAP:HAROLDWETH_22394A","d":[]},{"s":"MEXC:AGLDUSDT","d":[]},{"s":"MEXC:BLZUSDT","d":[]},{"s":"MEXC:IBATUSDT","d":[]},{"s":"BITFINEX:MNAUSD","d":[]},{"s":"UNISWAP:ANIMWETH_4646E1","d":[]},{"s":"MEXC:PLTUSDT","d":[]},{"s":"SPOOKYSWAP:BOOWFTM_EC7178.USD","d":[]},{"s":"ZOOMEX:ROSEUSDT.P","d":[]},{"s":"UNISWAP:GODWETH_DB161B.USD","d":[]},{"s":"MEXC:KATUSDT","d":[]},{"s":"UNISWAP3ETH:ELUNRUSDT","d":[]},{"s":"UNISWAP:PAALWETH_58BD02.USD","d":[]},{"s":"UNISWAP:PPDAIDAI_473AA2","d":[]},{"s":"BLOFIN:CEEKUSDT.P","d":[]},{"s":"UNISWAP:RYUWETH_68E784.USD","d":[]},{"s":"PANGOLIN:KACYWAVAX_1938CE.USD","d":[]},{"s":"COINEX:SGBBTC","d":[]},{"s":"KRAKEN:TUSDUSD","d":[]},{"s":"UNISWAP3ETH:REPV2WETH_B05510.USD","d":[]},{"s":"UNISWAP3ETH:FCOWBTC","d":[]},{"s":"BLOFIN:MAVIAUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEASDAI_AE7505.USD","d":[]},{"s":"UNISWAP3ETH:AVAVWETH","d":[]},{"s":"QUICKSWAP:QUICKCHARTWMATIC_545C67","d":[]},{"s":"UNISWAP3ETH:SHIBUSDC","d":[]},{"s":"UNISWAP:UNIV2VOW_F848E9","d":[]},{"s":"UNISWAP3OPTIMISM:FXSFRAX_01E37E.USD","d":[]},{"s":"UNISWAP3ETH:WETHANFD","d":[]},{"s":"UNISWAP3ETH:FDUSDUSDT","d":[]},{"s":"HITBTC:SWMUSD","d":[]},{"s":"MEXC:ROGUSDT","d":[]},{"s":"UNISWAP3ETH:OVRWETH","d":[]},{"s":"BITGET:ETHEUR","d":[]},{"s":"TRADERJOE:GOATWAVAX_D4B2C6.USD","d":[]},{"s":"BITGET:ONEUSDT","d":[]},{"s":"COINEX:TRUMPUSDT","d":[]},{"s":"EXMO:BTCUAH","d":[]},{"s":"BYBIT:ALTUSDT","d":[]},{"s":"GEMINI:ETHUSDT","d":[]},{"s":"SPOOKYSWAP:PYROWFTM_1C328D.USD","d":[]},{"s":"HITBTC:SANDUSDT","d":[]},{"s":"TRADERJOE:TNGLWAVAX_A02F0B.USD","d":[]},{"s":"UNISWAP3POLYGON:BLBMWMATIC_7A6318.USD","d":[]},{"s":"GATEIO:CLVUSDT","d":[]},{"s":"UNISWAP3ETH:SOLVEWETH_37AB77.USD","d":[]},{"s":"PHEMEX:UNFIUSDT.P","d":[]},{"s":"BINANCE:AAVEUSDT","d":[]},{"s":"ZOOMEX:MOBILEUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:STMATICWMATIC_59DB5E.USD","d":[]},{"s":"UNISWAP:CSMWETH_B61680","d":[]},{"s":"UNISWAP:FLOKIN2WETH_8B1E94.USD","d":[]},{"s":"MEXC:MXENUSDT","d":[]},{"s":"UNISWAP:AMASWETH_4C8771","d":[]},{"s":"GATEIO:ZCXUSDT","d":[]},{"s":"HITBTC:GRTUSD","d":[]},{"s":"UNISWAP3ETH:ZEROWETH_A80838.USD","d":[]},{"s":"TRADERJOE:FEEDWAVAX_017025.USD","d":[]},{"s":"MEXC:MMYUSDT","d":[]},{"s":"UNISWAP3POLYGON:TSUBASAUTWMATIC_B68606.USD","d":[]},{"s":"UNISWAP3ETH:USDTOMI","d":[]},{"s":"UNISWAP:KELWETH_0F2156.USD","d":[]},{"s":"GATEIO:XELSUSDT","d":[]},{"s":"UNISWAP3ETH:SLRUSDC","d":[]},{"s":"OKX:USDCUSDT.P","d":[]},{"s":"COINEX:MINAUSDC","d":[]},{"s":"GEMINI:GMTUSD","d":[]},{"s":"HITBTC:FXSUSD","d":[]},{"s":"GEMINI:ETHEUR","d":[]},{"s":"KRAKEN:AUDUSD","d":[]},{"s":"MEXC:CRAZYDAVEUSDT","d":[]},{"s":"KRAKEN:FORTHUSD","d":[]},{"s":"UNISWAP:PANWETH_C53781","d":[]},{"s":"UNISWAP3ETH:BSGGUSDT","d":[]},{"s":"GATEIO:DPYUSDT","d":[]},{"s":"UNISWAP:ALFAWETH_12490E.USD","d":[]},{"s":"UNISWAP:BITCOINWETH_2CC846","d":[]},{"s":"HITBTC:MOVRBTC","d":[]},{"s":"UNISWAP3ETH:RUSDWETH_433052.USD","d":[]},{"s":"UNISWAP:PVPWETH_F38A1E","d":[]},{"s":"QUICKSWAP:TOP50KOM_DD4531.USD","d":[]},{"s":"HITBTC:NRGBTC","d":[]},{"s":"HITBTC:ETPBTC","d":[]},{"s":"UNISWAP:SERWETH_D8E29D","d":[]},{"s":"UNISWAP3ETH:WXUSDT_1B442B.USD","d":[]},{"s":"GATEIO:MATICUSDT","d":[]},{"s":"GATEIO:ARPAUSDT","d":[]},{"s":"COINBASE:SUKUUSD","d":[]},{"s":"HITBTC:PLUBTC","d":[]},{"s":"UNISWAP3OPTIMISM:AAVEWETH_790FDE.USD","d":[]},{"s":"HITBTC:REPUSD","d":[]},{"s":"UNISWAP3ETH:KROMWETH_6AE0CD.USD","d":[]},{"s":"MEXC:FTNAUSDC","d":[]},{"s":"BINANCE:APTFDUSD","d":[]},{"s":"UNISWAP:RJVWETH_FF70DE.USD","d":[]},{"s":"POLONIEX:MKRUSDT","d":[]},{"s":"POLONIEX:ZECUSD","d":[]},{"s":"SPOOKYSWAP:BSHAREBASED_5748B5.USD","d":[]},{"s":"WHITEBIT:DAIUSDT","d":[]},{"s":"QUICKSWAP:KMCUSDC_88B48E","d":[]},{"s":"MEXC:SWEATUSDT","d":[]},{"s":"UNISWAP3ETH:WCOMAIWETH","d":[]},{"s":"UNISWAP:NIOXWETH_D1BC66.USD","d":[]},{"s":"PHEMEX:UNIUSDT.P","d":[]},{"s":"GATEIO:ZEROUSDT","d":[]},{"s":"BTSE:LRCUSD","d":[]},{"s":"QUICKSWAP:MATWMATIC_16770E","d":[]},{"s":"MEXC:NXDTUSDT","d":[]},{"s":"KRAKEN:OCEANUSD","d":[]},{"s":"KRAKEN:HFTUSD.PM","d":[]},{"s":"WHITEBIT:MKRUSDT.P","d":[]},{"s":"QUICKSWAP:WIXSWMATIC_F87B83.USD","d":[]},{"s":"UNISWAP3ETH:WETHSHROOM","d":[]},{"s":"GATEIO:IOSTUSDT.3L","d":[]},{"s":"UNISWAP3ETH:JPGWETH","d":[]},{"s":"KRAKEN:DOGEEUR","d":[]},{"s":"UNISWAP:RDDTWETH_1C7EF8.USD","d":[]},{"s":"BITGET:LADYSUSDT","d":[]},{"s":"WHITEBIT:METISBTC","d":[]},{"s":"BTSE:REEFUSD","d":[]},{"s":"POLONIEX:CHRTRX","d":[]},{"s":"UNISWAP3ETH:SCHAPWETH","d":[]},{"s":"EXMO:ADABTC","d":[]},{"s":"UNISWAP:SPWNUSDT_B5B511","d":[]},{"s":"UNISWAP:CELLWETH_9C4CC8.USD","d":[]},{"s":"GATEIO:MINIUSDT","d":[]},{"s":"HITBTC:DNTUSD","d":[]},{"s":"MEXC:ANMLUSDT","d":[]},{"s":"BITHUMB:SUSHIKRW","d":[]},{"s":"MEXC:GOONUSDT","d":[]},{"s":"GATEIO:WOOFUSDT","d":[]},{"s":"UNISWAP:GIGAWETH_65B9AD","d":[]},{"s":"MEXC:APNUSDT","d":[]},{"s":"COINEX:CELRUSDC","d":[]},{"s":"WAGYUSWAP:BNBWAG_133F31.USD","d":[]},{"s":"MEXC:LPCUSDT","d":[]},{"s":"MEXC:DEFIUSDT","d":[]},{"s":"MEXC:QRDOUSDT","d":[]},{"s":"HITBTC:GRTBTC","d":[]},{"s":"SPOOKYSWAP:DAIWFTM_E120FF.USD","d":[]},{"s":"UNISWAP3ETH:WETHIMX","d":[]},{"s":"QUICKSWAP:DQUICKWMATIC_758B27.USD","d":[]},{"s":"UNISWAP:ORACLEWETH_E7BC1E","d":[]},{"s":"GATEIO:TRXUSDT.3S","d":[]},{"s":"UNISWAP3ETH:CYBERUSDC","d":[]},{"s":"UNISWAP:SKIDWETH_A7BFC9","d":[]},{"s":"PHEMEX:GMXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHEXRD","d":[]},{"s":"HITBTC:ALGOUSD","d":[]},{"s":"UNISWAP:AAGWETH_1AFB66.USD","d":[]},{"s":"GATEIO:D2TUSDT","d":[]},{"s":"UNISWAP3ETH:BEEFWETH_9E31EF.USD","d":[]},{"s":"WAGYUSWAP:VICIWAG_F99BAD","d":[]},{"s":"UNISWAP:LBLOCKWETH_1398EE.USD","d":[]},{"s":"BYBIT:XMRUSDT.P","d":[]},{"s":"UNISWAP:SIWETH_5D8A31","d":[]},{"s":"MEXC:BABYTRUMPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDSETH","d":[]},{"s":"UNISWAP:PROSUSDC_3155AC","d":[]},{"s":"UNISWAP3ETH:NRGWETH_D26243.USD","d":[]},{"s":"BITGET:USDTBRL","d":[]},{"s":"GATEIO:GMUSDT","d":[]},{"s":"MEXC:TAOUSDT.P","d":[]},{"s":"OKX:IOTAUSDT.P","d":[]},{"s":"BYBIT:MKRUSDT.P","d":[]},{"s":"ZOOMEX:SNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:TOWERUSDT_0A8E18.USD","d":[]},{"s":"GATEIO:RPLUSDT","d":[]},{"s":"UNISWAP:WSKRWETH_EEA39D","d":[]},{"s":"COINEX:FIDAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHEETP","d":[]},{"s":"BINANCE:ALTUSDT","d":[]},{"s":"PHEMEX:ETHBTC","d":[]},{"s":"UNISWAP:UNITWETH_80F566","d":[]},{"s":"QUICKSWAP:PERIWMATIC_98F675.USD","d":[]},{"s":"UNISWAP:CHAOSWETH_A44A9D","d":[]},{"s":"WHITEBIT:VETUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFET","d":[]},{"s":"TRADERJOE:SUBUSDC_A11C59","d":[]},{"s":"QUICKSWAP:ICEUSDT_91047A","d":[]},{"s":"MEXC:SHIBUSDT","d":[]},{"s":"UNISWAP3ETH:TYPEWETH_11D7DC.USD","d":[]},{"s":"GATEIO:OVRUSDT","d":[]},{"s":"UNISWAP:ETHFWETH_EF2938.USD","d":[]},{"s":"UNISWAP3ETH:NESSYWETH","d":[]},{"s":"UNISWAP:GLQWETH_7D9C8D","d":[]},{"s":"GATEIO:BCMCUSDT","d":[]},{"s":"MEXC:ORTUSDT","d":[]},{"s":"HITBTC:ROOKUSD","d":[]},{"s":"BINANCE:PIVXUSDT","d":[]},{"s":"UNISWAP:MONGOOSEWETH_525DAB.USD","d":[]},{"s":"UNISWAP3ETH:IC21WETH","d":[]},{"s":"UNISWAP3OPTIMISM:MOLTENUNIDX_0B2A6B.USD","d":[]},{"s":"UNISWAP3POLYGON:CRVWETH_FC99D1.USD","d":[]},{"s":"UNISWAP3ETH:BBTCWBTC","d":[]},{"s":"MEXC:ZANOUSDT","d":[]},{"s":"UNISWAP:BRAINWETH_941FAE.USD","d":[]},{"s":"UNISWAP3ETH:POLSWETH_F5381D.USD","d":[]},{"s":"UNISWAP:SHIBELONWETH_F5364C.USD","d":[]},{"s":"HITBTC:CEEKBTC","d":[]},{"s":"POLONIEX:SHEPEUSDT","d":[]},{"s":"HITBTC:YFIIUSDT","d":[]},{"s":"TRADERJOE:USDTEJOE_1643DE","d":[]},{"s":"UNISWAP:HOKKWETH_12B3DE","d":[]},{"s":"UNISWAP:DEXEDWETH_FE559F.USD","d":[]},{"s":"UNISWAP3ETH:WETHCELO","d":[]},{"s":"UNISWAP3ARBITRUM:WINRUSDC_E79D4E.USD","d":[]},{"s":"BITHUMB:PUNDIXKRW","d":[]},{"s":"POLONIEX:BOOUSDT","d":[]},{"s":"UNISWAP:BNSDWETH_76333B.USD","d":[]},{"s":"UNISWAP3ETH:SEEDWETH_9407D9.USD","d":[]},{"s":"WHITEBIT:PIXELUSDT.P","d":[]},{"s":"UNISWAP:HEROWETH_A19D6A","d":[]},{"s":"UNISWAP:PULSEUSDT_9B0D43","d":[]},{"s":"MEXC:NHTUSDT","d":[]},{"s":"BINANCE:CHZTRY","d":[]},{"s":"HITBTC:TLMUSD","d":[]},{"s":"SPOOKYSWAP:METTIWFTM_F1E037.USD","d":[]},{"s":"BITGET:IOTXUSDT.P","d":[]},{"s":"BITFINEX:OMGBTC","d":[]},{"s":"MEXC:HIFIUSDT.P","d":[]},{"s":"QUICKSWAP:CLAMMIMATIC_158180.USD","d":[]},{"s":"GATEIO:MEMEBRCUSDT","d":[]},{"s":"COINEX:KWENTAUSDT","d":[]},{"s":"UNISWAP:DOJIMAWETH_C7AE07.USD","d":[]},{"s":"QUICKSWAP:E8WMATIC_053C90","d":[]},{"s":"UNISWAP3ETH:WETHBICO","d":[]},{"s":"KRAKEN:USDTEUR","d":[]},{"s":"UNISWAP:ONIGIRIWETH_986610.USD","d":[]},{"s":"HITBTC:ETCUSDT","d":[]},{"s":"UNISWAP3ETH:AURAWETH","d":[]},{"s":"QUICKSWAP:AXIDMAGIC_DE41E0","d":[]},{"s":"BINGX:GALUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHQORPO","d":[]},{"s":"MEXC:UNILAPSEUSDT","d":[]},{"s":"BYBIT:BNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:IXSWETH_FE4575.USD","d":[]},{"s":"UNISWAP:PARTYWETH_34B6F3.USD","d":[]},{"s":"BLOFIN:CTCUSDT.P","d":[]},{"s":"COINBASE:DOGEUSD","d":[]},{"s":"POLONIEX:WOJAKUSDT","d":[]},{"s":"COINEX:BELUSDT","d":[]},{"s":"UNISWAP3ETH:CDTWETH_04EB5B.USD","d":[]},{"s":"UNISWAP:RHEGIC2WETH_51996F","d":[]},{"s":"UNISWAP3ARBITRUM:AZVTWETH_BED440.USD","d":[]},{"s":"BITRUE:ANKRUSDT","d":[]},{"s":"GATEIO:UNISTAKEUSDT","d":[]},{"s":"UNISWAP3ETH:MZEROWETH","d":[]},{"s":"MEXC:MNTUSDT","d":[]},{"s":"BITGET:HIGHUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GENEWETH_38347F.USD","d":[]},{"s":"MEXC:DASHUSDT","d":[]},{"s":"BINANCEUS:CHZUSDT","d":[]},{"s":"UNISWAP:MKONGWETH_DAB141","d":[]},{"s":"UNISWAP3ETH:FERCWETH","d":[]},{"s":"COINEX:SLIMUSDT","d":[]},{"s":"QUICKSWAP:FUSEWETH_9AB6E8.USD","d":[]},{"s":"UNISWAP3OPTIMISM:USDCUSDT_F1F199.USD","d":[]},{"s":"QUICKSWAP:GFARM2DAI_0C7AD4.USD","d":[]},{"s":"UNISWAP3OPTIMISM:LDOWETH_8CD60B.USD","d":[]},{"s":"DELTA:SHIBUSDT.P","d":[]},{"s":"BYBIT:XRPUSD.P","d":[]},{"s":"BINANCEUS:PONDUSDT","d":[]},{"s":"BINANCE:CRVBTC","d":[]},{"s":"SPOOKYSWAP:SHADOWWFTM_B77D58","d":[]},{"s":"PHEMEX:LTCUSDT","d":[]},{"s":"HITBTC:CLTUSDT","d":[]},{"s":"HITBTC:LUNAUSDC","d":[]},{"s":"SPOOKYSWAP:ICEWFTM_623EE4.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GLORIWETH_40E313.USD","d":[]},{"s":"WHITEBIT:PORTALUSDT","d":[]},{"s":"COINEX:MONGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARHACHI","d":[]},{"s":"BITHUMB:ELKRW","d":[]},{"s":"UNISWAP3ETH:CARBWETH_A5C391.USD","d":[]},{"s":"BITFINEX:EGLDUST","d":[]},{"s":"UNISWAP3ETH:WETHSIPHER","d":[]},{"s":"COINBASE:PLUUSD","d":[]},{"s":"UNISWAP3ETH:GEARUSDT_349EE0.USD","d":[]},{"s":"UNISWAP3ETH:WETHBANANA","d":[]},{"s":"UNISWAP:BLUEYWETH_3A00D3","d":[]},{"s":"UNISWAP:SAIWETH_AD9B41","d":[]},{"s":"GATEIO:TAURUSDT","d":[]},{"s":"BINGX:FLRUSDT.P","d":[]},{"s":"COINEX:TRXUSDC","d":[]},{"s":"PANGOLIN:HCTWAVAX_0B1EFD.USD","d":[]},{"s":"UNISWAP:BUSDWETH_C2923B","d":[]},{"s":"KRAKEN:SCRTEUR","d":[]},{"s":"SPOOKYSWAP:GIZAMIM_9733F6","d":[]},{"s":"OKX:NEOUSD.P","d":[]},{"s":"UNISWAP3ETH:LORDSWETH_96842E.USD","d":[]},{"s":"UNISWAP:KONGWETH_3BA47C","d":[]},{"s":"GATEIO:PEOPLEUSDT.3S","d":[]},{"s":"BLOFIN:APEUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:UNIWETH_929FCF.USD","d":[]},{"s":"UNISWAP:OMNIXWETH_F4AB56","d":[]},{"s":"BINANCE:MATICEUR","d":[]},{"s":"POLONIEX:POLYUSD","d":[]},{"s":"COINEX:HBARUSDT","d":[]},{"s":"UNISWAP:RAZORUSDP_142390.USD","d":[]},{"s":"UNISWAP3ETH:CVXWETH","d":[]},{"s":"TRADERJOE:KINGSHITWAVAX_51746E.USD","d":[]},{"s":"UNISWAP:EETHWETH_78C2FE","d":[]},{"s":"UNISWAP3ETH:QORPOWETH","d":[]},{"s":"MEXC:TENETUSDT","d":[]},{"s":"GATEIO:CRAFTUSDT","d":[]},{"s":"UNISWAP:ADDAMSWETH_6D92DC","d":[]},{"s":"MEXC:LEVIATANBONKUSDT","d":[]},{"s":"GEMINI:ZECLTC","d":[]},{"s":"UNISWAP:RINGWETH_5CE2C2","d":[]},{"s":"BITGET:EOSUSDT","d":[]},{"s":"PIONEX:XAIUSDT.P","d":[]},{"s":"GATEIO:CYBERUSDT.3S","d":[]},{"s":"COINEX:TRIASUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:VELOWETH_0FB07E.USD","d":[]},{"s":"PHEMEX:OPUSDT","d":[]},{"s":"MEXC:XECUSDT","d":[]},{"s":"UNISWAP3ETH:BORATWETH","d":[]},{"s":"TRADERJOE:SICKOWAVAX_6DC5DD.USD","d":[]},{"s":"UNISWAP:DPIWETH_4D5EF5.USD","d":[]},{"s":"POLONIEX:AVABTC","d":[]},{"s":"WHITEBIT:OPUSDT.P","d":[]},{"s":"BTSE:GMTUSD.P","d":[]},{"s":"UNISWAP:ONEPEARLWETH_688C56.USD","d":[]},{"s":"BYBIT:PORTALUSDT.P","d":[]},{"s":"BITHUMB:NMRKRW","d":[]},{"s":"BYBIT:MVUSDT","d":[]},{"s":"PHEMEX:ACHUSDT","d":[]},{"s":"HITBTC:BCUGUSDT","d":[]},{"s":"POLONIEX:DORKUSDT","d":[]},{"s":"GATEIO:HOGEUSDT","d":[]},{"s":"OKX:CVCUSDT.P","d":[]},{"s":"PANGOLIN:KTEWAVAX_C013F5.USD","d":[]},{"s":"UNISWAP3ETH:WTAOUSDC_F763BB.USD","d":[]},{"s":"BYBIT:JTOUSDT","d":[]},{"s":"KRAKEN:AAVEBTC","d":[]},{"s":"COINBASE:MANAUSD","d":[]},{"s":"BINGX:ARBUSDT.PS","d":[]},{"s":"UNISWAP:FLASHWETH_9CB236","d":[]},{"s":"GATEIO:REIUSDT","d":[]},{"s":"UNISWAP:WOOWETH_6ADA49","d":[]},{"s":"QUICKSWAP:COLLARWMATIC_D4C903","d":[]},{"s":"UNISWAP3ETH:SAITOUSDT_19F834.USD","d":[]},{"s":"UNISWAP3ETH:RFKWETH","d":[]},{"s":"BINANCE:HOTTRY","d":[]},{"s":"UNISWAP:HYPEWETH_4CECA9","d":[]},{"s":"BINANCE:ACHUSDT","d":[]},{"s":"BTSE:XTZUSD","d":[]},{"s":"BITMEX:BCHUSDT.P","d":[]},{"s":"COINEX:LBRUSDT","d":[]},{"s":"BINANCE:LTCFDUSD","d":[]},{"s":"COINEX:ORBUSDT","d":[]},{"s":"HITBTC:IDUSDT","d":[]},{"s":"BITRUE:ALICEUSDT","d":[]},{"s":"HITBTC:ONTBTC","d":[]},{"s":"UNISWAP3ETH:EUROEUSDC_8606A6.USD","d":[]},{"s":"SPOOKYSWAP:WOOFYWFTM_FD0AB5","d":[]},{"s":"MEXC:KMONUSDT","d":[]},{"s":"SPOOKYSWAP:XTAROTWFTM_D0C08B.USD","d":[]},{"s":"BITMEX:JTOUSDT.P","d":[]},{"s":"GATEIO:APNUSDT","d":[]},{"s":"UNISWAP3ETH:NVIRWETH_9EE5F9.USD","d":[]},{"s":"UNISWAP:BBWETH_C19A07.USD","d":[]},{"s":"COINEX:CSPRBTC","d":[]},{"s":"UNISWAP3ETH:USDTDBC","d":[]},{"s":"BINANCE:PONDUSDT","d":[]},{"s":"COINBASE:SOLUSD","d":[]},{"s":"UNISWAP3ETH:LADYSWETH","d":[]},{"s":"BITKUB:AXSTHB","d":[]},{"s":"UNISWAP:TIGGWETH_5C7311.USD","d":[]},{"s":"UNISWAP:JPGDWETH_B9CF5B.USD","d":[]},{"s":"KRAKEN:SBREUR","d":[]},{"s":"KRAKEN:TEERUSD","d":[]},{"s":"ZOOMEX:SHIB1000USDT.P","d":[]},{"s":"COINBASE:MINAUSD","d":[]},{"s":"UNISWAP:MEVFREEWETH_893E96","d":[]},{"s":"BINANCE:BTCFDUSD","d":[]},{"s":"BINGX:RNDRUSDT.PS","d":[]},{"s":"UNISWAP:RAWETH_A0E793.USD","d":[]},{"s":"TRADERJOE:VTXWAVAX_9EF0C1","d":[]},{"s":"PHEMEX:PERPUSDT.P","d":[]},{"s":"GATEIO:GOLDMINERUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:ZINUWETH_0C3561.USD","d":[]},{"s":"MEXC:SCAUSDT","d":[]},{"s":"BYBIT:CRVUSDT","d":[]},{"s":"BITRUE:SUPERUSDT","d":[]},{"s":"UNISWAP3ETH:TRIBEWETH_E2C5D8.USD","d":[]},{"s":"UNISWAP:EVILPEPEWETH_98BB85","d":[]},{"s":"MEXC:KROMUSDT","d":[]},{"s":"BISWAP:SOLWBNB_3530F7","d":[]},{"s":"GATEIO:METALDRUSDT","d":[]},{"s":"UNISWAP3ETH:EXRDWETH","d":[]},{"s":"HITBTC:CHZUSDC","d":[]},{"s":"UNISWAP3ETH:WETHUSDT_C7BBEC.USD","d":[]},{"s":"UNISWAP:PEPEWETH_D6930B","d":[]},{"s":"GATEIO:USTCUSDT","d":[]},{"s":"UNISWAP:VRDWETH_D2A72B.USD","d":[]},{"s":"GATEIO:LDOUSDT.3S","d":[]},{"s":"GATEIO:DIGGUSDT","d":[]},{"s":"KRAKEN:FLOWETH","d":[]},{"s":"BITFINEX:GMMTUST","d":[]},{"s":"HITBTC:XRPETH","d":[]},{"s":"BITHUMB:LPTKRW","d":[]},{"s":"UNISWAP:SOPWETH_28D3B3.USD","d":[]},{"s":"UNISWAP:BLOCKSWETH_DAC9B2.USD","d":[]},{"s":"UNISWAP:DXTWETH_800460.USD","d":[]},{"s":"UNISWAP:BUSDWETH_C2923B.USD","d":[]},{"s":"UNISWAP3ETH:HONOUSDC","d":[]},{"s":"MEXC:ATOMUSDT","d":[]},{"s":"BITFINEX:MLNBTC","d":[]},{"s":"MEXC:MTHUSDT","d":[]},{"s":"UNISWAP3ETH:AINWETH","d":[]},{"s":"HITBTC:BNXUSDT","d":[]},{"s":"GATEIO:DEBTUSDT","d":[]},{"s":"GATEIO:REALMUSDT","d":[]},{"s":"UNISWAP:ETHEREUMWETH_5F538E","d":[]},{"s":"UNISWAP:SILLYWETH_44188D","d":[]},{"s":"GATEIO:ALICEUSDT","d":[]},{"s":"UNISWAP:GWETH_0245A2","d":[]},{"s":"MEXC:STRIPUSDT","d":[]},{"s":"GATEIO:ONITUSDT","d":[]},{"s":"GATEIO:ROSEUSDT.3L","d":[]},{"s":"MEXC:METFIBTC","d":[]},{"s":"BITRUE:MATICXRP","d":[]},{"s":"MEXC:KAFUSDT","d":[]},{"s":"BITKUB:SCRTTHB","d":[]},{"s":"GATEIO:SNTRUSDT","d":[]},{"s":"BYBIT:SUIUSDT","d":[]},{"s":"UNISWAP:GATEWETH_57E8B5.USD","d":[]},{"s":"UNISWAP3ETH:XENOWETH","d":[]},{"s":"TRADERJOE:EGSWAVAX_D7A4FC.USD","d":[]},{"s":"QUICKSWAP:BNBUSDC_40A5DF","d":[]},{"s":"UNISWAP:POWRWETH_3C442B","d":[]},{"s":"UNISWAP3ETH:USDCUSDV","d":[]},{"s":"TRADERJOE:FIREWAVAX_C71FA9.USD","d":[]},{"s":"GATEIO:GRTUSDT","d":[]},{"s":"UNISWAP:TRADWETH_311916","d":[]},{"s":"UNISWAP3ETH:USDTSCLM","d":[]},{"s":"OKX:BCHUSDT.P","d":[]},{"s":"BLOFIN:BEAMUSDT.P","d":[]},{"s":"UNISWAP:MVPWETH_2B7D0C","d":[]},{"s":"BITFINEX:AAVEUST","d":[]},{"s":"BINANCE:ORDIUSDC","d":[]},{"s":"XEXCHANGE:EXRWEGLD","d":[]},{"s":"UNISWAP:PLUGWETH_27F927.USD","d":[]},{"s":"TRADERJOE:RBXWAVAX_77D674.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SIZEWETH_E8DD5E.USD","d":[]},{"s":"UNISWAP:MTAWETH_0D0D65","d":[]},{"s":"UNISWAP3ETH:USDTUSDD","d":[]},{"s":"WHITEBIT:ARKMUSDT","d":[]},{"s":"HITBTC:SUNBTC","d":[]},{"s":"UNISWAP3ETH:STMXWETH_45A154.USD","d":[]},{"s":"KRAKEN:KSMGBP","d":[]},{"s":"UNISWAP3ETH:TKINGWETH_A2FF3D.USD","d":[]},{"s":"UNISWAP3ETH:DAVINCIWETH_506037.USD","d":[]},{"s":"COINEX:FETUSDT","d":[]},{"s":"QUICKSWAP:PIKAWMATIC_171F13.USD","d":[]},{"s":"KRAKEN:LDOUSD.PM","d":[]},{"s":"MEXC:GLMRUSDT.P","d":[]},{"s":"UNISWAP:ENIGMAWETH_AD7849.USD","d":[]},{"s":"UNISWAP3ETH:SGTWETH","d":[]},{"s":"UNISWAP:STORJWETH_AEF169","d":[]},{"s":"HITBTC:MPLUSDT","d":[]},{"s":"MEXC:DRAGONUSDT","d":[]},{"s":"TRADERJOE:NODECWAVAX_07E4A4.USD","d":[]},{"s":"GATEIO:AXLUSDT","d":[]},{"s":"COINEX:CFGUSDT","d":[]},{"s":"GATEIO:THLUSDT","d":[]},{"s":"SPOOKYSWAP:MONEYRAINWFTM_18C7A0","d":[]},{"s":"BITGET:TRXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPLAYFI","d":[]},{"s":"UNISWAP3OPTIMISM:VELOUSDC_A16582.USD","d":[]},{"s":"UNISWAP:ORBTWETH_376475","d":[]},{"s":"UNISWAP3ETH:WETHVOMBATUS","d":[]},{"s":"GATEIO:GHSTUSDT","d":[]},{"s":"GATEIO:HYDRAUSDT","d":[]},{"s":"BINANCE:ZECUSDT","d":[]},{"s":"BINANCE:MAVBTC","d":[]},{"s":"QUICKSWAP:DOGIRAWMATIC_38FE05.USD","d":[]},{"s":"ZOOMEX:GRTUSDT.P","d":[]},{"s":"BTSE:STMXUSD","d":[]},{"s":"TRADERJOE:YETIWAVAX_A429BC","d":[]},{"s":"TRADERJOE:BVICWBTCE_176624.USD","d":[]},{"s":"QUICKSWAP:OPT3WMATIC_A48CF1","d":[]},{"s":"UNISWAP:YAMAWETH_85C920.USD","d":[]},{"s":"UNISWAP3ETH:LMWRUSDC_1517BA.USD","d":[]},{"s":"BITFINEX:ALGUSD","d":[]},{"s":"UNISWAP3ETH:WETHOVR","d":[]},{"s":"UNISWAP3ETH:WETHSTARL","d":[]},{"s":"DELTA:CFXUSDT.P","d":[]},{"s":"UNISWAP:APUWETH_5CED44","d":[]},{"s":"COINEX:ORDSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHIOC","d":[]},{"s":"QUICKSWAP:BCMCWMATIC_CA3E45","d":[]},{"s":"QUICKSWAP:VSQDAI_D95331.USD","d":[]},{"s":"UNISWAP:OGZWETH_173A95.USD","d":[]},{"s":"MEXC:XVSUSDT","d":[]},{"s":"UNISWAP3ETH:MOBYWETH","d":[]},{"s":"UNISWAP3ETH:CGTWETH_B643E2.USD","d":[]},{"s":"UNISWAP:UFTWETH_99DFDE","d":[]},{"s":"BITRUE:HOTUSDT","d":[]},{"s":"UNISWAP:CITADELWETH_41A683.USD","d":[]},{"s":"UNISWAP3ETH:BULLFROGWETH_A484F3.USD","d":[]},{"s":"BINGX:BLZUSDT.P","d":[]},{"s":"HITBTC:DOVBTC","d":[]},{"s":"BINANCE:WIFTRY","d":[]},{"s":"DELTA:USDCUSDT","d":[]},{"s":"UNISWAP:OCTUSDC_8672AA","d":[]},{"s":"TRADERJOE:STGUSDC_330F77.USD","d":[]},{"s":"HITBTC:HEDGUSD","d":[]},{"s":"GATEIO:BIFIFUSDT","d":[]},{"s":"MEXC:MELDUSDT","d":[]},{"s":"MEXC:LSKUSDT.P","d":[]},{"s":"BINGX:ALGOUSDT.P","d":[]},{"s":"MEXC:LATUSDT","d":[]},{"s":"KRAKEN:SOLUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHBISC","d":[]},{"s":"UNISWAP:LUNARWETH_3B85BD.USD","d":[]},{"s":"BINANCE:KNCBTC","d":[]},{"s":"TRADERJOE:COBWAVAX_CCA0FF.USD","d":[]},{"s":"KRAKEN:ADAETH","d":[]},{"s":"UNISWAP:DONPEPEWETH_9D5DC8.USD","d":[]},{"s":"UNISWAP3ETH:WETHSOL","d":[]},{"s":"UNISWAP:NFTLWETH_AD0AF6.USD","d":[]},{"s":"UNISWAP3ETH:HARAMBEWETH","d":[]},{"s":"BYBIT:SOLUSDC","d":[]},{"s":"TRADERJOE:SKYWAVAX_471E63.USD","d":[]},{"s":"UNISWAP:CYPHERWETH_421F66.USD","d":[]},{"s":"UNISWAP:SHROOMWETH_7D611E.USD","d":[]},{"s":"PHEMEX:ALPACAUSDT.P","d":[]},{"s":"UNISWAP:BOREDWETH_87949A.USD","d":[]},{"s":"EXMO:EOSUSD","d":[]},{"s":"BITGET:WINGUSDT","d":[]},{"s":"HITBTC:BNKUSD","d":[]},{"s":"BITGET:TRUUSDT.P","d":[]},{"s":"UNISWAP:LKRWETH_670C0F","d":[]},{"s":"UNISWAP3ARBITRUM:HDNUSDT_3AF95D.USD","d":[]},{"s":"BITRUE:MATICBTC","d":[]},{"s":"BINANCE:RNDRFDUSD","d":[]},{"s":"BITRUE:QNTUSDT","d":[]},{"s":"GATEIO:VGXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPAPER","d":[]},{"s":"COINEX:BONKUSDT","d":[]},{"s":"UNISWAP3ETH:TKAIWETH","d":[]},{"s":"UNISWAP3ETH:LUCKYHEX_732732.USD","d":[]},{"s":"UNISWAP:UNITWETH_80F566.USD","d":[]},{"s":"QUICKSWAP:LDOWMATIC_A0F330.USD","d":[]},{"s":"UNISWAP3ETH:PDXWETH_AD9314.USD","d":[]},{"s":"MEXC:PLBUSDT","d":[]},{"s":"PANGOLIN:USTUSDC_E1F75E.USD","d":[]},{"s":"BITFLYER:ETHUSD","d":[]},{"s":"MEXC:NEXTUSDT","d":[]},{"s":"PIONEX:NTRNUSDT.P","d":[]},{"s":"SPOOKYSWAP:ANDREWFTM_E6E513.USD","d":[]},{"s":"ZOOMEX:RPLUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:OXWETH_C139C6.USD","d":[]},{"s":"SPOOKYSWAP:BANDWFTM_91B39D.USD","d":[]},{"s":"TRADERJOE:DONKWAVAX_893BC0","d":[]},{"s":"BITFINEX:B2MBTC","d":[]},{"s":"UNISWAP:LINUWETH_F7EF53.USD","d":[]},{"s":"UNISWAP3ETH:DAIUSDC_5777D9.USD","d":[]},{"s":"PHEMEX:ORDIUSDT.P","d":[]},{"s":"PANGOLIN:NFSGWAVAX_A1653F","d":[]},{"s":"UPBIT:ZILKRW","d":[]},{"s":"ZOOMEX:SSVUSDT.P","d":[]},{"s":"SPOOKYSWAP:RAVENUSDC_E00498","d":[]},{"s":"UNISWAP:IMGNAIWETH_E471F9","d":[]},{"s":"POLONIEX:STMXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDC_0A3695.USD","d":[]},{"s":"UNISWAP3ETH:WEB3WETH_56E6A2.USD","d":[]},{"s":"COINEX:CVXBTC","d":[]},{"s":"PIONEX:FLMUSDT.P","d":[]},{"s":"BYBIT:SNXUSDT","d":[]},{"s":"QUICKSWAP:EMTWETH_97FE54","d":[]},{"s":"KRAKEN:ETHUSD.P","d":[]},{"s":"BINANCEUS:RVNUSDT","d":[]},{"s":"MEXC:ITEMUSDT","d":[]},{"s":"HITBTC:RLCUSD","d":[]},{"s":"BLOFIN:BNXUSDT.P","d":[]},{"s":"QUICKSWAP:GHSTALPHA_C765EC","d":[]},{"s":"BITGET:DEFIUSDT","d":[]},{"s":"UNISWAP3ETH:TOKENWATCHWETH","d":[]},{"s":"POLONIEX:ETHWETH","d":[]},{"s":"XEXCHANGE:BUSDWEGLD","d":[]},{"s":"UNISWAP3ETH:ELMTWETH","d":[]},{"s":"BYBIT:OMNIUSDT","d":[]},{"s":"UNISWAP:POWELLWETH_05F155.USD","d":[]},{"s":"COINEX:TOMIUSDT","d":[]},{"s":"COINEX:LVLUSDT","d":[]},{"s":"MEXC:MASSETH","d":[]},{"s":"COINEX:ANALOSUSDT","d":[]},{"s":"TRADERJOE:VPNDWAVAX_4CD20F","d":[]},{"s":"HITBTC:YGGBTC","d":[]},{"s":"POLONIEX:DOTBTC","d":[]},{"s":"BINANCE:FORUSDT","d":[]},{"s":"UNISWAP3ETH:GEARWETH","d":[]},{"s":"MEXC:BOBYUSDT","d":[]},{"s":"MEXC:SCPTUSDT","d":[]},{"s":"UNISWAP3ETH:404BLOCKSWETH","d":[]},{"s":"UNISWAP3POLYGON:ELGUSDT_D908D9.USD","d":[]},{"s":"UNISWAP:ZIGWETH_B36EC8","d":[]},{"s":"BLOFIN:SXPUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTFUN","d":[]},{"s":"UNISWAP3ARBITRUM:FUCUSDT_903C3D.USD","d":[]},{"s":"UNISWAP:PANOWETH_DAC5DE.USD","d":[]},{"s":"UNISWAP3ETH:SHUUSDC_A1EA4A.USD","d":[]},{"s":"MEXC:DDUSDT","d":[]},{"s":"HITBTC:DOGEETH","d":[]},{"s":"WHITEBIT:BCHUSDT.P","d":[]},{"s":"UNISWAP3ETH:MYOWETH","d":[]},{"s":"BINANCE:1000SATSTRY","d":[]},{"s":"POLONIEX:USDTUSD","d":[]},{"s":"UNISWAP3ETH:POLKWETH","d":[]},{"s":"UNISWAP:TRUTHWETH_C1D93F.USD","d":[]},{"s":"PIONEX:TWTUSDT.P","d":[]},{"s":"BITSTAMP:NEARUSD","d":[]},{"s":"HITBTC:NUTEOS","d":[]},{"s":"UNISWAP3ETH:XENWETH","d":[]},{"s":"UNISWAP3ETH:BELPWETH","d":[]},{"s":"BITGET:FXSUSDT","d":[]},{"s":"BITRUE:XRPAYNETUSDT","d":[]},{"s":"PHEMEX:DOGEUSDC","d":[]},{"s":"GATEIO:MKRUSDT.3L","d":[]},{"s":"UNISWAP3ETH:DWIFWETH_8062C0.USD","d":[]},{"s":"UNISWAP:NATIWETH_33A93B.USD","d":[]},{"s":"TRADERJOE:WOOFWAVAX_13859F","d":[]},{"s":"UNISWAP:RNGDWETH_6C08D7.USD","d":[]},{"s":"UNISWAP3ETH:WETHMDT","d":[]},{"s":"BINANCE:PYTHBTC","d":[]},{"s":"UNISWAP3POLYGON:PODOWMATIC_9520DB.USD","d":[]},{"s":"GATEIO:WEXUSDT","d":[]},{"s":"GATEIO:CHAXUSDT","d":[]},{"s":"BINGX:KLAYUSDT.P","d":[]},{"s":"UNISWAP:LPAWWETH_471448","d":[]},{"s":"BITGET:BTCUSDC","d":[]},{"s":"BITGET:RDNTUSDT","d":[]},{"s":"BYBIT:POWRUSDT.P","d":[]},{"s":"UNISWAP:AKROWETH_8CB77E.USD","d":[]},{"s":"UNISWAP3ETH:PHTRWETH","d":[]},{"s":"HITBTC:LCXUSD","d":[]},{"s":"UNISWAP:MUSKUSDT_D6E172","d":[]},{"s":"UNISWAP:JESUSWETH_8A9975.USD","d":[]},{"s":"GATEIO:COSUSDT","d":[]},{"s":"QUICKSWAP:DAIUSDT_59153F","d":[]},{"s":"BYBIT:HFTUSDT.P","d":[]},{"s":"BYBIT:XRPUSDT.3L","d":[]},{"s":"BYBIT:LFWUSDT","d":[]},{"s":"UNISWAP:ASTROWETH_7DF4A1","d":[]},{"s":"POLONIEX:LAZIOUSDT","d":[]},{"s":"PANGOLIN:TRYBWAVAX_6B4167.USD","d":[]},{"s":"UNISWAP3ETH:ICHIWBTC","d":[]},{"s":"POLONIEX:PEPEAIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWNXM","d":[]},{"s":"UNISWAP:BADWETH_29C830.USD","d":[]},{"s":"QUICKSWAP:MEMWETH_B0C446.USD","d":[]},{"s":"UNISWAP:SALEWETH_AAE5F8","d":[]},{"s":"UNISWAP:GEMINIWETH_5F21BE","d":[]},{"s":"UNISWAP3ETH:WETH1CAT","d":[]},{"s":"BINANCE:LINKBRL","d":[]},{"s":"GATEIO:LOWBUSDT","d":[]},{"s":"BINGX:CYBERUSDT.P","d":[]},{"s":"KRAKEN:USDTJPY","d":[]},{"s":"UNISWAP:FVTWETH_75001B","d":[]},{"s":"PHEMEX:AEVOUSDT","d":[]},{"s":"UNISWAP3ETH:AIWETH_5D9F62.USD","d":[]},{"s":"MEXC:ZETRIXUSDT","d":[]},{"s":"QUICKSWAP:BITEWETH_2D7D4D","d":[]},{"s":"UNISWAP3ETH:DAVEWETH_12B791.USD","d":[]},{"s":"HITBTC:HOOKUSDT","d":[]},{"s":"COINEX:AIOZUSDT","d":[]},{"s":"BYBIT:OCEANUSDT.P","d":[]},{"s":"UNISWAP:OTSEAWETH_D46934.USD","d":[]},{"s":"UNISWAP:NUWETH_3A8AFC","d":[]},{"s":"KRAKEN:BTCUSDU2024","d":[]},{"s":"GATEIO:LNDXUSDT","d":[]},{"s":"GATEIO:STPTUSDT","d":[]},{"s":"MEXC:PEPECOINUSDT","d":[]},{"s":"BTSE:ACHUSD","d":[]},{"s":"UNISWAP3POLYGON:ZRFWMATIC_B7EF59.USD","d":[]},{"s":"UNISWAP:PEPEINUWETH_FC06EA","d":[]},{"s":"KRAKEN:BCHUSD.P","d":[]},{"s":"BYBIT:COREUSDT.P","d":[]},{"s":"TRADERJOE:BAYUSDC_02F9AC","d":[]},{"s":"UNISWAP3ETH:1INCHWETH","d":[]},{"s":"COINEX:NYMUSDT","d":[]},{"s":"UNISWAP3ETH:NOTEUSDT_DA26AD.USD","d":[]},{"s":"BINANCE:RAREBTC","d":[]},{"s":"BITHUMB:MASKKRW","d":[]},{"s":"PANGOLIN:SPOREWAVAX_0A6317.USD","d":[]},{"s":"KRAKEN:LTCUSDM2024","d":[]},{"s":"POLONIEX:ALPACAUSDT","d":[]},{"s":"COINEX:DYDXUSDT","d":[]},{"s":"PHEMEX:BIGTIMEUSDT","d":[]},{"s":"MEXC:ADEXUSDT","d":[]},{"s":"UNISWAP:AIWETH_CEDE28","d":[]},{"s":"TRADERJOE:LEOWAVAX_E018D3","d":[]},{"s":"KRAKEN:HNTEUR","d":[]},{"s":"UNISWAP3ETH:WETHFPIS","d":[]},{"s":"UNISWAP3ETH:WETHRTH","d":[]},{"s":"BINANCEUS:IOTAUSDT","d":[]},{"s":"BINANCE:PSGUSDT","d":[]},{"s":"QUICKSWAP:QUICKWETH_1BD06B","d":[]},{"s":"GATEIO:AKTUSDT","d":[]},{"s":"KRAKEN:KSMBTC","d":[]},{"s":"BINANCE:SYNUSDT","d":[]},{"s":"ZOOMEX:IDUSDT.P","d":[]},{"s":"UNISWAP3ETH:BTRFLYWETH_3E6E23.USD","d":[]},{"s":"UNISWAP:RENAWETH_BC2C53","d":[]},{"s":"BINANCEUS:OPUSDT","d":[]},{"s":"COINBASE:LINKEUR","d":[]},{"s":"HITBTC:TONCOINBTC","d":[]},{"s":"UNISWAP3ETH:HUSKYWETH","d":[]},{"s":"DERIBIT:BTCUSD29H2024","d":[]},{"s":"UNISWAP3POLYGON:TXAGUSDC_6CD223.USD","d":[]},{"s":"UNISWAP:DOGEPWETH_4C581F.USD","d":[]},{"s":"UNISWAP3ETH:FLOORWETH","d":[]},{"s":"MEXC:ETCPOWUSDT","d":[]},{"s":"SPOOKYSWAP:CFIWFTM_FB7826.USD","d":[]},{"s":"MEXC:APEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHEEFI","d":[]},{"s":"BLOFIN:JUPUSDT.P","d":[]},{"s":"UNISWAP:UPAIWETH_AA9009.USD","d":[]},{"s":"UNISWAP3POLYGON:AGEURUSDC_3FA147.USD","d":[]},{"s":"POLONIEX:WSTREETBABYUSDT","d":[]},{"s":"COINEX:ZYNUSDT","d":[]},{"s":"WHITEBIT:TRXETH","d":[]},{"s":"BINANCE:EURAEUR","d":[]},{"s":"MEXC:GQUSDT","d":[]},{"s":"UNISWAP:KALLYWETH_9B2481","d":[]},{"s":"BLOFIN:UNIUSDT.P","d":[]},{"s":"MEXC:WRKXUSDT","d":[]},{"s":"GATEIO:GFIUSDT","d":[]},{"s":"UNISWAP:STRKWETH_FF734D","d":[]},{"s":"UNISWAP:GCOTICOTI_7335E5","d":[]},{"s":"PHEMEX:FORTHUSDT.P","d":[]},{"s":"MEXC:GAXUSDT","d":[]},{"s":"KRAKEN:NANOETH","d":[]},{"s":"UNISWAP3ETH:WETHGETH","d":[]},{"s":"BINANCE:SPELLUSDT","d":[]},{"s":"WHITEBIT:LTCUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:NEXTUSDC_A55847.USD","d":[]},{"s":"UNISWAP3ETH:CTSIWETH","d":[]},{"s":"BITFINEX:LDOBTC","d":[]},{"s":"UNISWAP3ETH:WETHFUND","d":[]},{"s":"HITBTC:LTCETH","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICARB_BB4B9E.USD","d":[]},{"s":"XEXCHANGE:ZPAYUSDC","d":[]},{"s":"GATEIO:JOYUSDT","d":[]},{"s":"UNISWAP:FACWETH_A924E5","d":[]},{"s":"UNISWAP3ETH:SENDUSDT","d":[]},{"s":"BINANCE:HARDBTC","d":[]},{"s":"TRADERJOE:LUCKYWAVAX_374AF2.USD","d":[]},{"s":"UNISWAP:PMWETH_7939BB","d":[]},{"s":"UNISWAP3ETH:USDTZCHF","d":[]},{"s":"GATEIO:COTIUSDT","d":[]},{"s":"BLOFIN:SUSHIUSDT.P","d":[]},{"s":"GATEIO:BCNUSDT","d":[]},{"s":"UNISWAP:KETWETH_5A012D.USD","d":[]},{"s":"GATEIO:HPBUSDT","d":[]},{"s":"BINANCE:DYMUSDT","d":[]},{"s":"BITGET:AZITUSDT","d":[]},{"s":"UNISWAP:LPTWETH_755C1A","d":[]},{"s":"UNISWAP3ETH:PSALEWETH","d":[]},{"s":"TRADERJOE:BEAMUSDC_B60511.USD","d":[]},{"s":"MEXC:RAREUSDT","d":[]},{"s":"UNISWAP3ETH:HOMEUSDC_D89278.USD","d":[]},{"s":"OKX:MANAUSDT.P","d":[]},{"s":"TRADERJOE:EVBFLD_F12961","d":[]},{"s":"BINANCE:TRXETH","d":[]},{"s":"GATEIO:WAGYUUSDT","d":[]},{"s":"UNISWAP3POLYGON:WBTCWETH_FE3436.USD","d":[]},{"s":"MEXC:ETHBTC","d":[]},{"s":"MEXC:EYTUSDT","d":[]},{"s":"COINEX:KMDUSDT","d":[]},{"s":"UNISWAP3ETH:HEHEWETH","d":[]},{"s":"UNISWAP:SHIBWIFWETH_C273DD","d":[]},{"s":"UNISWAP3ETH:AXLUSDC_975C82.USD","d":[]},{"s":"MEXC:VIXUSDT","d":[]},{"s":"COINEX:IRISUSDT","d":[]},{"s":"BITGET:JASMYUSDT","d":[]},{"s":"QUICKSWAP:DAFIWMATIC_19DE52","d":[]},{"s":"WHITEBIT:WNXMUSDT","d":[]},{"s":"HITBTC:ALIUSDT","d":[]},{"s":"TRADERJOE:SNCTWAVAX_D81425.USD","d":[]},{"s":"COINEX:ANKRUSDT","d":[]},{"s":"UNISWAP:RSTWETH_0F027D.USD","d":[]},{"s":"UNISWAP3ETH:HOTUSDC","d":[]},{"s":"ZOOMEX:JASMYUSDT.P","d":[]},{"s":"GATEIO:OBTUSDT","d":[]},{"s":"PHEMEX:API3USDT.P","d":[]},{"s":"BITFINEX:STGBTC","d":[]},{"s":"UNISWAP3ETH:KATAWETH_9507F5.USD","d":[]},{"s":"BITFINEX:AAVEBTC","d":[]},{"s":"MEXC:AUDIOUSDT.P","d":[]},{"s":"KRAKEN:RENUSD","d":[]},{"s":"UNISWAP3ETH:ZENFWETH","d":[]},{"s":"WHITEBIT:THETAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GUSDCGDAI_F2C8C0.USD","d":[]},{"s":"UNISWAP3ETH:SDAOUSDC","d":[]},{"s":"BITFINEX:AXSUST.P","d":[]},{"s":"GATEIO:HMXUSDT","d":[]},{"s":"UNISWAP:HAOWETH_0B0BF9.USD","d":[]},{"s":"UNISWAP:BABYSTRKWETH_2D33EF","d":[]},{"s":"QUICKSWAP:GCRUSDC_57F34A","d":[]},{"s":"UNISWAP3ETH:MINERWETH_732276.USD","d":[]},{"s":"UNISWAP:LILAWETH_0BEE64","d":[]},{"s":"SPOOKYSWAP:CRVWFTM_B471AC","d":[]},{"s":"BYBIT:GLMRUSDT","d":[]},{"s":"UNISWAP:COCOWETH_0FBC0A","d":[]},{"s":"QUICKSWAP:ISKYUSDC_066B66","d":[]},{"s":"COINEX:CWARUSDT","d":[]},{"s":"PIONEX:SPELLUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCUNIVERSE","d":[]},{"s":"GATEIO:IAZUKIUSDT","d":[]},{"s":"GATEIO:LOOPUSDT","d":[]},{"s":"QUICKSWAP:NSTARSUSDC_31C5B6","d":[]},{"s":"WHITEBIT:MATICBTC","d":[]},{"s":"UNISWAP3POLYGON:WSTETHWETH_993DEF.USD","d":[]},{"s":"UNISWAP3ETH:GELWETH","d":[]},{"s":"UNISWAP:POLSWETH_FFA98A","d":[]},{"s":"HITBTC:EVERUSDT","d":[]},{"s":"QUICKSWAP:PSPWMATIC_7AFC06.USD","d":[]},{"s":"UNISWAP3ETH:WETHZAP","d":[]},{"s":"PHEMEX:ACEUSDT.P","d":[]},{"s":"TRADERJOE:ABAKSWAVAX_A5258C.USD","d":[]},{"s":"MEXC:SDUSDT","d":[]},{"s":"BYBIT:EGOUSDT","d":[]},{"s":"MEXC:NFTARTUSDT","d":[]},{"s":"BITGET:CHAPZUSDT","d":[]},{"s":"UNISWAP3ETH:BASEDAIWETH","d":[]},{"s":"UNISWAP3ETH:USDCUSDE","d":[]},{"s":"MEXC:KICKSUSDT","d":[]},{"s":"SPOOKYSWAP:ICEDOGEWFTM_13597C","d":[]},{"s":"MEXC:LITUSDT.P","d":[]},{"s":"MEXC:MLUSDT","d":[]},{"s":"MEXC:RBWUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSDEX","d":[]},{"s":"UNISWAP:BABYDOGE20WETH_D215BC","d":[]},{"s":"UNISWAP:DATAWETH_862879","d":[]},{"s":"UNISWAP3ETH:LINKWETH_A6CC3C.USD","d":[]},{"s":"UNISWAP:LOOTWETH_5D7BDE.USD","d":[]},{"s":"UNISWAP3ETH:JPYCUSDC","d":[]},{"s":"UNISWAP:XERSWETH_39D7A3","d":[]},{"s":"UNISWAP3ETH:DAIEURE","d":[]},{"s":"GATEIO:SRPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSTMX","d":[]},{"s":"UNISWAP:FIREWETH_788149.USD","d":[]},{"s":"UNISWAP3ARBITRUM:AIDOWETH_25FE71.USD","d":[]},{"s":"UNISWAP3ETH:DYADUSDC","d":[]},{"s":"GATEIO:SOLOUSDT","d":[]},{"s":"KRAKEN:INTRUSD","d":[]},{"s":"PIONEX:UNIETH.P","d":[]},{"s":"BITHUMB:SNTKRW","d":[]},{"s":"BINANCE:CREAMUSDT","d":[]},{"s":"GEMINI:ETHGBP","d":[]},{"s":"MEXC:VRTXUSDT","d":[]},{"s":"UNISWAP3ETH:INSTWETH_C1CD3D.USD","d":[]},{"s":"GATEIO:XCURUSDT","d":[]},{"s":"UNISWAP:PYROWETH_11DC5E","d":[]},{"s":"BITFINEX:ICPUSD","d":[]},{"s":"BYBIT:OPUSDC.P","d":[]},{"s":"GATEIO:STIUSDT","d":[]},{"s":"BITHUMB:OPKRW","d":[]},{"s":"UNISWAP3ETH:TEAMDAI","d":[]},{"s":"BINANCE:WIFBTC","d":[]},{"s":"UNISWAP3ETH:AXSWETH","d":[]},{"s":"TRADERJOE:GRAPEWAVAX_F79E0F.USD","d":[]},{"s":"GATEIO:BORAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAGII","d":[]},{"s":"UNISWAP3ETH:WETHSHAPE","d":[]},{"s":"UNISWAP3ETH:GHOUSDC","d":[]},{"s":"GATEIO:SUGARBUSDT","d":[]},{"s":"COINEX:VETUSDT","d":[]},{"s":"HITBTC:SUBETH","d":[]},{"s":"WHITEBIT:FILBTC","d":[]},{"s":"BYBIT:MCTUSDT","d":[]},{"s":"POLONIEX:IOTUSDT","d":[]},{"s":"GATEIO:ISKUSDT","d":[]},{"s":"UNISWAP:DOGPADWETH_4C7E62.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GMDUSDCGMUSD_5B7B71.USD","d":[]},{"s":"TRADERJOE:ANTGWAVAX_59A2DB","d":[]},{"s":"COINEX:ALDUSDT","d":[]},{"s":"COINEX:ZANOUSDT","d":[]},{"s":"QUICKSWAP:MAWETHMAUSDC_95E6C3.USD","d":[]},{"s":"UNISWAP:BBPPWETH_C78A4F.USD","d":[]},{"s":"QUICKSWAP:MOONWMATIC_9EC602.USD","d":[]},{"s":"BINANCE:RLCUSDT","d":[]},{"s":"TIMEX:TIMEETH","d":[]},{"s":"BITHUMB:BCHKRW","d":[]},{"s":"GATEIO:MENGOUSDT","d":[]},{"s":"UNISWAP:BUDDYWETH_996684","d":[]},{"s":"BINANCE:ORDIUSDT","d":[]},{"s":"PIONEX:RADUSDT.P","d":[]},{"s":"HITBTC:XLMETH","d":[]},{"s":"UNISWAP:TRBNRWETH_107DDC","d":[]},{"s":"BINANCE:XVGTUSD","d":[]},{"s":"BTSE:APTUSD","d":[]},{"s":"GATEIO:TIPSUSDT","d":[]},{"s":"MEXC:DCBUSDT","d":[]},{"s":"QUICKSWAP:LFGUSDT_D57573","d":[]},{"s":"UNISWAP:UNIXWETH_DD4C04.USD","d":[]},{"s":"GATEIO:APEUSDT","d":[]},{"s":"UNISWAP3POLYGON:WRLDWETH_017E2B.USD","d":[]},{"s":"HITBTC:MKRUSDT","d":[]},{"s":"UNISWAP3ETH:PUFETHWETH_BDB04E.USD","d":[]},{"s":"SPOOKYSWAP:XHNRWFTM_901B23.USD","d":[]},{"s":"UNISWAP:PLUMSWETH_DAEB7F.USD","d":[]},{"s":"GATEIO:PMONUSDT","d":[]},{"s":"TRADERJOE:RPEPEWAVAX_C1B9AD","d":[]},{"s":"KRAKEN:USTUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:LONGKINGWETH_8CD83C.USD","d":[]},{"s":"WOONETWORK:PEPEUSDT","d":[]},{"s":"UNISWAP:ORDIFIWETH_76C849","d":[]},{"s":"UNISWAP:CRYOWETH_6FCEE8","d":[]},{"s":"UNISWAP:XYUSDC_BD7DA3","d":[]},{"s":"BINGX:10000000AIDOGEUSDT.PS","d":[]},{"s":"DELTA:FTMUSDT.P","d":[]},{"s":"UNISWAP:INXWETH_F8E0B5.USD","d":[]},{"s":"GEMINI:ZRXUSD","d":[]},{"s":"HITBTC:DOTETH","d":[]},{"s":"UNISWAP3ETH:USDTBLUR","d":[]},{"s":"UNISWAP:GMEWETH_030D4F","d":[]},{"s":"UNISWAP:WARPWETH_A469D7","d":[]},{"s":"UNISWAP:QUINNWETH_427237.USD","d":[]},{"s":"UNISWAP:PREWETH_F24895.USD","d":[]},{"s":"UNISWAP3POLYGON:RMVUSDT_F1BE86.USD","d":[]},{"s":"KRAKEN:OXYUSD","d":[]},{"s":"UNISWAP3ETH:SPCUSDC","d":[]},{"s":"HITBTC:BSVBTC","d":[]},{"s":"MEXC:MILKUSDT","d":[]},{"s":"SPOOKYSWAP:BADGERICE_1B07D5.USD","d":[]},{"s":"COINEX:SYNUSDT","d":[]},{"s":"BITGET:LTCUSD.P","d":[]},{"s":"BINGX:ZRXUSDT.PS","d":[]},{"s":"UNISWAP:OHMIWETH_1AAC77.USD","d":[]},{"s":"UNISWAP3ETH:WETHMINER","d":[]},{"s":"UNISWAP:SIDEWETH_999321","d":[]},{"s":"PHEMEX:SUSHIUSDC","d":[]},{"s":"HITBTC:IPMBUSDT","d":[]},{"s":"UNISWAP3POLYGON:AXLUSDCUSDC_647FB0.USD","d":[]},{"s":"UNISWAP3ETH:SWKWETH","d":[]},{"s":"MEXC:GOTGUSDT","d":[]},{"s":"UNISWAP3ETH:TRIBEFEI","d":[]},{"s":"UNISWAP3ETH:RNDUSDC_35D86D.USD","d":[]},{"s":"UNISWAP3ETH:WETHTONCOIN","d":[]},{"s":"GATEIO:VMPXUSDT","d":[]},{"s":"UPBIT:JSTKRW","d":[]},{"s":"MEXC:1INCHUSDT.P","d":[]},{"s":"POLONIEX:DYPUSDT","d":[]},{"s":"UNISWAP3POLYGON:AGCWMATIC_EECB81.USD","d":[]},{"s":"BITSTAMP:BANDUSD","d":[]},{"s":"BINANCE:ARPATRY","d":[]},{"s":"HITBTC:IDRTUSD","d":[]},{"s":"UNISWAP3POLYGON:BONSAIWMATIC_7A73F0.USD","d":[]},{"s":"UNISWAP3ETH:WETHDACXI","d":[]},{"s":"UNISWAP:RENAWETH_BC2C53.USD","d":[]},{"s":"WHITEBIT:LPTUSDT","d":[]},{"s":"COINEX:BURGERUSDT","d":[]},{"s":"KRAKEN:BSXUSD","d":[]},{"s":"HITBTC:DYDXUSD","d":[]},{"s":"UNISWAP:CELWETH_A5E79B.USD","d":[]},{"s":"BITHUMB:AGIKRW","d":[]},{"s":"MEXC:VUZZUSDT","d":[]},{"s":"GATEIO:MXCUSDT","d":[]},{"s":"UNISWAP:GEKEWETH_DAD1BF.USD","d":[]},{"s":"UNISWAP:ECHOWETH_D634A5.USD","d":[]},{"s":"BINGX:JOEUSDT.P","d":[]},{"s":"COINBASE:ALGOGBP","d":[]},{"s":"TRADERJOE:COQWAVAX_41AB86","d":[]},{"s":"UNISWAP:GENIEWETH_F21D9D.USD","d":[]},{"s":"UNISWAP3ETH:WETHWMC","d":[]},{"s":"UNISWAP3ETH:PANDORAWETH_1DF4C6.USD","d":[]},{"s":"MEXC:XVGUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSWAP","d":[]},{"s":"GATEIO:FNSAUSDT","d":[]},{"s":"GATEIO:CAPSUSDT","d":[]},{"s":"UNISWAP:PECHUWETH_9B07FA","d":[]},{"s":"COINEX:REEFUSDC","d":[]},{"s":"BITSTAMP:LTCBTC","d":[]},{"s":"BITFINEX:AXSUSD","d":[]},{"s":"UNISWAP3ETH:WETHPAS","d":[]},{"s":"UNISWAP:SFDWETH_B5D39F.USD","d":[]},{"s":"PHEMEX:IMXUSDT","d":[]},{"s":"MEXC:SLGUSDT","d":[]},{"s":"BITFINEX:FTMUSD","d":[]},{"s":"BINANCE:MATICTRY","d":[]},{"s":"COINEX:GFUSDT","d":[]},{"s":"TRADERJOE:ISAWAVAX_9155F4","d":[]},{"s":"BITGET:GRTUSDT.P","d":[]},{"s":"UNISWAP:UFIWETH_9123D8","d":[]},{"s":"UNISWAP:FTX20WETH_EA1FC3.USD","d":[]},{"s":"UNISWAP3ETH:WRLDTOPIA_59B88E.USD","d":[]},{"s":"UNISWAP3ETH:BTREEWBTC","d":[]},{"s":"BINANCEUS:DOGEBTC","d":[]},{"s":"UNISWAP3ETH:WTONWETH","d":[]},{"s":"HITBTC:BTGUSDT","d":[]},{"s":"MEXC:REDUSDT","d":[]},{"s":"UNISWAP:DMAIWETH_12C02A","d":[]},{"s":"MEXC:WBTCUSDT","d":[]},{"s":"UNISWAP:OXYWETH_A03154.USD","d":[]},{"s":"BINANCE:LRCBTC","d":[]},{"s":"UNISWAP3POLYGON:CBYUSDC_47726F.USD","d":[]},{"s":"GATEIO:CMPUSDT","d":[]},{"s":"BINANCE:INJBTC","d":[]},{"s":"UNISWAP3ETH:MCBEAM_A46860.USD","d":[]},{"s":"MEXC:HIUSDT","d":[]},{"s":"BINANCE:INJBNB","d":[]},{"s":"UNISWAP:ASTXWETH_68E4AF.USD","d":[]},{"s":"TRADERJOE:QIWAVAX_277451.USD","d":[]},{"s":"TRADERJOE:BALLWAVAX_05A9AE.USD","d":[]},{"s":"MEXC:KLAYUSDC","d":[]},{"s":"BYBIT:FILUSDT.P","d":[]},{"s":"MEXC:RIBUSDT","d":[]},{"s":"BYBIT:CELOUSDT","d":[]},{"s":"PIONEX:WLDUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:WBTCWETH_4F28EE.USD","d":[]},{"s":"UNISWAP:HASHWETH_92B8CE.USD","d":[]},{"s":"KRAKEN:IMXEUR","d":[]},{"s":"HITBTC:OKBUSDT","d":[]},{"s":"UNISWAP3POLYGON:NEUYWBTC_72D602.USD","d":[]},{"s":"GATEIO:MULTIUSDT","d":[]},{"s":"UNISWAP:OCWWETH_6F709F.USD","d":[]},{"s":"BINANCE:BTCTUSD","d":[]},{"s":"UNISWAP:HEDGEWETH_26A0CB.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WETHUSDC_94AD9A.USD","d":[]},{"s":"HITBTC:BANDUSD","d":[]},{"s":"OKX:NMRUSDT.P","d":[]},{"s":"MEXC:BELUSDT","d":[]},{"s":"COINEX:THETAUSDT","d":[]},{"s":"TRADERJOE:AAVAXCWAVAX_290927","d":[]},{"s":"UNISWAP:CAPOWETH_8C297D.USD","d":[]},{"s":"UNISWAP:DOEWETH_9D9681","d":[]},{"s":"MEXC:QTXUSDT","d":[]},{"s":"UNISWAP3POLYGON:WIFIUSDC_CF0BB9.USD","d":[]},{"s":"UNISWAP:KINGDOMWETH_7AC466.USD","d":[]},{"s":"UNISWAP:HEMULEWETH_672FEF.USD","d":[]},{"s":"XEXCHANGE:BTOWEGLD","d":[]},{"s":"BITFINEX:BTCBTC","d":[]},{"s":"BITFINEX:CELOUSD","d":[]},{"s":"WHITEBIT:ALTUSDT","d":[]},{"s":"PHEMEX:CHRUSDT.P","d":[]},{"s":"UNISWAP:TRUCKWETH_F21941.USD","d":[]},{"s":"UNISWAP3ETH:DEFIWETH","d":[]},{"s":"HITBTC:AZEROUSDT","d":[]},{"s":"TRADERJOE:UNIQOCWAVAX_D4359D","d":[]},{"s":"KRAKEN:AUDIOEUR","d":[]},{"s":"POLONIEX:DCRBTC","d":[]},{"s":"SPOOKYSWAP:BEFTMWFTM_B5512E","d":[]},{"s":"BITGET:IDUSDT","d":[]},{"s":"UNISWAP:HOLAWETH_DABB0B.USD","d":[]},{"s":"MEXC:MNRUSDT","d":[]},{"s":"UNISWAP:LONGWETH_DCB603.USD","d":[]},{"s":"COINEX:COMUSDT","d":[]},{"s":"UNISWAP:UNIVERSEWETH_69CB46","d":[]},{"s":"MEXC:BANUSDT","d":[]},{"s":"UNISWAP:ARRKYPEPE_802191.USD","d":[]},{"s":"HITBTC:RFRUSD","d":[]},{"s":"HITBTC:EQXBTC","d":[]},{"s":"OKX:CSPRUSDT.P","d":[]},{"s":"BITSTAMP:ETH2ETH","d":[]},{"s":"BINANCE:AITRY","d":[]},{"s":"UNISWAP:CPDUSDT_F39F37","d":[]},{"s":"UNISWAP:BUNDLWETH_A7F1C8","d":[]},{"s":"GATEIO:SOULSUSDT","d":[]},{"s":"MEXC:UPYUSDT","d":[]},{"s":"UNISWAP:NHUBWETH_E7325B.USD","d":[]},{"s":"UNISWAP3ETH:SIPHERWETH_3F9312.USD","d":[]},{"s":"QUICKSWAP:CVCUSDT_068CBE","d":[]},{"s":"TRADERJOE:LUNAWAVAX_DFA048.USD","d":[]},{"s":"MEXC:PIXELUSDT","d":[]},{"s":"UNISWAP3POLYGON:AGEURUSDC_9D2350.USD","d":[]},{"s":"MEXC:404AUSDT","d":[]},{"s":"UNISWAP3POLYGON:DEGWMATIC_70E4E7.USD","d":[]},{"s":"UNISWAP3ETH:SHEETPUSDC_ED16FC.USD","d":[]},{"s":"UNISWAP:SUNCWETH_AF5A74.USD","d":[]},{"s":"GATEIO:QTCONUSDT","d":[]},{"s":"UNISWAP:BEEPWETH_CFDC42","d":[]},{"s":"MEXC:MMMUSDT","d":[]},{"s":"BYBIT:GMXUSDT","d":[]},{"s":"UNISWAP:CHZWETH_FF5871.USD","d":[]},{"s":"ZOOMEX:ZILUSDT.P","d":[]},{"s":"MEXC:ZENITHUSDT","d":[]},{"s":"UNISWAP:CONVERGEWETH_F55D35","d":[]},{"s":"HITBTC:XRPEURS","d":[]},{"s":"BINANCE:BATBTC","d":[]},{"s":"TRADERJOE:QEWAVAX_29DD14.USD","d":[]},{"s":"SPOOKYSWAP:BOOWFTM_EC7178","d":[]},{"s":"UNISWAP:KARMAWETH_784670.USD","d":[]},{"s":"BINGX:PERPUSDT.PS","d":[]},{"s":"WHITEBIT:BTCUSDT.P","d":[]},{"s":"POLONIEX:BNBUSDT","d":[]},{"s":"BLOFIN:CYBERUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:OMNIWETH_D7FBAE.USD","d":[]},{"s":"BINANCEUS:SUIUSDT","d":[]},{"s":"BINANCE:BLURUSDT","d":[]},{"s":"UNISWAP:RLYWETH_27FD08","d":[]},{"s":"UNISWAP:SMRTWETH_FAAD22.USD","d":[]},{"s":"KRAKEN:FETEUR","d":[]},{"s":"TRADERJOE:BORKWAVAX_D93E55","d":[]},{"s":"UNISWAP3POLYGON:PYRWMATIC_941061.USD","d":[]},{"s":"UNISWAP:SOVWETH_F126AC","d":[]},{"s":"UNISWAP:MILKWETH_5BEAE4","d":[]},{"s":"UNISWAP3ETH:WETHBAG","d":[]},{"s":"UNISWAP3ETH:USDTINSP","d":[]},{"s":"UNISWAP:GYOSHIWETH_EA9DB7.USD","d":[]},{"s":"UNISWAP:LINKWETH_A2107F.USD","d":[]},{"s":"UNISWAP3ETH:POLSWETH","d":[]},{"s":"UNISWAP3ETH:WETHLBP","d":[]},{"s":"QUICKSWAP:JRTOWMATIC_A9E4AC","d":[]},{"s":"UNISWAP:BLMUSDC_454BD6","d":[]},{"s":"UNISWAP3ETH:PSYCHOWETH_E51E1B.USD","d":[]},{"s":"UNISWAP3ETH:WETHELON","d":[]},{"s":"BINANCE:RONINTRY","d":[]},{"s":"QUICKSWAP:GMUSDC_66EAE4","d":[]},{"s":"UNISWAP3ETH:WETHEUL","d":[]},{"s":"BLOFIN:DENTUSDT.P","d":[]},{"s":"GATEIO:OPUSDT","d":[]},{"s":"GATEIO:FIREUSDT","d":[]},{"s":"HITBTC:PARTUSD","d":[]},{"s":"BITGET:ARTYUSDT","d":[]},{"s":"QUICKSWAP:SIGNWMATIC_B21482","d":[]},{"s":"UNISWAP3ETH:USDCXBASKET","d":[]},{"s":"COINBASE:APEUSDT","d":[]},{"s":"PHEMEX:DEGOUSDT","d":[]},{"s":"BYBIT:LADYSUSDT","d":[]},{"s":"GATEIO:ATOLOUSDT","d":[]},{"s":"SPOOKYSWAP:FR0XWFTM_579A96.USD","d":[]},{"s":"UNISWAP:HDRNHDRN_493F9B","d":[]},{"s":"UNISWAP:VIRALWETH_C7F635","d":[]},{"s":"BITMEX:AVAXUSD.P","d":[]},{"s":"UNISWAP:SHADOWCATSWETH_0A3618.USD","d":[]},{"s":"UNISWAP3ARBITRUM:L2DAOWETH_475F87.USD","d":[]},{"s":"UNISWAP3POLYGON:LFTUSDT_8520ED.USD","d":[]},{"s":"COINBASE:ANKREUR","d":[]},{"s":"BINANCEUS:LPTUSDT","d":[]},{"s":"BITRUE:BCHBTC","d":[]},{"s":"BITRUE:APEXRP","d":[]},{"s":"KRAKEN:LINKUSD.PM","d":[]},{"s":"UNISWAP3OPTIMISM:SUNNYWETH_F23FAC.USD","d":[]},{"s":"UNISWAP3ETH:USDCLEOX","d":[]},{"s":"UNISWAP:RATWETH_1CACE5.USD","d":[]},{"s":"COINBASE:AXSUSDT","d":[]},{"s":"QUICKSWAP:GMEEASTRAFER_346E2F","d":[]},{"s":"UNISWAP3ETH:USDCPPAY","d":[]},{"s":"MEXC:GTRSUSDT","d":[]},{"s":"PIONEX:AXLUSDT.P","d":[]},{"s":"GATEIO:ONTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPP","d":[]},{"s":"UNISWAP3ETH:MRFWETH_DB1D1C.USD","d":[]},{"s":"BINANCE:SUPERBTC","d":[]},{"s":"UNISWAP:RICEWETH_4581CE","d":[]},{"s":"UNISWAP:SHIELDWETH_F5C927","d":[]},{"s":"SPOOKYSWAP:FLIBEROWFTM_8A3422.USD","d":[]},{"s":"UNISWAP:GETHWETH_408D1F.USD","d":[]},{"s":"UNISWAP3POLYGON:JPYCUSDC_286AF3.USD","d":[]},{"s":"HITBTC:NEARUSD","d":[]},{"s":"BISWAP:ANKRBNBANKR_7CF792.USD","d":[]},{"s":"UNISWAP3ETH:ETHTCG2WETH_EE7EBC.USD","d":[]},{"s":"UNISWAP3ETH:STETHUSDC_6C83B0.USD","d":[]},{"s":"UNISWAP3ETH:POLWETH","d":[]},{"s":"HITBTC:FREEUSDT","d":[]},{"s":"UNISWAP3ETH:WCFGUSDC","d":[]},{"s":"HITBTC:LUNAUSDT","d":[]},{"s":"UNISWAP:SUBFWETH_86E4A6","d":[]},{"s":"BITGET:TONCOINUSDT","d":[]},{"s":"BLOFIN:BNTUSDT.P","d":[]},{"s":"BINGX:SLEEPLESSAIUSDT.P","d":[]},{"s":"KRAKEN:EURCHF","d":[]},{"s":"WAGYUSWAP:BMFWVLX_96B298.USD","d":[]},{"s":"HITBTC:SNTUSDT","d":[]},{"s":"UNISWAP:NPCWETH_69C7BD.USD","d":[]},{"s":"HITBTC:MBOXBTC","d":[]},{"s":"KRAKEN:GARIUSD","d":[]},{"s":"UNISWAP:JUICEWETH_BA8381","d":[]},{"s":"UNISWAP:AEVOWETH_245E21.USD","d":[]},{"s":"UNISWAP:KEKECWETH_C6E405","d":[]},{"s":"GATEIO:ZILUSDT","d":[]},{"s":"SPOOKYSWAP:KEKWFTM_F3582D.USD","d":[]},{"s":"MEXC:SERAPHUSDT","d":[]},{"s":"BYBIT:ORBSUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHBCAT","d":[]},{"s":"BISWAP:LIQWBNB_99E338.USD","d":[]},{"s":"COINEX:ERGUSDC","d":[]},{"s":"COINEX:ONEUSDC","d":[]},{"s":"HITBTC:EOSUSDT","d":[]},{"s":"HITBTC:XCNUSDT","d":[]},{"s":"UNISWAP3ETH:NPCWETH","d":[]},{"s":"BINANCE:STORJBTC","d":[]},{"s":"BINANCE:ICPEUR","d":[]},{"s":"UNISWAP:ELONWETH_7B7364.USD","d":[]},{"s":"MEXC:MTCUSDT","d":[]},{"s":"XEXCHANGE:EFOOUSDC","d":[]},{"s":"WAGYUSWAP:SHIBILUSDT_C858BB","d":[]},{"s":"GATEIO:PETUSDT","d":[]},{"s":"MEXC:SHIBAIUSDT","d":[]},{"s":"UNISWAP3ETH:LPFLC_5AEB2C.USD","d":[]},{"s":"BLOFIN:MANTAUSDT.P","d":[]},{"s":"BITGET:FONUSDT","d":[]},{"s":"QUICKSWAP:QIMIMATIC_7AFCF1.USD","d":[]},{"s":"BITFINEX:EOSBTC","d":[]},{"s":"HITBTC:LRCUSDT","d":[]},{"s":"BISWAP:PMRWBNB_08ECD2.USD","d":[]},{"s":"COINBASE:VETUSD","d":[]},{"s":"UNISWAP:ETFETHWETH_0F391E","d":[]},{"s":"UNISWAP3ETH:WETHPFPASIA","d":[]},{"s":"HITBTC:TUSDT","d":[]},{"s":"UNISWAP:DEPINWETH_288DF0.USD","d":[]},{"s":"COINEX:INJUSDC","d":[]},{"s":"UNISWAP3ETH:ASTWETH_117439.USD","d":[]},{"s":"UNISWAP:PUPPIESWETH_2325E3","d":[]},{"s":"PANGOLIN:HUSKYWAVAX_D05E43.USD","d":[]},{"s":"UNISWAP:POOLZWETH_70A394","d":[]},{"s":"UNISWAP:DOGWETH_86F5D5.USD","d":[]},{"s":"QUICKSWAP:CULOWMATIC_DBCDBD.USD","d":[]},{"s":"KRAKEN:EOSUSD.PM","d":[]},{"s":"UNISWAP:BARKWETH_BBD8EC","d":[]},{"s":"MEXC:DOGEMOONUSDT","d":[]},{"s":"UNISWAP:HAROLDWETH_22394A.USD","d":[]},{"s":"BITFINEX:PEPEUSD","d":[]},{"s":"UNISWAP3ETH:HEARTUSDC_215E80.USD","d":[]},{"s":"UNISWAP3ARBITRUM:RDPXWETH_310A09.USD","d":[]},{"s":"KRAKEN:ANTBTC","d":[]},{"s":"EXMO:XRPEUR","d":[]},{"s":"UNISWAP3ETH:WETHSOFEE","d":[]},{"s":"KRAKEN:XRPUSD.PM","d":[]},{"s":"PANGOLIN:WBTCEUSDC_9D8624.USD","d":[]},{"s":"UNISWAP3ETH:POLMATIC_37657C.USD","d":[]},{"s":"WOONETWORK:EOSUSDT","d":[]},{"s":"UNISWAP:COTWETH_5B72BA.USD","d":[]},{"s":"UNISWAP:FLEXWETH_95CC12.USD","d":[]},{"s":"HITBTC:RUNEBTC","d":[]},{"s":"UNISWAP3ETH:SILV2ILV_AD57B4.USD","d":[]},{"s":"GATEIO:NEBLUSDT","d":[]},{"s":"MEXC:UPDOGUSDT","d":[]},{"s":"ZOOMEX:SANDUSDT.P","d":[]},{"s":"UNISWAP3ETH:ROYAUSDT","d":[]},{"s":"BYBIT:TAOUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:DAIUSDT_7F580F.USD","d":[]},{"s":"BITGET:SUSHIUSDT.P","d":[]},{"s":"UNISWAP:FAKEAIWETH_783595","d":[]},{"s":"BINANCE:RUNETUSD","d":[]},{"s":"MEXC:CAPUSDT","d":[]},{"s":"MEXC:MULTIUSDT.P","d":[]},{"s":"QUICKSWAP:TRYWMATIC_DC2D6F.USD","d":[]},{"s":"WHITEBIT:XEMUSDT","d":[]},{"s":"WOONETWORK:VICUSDT","d":[]},{"s":"UNISWAP3ETH:VRAWETH","d":[]},{"s":"BITRUE:FLUXSOL","d":[]},{"s":"UNISWAP3ETH:WETHNFTX","d":[]},{"s":"MEXC:XTSUSDT","d":[]},{"s":"UNISWAP:ETH20WETH_04210C","d":[]},{"s":"BYBIT:ANKRUSDT.P","d":[]},{"s":"UNISWAP3ETH:STMXWETH","d":[]},{"s":"BINANCE:JUVUSDT","d":[]},{"s":"TRADERJOE:FLYWAVAX_1371A6","d":[]},{"s":"UNISWAP3ETH:SEXYWETH","d":[]},{"s":"BYBIT:FILUSDT","d":[]},{"s":"UNISWAP:OLYWETH_2B68E9.USD","d":[]},{"s":"HITBTC:FIROUSD","d":[]},{"s":"ZOOMEX:STPTUSDT.P","d":[]},{"s":"BLOFIN:STARLUSDT.P","d":[]},{"s":"PHEMEX:DARUSDT","d":[]},{"s":"BITSTAMP:LMWRUSD","d":[]},{"s":"PANGOLIN:AVSTRMUSDC_442F59","d":[]},{"s":"BYBIT:VANRYUSDT","d":[]},{"s":"UNISWAP:AEVOWETH_245E21","d":[]},{"s":"UNISWAP3ETH:WETHHMX","d":[]},{"s":"UNISWAP:LARRYWETH_1D3AB7.USD","d":[]},{"s":"COINEX:ENJUSDT","d":[]},{"s":"BYBIT:XRPUSDT.3S","d":[]},{"s":"MEXC:LIXXUSDT","d":[]},{"s":"BINGX:MYROUSDT.P","d":[]},{"s":"WHITEBIT:AGIXUSDT.P","d":[]},{"s":"MEXC:DMAILUSDT","d":[]},{"s":"MEXC:STEPNUSDC","d":[]},{"s":"COINBASE:MTLUSD","d":[]},{"s":"UNISWAP3POLYGON:CRVUSDC_EA8A6F.USD","d":[]},{"s":"UNISWAP3ETH:WETHGALA","d":[]},{"s":"KRAKEN:KNCETH","d":[]},{"s":"BINANCE:ACAUSDT","d":[]},{"s":"UNISWAP:BEFYWETH_3A3C41.USD","d":[]},{"s":"BITFINEX:TONUSD","d":[]},{"s":"BINANCE:JOEBTC","d":[]},{"s":"UNISWAP:MEGAWETH_943884.USD","d":[]},{"s":"BINGX:WIFUSDT.PS","d":[]},{"s":"COINEX:BANUSDT","d":[]},{"s":"UNISWAP:MYTHWETH_F7BB3C","d":[]},{"s":"BITGET:EDUUSDT.P","d":[]},{"s":"SPOOKYSWAP:WOOLWFTM_143F2D.USD","d":[]},{"s":"POLONIEX:BURGERUSDT","d":[]},{"s":"UNISWAP:PORKTOSHIWETH_A65303","d":[]},{"s":"BITFINEX:BESTUSD","d":[]},{"s":"UNISWAP:DIBBLEWETH_67A5E4.USD","d":[]},{"s":"GATEIO:SNFTUSDT","d":[]},{"s":"SPOOKYSWAP:FSUSDC_395215","d":[]},{"s":"TRADERJOE:RADXWAVAX_1A7415","d":[]},{"s":"QUICKSWAP:WISEWETH_DF8139.USD","d":[]},{"s":"MEXC:SWTHUSDT","d":[]},{"s":"BITFINEX:SHIBUST","d":[]},{"s":"TRADERJOE:BULLWAVAX_76EAB3","d":[]},{"s":"UNISWAP:TOSHIWETH_49179A","d":[]},{"s":"SPOOKYSWAP:SPACEWFTM_FAC555.USD","d":[]},{"s":"HITBTC:VGXUSDT","d":[]},{"s":"UNISWAP3ETH:EUROEUSDC","d":[]},{"s":"UNISWAP:RENBTCWETH_81FBEF.USD","d":[]},{"s":"COINBASE:SOLBTC","d":[]},{"s":"UNISWAP:ZATWETH_3B77E5.USD","d":[]},{"s":"BINANCE:FTMBTC","d":[]},{"s":"COINEX:SYNRUSDT","d":[]},{"s":"UNISWAP:SNIFFERWETH_93153C.USD","d":[]},{"s":"BYBIT:ETHUSDM2024","d":[]},{"s":"BITFINEX:WHBTUST","d":[]},{"s":"COINEX:ATAUSDT","d":[]},{"s":"UNISWAP3ETH:STARWETH","d":[]},{"s":"GATEIO:DFNDUSDT","d":[]},{"s":"BINGX:KEYUSDT.PS","d":[]},{"s":"COINBASE:GMTUSDT","d":[]},{"s":"OKX:FILUSD.P","d":[]},{"s":"MEXC:FUFUUSDT","d":[]},{"s":"PHEMEX:KNCUSDT.P","d":[]},{"s":"QUICKSWAP:BSGGUSDT_94AF23","d":[]},{"s":"COINEX:SWEATUSDT","d":[]},{"s":"UPBIT:CVCKRW","d":[]},{"s":"UNISWAP:BINANCEWETH_53900D","d":[]},{"s":"GATEIO:VETUSDT","d":[]},{"s":"KRAKEN:ANTEUR","d":[]},{"s":"UNISWAP3ETH:WETHCELL","d":[]},{"s":"GATEIO:CHEELUSDT","d":[]},{"s":"BITMEX:XBTUSDT.P","d":[]},{"s":"UNISWAP:PLDWETH_CB397F.USD","d":[]},{"s":"UNISWAP:PANDORAWETH_DC9008","d":[]},{"s":"UNISWAP3ETH:WEB3WETH","d":[]},{"s":"COINEX:AAVEUSDC","d":[]},{"s":"TRADERJOE:WINEMIM_00CB5B","d":[]},{"s":"TRADERJOE:AMPLWAVAX_230C4A.USD","d":[]},{"s":"UNISWAP3ETH:WETHMTA","d":[]},{"s":"COINEX:ROOTUSDT","d":[]},{"s":"UNISWAP:CHADWETH_2DB388","d":[]},{"s":"UNISWAP3ETH:WETHDWIF","d":[]},{"s":"BITGET:ELFUSDT","d":[]},{"s":"UNISWAP:WANDWETH_96D7BF","d":[]},{"s":"MEXC:GRLUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:MCBUSDC_A1E810.USD","d":[]},{"s":"UNISWAP:GDAGWETH_9C62A8.USD","d":[]},{"s":"KRAKEN:MINAEUR","d":[]},{"s":"BINANCE:GNSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:VSTAWETH_3C711D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GGWETH_833DD4.USD","d":[]},{"s":"OKX:COMPUSDT.P","d":[]},{"s":"BLOFIN:XRPUSDT.P","d":[]},{"s":"BINANCE:NEARUSDT","d":[]},{"s":"COINEX:THEUSDT","d":[]},{"s":"HITBTC:SCUSDT","d":[]},{"s":"UNISWAP3ETH:QLTUSDC_B10707.USD","d":[]},{"s":"UNISWAP:ERNWETH_570FEB.USD","d":[]},{"s":"HITBTC:ATOMETH","d":[]},{"s":"KRAKEN:KSMUSD.PM","d":[]},{"s":"UNISWAP:WOZXUSDT_E61878","d":[]},{"s":"BITFINEX:GALAUST","d":[]},{"s":"COINEX:ZEDUSDT","d":[]},{"s":"COINEX:XEMBTC","d":[]},{"s":"KRAKEN:MLNBTC","d":[]},{"s":"BITMEX:AEVOUSDTZ2024","d":[]},{"s":"COINBASE:ALCXUSD","d":[]},{"s":"POLONIEX:NVIRUSDT","d":[]},{"s":"HITBTC:MOBUSDT","d":[]},{"s":"PHEMEX:NFPUSDT","d":[]},{"s":"COINEX:METISBTC","d":[]},{"s":"HITBTC:BDGBTC","d":[]},{"s":"BITRUE:NEOUSDT","d":[]},{"s":"GATEIO:MLTUSDT","d":[]},{"s":"GATEIO:MKRUSDT","d":[]},{"s":"BYBIT:XNOUSDT.P","d":[]},{"s":"PHEMEX:BONDUSDT","d":[]},{"s":"BITRUE:TRXBTC","d":[]},{"s":"GATEIO:WAVESUSDT","d":[]},{"s":"UNISWAP:BKNUSDT_02ECB5","d":[]},{"s":"WHITEBIT:ADAUSDT.P","d":[]},{"s":"BYBIT:BEAMUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHCDAI","d":[]},{"s":"UNISWAP3ETH:WETHHUSKY","d":[]},{"s":"BINANCE:WINBRL","d":[]},{"s":"UNISWAP:DRAKWETH_7A2C81.USD","d":[]},{"s":"UNISWAP3POLYGON:TBTCWETH_5D5EA2.USD","d":[]},{"s":"BINANCE:BARUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ARBTUSDT_8AB0E5.USD","d":[]},{"s":"UNISWAP:NEBULAWETH_87BEA3","d":[]},{"s":"BINANCE:BLURUSDC","d":[]},{"s":"UNISWAP3ETH:BABYTAOWETH_5BBC1E.USD","d":[]},{"s":"UNISWAP:FINALEWETH_4A6670.USD","d":[]},{"s":"UNISWAP:TYRANTWETH_3AF73B.USD","d":[]},{"s":"MEXC:ALGOUSDT.P","d":[]},{"s":"UNISWAP:STABLZUSDT_14BB16","d":[]},{"s":"UNISWAP3ETH:IMXWETH_81FBBC.USD","d":[]},{"s":"SPOOKYSWAP:SLURPMIM_402474","d":[]},{"s":"GATEIO:ZLKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMATIC","d":[]},{"s":"UNISWAP3ETH:DECIHEX_F6ED23.USD","d":[]},{"s":"UNISWAP:EPIKWETH_0529BF","d":[]},{"s":"POLONIEX:SOLUSD","d":[]},{"s":"MEXC:ROCOUSDT","d":[]},{"s":"POLONIEX:BTCTUSD","d":[]},{"s":"TRADERJOE:XQIQI_592082","d":[]},{"s":"MEXC:DUSKUSDT","d":[]},{"s":"UNISWAP:LOVEWETH_7FA5C7.USD","d":[]},{"s":"QUICKSWAP:MHUNTUSDC_290A47","d":[]},{"s":"BINANCE:TWTBTC","d":[]},{"s":"BINANCE:SNTBTC","d":[]},{"s":"PIONEX:ACEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAGB","d":[]},{"s":"PHEMEX:RADUSDT.P","d":[]},{"s":"KRAKEN:ZECUSD","d":[]},{"s":"UNISWAP:DOEWETH_9D9681.USD","d":[]},{"s":"GATEIO:QRDOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHXCM","d":[]},{"s":"MEXC:MITHRILUSDT","d":[]},{"s":"KRAKEN:QTUMUSD","d":[]},{"s":"MEXC:RACEZOOUSDT","d":[]},{"s":"HITBTC:IOSTUSD","d":[]},{"s":"UNISWAP3ETH:WETHRSS3","d":[]},{"s":"UNISWAP:MBLKWETH_8180EB","d":[]},{"s":"UNISWAP3POLYGON:XYWETH_1651AC.USD","d":[]},{"s":"KRAKEN:AIRUSD","d":[]},{"s":"PHEMEX:MEMEUSDT","d":[]},{"s":"ZOOMEX:SOLUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:TNGBLWETH_2ED3CF.USD","d":[]},{"s":"GATEIO:CELOUSDT","d":[]},{"s":"MEXC:FUTUREUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGENAI","d":[]},{"s":"UNISWAP:SAFEREUMWETH_3681A3.USD","d":[]},{"s":"UNISWAP:EDUWETH_F1DB9D.USD","d":[]},{"s":"MEXC:NEIUSDT","d":[]},{"s":"MEXC:ARCUSDT","d":[]},{"s":"BINANCE:IMXUSDT","d":[]},{"s":"TRADERJOE:USDTEMIM_EAAE66","d":[]},{"s":"UNISWAP:UMOONUSDC_77531A","d":[]},{"s":"MEXC:CAVADAUSDT","d":[]},{"s":"UNISWAP3ETH:USDTLOC","d":[]},{"s":"UNISWAP:PEPEGPTUSDC_BFED73","d":[]},{"s":"POLONIEX:LZMUSDT","d":[]},{"s":"HITBTC:LTCHIT","d":[]},{"s":"GATEIO:SPFCUSDT","d":[]},{"s":"KRAKEN:XRPUSD","d":[]},{"s":"UNISWAP:WAGIEBOTWETH_0D5E7B.USD","d":[]},{"s":"UNISWAP3ARBITRUM:TBTCWBTC_E9E6B9.USD","d":[]},{"s":"KRAKEN:SOLUSDT","d":[]},{"s":"MEXC:XCNUSDT.P","d":[]},{"s":"PHEMEX:COTIUSDT","d":[]},{"s":"UNISWAP3ETH:GBTCWETH","d":[]},{"s":"MEXC:CAKEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMFG","d":[]},{"s":"MEXC:JASMYUSDC","d":[]},{"s":"DERIBIT:ALGOUSDC.P","d":[]},{"s":"UNISWAP3ETH:WBTCSAITABIT","d":[]},{"s":"GATEIO:BURPUSDT","d":[]},{"s":"UNISWAP:ERICWETH_9755B8","d":[]},{"s":"UNISWAP3ETH:USDCCXO","d":[]},{"s":"BITGET:TRACUSDT","d":[]},{"s":"WAGYUSWAP:VERVEWVLX_6D2073.USD","d":[]},{"s":"UNISWAP:DDAWGSWETH_189967.USD","d":[]},{"s":"UNISWAP:0XOSWETH_CAC5B1.USD","d":[]},{"s":"MEXC:XDBUSDT","d":[]},{"s":"COINEX:LSKBTC","d":[]},{"s":"UNISWAP3ETH:STOSWETH_ED4972.USD","d":[]},{"s":"POLONIEX:WBTCUSDT","d":[]},{"s":"MEXC:JOYSTREAMUSDT","d":[]},{"s":"BINANCE:ARKMBNB","d":[]},{"s":"TRADERJOE:CCYWAVAX_9A3545","d":[]},{"s":"UNISWAP:PEARWETH_7B8AC3.USD","d":[]},{"s":"MEXC:BEAMUSDT","d":[]},{"s":"UNISWAP:COTWETH_5B72BA","d":[]},{"s":"KRAKEN:SUSHIBTC","d":[]},{"s":"TRADERJOE:LVTWAVAX_482B27","d":[]},{"s":"UNISWAP:SHIRYOINUWETH_E6E1F4.USD","d":[]},{"s":"QUICKSWAP:DOSEWETH_2B633F","d":[]},{"s":"BINANCE:TRUUSDT","d":[]},{"s":"BITGET:GMXUSDT","d":[]},{"s":"BITRUE:SHIBUSDT","d":[]},{"s":"BYBIT:SRMUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:FUSDCARB_982017.USD","d":[]},{"s":"UNISWAP:METASTREETWETH_A6AAA3","d":[]},{"s":"WHITEBIT:FILUSDT","d":[]},{"s":"UNISWAP3ETH:TONCOINWBTC_5F0D8F.USD","d":[]},{"s":"TRADERJOE:NOCHILLWAVAX_2D38BD.USD","d":[]},{"s":"QUICKSWAP:JOCWMATIC_7C7372.USD","d":[]},{"s":"UNISWAP3ETH:INSWETH","d":[]},{"s":"WHITEBIT:DOGEUSDT","d":[]},{"s":"BINANCE:OSMOUSDT","d":[]},{"s":"UNISWAP:DFYNWETH_CAB335.USD","d":[]},{"s":"MEXC:LUFCUSDT","d":[]},{"s":"UNISWAP:RNDRWETH_C0A6BB.USD","d":[]},{"s":"BITHUMB:CELOKRW","d":[]},{"s":"BINANCE:ETCTRY","d":[]},{"s":"PIONEX:BTCUSDT.P","d":[]},{"s":"PHEMEX:PHAUSDT","d":[]},{"s":"BITGET:DEGENUSDT","d":[]},{"s":"GATEIO:THEOSUSDT","d":[]},{"s":"BLOFIN:GFTUSDT.P","d":[]},{"s":"POLONIEX:ETHWUSDD","d":[]},{"s":"PHEMEX:MDTUSDT","d":[]},{"s":"BYBIT:EGLDUSDT.P","d":[]},{"s":"MEXC:CATHEONUSDT","d":[]},{"s":"MEXC:DRAGONERAUSDT","d":[]},{"s":"BITHUMB:BSVKRW","d":[]},{"s":"MEXC:BEANUSDT","d":[]},{"s":"BITFINEX:MKRUSD","d":[]},{"s":"UNISWAP3ETH:OKBWETH_71421A.USD","d":[]},{"s":"HITBTC:XMREOS","d":[]},{"s":"TRADERJOE:H2OWAVAX_9615A1","d":[]},{"s":"GATEIO:ETCUSDT.3L","d":[]},{"s":"GATEIO:STEPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGOFURS","d":[]},{"s":"BITFINEX:XTPUSD","d":[]},{"s":"BINANCE:HBARBNB","d":[]},{"s":"COINBASE:CBETHETH","d":[]},{"s":"TRADERJOE:LVTWAVAX_482B27.USD","d":[]},{"s":"MEXC:ZEROXUSDT","d":[]},{"s":"BITFINEX:GOCUST","d":[]},{"s":"BITRUE:RNDRXRP","d":[]},{"s":"SPOOKYSWAP:PWFLWFTM_457CCA.USD","d":[]},{"s":"QUICKSWAP:MYSTUSDC_7E2EAA","d":[]},{"s":"BITFINEX:RLYUST","d":[]},{"s":"UNISWAP3ETH:AMOWETH_C1B24A.USD","d":[]},{"s":"GATEIO:USDPUSDT","d":[]},{"s":"UNISWAP3ETH:GMTWETH","d":[]},{"s":"MEXC:RLCUSDT","d":[]},{"s":"HITBTC:XYMUSDT","d":[]},{"s":"BITGET:BGBETH","d":[]},{"s":"BINANCE:GLMRUSDT","d":[]},{"s":"ZOOMEX:FITFIUSDT.P","d":[]},{"s":"QUICKSWAP:RICEUSDT_45AF0E","d":[]},{"s":"UNISWAP:WHLWETH_52A500.USD","d":[]},{"s":"BITHUMB:ALICEKRW","d":[]},{"s":"UNISWAP:VEMPWETH_05BE68","d":[]},{"s":"UNISWAP3ETH:WETHAVINOC","d":[]},{"s":"GATEIO:QUICKUSDT","d":[]},{"s":"UNISWAP:HOLEWETH_C5EE2F","d":[]},{"s":"MEXC:1CATUSDT.P","d":[]},{"s":"QUICKSWAP:DAFIWMATIC_19DE52.USD","d":[]},{"s":"MEXC:RIBBITUSDT","d":[]},{"s":"UNISWAP:BUTTERWETH_B44CF0.USD","d":[]},{"s":"TRADERJOE:YAYWAVAX_BCDA59","d":[]},{"s":"BINANCE:DOGEBTC","d":[]},{"s":"UNISWAP:STACKWETH_13D1B8.USD","d":[]},{"s":"UNISWAP3ETH:OKWETH","d":[]},{"s":"PANGOLIN:GRELFAVAPNG_3AEB36","d":[]},{"s":"MEXC:PORUSDT","d":[]},{"s":"UNISWAP:ORDIBRIDGEWETH_944D2F","d":[]},{"s":"HITBTC:COMPETH","d":[]},{"s":"UNISWAP3ETH:ELAWETH","d":[]},{"s":"UNISWAP3ETH:OWETH_A36C33.USD","d":[]},{"s":"MEXC:API3USDT.P","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDC_04537F.USD","d":[]},{"s":"HITBTC:APMBTC","d":[]},{"s":"MEXC:MILLEUSDT","d":[]},{"s":"BITGET:LUNCUSDT.P","d":[]},{"s":"UNISWAP:HOUSEWETH_A62D78","d":[]},{"s":"MEXC:BFICUSDT","d":[]},{"s":"UNISWAP:CCV2WETH_BEBC35.USD","d":[]},{"s":"UNISWAP3POLYGON:WGHOSTWMATIC_80E0FD.USD","d":[]},{"s":"UNISWAP3ETH:GTCWETH","d":[]},{"s":"PIONEX:MAGICUSDT.P","d":[]},{"s":"BLOFIN:LOOKSUSDT.P","d":[]},{"s":"BINANCE:RLCETH","d":[]},{"s":"UNISWAP3ETH:EPEPEWETH_AC458A.USD","d":[]},{"s":"TRADERJOE:MAIWAVAX_23DDCA","d":[]},{"s":"PHEMEX:PHBUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:GONEWMATIC_8CDD01.USD","d":[]},{"s":"GATEIO:STRPUSDT","d":[]},{"s":"BYBIT:MDTUSDT.P","d":[]},{"s":"BITSTAMP:AUDIOEUR","d":[]},{"s":"BINGX:BIGTIMEUSDT.PS","d":[]},{"s":"OKX:PEPEUSDT.P","d":[]},{"s":"MEXC:FWCUSDT","d":[]},{"s":"EXMO:ZECBTC","d":[]},{"s":"BLOFIN:VANRYUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRADEWETH_E1EB37.USD","d":[]},{"s":"POLONIEX:CHRUSD","d":[]},{"s":"HITBTC:C98USDT","d":[]},{"s":"PANGOLIN:HERMESWAVAX_C58CC1.USD","d":[]},{"s":"HITBTC:IPLUSDT","d":[]},{"s":"UNISWAP3ETH:AINWETH_F129F1.USD","d":[]},{"s":"COINEX:TUSDT","d":[]},{"s":"UNISWAP3ETH:USDCBANK","d":[]},{"s":"KRAKEN:CSMEUR","d":[]},{"s":"UNISWAP:WCDWETH_6A2DBA","d":[]},{"s":"UNISWAP3ETH:WETHDOGPET","d":[]},{"s":"MEXC:ONTBTC","d":[]},{"s":"BITFINEX:FORTHUSD","d":[]},{"s":"TRADERJOE:LFGWAVAX_13DD08.USD","d":[]},{"s":"GATEIO:XPRTUSDT","d":[]},{"s":"BINANCE:BONKTRY","d":[]},{"s":"QUICKSWAP:ADDYWETH_A5BF14","d":[]},{"s":"UNISWAP3ETH:NEXOWETH_4C54FF.USD","d":[]},{"s":"UNISWAP3POLYGON:UNIAAVE_AD49B8.USD","d":[]},{"s":"UNISWAP:ADDYWETH_2A2AE0.USD","d":[]},{"s":"PIONEX:TRBUSDT.P","d":[]},{"s":"UNISWAP:HOLAWETH_DABB0B","d":[]},{"s":"UNISWAP:GAMEUSDT_0CFB06","d":[]},{"s":"BINANCE:MEMEUSDT","d":[]},{"s":"HITBTC:ARPAUSDT","d":[]},{"s":"BISWAP:DOTWBNB_E7FBB8.USD","d":[]},{"s":"MEXC:SUIUSDT.P","d":[]},{"s":"BINANCE:NEOTRY","d":[]},{"s":"UNISWAP:RINIAWETH_1B4255.USD","d":[]},{"s":"BINGX:MINAUSDT.P","d":[]},{"s":"UNISWAP3ETH:FORGEWETH","d":[]},{"s":"UNISWAP:PLOUTSWETH_1D4E66","d":[]},{"s":"KRAKEN:KILTEUR","d":[]},{"s":"BITFINEX:WIFUSD","d":[]},{"s":"SPOOKYSWAP:SPADAI_FA5A5F","d":[]},{"s":"MEXC:MLXCUSDT","d":[]},{"s":"KRAKEN:MANAETH","d":[]},{"s":"UNISWAP:VEILWETH_AC9AE0.USD","d":[]},{"s":"QUICKSWAP:ETHAUSDC_B417DA","d":[]},{"s":"HITBTC:BCDUSDT","d":[]},{"s":"BYBIT:HTXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBETA","d":[]},{"s":"UNISWAP3ETH:WETHRUSD","d":[]},{"s":"MEXC:AIAUSDT","d":[]},{"s":"UNISWAP3ETH:ARBUZUSDT_DF62A6.USD","d":[]},{"s":"UNISWAP:LINUWETH_F7EF53","d":[]},{"s":"TRADERJOE:PTPWAVAX_CDFD91","d":[]},{"s":"MEXC:PROSUSDT","d":[]},{"s":"MEXC:ZTXUSDT","d":[]},{"s":"TRADERJOE:YETIWAVAX_BDC7EF","d":[]},{"s":"BINANCE:ONGUSDT","d":[]},{"s":"MEXC:SAUCEUSDT","d":[]},{"s":"UNISWAP3POLYGON:FXADDYUSDC_B485C3.USD","d":[]},{"s":"UNISWAP3ETH:METISWETH_40A324.USD","d":[]},{"s":"PANGOLIN:USTPNG_2A0F65.USD","d":[]},{"s":"HITBTC:AVAXUSDC","d":[]},{"s":"GATEIO:GASUSDT","d":[]},{"s":"HITBTC:SNCUSDT","d":[]},{"s":"UNISWAP:IMBTCWETH_4D1368","d":[]},{"s":"POLONIEX:BNTBTC","d":[]},{"s":"GATEIO:UTKUSDT","d":[]},{"s":"GATEIO:GALAUSDT.5L","d":[]},{"s":"UNISWAP3ETH:USDTZERO","d":[]},{"s":"BITGET:XPETUSDT","d":[]},{"s":"TRADERJOE:AVICUSDC_774845","d":[]},{"s":"BITGET:DARUSDT.P","d":[]},{"s":"UNISWAP:COSMICWETH_9DC1B5","d":[]},{"s":"UNISWAP3ETH:ALIWETH_0A61A2.USD","d":[]},{"s":"GATEIO:HSFUSDT","d":[]},{"s":"UNISWAP:MAAPLUST_B022E0.USD","d":[]},{"s":"GATEIO:BELUSDT","d":[]},{"s":"GATEIO:NAFTUSDT","d":[]},{"s":"TRADERJOE:PIZZAWAVAX_4D7450","d":[]},{"s":"UNISWAP:LAMBOWETH_EF5AF0.USD","d":[]},{"s":"UNISWAP3ETH:DAI1INCH","d":[]},{"s":"BITGET:ADUSDT","d":[]},{"s":"UNISWAP:FIFTYWETH_F0E2B0.USD","d":[]},{"s":"BINGX:JUPUSDT.P","d":[]},{"s":"UNISWAP3ETH:DOLLARPAALWETH","d":[]},{"s":"BINANCE:OAXUSDT","d":[]},{"s":"ZOOMEX:AUDIOUSDT.P","d":[]},{"s":"HITBTC:POLSUSD","d":[]},{"s":"SPOOKYSWAP:FKNUCKLESWFTM_981C6A","d":[]},{"s":"UNISWAP3ETH:XYOUSDC","d":[]},{"s":"BINGX:HIFIUSDT.PS","d":[]},{"s":"BITGET:TRUUSDT","d":[]},{"s":"UNISWAP:FEDAIWETH_374A83.USD","d":[]},{"s":"UNISWAP3ETH:WETHSEAM","d":[]},{"s":"UNISWAP3ETH:FORTHWETH_C1DF80.USD","d":[]},{"s":"UNISWAP3ETH:BATWETH","d":[]},{"s":"BYBIT:CAKEUSDT","d":[]},{"s":"PHEMEX:FILUSDT.P","d":[]},{"s":"GATEIO:REKTUSDT","d":[]},{"s":"BINANCE:APTUSDT","d":[]},{"s":"GEMINI:JAMUSD","d":[]},{"s":"KRAKEN:AAVEETH","d":[]},{"s":"MEXC:TXAUSDT","d":[]},{"s":"GATEIO:CUSDUSDT","d":[]},{"s":"UNISWAP:NEOWWETH_3117D2.USD","d":[]},{"s":"MEXC:DAOUSDT","d":[]},{"s":"MEXC:REIUSDT","d":[]},{"s":"MEXC:ZKIDUSDT","d":[]},{"s":"UNISWAP:DOJOWETH_4FF28E.USD","d":[]},{"s":"GATEIO:WENUSDT","d":[]},{"s":"UNISWAP:NINAWETH_282B0E","d":[]},{"s":"UNISWAP3ETH:OXWETH","d":[]},{"s":"UNISWAP3ETH:KIZUNAWETH_B7F27E.USD","d":[]},{"s":"BINGX:COTIUSDT.PS","d":[]},{"s":"PHEMEX:GRTUSDT","d":[]},{"s":"BINANCE:WAXPBTC","d":[]},{"s":"PIONEX:HIGHUSDT.P","d":[]},{"s":"UNISWAP3ETH:CRVUSDWBTC","d":[]},{"s":"UNISWAP:MUSKWETH_8D7A93","d":[]},{"s":"POLONIEX:PSYOPUSDT","d":[]},{"s":"KRAKEN:AGLDUSD.PM","d":[]},{"s":"UNISWAP3ARBITRUM:CRVWETH_BA80CE.USD","d":[]},{"s":"BITRUE:JASMYUSDT","d":[]},{"s":"UNISWAP3ETH:UNA.WEMIXWETH","d":[]},{"s":"UNISWAP:RIDGEWETH_234942","d":[]},{"s":"UNISWAP:DORKWETH_537B8A.USD","d":[]},{"s":"UNISWAP3ETH:WETHOTACON","d":[]},{"s":"UNISWAP3ETH:BOXETHWETH_287139.USD","d":[]},{"s":"BITGET:ASTRUSDT","d":[]},{"s":"MEXC:TLCUSDT","d":[]},{"s":"MEXC:PSUBUSDT","d":[]},{"s":"UNISWAP:ROCKIWETH_B2FB04","d":[]},{"s":"UNISWAP3POLYGON:FXKAPWETH_FDE7F7.USD","d":[]},{"s":"BINANCE:FDUSDTRY","d":[]},{"s":"PIONEX:XNOUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHUNI","d":[]},{"s":"COINBASE:GYENUSD","d":[]},{"s":"POLONIEX:FENTANYLUSDT","d":[]},{"s":"QUICKSWAP:PRXYUSDC_542821","d":[]},{"s":"MEXC:UMAUSDT","d":[]},{"s":"UNISWAP3ETH:PEENWETH_9A3296.USD","d":[]},{"s":"MEXC:TARAUSDT","d":[]},{"s":"UNISWAP3ETH:PABLOWETH_0133F1.USD","d":[]},{"s":"BLOFIN:METISUSDT.P","d":[]},{"s":"UNISWAP3ETH:SAITOWETH_965E3A.USD","d":[]},{"s":"QUICKSWAP:CHERUSDC_C88439","d":[]},{"s":"UNISWAP:PSPSWETH_D35972","d":[]},{"s":"BITGET:ARKUSDT","d":[]},{"s":"UNISWAP:AIIWETH_159AE1","d":[]},{"s":"GATEIO:GTCUSDT","d":[]},{"s":"BTSE:KSMUSD","d":[]},{"s":"GATEIO:ZBCUSDT","d":[]},{"s":"POLONIEX:IGUUSDT","d":[]},{"s":"KRAKEN:ROOKUSD","d":[]},{"s":"UNISWAP:XENDWETH_1E8FF5","d":[]},{"s":"UNISWAP3ETH:WETHRESIN","d":[]},{"s":"KRAKEN:MANABTC","d":[]},{"s":"GATEIO:BDTUSDT","d":[]},{"s":"UNISWAP:SQUID20WETH_D001D5","d":[]},{"s":"BITSTAMP:SOLEUR","d":[]},{"s":"UNISWAP:RMDWETH_F624B0","d":[]},{"s":"UNISWAP:NUDEWETH_8554E5.USD","d":[]},{"s":"UNISWAP:AITWETH_4E34DA","d":[]},{"s":"ZOOMEX:RSS3USDT.P","d":[]},{"s":"BINANCE:OPETH","d":[]},{"s":"BITSTAMP:AXSEUR","d":[]},{"s":"KRAKEN:DYDXUSD","d":[]},{"s":"UNISWAP3ETH:ABIWETH_2A8777.USD","d":[]},{"s":"BITGET:ICPUSDT","d":[]},{"s":"TRADERJOE:CHROWAVAX_D138F9.USD","d":[]},{"s":"GATEIO:KSMUSDT.3L","d":[]},{"s":"UNISWAP:SRMWETH_1637D0.USD","d":[]},{"s":"UNISWAP3ARBITRUM:XBASKETUSDC_BB2E0B.USD","d":[]},{"s":"HITBTC:XRPUSDT","d":[]},{"s":"GATEIO:SMARTUSDT","d":[]},{"s":"WOONETWORK:USDCUSDT","d":[]},{"s":"UNISWAP3POLYGON:DEVWETH_4A2752.USD","d":[]},{"s":"GATEIO:BIRDUSDT","d":[]},{"s":"HITBTC:MBOXUSDT","d":[]},{"s":"WHITEBIT:STRKUSDT.P","d":[]},{"s":"COINEX:VETBTC","d":[]},{"s":"WOONETWORK:MAVIAUSDT","d":[]},{"s":"UNISWAP3ETH:BLENDRWETH_0515FF.USD","d":[]},{"s":"MEXC:2MOONUSDT","d":[]},{"s":"GATEIO:AAVEUSDT.3L","d":[]},{"s":"UNISWAP:LOONGWETH_0501BB","d":[]},{"s":"WHITEBIT:MLNUSDT","d":[]},{"s":"BITGET:VMPXUSDT","d":[]},{"s":"GATEIO:SFIUSDT","d":[]},{"s":"UNISWAP3ETH:PALFRAX_F5C0F5.USD","d":[]},{"s":"QUICKSWAP:EMTWETH_97FE54.USD","d":[]},{"s":"UNISWAP:SNDWETH_C56C63.USD","d":[]},{"s":"MEXC:XNAUSDT","d":[]},{"s":"MEXC:BYNUSDT","d":[]},{"s":"BINANCE:VETBNB","d":[]},{"s":"BYBIT:BTCUSDU2024","d":[]},{"s":"UNISWAP:ICGWETH_0F445B","d":[]},{"s":"BYBIT:LOOKSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:STEADUSDT_3E0892.USD","d":[]},{"s":"UNISWAP3OPTIMISM:SNXUSDC_AEE0A6.USD","d":[]},{"s":"UNISWAP:MUSKWETH_243198","d":[]},{"s":"UNISWAP:CARDWETH_6CD730","d":[]},{"s":"UNISWAP3ETH:FAKTUSDT","d":[]},{"s":"POLONIEX:FTMBTC","d":[]},{"s":"POLONIEX:TRXUSDT","d":[]},{"s":"MEXC:ANALOSUSDT","d":[]},{"s":"UNISWAP3ETH:YGGUSDC","d":[]},{"s":"UNISWAP:NIHAOWETH_C5EA92.USD","d":[]},{"s":"UNISWAP:0XGASWETH_FBD802.USD","d":[]},{"s":"BINANCE:BLURBTC","d":[]},{"s":"BYBIT:MASKUSDT.P","d":[]},{"s":"KRAKEN:GTCEUR","d":[]},{"s":"MEXC:POWRUSDT.P","d":[]},{"s":"BITFINEX:OCEANBTC","d":[]},{"s":"SPOOKYSWAP:GOGOWFTM_6E8B2B.USD","d":[]},{"s":"UNISWAP3ETH:USDTSTORJ","d":[]},{"s":"UNISWAP:SDAOWETH_424485.USD","d":[]},{"s":"UNISWAP3ETH:WETHAVT","d":[]},{"s":"BISWAP:AIRTWBNB_80A71D","d":[]},{"s":"BITSTAMP:USDCUSD","d":[]},{"s":"HITBTC:MAIDETH","d":[]},{"s":"UNISWAP:MOETAWETH_9A9153","d":[]},{"s":"UNISWAP3ETH:USDCFNCT","d":[]},{"s":"BITGET:WAXPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFDZ","d":[]},{"s":"ZOOMEX:KASUSDT.P","d":[]},{"s":"HITBTC:NEOBTC","d":[]},{"s":"PANGOLIN:WBTCWAVAX_7A6131.USD","d":[]},{"s":"TRADERJOE:YELWAVAX_00A386.USD","d":[]},{"s":"UNISWAP:APRSWETH_2BA4CD.USD","d":[]},{"s":"UNISWAP3ETH:PURPLEPEPE_2EC02C.USD","d":[]},{"s":"MEXC:TURTUSDT","d":[]},{"s":"UNISWAP3ETH:USDTERBB","d":[]},{"s":"BITFINEX:NXRABTC","d":[]},{"s":"MEXC:SWTUSDT","d":[]},{"s":"QUICKSWAP:POLYDOGEWMATIC_264E6B.USD","d":[]},{"s":"MEXC:AMENUSDT","d":[]},{"s":"UNISWAP:MBETWETH_D30567.USD","d":[]},{"s":"UNISWAP:RUNICWETH_DCEA99","d":[]},{"s":"UNISWAP3ETH:FINEWETH_061618.USD","d":[]},{"s":"UNISWAP:BTTWETH_2D0BA9.USD","d":[]},{"s":"UNISWAP:ZCNWETH_A6890A","d":[]},{"s":"POLONIEX:SNXUSDT","d":[]},{"s":"BINANCE:PHAUSDT","d":[]},{"s":"KRAKEN:BALUSD","d":[]},{"s":"QUICKSWAP:OOEQUICK_23E93C","d":[]},{"s":"COINBASE:DEXTUSD","d":[]},{"s":"HITBTC:NXTETH","d":[]},{"s":"BINGX:PENDLEUSDT.P","d":[]},{"s":"UNISWAP3ETH:AITROLLSWETH_500BC5.USD","d":[]},{"s":"UNISWAP3ETH:FNCTUSDC","d":[]},{"s":"MEXC:DGIUSDT","d":[]},{"s":"HITBTC:AUDIOUSDT","d":[]},{"s":"UNISWAP:TPADWETH_CD8804","d":[]},{"s":"UNISWAP3ETH:LWETH_4CD48A.USD","d":[]},{"s":"UNISWAP3ETH:TRUWETH_86E69D.USD","d":[]},{"s":"BLOFIN:CFXUSDT.P","d":[]},{"s":"TRADERJOE:SMRTRWAVAX_7B7617.USD","d":[]},{"s":"GATEIO:HFTUSDT","d":[]},{"s":"UNISWAP3ETH:HEXUSDC_69D91B.USD","d":[]},{"s":"POLONIEX:FILUSD","d":[]},{"s":"WHITEBIT:DOGEUSDT.P","d":[]},{"s":"BITGET:AIMBOTUSDT","d":[]},{"s":"ZOOMEX:BIGTIMEUSDT.P","d":[]},{"s":"BITGET:FILBTC","d":[]},{"s":"MEXC:PAXGUSDT.P","d":[]},{"s":"GATEIO:COMPUSDT","d":[]},{"s":"UNISWAP3ETH:VSPWETH","d":[]},{"s":"COINBASE:ZENUSD","d":[]},{"s":"UNISWAP:DUBBZWETH_063E91.USD","d":[]},{"s":"MEXC:HBARUSDT.P","d":[]},{"s":"UNISWAP3ETH:MALWETH","d":[]},{"s":"UNISWAP3ETH:EONWETH_B75269.USD","d":[]},{"s":"MEXC:SOLUSDT.P","d":[]},{"s":"GATEIO:USDCUSDT","d":[]},{"s":"BINANCE:TWTTRY","d":[]},{"s":"UNISWAP:PNTWETH_77BBC2","d":[]},{"s":"SPOOKYSWAP:GHOSTSCREAM_A447AD","d":[]},{"s":"GATEIO:FROGUSDT","d":[]},{"s":"UNISWAP:WEBWETH_839E2D.USD","d":[]},{"s":"GATEIO:FARMUSDT","d":[]},{"s":"PHEMEX:GASUSDT.P","d":[]},{"s":"COINBASE:EOSBTC","d":[]},{"s":"TRADERJOE:SNOWSHAREWAVAX_CA6EA4.USD","d":[]},{"s":"UNISWAP:PALMWETH_A7F098.USD","d":[]},{"s":"HITBTC:CELRUSD","d":[]},{"s":"PIONEX:RSS3USDT.P","d":[]},{"s":"UNISWAP:ORDINALAIWETH_6379A7","d":[]},{"s":"UNISWAP:GLMWETH_B5F790.USD","d":[]},{"s":"HITBTC:AAVEUSDT","d":[]},{"s":"QUICKSWAP:LCDWMATIC_AAB525","d":[]},{"s":"MEXC:NCTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHKEL","d":[]},{"s":"MEXC:HONKUSDT","d":[]},{"s":"COINEX:BITCOINUSDT","d":[]},{"s":"UNISWAP:BEFYWETH_3A3C41","d":[]},{"s":"UNISWAP3POLYGON:DPIWETH_ED26B6.USD","d":[]},{"s":"BINANCE:BALUSDT","d":[]},{"s":"COINEX:GROKUSDT","d":[]},{"s":"PIONEX:XMRUSDT.P","d":[]},{"s":"UNISWAP:BIGMIKEWETH_41B330.USD","d":[]},{"s":"UNISWAP3POLYGON:TSUGTWMATIC_1759B8.USD","d":[]},{"s":"KRAKEN:OXTUSD","d":[]},{"s":"BYBIT:BTCUSDH2024","d":[]},{"s":"PHEMEX:DEXEUSDT","d":[]},{"s":"HITBTC:UTTUSDT","d":[]},{"s":"GATEIO:CELTUSDT","d":[]},{"s":"UNISWAP:THEWETH_F29450.USD","d":[]},{"s":"UNISWAP:QUIDWETH_7AFEBB.USD","d":[]},{"s":"UNISWAP:DUCKERWETH_20E966.USD","d":[]},{"s":"UNISWAP3POLYGON:USDCSNX_701A77.USD","d":[]},{"s":"UNISWAP3ETH:PPGWETH_5EE84B.USD","d":[]},{"s":"UNISWAP:MEMEMAFIAWETH_BFA664","d":[]},{"s":"UNISWAP:UDXWETH_A97B45","d":[]},{"s":"UNISWAP:STARSHIPWETH_46290C","d":[]},{"s":"UNISWAP:AVATARWETH_24A8FE","d":[]},{"s":"MEXC:FETUSDT","d":[]},{"s":"QUICKSWAP:TNDRUSDT_4C23EB","d":[]},{"s":"UNISWAP:NODE0XWETH_6038F9.USD","d":[]},{"s":"BYBIT:BAKEUSDT.P","d":[]},{"s":"UNISWAP:RADUSDC_8C1C49","d":[]},{"s":"KRAKEN:KAREUR","d":[]},{"s":"QUICKSWAP:SIGNWMATIC_B21482.USD","d":[]},{"s":"UNISWAP3OPTIMISM:BOBUSDC_7B17FC.USD","d":[]},{"s":"QUICKSWAP:STSSTS_AA49D5.USD","d":[]},{"s":"UNISWAP3ETH:SCLMWETH","d":[]},{"s":"BITFINEX:KARATEUST","d":[]},{"s":"UNISWAP:DIVIWETH_011A43.USD","d":[]},{"s":"UNISWAP3ETH:EPIKOUSDT","d":[]},{"s":"BITRUE:SLPXRP","d":[]},{"s":"UNISWAP3ETH:LOVEWETH","d":[]},{"s":"UNISWAP3ETH:KARATEWETH_ED6B5F.USD","d":[]},{"s":"UNISWAP3ETH:DUCKSWETH_A32C57.USD","d":[]},{"s":"GATEIO:GLMRUSDT","d":[]},{"s":"UNISWAP:MBXWETH_8A70B8.USD","d":[]},{"s":"OKX:RDNTUSDT.P","d":[]},{"s":"ZOOMEX:CELOUSDT.P","d":[]},{"s":"HITBTC:TFUELUSD","d":[]},{"s":"UNISWAP:ARCHAWETH_055CCD.USD","d":[]},{"s":"BINANCE:DOGEUSD.P","d":[]},{"s":"QUICKSWAP:SNEWMATIC_531269.USD","d":[]},{"s":"MEXC:WORKUSDT","d":[]},{"s":"BYBIT:FLIPUSDT","d":[]},{"s":"BITGET:COTIUSDT","d":[]},{"s":"QUICKSWAP:WCHIWETH_564D4E","d":[]},{"s":"MEXC:HEGICUSDT","d":[]},{"s":"PANGOLIN:PEFILINKE_3968C1","d":[]},{"s":"UNISWAP3ETH:WETHFNT","d":[]},{"s":"UNISWAP3ETH:FETWETH","d":[]},{"s":"QUICKSWAP:GHSTALPHA_C765EC.USD","d":[]},{"s":"BLOFIN:ORBSUSDT.P","d":[]},{"s":"GATEIO:OUSDUSDT","d":[]},{"s":"UNISWAP:HEZWETH_23D15E.USD","d":[]},{"s":"BITGET:SDUSDT","d":[]},{"s":"GATEIO:KDAUSDT","d":[]},{"s":"HITBTC:LUNUSD","d":[]},{"s":"GATEIO:NRVUSDT","d":[]},{"s":"UNISWAP:NMCWETH_965A03","d":[]},{"s":"UNISWAP3ETH:WETHNMR","d":[]},{"s":"BINANCE:ENSUSDT","d":[]},{"s":"UNISWAP3ETH:MGMIWETH_D3FD62.USD","d":[]},{"s":"BINGX:INJUSDT.P","d":[]},{"s":"MEXC:HYCOUSDT","d":[]},{"s":"WHITEBIT:ETHUSDT.P","d":[]},{"s":"GATEIO:RDFUSDT","d":[]},{"s":"COINBASE:MOBILEUSD","d":[]},{"s":"BINANCE:C98BTC","d":[]},{"s":"TRADERJOE:WMATICUSDCE_C0294F","d":[]},{"s":"TRADERJOE:NIOZWAVAX_E4D74F","d":[]},{"s":"UNISWAP3ETH:MUSKERSWETH","d":[]},{"s":"COINEX:APPUSDT","d":[]},{"s":"GATEIO:LUNAUSDT","d":[]},{"s":"MEXC:MINUUSDT","d":[]},{"s":"UNISWAP:CTOWETH_709B80.USD","d":[]},{"s":"UNISWAP3ETH:BTC20WETH","d":[]},{"s":"COINEX:FLOWBTC","d":[]},{"s":"MEXC:BABYUSDT","d":[]},{"s":"MEXC:SPELLUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEPESWETH_A22239.USD","d":[]},{"s":"UNISWAP:INQUWETH_60C89C","d":[]},{"s":"QUICKSWAP:DOGWETH_F51640.USD","d":[]},{"s":"HITBTC:IDHBTC","d":[]},{"s":"UNISWAP3ETH:BOSONWETH","d":[]},{"s":"BITGET:POLCUSDT","d":[]},{"s":"UNISWAP:GMEWETH_DE9155","d":[]},{"s":"UNISWAP:CBUNNYWETH_BECBCB.USD","d":[]},{"s":"COINEX:ETCBTC","d":[]},{"s":"BINANCE:OGNUSDT","d":[]},{"s":"MEXC:FOXIFYUSDT","d":[]},{"s":"HITBTC:SHIBBTC","d":[]},{"s":"BITFINEX:XPTUST.P","d":[]},{"s":"BITRUE:SOLXRP","d":[]},{"s":"HITBTC:C98USD","d":[]},{"s":"BISWAP:ATOMWBNB_5A36E9","d":[]},{"s":"UNISWAP:IDWETH_BCFFA1","d":[]},{"s":"UNISWAP3ETH:RENUSDC","d":[]},{"s":"MEXC:OMGBTC","d":[]},{"s":"COINEX:VOXELUSDT","d":[]},{"s":"ZOOMEX:IOTAUSDT.P","d":[]},{"s":"COINEX:BZZUSDT","d":[]},{"s":"HITBTC:ARRRUSD","d":[]},{"s":"UNISWAP:BIAOWETH_8296D8","d":[]},{"s":"UNISWAP:DCNTWETH_EA9A6A","d":[]},{"s":"COINBASE:RBNUSD","d":[]},{"s":"GATEIO:LUSUSDT","d":[]},{"s":"UNISWAP3ETH:BCATWETH_CA8609.USD","d":[]},{"s":"UNISWAP:DUCKWETH_C5ED73","d":[]},{"s":"POLONIEX:STEEMUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:SNXWETH_B29A02.USD","d":[]},{"s":"UNISWAP3ETH:SPONGEWETH_F935F5.USD","d":[]},{"s":"UNISWAP:COCWETH_D59F22","d":[]},{"s":"BINGX:MEMEUSDT.PS","d":[]},{"s":"OKX:IDUSDT.P","d":[]},{"s":"HITBTC:SRMUSD","d":[]},{"s":"BYBIT:SANDUSDT.2L","d":[]},{"s":"UNISWAP:LBRWETH_3A0EF6","d":[]},{"s":"UNISWAP:BARCWETH_216387","d":[]},{"s":"UNISWAP:USAWETH_7AADB0.USD","d":[]},{"s":"UNISWAP:BBBWETH_A2AADB","d":[]},{"s":"UNISWAP:WOLFWETH_EBEA35","d":[]},{"s":"KRAKEN:SBRUSD","d":[]},{"s":"UNISWAP3ETH:MUBIWETH_844EB5.USD","d":[]},{"s":"MEXC:BSVUSDT","d":[]},{"s":"UPBIT:IOTAKRW","d":[]},{"s":"GATEIO:GFTUSDT","d":[]},{"s":"KRAKEN:PSTAKEEUR","d":[]},{"s":"UNISWAP3POLYGON:TNMWMATIC_EE8717.USD","d":[]},{"s":"GATEIO:ELONUSDT","d":[]},{"s":"UNISWAP:GTXWETH_FF4379","d":[]},{"s":"BINGX:ONGUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHABDS","d":[]},{"s":"UNISWAP3ETH:SATOSHIWETH_E325D8.USD","d":[]},{"s":"WOONETWORK:UPPGUSDT","d":[]},{"s":"PANGOLIN:XAVAWAVAX_42152B.USD","d":[]},{"s":"KRAKEN:API3USD.PM","d":[]},{"s":"UNISWAP3ETH:SHIMAWETH_812E90.USD","d":[]},{"s":"GATEIO:RICEUSDT","d":[]},{"s":"EXMO:XLMUSD","d":[]},{"s":"HITBTC:MLNUSD","d":[]},{"s":"UNISWAP3ETH:VLLCWETH","d":[]},{"s":"BLOFIN:KASUSDT.P","d":[]},{"s":"BITFINEX:TIAUST","d":[]},{"s":"BINGX:ILVUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:BALUSDC_84AA7C.USD","d":[]},{"s":"PHEMEX:AIUSDT","d":[]},{"s":"BINGX:STORJUSDT.P","d":[]},{"s":"UNISWAP:KABOSUINUWETH_35CA4D","d":[]},{"s":"GATEIO:SHRUSDT","d":[]},{"s":"PHEMEX:ZILUSDT.P","d":[]},{"s":"KRAKEN:MOVRUSD","d":[]},{"s":"HITBTC:WIKIUSD","d":[]},{"s":"UNISWAP:CHOPPYWETH_79DDDE","d":[]},{"s":"MEXC:FUNUSDT","d":[]},{"s":"UNISWAP3ETH:FRAXDAI","d":[]},{"s":"QUICKSWAP:FIDWETH_497F87.USD","d":[]},{"s":"TRADERJOE:CAIWAVAX_E5E9D6","d":[]},{"s":"BITGET:XCNUSDT","d":[]},{"s":"UNISWAP3POLYGON:WOMBATWMATIC_7EB31B.USD","d":[]},{"s":"MEXC:SQTSANTUSDT","d":[]},{"s":"UNISWAP:FATWETH_2EF289.USD","d":[]},{"s":"UNISWAP:DIGIWETH_52084D","d":[]},{"s":"COINEX:ETNBTC","d":[]},{"s":"BINANCE:LPTUSDT","d":[]},{"s":"MEXC:LITHOUSDT","d":[]},{"s":"PANGOLIN:LOOTWAVAX_1BFAE7","d":[]},{"s":"QUICKSWAP:AGEURUSDC_82A54E","d":[]},{"s":"ZOOMEX:TRXUSDT.P","d":[]},{"s":"UNISWAP3ETH:STTAOUSDC","d":[]},{"s":"BYBIT:FTMUSDT","d":[]},{"s":"BINANCE:PERPUSDT","d":[]},{"s":"UNISWAP:AZUREWETH_61B7E2.USD","d":[]},{"s":"UNISWAP:NMCWETH_965A03.USD","d":[]},{"s":"POLONIEX:TONUSDD","d":[]},{"s":"HITBTC:UNIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCAPYBARA","d":[]},{"s":"SPOOKYSWAP:WSHECWFTM_0BFE6F","d":[]},{"s":"HITBTC:OGNUSDC","d":[]},{"s":"UNISWAP3ETH:DSUUSDC","d":[]},{"s":"UNISWAP3ETH:MKRDAI","d":[]},{"s":"KRAKEN:AAVEGBP","d":[]},{"s":"UNISWAP3ETH:OHMWETH_88051B.USD","d":[]},{"s":"BITGET:ENSUSDT.P","d":[]},{"s":"MEXC:XMPUSDT","d":[]},{"s":"UNISWAP:UNIBOTWETH_8DBEE2.USD","d":[]},{"s":"UNISWAP:MEFWETH_675FF6.USD","d":[]},{"s":"BITMEX:LUNAUSD.P","d":[]},{"s":"UNISWAP3ETH:NBTUSDT","d":[]},{"s":"UNISWAP:CAIWETH_3D5F3B","d":[]},{"s":"UNISWAP3ETH:FMCWETH","d":[]},{"s":"OKX:FLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:BLURUSDC_92AB87.USD","d":[]},{"s":"UNISWAP:SHIBCWETH_16A0A5.USD","d":[]},{"s":"UNISWAP3ETH:NFTEWETH","d":[]},{"s":"KRAKEN:ALGOGBP","d":[]},{"s":"UNISWAP3ETH:GPTWETH_E0F32E.USD","d":[]},{"s":"UNISWAP3ETH:MHFWETH","d":[]},{"s":"UNISWAP:NOWUSDT_FB9EC3","d":[]},{"s":"UNISWAP3ARBITRUM:FUCUSDT_390070.USD","d":[]},{"s":"HITBTC:PAXGUSDT","d":[]},{"s":"BITRUE:AAVEXRP","d":[]},{"s":"BINANCE:CKBUSDT","d":[]},{"s":"POLONIEX:SOLOUSDT","d":[]},{"s":"GATEIO:HCUSDT","d":[]},{"s":"BITSTAMP:ZRXUSD","d":[]},{"s":"COINEX:BSVBTC","d":[]},{"s":"UNISWAP3ETH:WETHAVAV","d":[]},{"s":"UNISWAP3POLYGON:CHAINWETH_12358F.USD","d":[]},{"s":"UNISWAP:ROCKWETH_9C1928.USD","d":[]},{"s":"MEXC:ATOLOUSDT","d":[]},{"s":"UNISWAP3ETH:STGWETH","d":[]},{"s":"UNISWAP3ETH:ENSWETH","d":[]},{"s":"UNISWAP:ONICWETH_54C6E8","d":[]},{"s":"BINGX:TRUUSDT.P","d":[]},{"s":"UNISWAP:SXPWETH_AC317D","d":[]},{"s":"BYBIT:BNBUSDC.P","d":[]},{"s":"UNISWAP3POLYGON:METALUSDC_FB6F79.USD","d":[]},{"s":"GATEIO:TITAUSDT","d":[]},{"s":"BYBIT:APEXUSDC","d":[]},{"s":"COINEX:FLUXBTC","d":[]},{"s":"UNISWAP:WNXMWETH_23BFF8","d":[]},{"s":"PHEMEX:UNFIUSDT","d":[]},{"s":"BINANCE:CHZBNB","d":[]},{"s":"BINANCE:COTIBTC","d":[]},{"s":"UNISWAP:ENCRWETH_B1A7CB","d":[]},{"s":"UNISWAP3ETH:PURPLEUSDC_60B376.USD","d":[]},{"s":"BINANCE:VIDTUSDT","d":[]},{"s":"GATEIO:MDXUSDT","d":[]},{"s":"PIONEX:SHIBUSDT.P","d":[]},{"s":"TRADERJOE:AUXUSDC_83CCF9.USD","d":[]},{"s":"UNISWAP:CREAMWETH_DDF9B7","d":[]},{"s":"UNISWAP3ARBITRUM:OCEANWETH_1E35DD.USD","d":[]},{"s":"PANGOLIN:AVXTWAVAX_792055","d":[]},{"s":"COINEX:ACAUSDT","d":[]},{"s":"BINGX:HIGHUSDT.PS","d":[]},{"s":"HITBTC:CNSUSD","d":[]},{"s":"WHITEBIT:PORTALUSDT.P","d":[]},{"s":"TRADERJOE:WOLFWAVAX_08DB8E","d":[]},{"s":"PANGOLIN:DAIEUSDCE_221CAC","d":[]},{"s":"COINEX:GFTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSMOG","d":[]},{"s":"BINANCE:QKCUSDT","d":[]},{"s":"HITBTC:TRUUSDT","d":[]},{"s":"GATEIO:SPUMEUSDT","d":[]},{"s":"BINANCE:PEPETUSD","d":[]},{"s":"MEXC:FUSEUSDT","d":[]},{"s":"COINBASE:AAVEBTC","d":[]},{"s":"UNISWAP3ETH:METROWETH_DF3AA6.USD","d":[]},{"s":"GATEIO:PNTUSDT","d":[]},{"s":"COINEX:SUIUSDT","d":[]},{"s":"QUICKSWAP:NSFWWMATIC_9646A9","d":[]},{"s":"UNISWAP:BTSEWETH_966088","d":[]},{"s":"UNISWAP:ALPHAWETH_70235A.USD","d":[]},{"s":"MEXC:OGUSDT","d":[]},{"s":"UNISWAP:LONGWETH_2DF2EF.USD","d":[]},{"s":"BINANCE:MINAUSDT","d":[]},{"s":"MEXC:1EXUSDT","d":[]},{"s":"PIONEX:CELRUSDT.P","d":[]},{"s":"MEXC:OKBUSDT","d":[]},{"s":"WOONETWORK:BSVUSDT","d":[]},{"s":"HITBTC:AIDOGEUSDT","d":[]},{"s":"COINBASE:RAIUSD","d":[]},{"s":"UNISWAP:CHAOSWETH_A44A9D.USD","d":[]},{"s":"UNISWAP:SCANSWETH_B7A86C","d":[]},{"s":"MEXC:DMAILUSDT.P","d":[]},{"s":"UNISWAP:DCNTWETH_EA9A6A.USD","d":[]},{"s":"BITGET:LSD7USDT","d":[]},{"s":"POLONIEX:TOSHIUSDT","d":[]},{"s":"UNISWAP:PXWETH_277E11.USD","d":[]},{"s":"UNISWAP3ETH:NETVRWETH_9BDC7D.USD","d":[]},{"s":"BITHUMB:COTIKRW","d":[]},{"s":"UNISWAP:TRIBEFEI_9928E4.USD","d":[]},{"s":"KRAKEN:CFXUSD.PM","d":[]},{"s":"BYBIT:BCUTUSDT","d":[]},{"s":"MEXC:PLAUSDT","d":[]},{"s":"COINEX:TRACBRCUSDT","d":[]},{"s":"COINBASE:AURORAUSD","d":[]},{"s":"EXMO:ATOMUSD","d":[]},{"s":"POLONIEX:CGPTUSDT","d":[]},{"s":"UNISWAP3POLYGON:MANAWMATIC_56845F.USD","d":[]},{"s":"UPBIT:POWRKRW","d":[]},{"s":"POLONIEX:PRQUSDT","d":[]},{"s":"BINANCEUS:LINKBTC","d":[]},{"s":"UNISWAP3ETH:PEPECOINWETH_87F9EA.USD","d":[]},{"s":"UNISWAP3ETH:WETHSILV","d":[]},{"s":"POLONIEX:LTCUSDT","d":[]},{"s":"UNISWAP3POLYGON:BTC.BWBTC_444E23.USD","d":[]},{"s":"COINEX:GOGUSDT","d":[]},{"s":"BYBIT:AIOZUSDT","d":[]},{"s":"MEXC:RINGUSDT","d":[]},{"s":"HITBTC:CVCUSDT","d":[]},{"s":"PIONEX:SOLBTC.P","d":[]},{"s":"UNISWAP:SNMWETH_E2DBEB.USD","d":[]},{"s":"BINANCE:ARKMBTC","d":[]},{"s":"HITBTC:EGLDBTC","d":[]},{"s":"COINEX:VGXUSDT","d":[]},{"s":"UNISWAP:VXONWETH_98E940.USD","d":[]},{"s":"MEXC:DYPUSDT","d":[]},{"s":"BITGET:WAXPUSDT.P","d":[]},{"s":"BITHUMB:AVAXKRW","d":[]},{"s":"HITBTC:TXATUSD","d":[]},{"s":"QUICKSWAP:KITTYWMATIC_CA75C4","d":[]},{"s":"UNISWAP:DOUGWETH_6A607A.USD","d":[]},{"s":"WOONETWORK:LDOUSDT","d":[]},{"s":"BLOFIN:BTCUSDT.P","d":[]},{"s":"GATEIO:EULUSDT","d":[]},{"s":"UNISWAP:SWEETWETH_6F807C","d":[]},{"s":"MEXC:GALUSDC","d":[]},{"s":"UNISWAP:PGGWETH_2ABB6A.USD","d":[]},{"s":"BITFINEX:OMGETH","d":[]},{"s":"QUICKSWAP:GENIUSDC_393C3A","d":[]},{"s":"UNISWAP:CRMTWETH_128323","d":[]},{"s":"MEXC:DRAGON404USDT","d":[]},{"s":"UNISWAP:EGGWETH_9064DF","d":[]},{"s":"QUICKSWAP:SHNWMATIC_F6467B","d":[]},{"s":"UNISWAP:CMONMONG_C1966B.USD","d":[]},{"s":"BITRUE:ADAUSDC","d":[]},{"s":"UNISWAP3ETH:WETHTORN","d":[]},{"s":"UNISWAP3POLYGON:GGTKWETH_2E97F2.USD","d":[]},{"s":"TRADERJOE:GRELFAVAWAVAX_53FAC4","d":[]},{"s":"PHEMEX:MAVUSDT.P","d":[]},{"s":"GATEIO:XYMUSDT","d":[]},{"s":"UNISWAP:HYPRWETH_EEFAA1.USD","d":[]},{"s":"UNISWAP:UMIWETH_41875E","d":[]},{"s":"BINANCEUS:SANTOSUSDT","d":[]},{"s":"SPOOKYSWAP:STGUSDC_AA5255.USD","d":[]},{"s":"UNISWAP3ETH:PAPERWETH_AD6D2F.USD","d":[]},{"s":"HITBTC:IOTAETH","d":[]},{"s":"BINANCEUS:CRVUSDT","d":[]},{"s":"SPOOKYSWAP:ANKRWFTM_313439","d":[]},{"s":"UNISWAP:VALWETH_EADAB5.USD","d":[]},{"s":"BYBIT:ACHUSDT.P","d":[]},{"s":"UNISWAP:SHIFUWETH_865457","d":[]},{"s":"GATEIO:XMCUSDT","d":[]},{"s":"TRADERJOE:GRABWAVAX_5AC6F8.USD","d":[]},{"s":"ZOOMEX:ARPAUSDT.P","d":[]},{"s":"BISWAP:ARGUSDT_72B482","d":[]},{"s":"UNISWAP:CCDWETH_95F58F.USD","d":[]},{"s":"GATEIO:HAHAUSDT","d":[]},{"s":"XEXCHANGE:SAFEUSDC","d":[]},{"s":"BITHUMB:FTMKRW","d":[]},{"s":"UNISWAP:MEMEWETH_B953C7.USD","d":[]},{"s":"UNISWAP3ETH:KXAWETH_0B1A02.USD","d":[]},{"s":"UNISWAP:GOBIWETH_02FA6B","d":[]},{"s":"UNISWAP:O3USDT_4B8852","d":[]},{"s":"PIONEX:C98USDT.P","d":[]},{"s":"COINEX:GMMUSDT","d":[]},{"s":"COINEX:BNBUSDT","d":[]},{"s":"UNISWAP:KALLYWETH_9B2481.USD","d":[]},{"s":"UNISWAP3ETH:USDTOBI","d":[]},{"s":"WHITEBIT:MATICUSDT.P","d":[]},{"s":"BITRUE:LRCXRP","d":[]},{"s":"GATEIO:WGRTUSDT","d":[]},{"s":"HITBTC:NEOUSDT","d":[]},{"s":"POLONIEX:GENESISUSDT","d":[]},{"s":"UNISWAP:PVPWETH_B5BB92.USD","d":[]},{"s":"UNISWAP3ETH:MLNUSDC_79599E.USD","d":[]},{"s":"UNISWAP3ETH:USDCSNX","d":[]},{"s":"UNISWAP3ETH:GENIUSDC_F60AFE.USD","d":[]},{"s":"POLONIEX:DCRUSD","d":[]},{"s":"MEXC:SONNEUSDT","d":[]},{"s":"BITGET:JTOUSDT.P","d":[]},{"s":"UNISWAP:MUSKWETH_8D7A93.USD","d":[]},{"s":"GATEIO:LTOUSDT","d":[]},{"s":"UNISWAP3ETH:RWSWETH","d":[]},{"s":"UNISWAP:MARYWETH_E93E05.USD","d":[]},{"s":"GATEIO:XAVAUSDT","d":[]},{"s":"DELTA:ALGOUSDT.P","d":[]},{"s":"GATEIO:ADAUSDT.3L","d":[]},{"s":"UNISWAP:HMKRWETH_0CDC1E.USD","d":[]},{"s":"PHEMEX:TKOUSDT","d":[]},{"s":"UNISWAP3ETH:IDEXWETH","d":[]},{"s":"UNISWAP:KENNELWETH_73B66A","d":[]},{"s":"UNISWAP:GMACWETH_126262","d":[]},{"s":"UNISWAP3ETH:ABTWETH","d":[]},{"s":"COINEX:SSWPUSDT","d":[]},{"s":"UNISWAP3ETH:BYTEUSDC_50975A.USD","d":[]},{"s":"POLONIEX:FTNUSDT","d":[]},{"s":"WHITEBIT:SUSHIBTC","d":[]},{"s":"UNISWAP:API3WETH_4DD264.USD","d":[]},{"s":"UNISWAP3ETH:721FLC_EA8A7E.USD","d":[]},{"s":"UNISWAP3ARBITRUM:TBANKWETH_299D4F.USD","d":[]},{"s":"UNISWAP:ICSAHEX_BAAF3B","d":[]},{"s":"BINANCE:HOTUSDT","d":[]},{"s":"UNISWAP3ETH:GSWIFTWETH","d":[]},{"s":"UNISWAP3POLYGON:TROTELWMATIC_360103.USD","d":[]},{"s":"UNISWAP3POLYGON:EURTUSDT_DD386C.USD","d":[]},{"s":"UPBIT:WAVESKRW","d":[]},{"s":"QUICKSWAP:WEB3WETH_EE875E","d":[]},{"s":"UNISWAP:BTCPEPWETH_CAF528","d":[]},{"s":"UNISWAP3ETH:WETHSTC","d":[]},{"s":"BYBIT:KAVAUSDT.P","d":[]},{"s":"OKX:NFTUSDT.P","d":[]},{"s":"UNISWAP:XORWETH_019621","d":[]},{"s":"EXMO:LTCBTC","d":[]},{"s":"BINANCE:COMPTRY","d":[]},{"s":"GATEIO:MDAOUSDT","d":[]},{"s":"GATEIO:PSLUSDT","d":[]},{"s":"BITHUMB:QTUMKRW","d":[]},{"s":"ZOOMEX:BANDUSDT.P","d":[]},{"s":"BINGX:POWRUSDT.PS","d":[]},{"s":"UNISWAP3ETH:USDCDI","d":[]},{"s":"BINANCEUS:UNIUSDT","d":[]},{"s":"KRAKEN:MSOLEUR","d":[]},{"s":"BISWAP:ETHUSDT_63B30D","d":[]},{"s":"POLONIEX:VINUUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDEFROGS","d":[]},{"s":"UNISWAP3ETH:LEOSDEX_EFD61E.USD","d":[]},{"s":"ZOOMEX:CTCUSDT.P","d":[]},{"s":"UPBIT:APTKRW","d":[]},{"s":"QUICKSWAP:SWPUSDT_314E61","d":[]},{"s":"UNISWAP3POLYGON:SNXWETH_212152.USD","d":[]},{"s":"UNISWAP3ETH:WETHFABRIC","d":[]},{"s":"UNISWAP:ANARCHYWETH_088301","d":[]},{"s":"UNISWAP3ETH:REEFWETH","d":[]},{"s":"UNISWAP3ARBITRUM:EMCUSDC_74C1BA.USD","d":[]},{"s":"BYBIT:FTMUSDT.2L","d":[]},{"s":"UNISWAP3ETH:FTMWETH_646523.USD","d":[]},{"s":"UNISWAP:VBTCWETH_CFDCD6.USD","d":[]},{"s":"KRAKEN:DOTGBP","d":[]},{"s":"UNISWAP:KIBSHIWETH_F22FDD.USD","d":[]},{"s":"WHITEBIT:SCMUSDT","d":[]},{"s":"UNISWAP:MOSESWETH_635B9E","d":[]},{"s":"MEXC:ORNJUSDT","d":[]},{"s":"COINEX:EWTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:EMPWETH_0AD1E9.USD","d":[]},{"s":"BITGET:AZEROUSDT","d":[]},{"s":"GATEIO:PEOPLEUSDT","d":[]},{"s":"KRAKEN:KINTUSD","d":[]},{"s":"POLONIEX:POLISUSDT","d":[]},{"s":"HITBTC:USDTUSDC","d":[]},{"s":"MEXC:INVIUSDT","d":[]},{"s":"COINBASE:CHZUSDT","d":[]},{"s":"GATEIO:CHAPZUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAGIX","d":[]},{"s":"MEXC:VEXTUSDT","d":[]},{"s":"WHITEBIT:VOXELUSDT","d":[]},{"s":"UNISWAP:REDDITWETH_B77C22.USD","d":[]},{"s":"POLONIEX:POGAIUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:ERNUSDC_ACDB63.USD","d":[]},{"s":"PHEMEX:VOXELUSDT","d":[]},{"s":"UNISWAP:PMPYWETH_EBBC72.USD","d":[]},{"s":"UNISWAP3ARBITRUM:XAIUSDC_05E3D1.USD","d":[]},{"s":"PHEMEX:SNXUSDT","d":[]},{"s":"BITGET:GQUSDT","d":[]},{"s":"BINANCE:PORTALUSDT","d":[]},{"s":"QUICKSWAP:SIMWMATIC_77F5FD.USD","d":[]},{"s":"GATEIO:ROOBEEUSDT","d":[]},{"s":"BITHUMB:LMKRW","d":[]},{"s":"MEXC:XYMUSDT","d":[]},{"s":"BTSE:ALGOUSD.P","d":[]},{"s":"BISWAP:USDCUSDT_148376","d":[]},{"s":"UNISWAP:DDAWGSWETH_189967","d":[]},{"s":"BINANCE:AEURUSDT","d":[]},{"s":"COINBASE:BTRSTUSD","d":[]},{"s":"UNISWAP3ETH:WETHCON","d":[]},{"s":"WHITEBIT:ARKMUSDT.P","d":[]},{"s":"UNISWAP:VUSDVOW_97BE09","d":[]},{"s":"KRAKEN:ETCUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHXED","d":[]},{"s":"GATEIO:AURORAUSDT","d":[]},{"s":"HITBTC:SBTCETH","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDT_9E91DD.USD","d":[]},{"s":"GATEIO:LEVUSDT","d":[]},{"s":"POLONIEX:ATOMUSD","d":[]},{"s":"UNISWAP:COREWETH_32CE7E.USD","d":[]},{"s":"KRAKEN:NMREUR","d":[]},{"s":"BITSTAMP:AUDIOBTC","d":[]},{"s":"MEXC:YFIUSDT","d":[]},{"s":"UPBIT:MOCKRW","d":[]},{"s":"BLOFIN:PERPUSDT.P","d":[]},{"s":"UNISWAP:CASINUWETH_1A0D2C.USD","d":[]},{"s":"UNISWAP3ETH:USDTWAVX","d":[]},{"s":"WOONETWORK:LRCUSDT","d":[]},{"s":"POLONIEX:ARDRUSDT","d":[]},{"s":"BINGX:SSVUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:BEATUSDC_80101F.USD","d":[]},{"s":"PHEMEX:KNCUSDT","d":[]},{"s":"BITRUE:QNTBTC","d":[]},{"s":"BINANCE:STGBTC","d":[]},{"s":"GATEIO:GXEUSDT","d":[]},{"s":"XEXCHANGE:QWTWEGLD","d":[]},{"s":"UNISWAP:RENWETH_8BD166.USD","d":[]},{"s":"UNISWAP:RONWETH_4905EC","d":[]},{"s":"UNISWAP:BIGCAPWETH_E056D6","d":[]},{"s":"UNISWAP:TASWETH_40849D","d":[]},{"s":"BITFINEX:JASMYUST","d":[]},{"s":"GATEIO:BANKUSDT","d":[]},{"s":"BINANCE:RPLUSDT","d":[]},{"s":"UNISWAP3ETH:CERESWETH","d":[]},{"s":"GATEIO:SCRTUSDT","d":[]},{"s":"UNISWAP:WBANWETH_1F249F","d":[]},{"s":"GATEIO:COFIXUSDT","d":[]},{"s":"UNISWAP:HULKWETH_320DD5","d":[]},{"s":"MEXC:GODSUSDT.P","d":[]},{"s":"WHITEBIT:LINKUSDT","d":[]},{"s":"BINANCE:LINKETH","d":[]},{"s":"HITBTC:PPTUSD","d":[]},{"s":"PIONEX:ILVUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHGRG","d":[]},{"s":"COINEX:MONAUSDT","d":[]},{"s":"BYBIT:SSVUSDT","d":[]},{"s":"BITMEX:XBTUSDU2024","d":[]},{"s":"BYBIT:FITFIUSDT","d":[]},{"s":"BINANCE:NTRNUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCFLC","d":[]},{"s":"UNISWAP:KNDXWETH_79DD15","d":[]},{"s":"BINGX:ADAUSDT.PS","d":[]},{"s":"BITFINEX:BLURBTC","d":[]},{"s":"UNISWAP:GZONEWETH_99D1A8.USD","d":[]},{"s":"COINEX:OOEUSDT","d":[]},{"s":"MEXC:AMBUSDT.P","d":[]},{"s":"PIONEX:BALUSDT.P","d":[]},{"s":"COINEX:LIGOUSDT","d":[]},{"s":"BITGET:CKBUSDT.P","d":[]},{"s":"GATEIO:IDEAUSDT","d":[]},{"s":"BITHUMB:TAVAKRW","d":[]},{"s":"BLOFIN:CAKEUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:USDCUSDT_31083A.USD","d":[]},{"s":"SPOOKYSWAP:DEIUSDC_D343B8","d":[]},{"s":"PANGOLIN:ODDZWAVAX_BAE8EE","d":[]},{"s":"UNISWAP3ETH:NXRAWETH_755F01.USD","d":[]},{"s":"UNISWAP:HAHAWETH_7E3651.USD","d":[]},{"s":"BINGX:BATUSDT.P","d":[]},{"s":"PHEMEX:LDOUSDT","d":[]},{"s":"POLONIEX:AXEUSDT","d":[]},{"s":"BINANCE:CHESSBTC","d":[]},{"s":"UNISWAP:TAHWETH_68F80E","d":[]},{"s":"MEXC:STEEMUSDT","d":[]},{"s":"UNISWAP3ETH:RNGCOMP","d":[]},{"s":"TRADERJOE:SLDWAVAX_CA9F25","d":[]},{"s":"UNISWAP:CONANWETH_10BFF0.USD","d":[]},{"s":"GATEIO:MCRTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:PENDLEWETH_DBAEB7.USD","d":[]},{"s":"SPOOKYSWAP:HNDWFTM_16B6DE","d":[]},{"s":"UNISWAP:GNOWETH_3E8468.USD","d":[]},{"s":"KRAKEN:RARIEUR","d":[]},{"s":"UNISWAP:ARKIWETH_8EE318","d":[]},{"s":"GATEIO:YGGUSDT","d":[]},{"s":"ZOOMEX:ADAUSDT.P","d":[]},{"s":"POLONIEX:QIUSDT","d":[]},{"s":"BINANCE:PORTALTRY","d":[]},{"s":"MEXC:BBSUSDT","d":[]},{"s":"WHITEBIT:SNXUSDT","d":[]},{"s":"COINBASE:MLNUSD","d":[]},{"s":"POLONIEX:BTSBTC","d":[]},{"s":"UNISWAP:KITTYWETH_937E88.USD","d":[]},{"s":"GATEIO:FERUSDT","d":[]},{"s":"PHEMEX:BTCUSDC","d":[]},{"s":"POLONIEX:LOGTUSDT","d":[]},{"s":"UNISWAP:TONWETH_4F1A2E","d":[]},{"s":"BITGET:VINUUSDT","d":[]},{"s":"UNISWAP3POLYGON:WETHWMATIC_33C4F0.USD","d":[]},{"s":"UNISWAP3POLYGON:GETUSDC_2E3F22.USD","d":[]},{"s":"KRAKEN:BCHAUD","d":[]},{"s":"MEXC:NUMUSDT","d":[]},{"s":"QUICKSWAP:LUPUSLIC_2320AF","d":[]},{"s":"UNISWAP:MOOKWETH_70D4BF.USD","d":[]},{"s":"HITBTC:SUSHIUSDT","d":[]},{"s":"EXMO:ETHUSDT","d":[]},{"s":"UNISWAP:KISHUWETH_F82D8E.USD","d":[]},{"s":"BITMEX:ARBUSDT.P","d":[]},{"s":"MEXC:BICOUSDT.P","d":[]},{"s":"UNISWAP3ETH:LIF3WETH","d":[]},{"s":"UNISWAP:FADERWETH_1893F6.USD","d":[]},{"s":"UNISWAP:VITALIKETHWETH_115DD2","d":[]},{"s":"UNISWAP3ETH:USDCMM","d":[]},{"s":"MEXC:NRGUSDT","d":[]},{"s":"TRADERJOE:ICEWAVAX_F8BA19","d":[]},{"s":"UNISWAP3ETH:WETHARTE","d":[]},{"s":"BINANCE:LINAUSDT","d":[]},{"s":"UNISWAP:EVILPEPEWETH_98BB85.USD","d":[]},{"s":"COINEX:SCRTUSDC","d":[]},{"s":"QUICKSWAP:PAPERWMATIC_29689A.USD","d":[]},{"s":"MEXC:POOHUSDT","d":[]},{"s":"UPBIT:AERGOKRW","d":[]},{"s":"UNISWAP:PINTWETH_48EC41","d":[]},{"s":"UNISWAP3ETH:MEOWWETH","d":[]},{"s":"HITBTC:SWFTCETH","d":[]},{"s":"COINEX:PAALUSDT","d":[]},{"s":"UPBIT:STORJKRW","d":[]},{"s":"GATEIO:LSSUSDT","d":[]},{"s":"TRADERJOE:DEXTFWAVAX_8DC40C.USD","d":[]},{"s":"UNISWAP3ETH:404CATSWETH_3242A5.USD","d":[]},{"s":"UNISWAP3ETH:WETHRLY","d":[]},{"s":"UNISWAP:SYBLWETH_8DA23F","d":[]},{"s":"UNISWAP3POLYGON:GHSTWETH_8F16A8.USD","d":[]},{"s":"UNISWAP:UXOSWETH_DB1B4A","d":[]},{"s":"BITSTAMP:XRPBTC","d":[]},{"s":"UNISWAP3ARBITRUM:GNSUSDC_8D76E9.USD","d":[]},{"s":"QUICKSWAP:GLTRGHST_B0E354","d":[]},{"s":"UNISWAP3ETH:USDTSHIB","d":[]},{"s":"GATEIO:ALPAUSDT","d":[]},{"s":"SPOOKYSWAP:BEETSWFTM_648A74","d":[]},{"s":"HITBTC:SMARTETH","d":[]},{"s":"UNISWAP:PEELWETH_1E3869.USD","d":[]},{"s":"COINEX:VAIUSDT","d":[]},{"s":"BYBIT:MEEUSDT","d":[]},{"s":"UNISWAP3ETH:TUSDUSDT_69EF43.USD","d":[]},{"s":"PANGOLIN:COQWAVAX_C4D630.USD","d":[]},{"s":"UNISWAP3ETH:USDTBRWL","d":[]},{"s":"MEXC:GELUSDT","d":[]},{"s":"UNISWAP:LEVXWETH_2E5151.USD","d":[]},{"s":"UNISWAP3POLYGON:OMWETH_F9AEF7.USD","d":[]},{"s":"HITBTC:ETHUSDC","d":[]},{"s":"GATEIO:OXTUSDT","d":[]},{"s":"KRAKEN:SHIBEUR","d":[]},{"s":"PANGOLIN:USDTEUSDCE_C13E56","d":[]},{"s":"UNISWAP3ETH:USDCNOIA","d":[]},{"s":"UNISWAP:TAILWETH_55B71C","d":[]},{"s":"BYBIT:DOTUSDT.3S","d":[]},{"s":"MEXC:IQTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMIC","d":[]},{"s":"BYBIT:AVAUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCWETH","d":[]},{"s":"GATEIO:CATGIRLUSDT","d":[]},{"s":"MEXC:FXUSDT","d":[]},{"s":"BINANCE:GMTUSDT","d":[]},{"s":"COINBASE:LTCUSD","d":[]},{"s":"BYBIT:LTCUSDT.2L","d":[]},{"s":"TRADERJOE:DEVSWAVAX_B13B6F","d":[]},{"s":"BINGX:ONEUSDT.P","d":[]},{"s":"BYBIT:ETHUSDC","d":[]},{"s":"GATEIO:FIUUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBYTES","d":[]},{"s":"UNISWAP:SOPHWETH_9DD361.USD","d":[]},{"s":"UNISWAP3ETH:WETHEWNS","d":[]},{"s":"XEXCHANGE:PADAWANUSDC","d":[]},{"s":"BITMEX:LINKUSDT.P","d":[]},{"s":"GATEIO:EVRYUSDT","d":[]},{"s":"GATEIO:SFGUSDT","d":[]},{"s":"MEXC:MCBUSDT","d":[]},{"s":"HITBTC:MEMEUSDT","d":[]},{"s":"UNISWAP:FTMWETH_1FFC57.USD","d":[]},{"s":"UNISWAP:DGIWETH_E15255.USD","d":[]},{"s":"MEXC:GSTUSDT","d":[]},{"s":"MEXC:ALTUSDT","d":[]},{"s":"COINEX:KTONUSDT","d":[]},{"s":"UNISWAP3POLYGON:TRADEUSDT_80C5C7.USD","d":[]},{"s":"PIONEX:BLURUSDT.P","d":[]},{"s":"MEXC:SECGUSDT","d":[]},{"s":"QUICKSWAP:KOGECOINWMATIC_388550.USD","d":[]},{"s":"POLONIEX:FOOMUSDT","d":[]},{"s":"UNISWAP:KENWETH_E55FE7.USD","d":[]},{"s":"UNISWAP:DGNRTWETH_290E8D.USD","d":[]},{"s":"MEXC:FOUSDT","d":[]},{"s":"UNISWAP:DGWETH_3DF70E.USD","d":[]},{"s":"UNISWAP:PALMWETH_A7F098","d":[]},{"s":"QUICKSWAP:TEADWMATIC_7EFFDD.USD","d":[]},{"s":"SPOOKYSWAP:ALPACAWFTM_F66D2B","d":[]},{"s":"UNISWAP:PALAIWETH_7FA640.USD","d":[]},{"s":"SPOOKYSWAP:USDVWFTM_E670C4.USD","d":[]},{"s":"UNISWAP:GLCHWETH_1037FA","d":[]},{"s":"MEXC:XAIUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEPEUSDT_A7BC6C.USD","d":[]},{"s":"BINGX:LPTUSDT.PS","d":[]},{"s":"MEXC:BTCSUSDT","d":[]},{"s":"MEXC:VIZUSDT","d":[]},{"s":"UNISWAP:WEALTHWETH_FA0F34","d":[]},{"s":"UNISWAP3ETH:CYBERUSDC_05B428.USD","d":[]},{"s":"UNISWAP:BOTCWETH_13E088.USD","d":[]},{"s":"UNISWAP3ETH:AAIWETH","d":[]},{"s":"UNISWAP3ETH:CREAMWETH_61F6CF.USD","d":[]},{"s":"HITBTC:EQXUSD","d":[]},{"s":"UNISWAP3ETH:PLSXWETH","d":[]},{"s":"UNISWAP3ETH:XAUTUSDT_654605.USD","d":[]},{"s":"UNISWAP3ETH:POHMDAI","d":[]},{"s":"BINANCE:ADAFDUSD","d":[]},{"s":"BINANCE:ATOMEUR","d":[]},{"s":"GATEIO:HMTTUSDT","d":[]},{"s":"COINEX:SPSUSDT","d":[]},{"s":"BITHUMB:SIXKRW","d":[]},{"s":"BINANCE:1000SATSUSDT","d":[]},{"s":"WOONETWORK:ADAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSIDUS","d":[]},{"s":"UNISWAP:AETHCWETH_614780.USD","d":[]},{"s":"POLONIEX:XRPUSDT","d":[]},{"s":"GATEIO:ASRUSDT","d":[]},{"s":"UNISWAP:KTLYOWETH_CABEBC","d":[]},{"s":"UNISWAP3ETH:WETHUSDC_8AD599.USD","d":[]},{"s":"PANGOLIN:AAVEEWAVAX_5944F1","d":[]},{"s":"UNISWAP:NTXWETH_B3D994.USD","d":[]},{"s":"PIONEX:ZKFUSDT.P","d":[]},{"s":"QUICKSWAP:NASMGWMATIC_CA7300","d":[]},{"s":"BINANCE:KAVABTC","d":[]},{"s":"GATEIO:GROWUSDT","d":[]},{"s":"HITBTC:PERPUSDT","d":[]},{"s":"UNISWAP3ETH:OTACONWETH_03E67A.USD","d":[]},{"s":"UNISWAP3ETH:QNTWETH","d":[]},{"s":"MEXC:DRNUSDT","d":[]},{"s":"UNISWAP:MASYAWETH_D4A226.USD","d":[]},{"s":"SPOOKYSWAP:ICEWFTM_623EE4","d":[]},{"s":"GATEIO:XAUTUSDT","d":[]},{"s":"UNISWAP:21E8WETH_D9E0CE.USD","d":[]},{"s":"COINEX:LUSDT","d":[]},{"s":"UNISWAP3ETH:FOXWETH_2F7964.USD","d":[]},{"s":"PHEMEX:ACHUSDT.P","d":[]},{"s":"UNISWAP3ETH:DAIRARI","d":[]},{"s":"MEXC:OGNUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:THXUSDC_3F7CD6.USD","d":[]},{"s":"PHEMEX:WBTCUSDT","d":[]},{"s":"BITRUE:APEBTR","d":[]},{"s":"UNISWAP3ETH:GRTUSDC","d":[]},{"s":"MEXC:UGASUSDT","d":[]},{"s":"BITFINEX:ETHWUSD","d":[]},{"s":"UNISWAP:KNINEWETH_D7CEF1","d":[]},{"s":"UNISWAP:EBETWETH_2F46DD.USD","d":[]},{"s":"UNISWAP3ETH:USDCDHT","d":[]},{"s":"QUICKSWAP:BIOSWMATIC_267720","d":[]},{"s":"OKX:AGIXUSDT.P","d":[]},{"s":"QUICKSWAP:PXIWMATIC_DB9EB4","d":[]},{"s":"UNISWAP3ETH:MKRWETH","d":[]},{"s":"UNISWAP3OPTIMISM:WETHUSDC_B58996.USD","d":[]},{"s":"UNISWAP3ETH:DEOWETH","d":[]},{"s":"POLONIEX:KLVUSDT","d":[]},{"s":"BITGET:VMINTUSDT","d":[]},{"s":"HITBTC:LPTUSD","d":[]},{"s":"GATEIO:SDAOUSDT","d":[]},{"s":"UNISWAP3POLYGON:ONEBTCUSDC_339D2B.USD","d":[]},{"s":"BITHUMB:APEKRW","d":[]},{"s":"WAGYUSWAP:WVLXUSDC_757AC3","d":[]},{"s":"TRADERJOE:DWCWAVAX_BE39C0.USD","d":[]},{"s":"UNISWAP:ROOTWETH_01F898.USD","d":[]},{"s":"UNISWAP3ETH:CADUSDC_A05976.USD","d":[]},{"s":"HITBTC:QNTUSD","d":[]},{"s":"KRAKEN:REPV2EUR","d":[]},{"s":"BINANCE:VETTRY","d":[]},{"s":"PIONEX:NEARUSDT.P","d":[]},{"s":"SPOOKYSWAP:NFTWWFTM_388AC1.USD","d":[]},{"s":"XEXCHANGE:XBITWEGLD","d":[]},{"s":"UNISWAP3ETH:BDIDWETH_7D88B4.USD","d":[]},{"s":"TRADERJOE:TIMEWAVAX_F64E1C.USD","d":[]},{"s":"MEXC:BNBUSDC","d":[]},{"s":"UNISWAP3ETH:ZOOAWETH","d":[]},{"s":"GATEIO:RUNEUSDT","d":[]},{"s":"BITGET:ORBKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRND","d":[]},{"s":"UNISWAP3ETH:OMIWETH","d":[]},{"s":"BINANCE:VITEUSDT","d":[]},{"s":"UNISWAP:X7DAOWETH_75311E.USD","d":[]},{"s":"QUICKSWAP:BRUHLIC_0513E3","d":[]},{"s":"BITFINEX:REQUSD","d":[]},{"s":"GATEIO:VCUSDT","d":[]},{"s":"TRADERJOE:MOREWAVAX_B8361D.USD","d":[]},{"s":"UNISWAP3ETH:HOPEWETH_22E932.USD","d":[]},{"s":"GATEIO:SUPERUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GNDWETH_1EDD8C.USD","d":[]},{"s":"QUICKSWAP:CTIWMATIC_9A5772.USD","d":[]},{"s":"UNISWAP:SGPTWETH_06A83B.USD","d":[]},{"s":"UNISWAP:GOOSEWETH_A0AD89","d":[]},{"s":"POLONIEX:ATOMBTC","d":[]},{"s":"UNISWAP:XMASWETH_187B42","d":[]},{"s":"GATEIO:MINAUSDT","d":[]},{"s":"KRAKEN:1INCHUSD.PM","d":[]},{"s":"KRAKEN:SOLBTC","d":[]},{"s":"UNISWAP3ETH:CRVUSDT","d":[]},{"s":"UNISWAP:ESCOWETH_D04AA6.USD","d":[]},{"s":"BINANCE:ONTBTC","d":[]},{"s":"BINANCE:CKBTRY","d":[]},{"s":"SPOOKYSWAP:DEVILBTC_A5369D","d":[]},{"s":"UNISWAP:WNUNISHIB_E8DC5D.USD","d":[]},{"s":"UNISWAP3ETH:WETHTAOSHARD","d":[]},{"s":"UNISWAP:REVVMYTH_14DF54","d":[]},{"s":"UNISWAP:ICHIWETH_D07D43.USD","d":[]},{"s":"UNISWAP3OPTIMISM:OPWETH_68F5C0.USD","d":[]},{"s":"UNISWAP3ETH:WETHVEMP","d":[]},{"s":"WAGYUSWAP:PLSPADWVLX_60447B","d":[]},{"s":"MEXC:AIGPTUSDT","d":[]},{"s":"BISWAP:TONCOINUSDT_923DD5","d":[]},{"s":"QUICKSWAP:YUPWETH_FE8BAC","d":[]},{"s":"BYBIT:DMAILUSDT","d":[]},{"s":"SPOOKYSWAP:RISEWFTM_DE62A6","d":[]},{"s":"BINANCE:WINTRX","d":[]},{"s":"GATEIO:ALIUSDT","d":[]},{"s":"BITGET:XRPUSDC","d":[]},{"s":"BINANCE:DOGEUSDC","d":[]},{"s":"HITBTC:BTRSTBTC","d":[]},{"s":"BINANCE:USDTDAI","d":[]},{"s":"BLOFIN:FRONTUSDT.P","d":[]},{"s":"BYBIT:ALPHAUSDT.P","d":[]},{"s":"UNISWAP3ETH:1INCHDAI","d":[]},{"s":"QUICKSWAP:FOLOWETH_6A49BF","d":[]},{"s":"COINEX:FRONTUSDT","d":[]},{"s":"UNISWAP:GMBTWETH_A87D83.USD","d":[]},{"s":"MEXC:ALT0USDT","d":[]},{"s":"QUICKSWAP:O3USDC_D84A04","d":[]},{"s":"MEXC:AUCTIONUSDT.P","d":[]},{"s":"GATEIO:SPHRIUSDT","d":[]},{"s":"UNISWAP3ETH:BUMPWETH_B4ECCE.USD","d":[]},{"s":"BITSTAMP:AAVEUSD","d":[]},{"s":"UNISWAP3ETH:WETHBITROCK","d":[]},{"s":"BLOFIN:CRVUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:XYOWETH_30DEA4.USD","d":[]},{"s":"UNISWAP:KUMAWETH_DF60E6","d":[]},{"s":"BITGET:POLYXUSDT.P","d":[]},{"s":"PHEMEX:ETHUSDT","d":[]},{"s":"MEXC:SGBUSDT","d":[]},{"s":"BITGET:ASTOUSDT","d":[]},{"s":"PIONEX:FTMUSDT.P","d":[]},{"s":"QUICKSWAP:COMBOWETH_A7C475","d":[]},{"s":"UNISWAP:SEEDWETH_95D9E8","d":[]},{"s":"MEXC:BNTUSDT.P","d":[]},{"s":"UNISWAP:RAMPWETH_ECFE2C.USD","d":[]},{"s":"HONEYSWAPPOLYGON:WETHUSDC","d":[]},{"s":"BINGX:ALTUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCENS","d":[]},{"s":"BINGX:NFPUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHVITA","d":[]},{"s":"UNISWAP3ETH:WETHSMT","d":[]},{"s":"QUICKSWAP:DMTWETH_D15078.USD","d":[]},{"s":"BYBIT:1000LUNCUSDT.P","d":[]},{"s":"BYBIT:ARTYUSDT","d":[]},{"s":"UNISWAP3ETH:SHITWETH","d":[]},{"s":"UNISWAP3ARBITRUM:EMCUSDT_47B6DE.USD","d":[]},{"s":"BITHUMB:FRONTKRW","d":[]},{"s":"BITGET:HBARUSDT.P","d":[]},{"s":"UNISWAP:BALPHAWETH_C75253","d":[]},{"s":"BYBIT:ETHUSDT.P","d":[]},{"s":"BITGET:AMPLUSDT","d":[]},{"s":"POLONIEX:XEMUSD","d":[]},{"s":"UNISWAP3ARBITRUM:KORAWETH_D68C8A.USD","d":[]},{"s":"BINANCE:SHIBUSDC","d":[]},{"s":"BINANCE:CFXTRY","d":[]},{"s":"KRAKEN:BRICKEUR","d":[]},{"s":"UNISWAP3OPTIMISM:USDCWETH_1FB3CF.USD","d":[]},{"s":"UNISWAP3POLYGON:UNIWMATIC_7F9121.USD","d":[]},{"s":"BITRUE:INJADA","d":[]},{"s":"GATEIO:CVXUSDT","d":[]},{"s":"COINEX:WLKNUSDT","d":[]},{"s":"HITBTC:GALAUSD","d":[]},{"s":"BITMEX:WIFUSDT.P","d":[]},{"s":"UNISWAP3ETH:B3WBTC","d":[]},{"s":"UNISWAP:LOVEWETH_DD97FC.USD","d":[]},{"s":"UNISWAP3ETH:XINWETH_52152B.USD","d":[]},{"s":"MEXC:NTPUSDT","d":[]},{"s":"BINANCEUS:SHIBUSDT","d":[]},{"s":"GATEIO:ZPTUSDT","d":[]},{"s":"MEXC:LUNAUSDC","d":[]},{"s":"UNISWAP3ETH:VOWUSDT","d":[]},{"s":"TRADERJOE:AVOGEWAVAX_EEBCAC.USD","d":[]},{"s":"BINANCEUS:ADXUSDT","d":[]},{"s":"POLONIEX:PSGUSDD","d":[]},{"s":"TRADERJOE:ANKRWAVAX_754A67.USD","d":[]},{"s":"BITFINEX:BALUSD","d":[]},{"s":"POLONIEX:LTCBTC","d":[]},{"s":"UNISWAP:HIGHWETH_385461","d":[]},{"s":"MEXC:SOLXUSDT","d":[]},{"s":"UNISWAP:SHIDOWETH_419991.USD","d":[]},{"s":"MEXC:ANKRBTC","d":[]},{"s":"UNISWAP3ETH:RFDWETH_6C4C7F.USD","d":[]},{"s":"MEXC:GLEECUSDT","d":[]},{"s":"BLOFIN:ROSEUSDT.P","d":[]},{"s":"GATEIO:JAMUSDT","d":[]},{"s":"UNISWAP:MANDOXWETH_C6C875.USD","d":[]},{"s":"WHITEBIT:BTCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHEDOGE","d":[]},{"s":"UNISWAP:BTC20WETH_D6A347.USD","d":[]},{"s":"BLOFIN:RIFUSDT.P","d":[]},{"s":"ZOOMEX:BADGERUSDT.P","d":[]},{"s":"BITMEX:JUPUSDT.P","d":[]},{"s":"TRADERJOE:LUEEGIWAVAX_15EF0E.USD","d":[]},{"s":"HITBTC:OCCUSDT","d":[]},{"s":"SPOOKYSWAP:TREEBWFTM_E8B72A","d":[]},{"s":"BINANCE:GHSTUSDT","d":[]},{"s":"UNISWAP:PPAIWETH_A48515.USD","d":[]},{"s":"BITRUE:LTCETH","d":[]},{"s":"BITMEX:ORDIUSD.P","d":[]},{"s":"PIONEX:PHBUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHFLOKI","d":[]},{"s":"BITSTAMP:GALAEUR","d":[]},{"s":"COINBASE:METISUSD","d":[]},{"s":"BINANCE:ETHTRY","d":[]},{"s":"PIONEX:ZETAUSDT.P","d":[]},{"s":"GATEIO:YAMUSDT","d":[]},{"s":"UNISWAP:ROBOWETH_6132D9","d":[]},{"s":"HITBTC:LDOUSDT","d":[]},{"s":"UNISWAP3ETH:SXUSDC_CB3B93.USD","d":[]},{"s":"MEXC:TMNGUSDT","d":[]},{"s":"COINEX:XHVBTC","d":[]},{"s":"UNISWAP:X7101WETH_81B786","d":[]},{"s":"MEXC:FLAMEUSDT","d":[]},{"s":"BITGET:SORAUSDT","d":[]},{"s":"MEXC:FTTUSDT","d":[]},{"s":"WHITEBIT:ZRXUSDT","d":[]},{"s":"UNISWAP:BTC20WETH_D6A347","d":[]},{"s":"UNISWAP3ETH:CANDYUSDT","d":[]},{"s":"BISWAP:AUTOWBNB_A34E97","d":[]},{"s":"UNISWAP:MRSPEPEWETH_5DC7D5.USD","d":[]},{"s":"GATEIO:MYRAUSDT","d":[]},{"s":"UNISWAP:X7105WETH_6D9D1B","d":[]},{"s":"UNISWAP3ETH:CADUSDC","d":[]},{"s":"DYDX:MATICUSD.P","d":[]},{"s":"BINANCE:PROSUSDT","d":[]},{"s":"BITGET:SPELLUSDT.P","d":[]},{"s":"GATEIO:BTTUSDT","d":[]},{"s":"MEXC:DOLZUSDT","d":[]},{"s":"MEXC:SENSOBTC","d":[]},{"s":"WHITEBIT:LTCUSDT.P","d":[]},{"s":"MEXC:TRXBTC","d":[]},{"s":"GATEIO:DARKUSDT","d":[]},{"s":"BITRUE:KSMUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GENSXUSDC_5D8246.USD","d":[]},{"s":"UNISWAP3ARBITRUM:BOBUSDC_DBBC93.USD","d":[]},{"s":"UNISWAP3ETH:WETHXFT","d":[]},{"s":"BINANCE:MAGICBTC","d":[]},{"s":"MEXC:GORILLAUSDT","d":[]},{"s":"OKX:MATICUSDT.P","d":[]},{"s":"GATEIO:ATSUSDT","d":[]},{"s":"UNISWAP:RWSXRT_42018A","d":[]},{"s":"COINEX:UMEEUSDT","d":[]},{"s":"MEXC:FAKTUSDT","d":[]},{"s":"UNISWAP3ETH:GRTUSDT","d":[]},{"s":"UPBIT:CBKKRW","d":[]},{"s":"BINANCE:RIFBTC","d":[]},{"s":"UNISWAP:UNDEADWETH_A4346F","d":[]},{"s":"GATEIO:SUSHIUSDT","d":[]},{"s":"BITGET:BELUSDT","d":[]},{"s":"MEXC:MBXUSDT","d":[]},{"s":"KRAKEN:SCUSD","d":[]},{"s":"BITGET:SUNUSDT","d":[]},{"s":"PANGOLIN:CATSWAVAX_A2BD7F","d":[]},{"s":"GATEIO:UDOUSDT","d":[]},{"s":"GATEIO:UNOUSDT","d":[]},{"s":"MEXC:ZKBUSDT","d":[]},{"s":"UNISWAP:WORLDWETH_6AFB3D.USD","d":[]},{"s":"BINANCE:CELRBTC","d":[]},{"s":"MEXC:GLQUSDT","d":[]},{"s":"QUICKSWAP:SNOWUSDC_4F3B8F","d":[]},{"s":"MEXC:RABUSDT","d":[]},{"s":"UNISWAP:LTOWETH_9CD740.USD","d":[]},{"s":"UNISWAP3ETH:OWETH","d":[]},{"s":"BLOFIN:PYTHUSDT.P","d":[]},{"s":"UNISWAP:PAWTHWETH_800A45","d":[]},{"s":"UNISWAP:ETEWETH_C20E1F","d":[]},{"s":"MEXC:LEOUSDT","d":[]},{"s":"MEXC:OLEUSDC","d":[]},{"s":"UNISWAP:DMINDWETH_3340FF.USD","d":[]},{"s":"UNISWAP:DREAMAIWETH_F86CF9.USD","d":[]},{"s":"MEXC:TRCUSDT","d":[]},{"s":"TRADERJOE:GRAVEWAVAX_10E882.USD","d":[]},{"s":"UNISWAP:POLCWETH_B5BD39","d":[]},{"s":"BITGET:CTSIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLMEOW","d":[]},{"s":"UNISWAP3ETH:DAIENS","d":[]},{"s":"GATEIO:PKFUSDT","d":[]},{"s":"BITMEX:ACEUSDT.P","d":[]},{"s":"MEXC:PMGUSDT","d":[]},{"s":"BLOFIN:BSVUSDT.P","d":[]},{"s":"GEMINI:FETUSD","d":[]},{"s":"GATEIO:CRPTUSDT","d":[]},{"s":"BYBIT:SOLEUR","d":[]},{"s":"UNISWAP3ETH:WETHUBT","d":[]},{"s":"UNISWAP3ETH:SOCKSWETH_F11A96.USD","d":[]},{"s":"MEXC:YFIUSDT.P","d":[]},{"s":"PANGOLIN:NEKOWAVAX_12F339.USD","d":[]},{"s":"BITGET:SOPHUSDT","d":[]},{"s":"UNISWAP3ETH:MINERWETH_B5F2AC.USD","d":[]},{"s":"MEXC:FLMCUSDT","d":[]},{"s":"UNISWAP3ETH:FUSEWETH","d":[]},{"s":"BINGX:AUCTIONUSDT.P","d":[]},{"s":"GATEIO:NALSUSDT","d":[]},{"s":"COINEX:PNGUSDT","d":[]},{"s":"BITRUE:LINKXRP","d":[]},{"s":"UNISWAP3ETH:USDCFCO","d":[]},{"s":"UNISWAP3ETH:UNBUSDC_56E75B.USD","d":[]},{"s":"UNISWAP:PLRWETH_AE2D40","d":[]},{"s":"COINEX:ASTRUSDT","d":[]},{"s":"BITGET:WAGMIGAMESUSDT","d":[]},{"s":"UNISWAP:TATSUWETH_BAAFED","d":[]},{"s":"BLOFIN:LQTYUSDT.P","d":[]},{"s":"POLONIEX:ICPUSDT","d":[]},{"s":"BINANCE:ETHUSDT","d":[]},{"s":"UNISWAP:ONXWETH_62F22A.USD","d":[]},{"s":"BINANCE:SSVUSDT","d":[]},{"s":"UNISWAP3ETH:SPOTUSDC_7E0C73.USD","d":[]},{"s":"UNISWAP:PKNWETH_94DE69.USD","d":[]},{"s":"TRADERJOE:DAIEUSDCE_63ABE3","d":[]},{"s":"SPOOKYSWAP:MCGPWFTM_7A839C.USD","d":[]},{"s":"BINGX:ZRXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPACT","d":[]},{"s":"UNISWAP3ETH:PSWAPWETH","d":[]},{"s":"UNISWAP:SBETWETH_8C56B4.USD","d":[]},{"s":"UNISWAP3ETH:WETHGCH","d":[]},{"s":"QUICKSWAP:TOYOUSDC_9023A4","d":[]},{"s":"UNISWAP3ETH:USDTARW","d":[]},{"s":"BINGX:RADUSDT.P","d":[]},{"s":"MEXC:FRTSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCMNT","d":[]},{"s":"UNISWAP3ETH:WBTCCRVUSD","d":[]},{"s":"SPOOKYSWAP:UNDEADWFTM_CBD6D5","d":[]},{"s":"SPOOKYSWAP:TREATWFTM_4F24AA.USD","d":[]},{"s":"UNISWAP3ETH:USDCRBN","d":[]},{"s":"UNISWAP3ETH:ITPUSDT","d":[]},{"s":"HITBTC:XMRBTC","d":[]},{"s":"UNISWAP3ETH:LADYSWETH_ECF678.USD","d":[]},{"s":"TRADERJOE:DCARUSDC_CE719B.USD","d":[]},{"s":"TRADERJOE:DAMOWAVAX_81D138.USD","d":[]},{"s":"UNISWAP3ETH:WETHGPU","d":[]},{"s":"COINBASE:1INCHBTC","d":[]},{"s":"KRAKEN:NANOEUR","d":[]},{"s":"UNISWAP3ETH:RUGWETH_075F48.USD","d":[]},{"s":"UNISWAP:DICEWETH_9DF468","d":[]},{"s":"WHITEBIT:XRPUSD","d":[]},{"s":"COINEX:GMEEUSDT","d":[]},{"s":"WAGYUSWAP:QMALLWVLX_7C4346.USD","d":[]},{"s":"UNISWAP:ATRWETH_263B29","d":[]},{"s":"MEXC:UNOUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCUSDC","d":[]},{"s":"BINANCE:SUIUSDT","d":[]},{"s":"POLONIEX:BTC2USDT","d":[]},{"s":"UNISWAP:CSMWETH_B61680.USD","d":[]},{"s":"BITFINEX:IDXUSD","d":[]},{"s":"MEXC:COMUSDT","d":[]},{"s":"UNISWAP:SENDWETH_4797CA.USD","d":[]},{"s":"COINEX:GTAIUSDT","d":[]},{"s":"COINEX:DEXTUSDT","d":[]},{"s":"TRADERJOE:HECWAVAX_4DC529.USD","d":[]},{"s":"BINANCE:SUNUSDT","d":[]},{"s":"BISWAP:SFPWBNB_857F60","d":[]},{"s":"UNISWAP3ETH:YFIWOOFY","d":[]},{"s":"HITBTC:ETHDAI","d":[]},{"s":"KRAKEN:WAXLEUR","d":[]},{"s":"BINANCEUS:FLOWUSDT","d":[]},{"s":"BINANCE:SNTETH","d":[]},{"s":"BINANCE:VANRYUSDT","d":[]},{"s":"UNISWAP3ETH:LINKUSDC","d":[]},{"s":"MEXC:DEGOETH","d":[]},{"s":"UNISWAP3ETH:WETHELO","d":[]},{"s":"GEMINI:BCHETH","d":[]},{"s":"UNISWAP3ETH:GOHMWETH_CF7E21.USD","d":[]},{"s":"BINANCE:GMXUSDT","d":[]},{"s":"BYBIT:SANDUSDC","d":[]},{"s":"ZOOMEX:XLMUSDT.P","d":[]},{"s":"TRADERJOE:KERMITWAVAX_A5739A","d":[]},{"s":"PIONEX:AUDIOUSDT.P","d":[]},{"s":"HITBTC:PHBUSDT","d":[]},{"s":"BINGX:TONCOINUSDT.PS","d":[]},{"s":"MEXC:VTHOUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LUXUSDT_9054D1.USD","d":[]},{"s":"UNISWAP:KYOKOUSDT_83EEF4","d":[]},{"s":"UNISWAP3ETH:STORJWETH_B29148.USD","d":[]},{"s":"UNISWAP:CLAWWETH_38E56E","d":[]},{"s":"UNISWAP:QNTWETH_0C4A68","d":[]},{"s":"UNISWAP3ETH:USDTFRAX","d":[]},{"s":"EXMO:LTCUSD","d":[]},{"s":"BINGX:HOOKUSDT.P","d":[]},{"s":"KRAKEN:AGLDEUR","d":[]},{"s":"MEXC:FLMUSDT","d":[]},{"s":"COINEX:XPRBTC","d":[]},{"s":"UNISWAP3POLYGON:EUREEURS_91DC93.USD","d":[]},{"s":"COINBASE:ASMUSD","d":[]},{"s":"UNISWAP3ETH:BLOXWETH","d":[]},{"s":"BINGX:APEUSDT.PS","d":[]},{"s":"UNISWAP:CDSWETH_0BE902","d":[]},{"s":"PIONEX:VANRYUSDT.P","d":[]},{"s":"PHEMEX:ICXUSDT.P","d":[]},{"s":"BITFLYER:BCHBTC","d":[]},{"s":"BINANCE:LINKUSD.P","d":[]},{"s":"PIONEX:OGNUSDT.P","d":[]},{"s":"UNISWAP3ETH:OPSECWETH","d":[]},{"s":"BITMEX:MBLUSDT.P","d":[]},{"s":"UNISWAP:LEASHWETH_874376","d":[]},{"s":"BYBIT:CTTUSDT","d":[]},{"s":"UNISWAP3POLYGON:GOHMUSDC_8F178B.USD","d":[]},{"s":"TRADERJOE:ROCOWAVAX_8C2839.USD","d":[]},{"s":"KRAKEN:ETHUSDC","d":[]},{"s":"UNISWAP:IBITWETH_A51D59","d":[]},{"s":"PANGOLIN:WETHEUSDC_0FCEE9","d":[]},{"s":"BITGET:BTGUSDT","d":[]},{"s":"POLONIEX:BALUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:CAHUSDT_D4FA03.USD","d":[]},{"s":"MEXC:BNAUSDT","d":[]},{"s":"COINEX:SONNEUSDT","d":[]},{"s":"WHITEBIT:AXSUSDT.P","d":[]},{"s":"COINEX:FIOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSUMMER","d":[]},{"s":"UNISWAP:CODEXWETH_846E72.USD","d":[]},{"s":"MEXC:SONICUSDT","d":[]},{"s":"OKX:SSVUSDT.P","d":[]},{"s":"UNISWAP:MILK2SHAKE_9F319E.USD","d":[]},{"s":"UNISWAP3ETH:SIFUUSDT","d":[]},{"s":"MEXC:DEXEUSDT","d":[]},{"s":"MEXC:SOLSUSDT","d":[]},{"s":"MEXC:MEGAUSDT","d":[]},{"s":"POLONIEX:UNIBOTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TGAWETH_45EB77.USD","d":[]},{"s":"POLONIEX:PSGUSDT","d":[]},{"s":"BINANCE:IMXTRY","d":[]},{"s":"HITBTC:IOSTBTC","d":[]},{"s":"KRAKEN:TEUR","d":[]},{"s":"UNISWAP3ETH:FETWETH_948B54.USD","d":[]},{"s":"QUICKSWAP:GOOWMATIC_11E8CE.USD","d":[]},{"s":"UNISWAP3ARBITRUM:AMKTWBTC_50B1E2.USD","d":[]},{"s":"HITBTC:WAVESUSD","d":[]},{"s":"UNISWAP:SUPERSAND_30E7E1.USD","d":[]},{"s":"UNISWAP:SENDWETH_4797CA","d":[]},{"s":"SPOOKYSWAP:ANKRWFTM_313439.USD","d":[]},{"s":"MEXC:ZELIXUSDT","d":[]},{"s":"POLONIEX:NEOBTC","d":[]},{"s":"GATEIO:SUNUSDT","d":[]},{"s":"BITRUE:XLMUSDC","d":[]},{"s":"DELTA:ETHUSDT.P","d":[]},{"s":"UNISWAP:ABCWETH_C290F0","d":[]},{"s":"GATEIO:MLSUSDT","d":[]},{"s":"WHITEBIT:WIFBTC","d":[]},{"s":"UNISWAP3ETH:MKRDAI_2A84E2.USD","d":[]},{"s":"COINBASE:DYPUSD","d":[]},{"s":"UNISWAP3ETH:WETHTRIAS","d":[]},{"s":"BITRUE:PHAUSDT","d":[]},{"s":"HITBTC:WAVESUSDT","d":[]},{"s":"BTSE:ZILUSD","d":[]},{"s":"COINEX:DENTUSDC","d":[]},{"s":"GATEIO:KLOUSDT","d":[]},{"s":"UNISWAP3ETH:RAEWETH","d":[]},{"s":"POLONIEX:SWFTCUSD","d":[]},{"s":"COINEX:JAMUSDT","d":[]},{"s":"POLONIEX:OMGUSDT","d":[]},{"s":"SPOOKYSWAP:ETHUSDC_A572BD","d":[]},{"s":"UNISWAP:COREWETH_02F95D","d":[]},{"s":"QUICKSWAP:FOOTIEWMATIC_084B18.USD","d":[]},{"s":"BITGET:BOTUSDT","d":[]},{"s":"BITHUMB:ATOMKRW","d":[]},{"s":"MEXC:CVTXUSDT","d":[]},{"s":"BYBIT:LENDSUSDT","d":[]},{"s":"UNISWAP:TESOWETH_FAD04A","d":[]},{"s":"COINEX:AEUSDT","d":[]},{"s":"UNISWAP:GORILLAWETH_DD2E06","d":[]},{"s":"UNISWAP:SHFTWETH_8627C8.USD","d":[]},{"s":"TRADERJOE:GOHMFRAX_3E6BE7.USD","d":[]},{"s":"UNISWAP3POLYGON:DUELWMATIC_E9AA9A.USD","d":[]},{"s":"BYBIT:SFUNDUSDT","d":[]},{"s":"HITBTC:HOTUSDT","d":[]},{"s":"MEXC:EQBUSDT","d":[]},{"s":"BITRUE:BNBBTC","d":[]},{"s":"HITBTC:JASMYUSDT","d":[]},{"s":"UNISWAP:GLORYWETH_F32177","d":[]},{"s":"TRADERJOE:EGGPWAVAX_F55C75","d":[]},{"s":"UNISWAP:KIBAWETH_BF6DCD","d":[]},{"s":"POLONIEX:DASHBTC","d":[]},{"s":"UNISWAP:GRKWETH_C71D4E","d":[]},{"s":"UNISWAP:ABYSSUSDT_6AE790","d":[]},{"s":"MEXC:PMPYUSDT","d":[]},{"s":"COINEX:KAIUSDT","d":[]},{"s":"UNISWAP3ETH:USDCBONE","d":[]},{"s":"QUICKSWAP:OKLPUSDC_B8C954","d":[]},{"s":"BYBIT:GTAIUSDT","d":[]},{"s":"WHITEBIT:ETCUAH","d":[]},{"s":"POLONIEX:TRRUSDT","d":[]},{"s":"UNISWAP3ETH:GETHWETH","d":[]},{"s":"PHEMEX:BCHUSDT.P","d":[]},{"s":"BYBIT:BTCBRZ","d":[]},{"s":"WHITEBIT:ARBTRY","d":[]},{"s":"UNISWAP3ETH:USDTWPLS","d":[]},{"s":"UNISWAP:0X9F284EWETH_2D9775","d":[]},{"s":"KRAKEN:CVXEUR","d":[]},{"s":"UNISWAP3ETH:MZMWETH_E05C1A.USD","d":[]},{"s":"TRADERJOE:PETWAVAX_E9DCB3.USD","d":[]},{"s":"HITBTC:EOSETH","d":[]},{"s":"BLOFIN:KLAYUSDT.P","d":[]},{"s":"MEXC:VISIONUSDT","d":[]},{"s":"KRAKEN:STORJEUR","d":[]},{"s":"PHEMEX:XVSUSDT","d":[]},{"s":"POLONIEX:COQUSDT","d":[]},{"s":"COINEX:WYNNUSDT","d":[]},{"s":"UNISWAP:TRENDGURUWETH_816E54","d":[]},{"s":"UNISWAP:BONKBESTWETH_917A8D.USD","d":[]},{"s":"UNISWAP3ETH:CVXWETH_2E4784.USD","d":[]},{"s":"MEXC:DIGIUSDT","d":[]},{"s":"COINEX:CYBERUSDT","d":[]},{"s":"UNISWAP3POLYGON:SHIBWMATIC_399C01.USD","d":[]},{"s":"UNISWAP:HEZWETH_23D15E","d":[]},{"s":"UNISWAP3POLYGON:UNILINK_089E92.USD","d":[]},{"s":"TRADERJOE:WBRGEUSDC_237543","d":[]},{"s":"UNISWAP3ETH:UNIFIWETH_02D436.USD","d":[]},{"s":"HITBTC:ZILUSDC","d":[]},{"s":"UNISWAP3ETH:USDCCELL","d":[]},{"s":"UNISWAP:RIBBITWETH_5003FD.USD","d":[]},{"s":"UNISWAP3POLYGON:DIMOUSDC_B916C2.USD","d":[]},{"s":"COINBASE:SHIBUSD","d":[]},{"s":"UNISWAP:TRUMP2024WETH_20B655","d":[]},{"s":"GATEIO:ORNUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFERC","d":[]},{"s":"QUICKSWAP:PS1WMATIC_AB4B9F","d":[]},{"s":"GATEIO:POLCUSDT","d":[]},{"s":"UNISWAP:FACTORYWETH_074B73.USD","d":[]},{"s":"UNISWAP:EETHWETH_78C2FE.USD","d":[]},{"s":"UNISWAP:LIGHTWETH_57EF5B.USD","d":[]},{"s":"HITBTC:TRXEOS","d":[]},{"s":"GATEIO:REEFUSDT","d":[]},{"s":"GATEIO:EVAUSDT","d":[]},{"s":"UNISWAP3ETH:IZEUSDC_A91E0B.USD","d":[]},{"s":"COINEX:MANABTC","d":[]},{"s":"COINBASE:INJUSD","d":[]},{"s":"POLONIEX:BABYPEPEUSDT","d":[]},{"s":"POLONIEX:NATIUSDT","d":[]},{"s":"UNISWAP:DREAMWETH_417FF8","d":[]},{"s":"MEXC:GFYUSDT","d":[]},{"s":"BITSTAMP:1INCHEUR","d":[]},{"s":"BITGET:AAVEBTC","d":[]},{"s":"POLONIEX:SSVUSDT","d":[]},{"s":"BINANCE:DYDXUSDT","d":[]},{"s":"UNISWAP:MKRWETH_C2ADDA.USD","d":[]},{"s":"SPOOKYSWAP:MCGPWFTM_7A839C","d":[]},{"s":"QUICKSWAP:MATICXWMATIC_B0E69F","d":[]},{"s":"UNISWAP3ETH:FORTWETH_50DFA5.USD","d":[]},{"s":"BINANCE:HARDUSDT","d":[]},{"s":"MEXC:NRKUSDT","d":[]},{"s":"UNISWAP:AGENWETH_A7E61E","d":[]},{"s":"UNISWAP3ETH:USDCPURPLE","d":[]},{"s":"UNISWAP3ETH:SHEETPUSDC","d":[]},{"s":"UNISWAP3ETH:TOKENWETH","d":[]},{"s":"UNISWAP:GARYWETH_AAC2F6.USD","d":[]},{"s":"UNISWAP3ETH:RSWETHWETH_E62627.USD","d":[]},{"s":"OKX:ETCUSDT.P","d":[]},{"s":"COINEX:ALICEUSDC","d":[]},{"s":"UNISWAP3ETH:SYNCWETH","d":[]},{"s":"UNISWAP3ETH:USDTUSDM","d":[]},{"s":"BLOFIN:AGIXUSDT.P","d":[]},{"s":"UNISWAP:COINWETH_CCE852","d":[]},{"s":"KRAKEN:KAVAEUR","d":[]},{"s":"UNISWAP:DAFIWETH_CD4A2F","d":[]},{"s":"GATEIO:WATTUSDT","d":[]},{"s":"MEXC:GONEUSDT","d":[]},{"s":"UNISWAP:VEIL404WETH_99ACCD","d":[]},{"s":"UNISWAP:AUDITWETH_F077EB.USD","d":[]},{"s":"COINEX:GEARUSDT","d":[]},{"s":"UNISWAP3POLYGON:BOMWMATIC_0A5795.USD","d":[]},{"s":"QUICKSWAP:QUIDDREVV_CA2801.USD","d":[]},{"s":"POLONIEX:LINKUSD","d":[]},{"s":"BITSTAMP:EURTEUR","d":[]},{"s":"UNISWAP3ETH:WETHTHEO","d":[]},{"s":"UNISWAP:0XDEXWETH_FFBC87.USD","d":[]},{"s":"UNISWAP3ETH:XRUNUSDT","d":[]},{"s":"HITBTC:QUICKUSDT","d":[]},{"s":"BITGET:XRPBTC","d":[]},{"s":"SPOOKYSWAP:BTCETH_EC454E.USD","d":[]},{"s":"KRAKEN:ICPUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARKIKO","d":[]},{"s":"MEXC:POLCUSDT","d":[]},{"s":"COINEX:BETAUSDT","d":[]},{"s":"BITGET:DEPDUSDT","d":[]},{"s":"BYBIT:REALUSDT","d":[]},{"s":"UNISWAP:RJVWETH_FF70DE","d":[]},{"s":"MEXC:NVTUSDT","d":[]},{"s":"UNISWAP:AIBOTWETH_66086E.USD","d":[]},{"s":"UNISWAP3ETH:AGIXWETH","d":[]},{"s":"UNISWAP3ETH:YLDUSDC_535651.USD","d":[]},{"s":"TRADERJOE:SWAPEWAVAX_BD6404","d":[]},{"s":"GATEIO:AARTUSDT","d":[]},{"s":"UNISWAP:MDWETH_EF1B52","d":[]},{"s":"UNISWAP:RSTKWETH_8C894D","d":[]},{"s":"HITBTC:PLUUSD","d":[]},{"s":"BINANCEUS:RAREUSDT","d":[]},{"s":"UNISWAP:LETSGOWETH_73FBA7.USD","d":[]},{"s":"HITBTC:XEMUSD","d":[]},{"s":"UNISWAP3ETH:WETHSOLVE","d":[]},{"s":"BINANCE:AMBUSDT","d":[]},{"s":"UNISWAP:PUBLXWETH_0E8D2A.USD","d":[]},{"s":"BINANCEUS:SNXUSDT","d":[]},{"s":"UNISWAP:OPFLOWWETH_95D17B.USD","d":[]},{"s":"COINEX:HNSBTC","d":[]},{"s":"KRAKEN:ATLASEUR","d":[]},{"s":"WOONETWORK:RPLUSDT","d":[]},{"s":"BINANCE:SOLBRL","d":[]},{"s":"UNISWAP3ETH:WETHSUSD","d":[]},{"s":"BYBIT:CHRPUSDT","d":[]},{"s":"SPOOKYSWAP:TSHAREWFTM_4733BC","d":[]},{"s":"BINANCE:LITUSDT","d":[]},{"s":"POLONIEX:SWINGBYTRX","d":[]},{"s":"WHITEBIT:AAVEBTC","d":[]},{"s":"MEXC:GCAKEUSDT","d":[]},{"s":"WHITEBIT:EGLDUSDT","d":[]},{"s":"XEXCHANGE:ITHEUMWEGLD","d":[]},{"s":"UNISWAP:DEXEWETH_11CB9E","d":[]},{"s":"BITGET:TEMUSDT","d":[]},{"s":"UNISWAP:PEPINUWETH_1CF4B2","d":[]},{"s":"GATEIO:BIGTIMEUSDT","d":[]},{"s":"BLOFIN:ORNUSDT.P","d":[]},{"s":"MEXC:RNDRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMILADY","d":[]},{"s":"UNISWAP3ETH:USDCMAXI","d":[]},{"s":"MEXC:WMOXYUSDT","d":[]},{"s":"HITBTC:BNTUSD","d":[]},{"s":"GATEIO:OMGUSDT","d":[]},{"s":"UNISWAP:PROOFWETH_AE65DE","d":[]},{"s":"UNISWAP:MBDWETH_FB9F9F","d":[]},{"s":"BINANCE:FIOUSDT","d":[]},{"s":"HITBTC:ELONUSDT","d":[]},{"s":"BINGX:LINKUSDT.P","d":[]},{"s":"QUICKSWAP:AAVECCDAO_955276.USD","d":[]},{"s":"GATEIO:ABBCUSDT","d":[]},{"s":"UNISWAP:WOLFWETH_25752D","d":[]},{"s":"BYBIT:COMUSDT","d":[]},{"s":"MEXC:CIRUSUSDT","d":[]},{"s":"UNISWAP3ETH:RSTWETH","d":[]},{"s":"UNISWAP:WEALTHWETH_FA0F34.USD","d":[]},{"s":"SPOOKYSWAP:SLURPMIM_402474.USD","d":[]},{"s":"UNISWAP:CHOOWETH_5AA920","d":[]},{"s":"UNISWAP3ETH:USDTTOWER","d":[]},{"s":"BINANCE:DOTTUSD","d":[]},{"s":"ZOOMEX:JTOUSDT.P","d":[]},{"s":"GATEIO:MAVUSDT","d":[]},{"s":"UNISWAP:GNUSUSDC_31BA74","d":[]},{"s":"UNISWAP3POLYGON:FRAXUSDC_DDD919.USD","d":[]},{"s":"UNISWAP3OPTIMISM:TUXWETH_5ADBA6.USD","d":[]},{"s":"BINANCE:ETHAEUR","d":[]},{"s":"COINEX:APTBTC","d":[]},{"s":"MEXC:PALMUSDT","d":[]},{"s":"GATEIO:OMGUSDT.3L","d":[]},{"s":"UNISWAP3ETH:FTMWETH_3B6853.USD","d":[]},{"s":"COINEX:IMGNAIUSDT","d":[]},{"s":"BITHUMB:GALAKRW","d":[]},{"s":"QUICKSWAP:USDCUSDC_021369","d":[]},{"s":"HITBTC:ONEUSDT","d":[]},{"s":"HITBTC:XYMUSD","d":[]},{"s":"POLONIEX:USDTBTC","d":[]},{"s":"UNISWAP:NITROWETH_73465C.USD","d":[]},{"s":"UNISWAP3ARBITRUM:XAIWETH_03A33A.USD","d":[]},{"s":"UNISWAP3ARBITRUM:PENDLEUSDC_C6AF8E.USD","d":[]},{"s":"BYBIT:FARUSDT","d":[]},{"s":"UNISWAP3ETH:CTLSWETH_CEB492.USD","d":[]},{"s":"GATEIO:PORTXUSDT","d":[]},{"s":"KRAKEN:EOSBTC","d":[]},{"s":"UNISWAP3ETH:WETHMDX","d":[]},{"s":"BYBIT:1INCHUSDT.P","d":[]},{"s":"WHITEBIT:ARUSDT","d":[]},{"s":"UNISWAP3ETH:MNRCHWETH_7C6776.USD","d":[]},{"s":"UNISWAP3ETH:WETHCPRC","d":[]},{"s":"UNISWAP3ETH:WETHBERRY","d":[]},{"s":"UNISWAP:KTLYOWETH_CABEBC.USD","d":[]},{"s":"BLOFIN:1000RATSUSDT.P","d":[]},{"s":"MEXC:ROCKIUSDT","d":[]},{"s":"UNISWAP:HULKWETH_320DD5.USD","d":[]},{"s":"UNISWAP:RENBTCWETH_81FBEF","d":[]},{"s":"KRAKEN:XTZUSDT","d":[]},{"s":"MEXC:MBOXUSDT","d":[]},{"s":"BINANCE:TIAFDUSD","d":[]},{"s":"UNISWAP3ETH:FLOORWETH_9F2C9A.USD","d":[]},{"s":"QUICKSWAP:ANYQUICK_EB275D.USD","d":[]},{"s":"UNISWAP3ETH:WETHDINGER","d":[]},{"s":"ZOOMEX:SUNUSDT.P","d":[]},{"s":"DERIBIT:BTCDVOLUSDC27H2024","d":[]},{"s":"UNISWAP:WSBCWETH_F34C66","d":[]},{"s":"MEXC:LNRUSDT","d":[]},{"s":"UNISWAP3ETH:TFTDAI","d":[]},{"s":"TRADERJOE:PAEWAVAX_613936","d":[]},{"s":"HITBTC:IOTABTC","d":[]},{"s":"BITMEX:ETHBTCH2024","d":[]},{"s":"SPOOKYSWAP:FUSDTWFTM_5965E5.USD","d":[]},{"s":"UNISWAP:BREWLABSWETH_D8A844","d":[]},{"s":"UNISWAP:WHALEWETH_A9B485","d":[]},{"s":"PHEMEX:MAVIAUSDT","d":[]},{"s":"BITGET:ATLASUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TBTCUSDC_224C07.USD","d":[]},{"s":"PANGOLIN:VOIDWAVAX_7056B7.USD","d":[]},{"s":"TRADERJOE:GEMWAVAX_406F79","d":[]},{"s":"UNISWAP:ANBUSDT_6D7A7B","d":[]},{"s":"UNISWAP3ETH:HUNTUSDT_54578B.USD","d":[]},{"s":"BITRUE:EOSUSDT","d":[]},{"s":"UPBIT:XLMKRW","d":[]},{"s":"QUICKSWAP:XCADUSDC_602FE8","d":[]},{"s":"BITFINEX:SUNUST","d":[]},{"s":"UNISWAP:STARLWETH_A5E9C9","d":[]},{"s":"MEXC:ORCAINUUSDT","d":[]},{"s":"ZOOMEX:TONUSDT.P","d":[]},{"s":"BITHUMB:OBSRKRW","d":[]},{"s":"BYBIT:SANDBTC","d":[]},{"s":"ZOOMEX:ALGOUSDT.P","d":[]},{"s":"HITBTC:NEXOUSD","d":[]},{"s":"UNISWAP:PACHAWETH_4C9831.USD","d":[]},{"s":"BYBIT:SCAUSDT.P","d":[]},{"s":"PHEMEX:OPUSDC","d":[]},{"s":"UNISWAP:CYBERWETH_BDE17E.USD","d":[]},{"s":"POLONIEX:SHIB42069USDT","d":[]},{"s":"HITBTC:VTCUSD","d":[]},{"s":"UNISWAP:BAKEWETH_85B864.USD","d":[]},{"s":"UNISWAP3ETH:WETHUNV","d":[]},{"s":"UNISWAP3POLYGON:INDEXETHWETH_E4A2CA.USD","d":[]},{"s":"UNISWAP3POLYGON:MGBWMATIC_3B3DEE.USD","d":[]},{"s":"BITMEX:BLURUSDT.P","d":[]},{"s":"UNISWAP:XVGWETH_F07C73.USD","d":[]},{"s":"GATEIO:UMAUSDT","d":[]},{"s":"GATEIO:CFXUSDT.3S","d":[]},{"s":"UNISWAP3ETH:WETHIMOON","d":[]},{"s":"QUICKSWAP:FLAMEUSDC_27BB3F","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARMILLIWAYS","d":[]},{"s":"BLOFIN:TUSDT.P","d":[]},{"s":"BINANCE:BCHBTC","d":[]},{"s":"BITGET:TIAUSDT","d":[]},{"s":"BINANCE:ALGOUSD.P","d":[]},{"s":"UNISWAP3ETH:ORDSUSDC_887A4A.USD","d":[]},{"s":"BITGET:XRPUSD.P","d":[]},{"s":"GATEIO:LAVASWAPUSDT","d":[]},{"s":"UNISWAP:JRNYWETH_CD4948.USD","d":[]},{"s":"BLOFIN:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:POLMATIC","d":[]},{"s":"MEXC:BRANDONUSDT","d":[]},{"s":"GATEIO:RIMUSDT","d":[]},{"s":"UNISWAP:GTDWETH_E98E34.USD","d":[]},{"s":"BYBIT:BNXUSDT.P","d":[]},{"s":"POLONIEX:FERRETUSDT","d":[]},{"s":"BINANCE:KDABTC","d":[]},{"s":"UNISWAP3ETH:WETHCSCEC","d":[]},{"s":"WOONETWORK:GMXUSDT","d":[]},{"s":"PHEMEX:LINAUSDT.P","d":[]},{"s":"BITKUB:OPTHB","d":[]},{"s":"BITGET:CEURUSDT","d":[]},{"s":"GATEIO:DATAUSDT","d":[]},{"s":"QUICKSWAP:CATHEONUSDC_CDC0BD","d":[]},{"s":"ZOOMEX:RENUSDT.P","d":[]},{"s":"QUICKSWAP:MCO2USDC_68AB46","d":[]},{"s":"UNISWAP3ETH:BLLBWETH","d":[]},{"s":"COINBASE:TRBUSD","d":[]},{"s":"BITFINEX:NOMBTC","d":[]},{"s":"UNISWAP3ETH:GRTWETH_0E2C4B.USD","d":[]},{"s":"KRAKEN:PHAUSD","d":[]},{"s":"UNISWAP3ETH:MTRMWETH","d":[]},{"s":"MEXC:DEUSUSDT","d":[]},{"s":"UNISWAP:FBGWETH_147B03","d":[]},{"s":"UNISWAP3ETH:BTC2XWBTC","d":[]},{"s":"BINANCE:CHRBNB","d":[]},{"s":"BITGET:XYMUSDT","d":[]},{"s":"UNISWAP:CCWETH_6CD7E3","d":[]},{"s":"QUICKSWAP:QUIDDGMEE_D9ADFB","d":[]},{"s":"UNISWAP:MONKEYSWETH_FC1734","d":[]},{"s":"MEXC:SWASHUSDT","d":[]},{"s":"ZOOMEX:LSKUSDT.P","d":[]},{"s":"ZOOMEX:RADUSDT.P","d":[]},{"s":"MEXC:PEPESOLUSDT","d":[]},{"s":"UNISWAP3ETH:MKRLK99","d":[]},{"s":"GATEIO:PWARUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:FRAXUSDT_5A9DD2.USD","d":[]},{"s":"SPOOKYSWAP:POOHBEER_9CFD40","d":[]},{"s":"BYBIT:TWTUSDT","d":[]},{"s":"QUICKSWAP:CIRUSUSDC_0DA3B6","d":[]},{"s":"UNISWAP:BUTTERWETH_B44CF0","d":[]},{"s":"UNISWAP:BABYDOGEWETH_988620.USD","d":[]},{"s":"BITFINEX:SHIBUST.P","d":[]},{"s":"UNISWAP3ETH:TYPEWETH","d":[]},{"s":"UNISWAP:TIPWETH_EB1B26","d":[]},{"s":"MEXC:CHZUSDT.P","d":[]},{"s":"UNISWAP:ZETAWETH_576466.USD","d":[]},{"s":"KRAKEN:USDCUSDT","d":[]},{"s":"BINANCE:SANDUSD.P","d":[]},{"s":"UNISWAP:NEWSWETH_6FDF03","d":[]},{"s":"UNISWAP:GUARDIANWETH_8B007C.USD","d":[]},{"s":"UNISWAP:XPEPEWETH_6B2BFA.USD","d":[]},{"s":"UNISWAP:MLPWETH_06C4BE","d":[]},{"s":"BINANCE:QKCBTC","d":[]},{"s":"UNISWAP:LEEROYWETH_357494","d":[]},{"s":"BITFINEX:TRXETH","d":[]},{"s":"UNISWAP3ETH:SEEDSWETH","d":[]},{"s":"MEXC:MLAUSDT","d":[]},{"s":"WHITEBIT:TENETUSDT","d":[]},{"s":"MEXC:UVTUSDT","d":[]},{"s":"UNISWAP:YFIMWETH_C3FA0A.USD","d":[]},{"s":"UNISWAP3ETH:USDTWSTETH","d":[]},{"s":"UNISWAP3ETH:CAHWETH_893B0B.USD","d":[]},{"s":"UNISWAP:DOUGHWETH_B5B324.USD","d":[]},{"s":"BINGX:FTTUSDT.PS","d":[]},{"s":"OKX:STARLUSDT.P","d":[]},{"s":"XEXCHANGE:TIMEUSDC","d":[]},{"s":"UNISWAP:FX1WETH_87B958.USD","d":[]},{"s":"QUICKSWAP:GLQWETH_9BD48F.USD","d":[]},{"s":"ZOOMEX:DOGEUSDT.P","d":[]},{"s":"UNISWAP3ETH:AI.MAXWETH","d":[]},{"s":"MEXC:PANUSDT","d":[]},{"s":"MEXC:10000WENUSDT.P","d":[]},{"s":"UNISWAP3ETH:CADCWETH","d":[]},{"s":"BITGET:VTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_7E5E4A.USD","d":[]},{"s":"BITGET:SNEKUSDT","d":[]},{"s":"UNISWAP:R34PWETH_5C460C","d":[]},{"s":"BITGET:BTCUSDT","d":[]},{"s":"SPOOKYSWAP:KTNAWFTM_85D561","d":[]},{"s":"UNISWAP:VOWUSDT_1E4976","d":[]},{"s":"BLOFIN:JOEUSDT.P","d":[]},{"s":"PHEMEX:TUSDT.P","d":[]},{"s":"SPOOKYSWAP:ORBSAXLUSDC_99A894","d":[]},{"s":"UNISWAP:MAGWETH_11480A","d":[]},{"s":"UNISWAP3ETH:SPELLWETH","d":[]},{"s":"MEXC:GARIUSDT","d":[]},{"s":"UNISWAP3ETH:OETHWETH","d":[]},{"s":"UNISWAP3ETH:WETHMYO","d":[]},{"s":"MEXC:RAKUSDT","d":[]},{"s":"BLOFIN:COREUSDT.P","d":[]},{"s":"TRADERJOE:DCAUWAVAX_81034A.USD","d":[]},{"s":"UNISWAP3ETH:YFLOWUSDT_4B59B3.USD","d":[]},{"s":"ZOOMEX:CAKEUSDT.P","d":[]},{"s":"PIONEX:GALAUSDT.P","d":[]},{"s":"BINGX:FETUSDT.PS","d":[]},{"s":"UNISWAP3POLYGON:ACEWMATIC_1DE036.USD","d":[]},{"s":"UNISWAP3OPTIMISM:OPDAI_AE2D92.USD","d":[]},{"s":"UNISWAP3ETH:WETHAPX","d":[]},{"s":"WAGYUSWAP:SHIBILWVLX_9457A0","d":[]},{"s":"UNISWAP3ETH:CUDOSWETH","d":[]},{"s":"COINEX:PEOPLEUSDT","d":[]},{"s":"MEXC:CTCUSDT","d":[]},{"s":"QUICKSWAP:SPWMATIC_75E481","d":[]},{"s":"UNISWAP:0XSWETH_5AFF70","d":[]},{"s":"BITFINEX:SNXBTC","d":[]},{"s":"UNISWAP:KMNWETH_94FC2C","d":[]},{"s":"UNISWAP3POLYGON:SMTWMATIC_DA7129.USD","d":[]},{"s":"SPOOKYSWAP:PFTMWFTM_9CE8E9.USD","d":[]},{"s":"UNISWAP3ETH:ARBUZUSDT","d":[]},{"s":"UNISWAP:WAIFUWETH_A13550","d":[]},{"s":"UNISWAP:PLEBWETH_BC628F","d":[]},{"s":"GATEIO:STIKUSDT","d":[]},{"s":"POLONIEX:SANDUSD","d":[]},{"s":"BITFINEX:WILDBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ARBWBTC_12C796.USD","d":[]},{"s":"BITHUMB:1INCHKRW","d":[]},{"s":"BYBIT:ORDIUSDT","d":[]},{"s":"MEXC:APPUSDT","d":[]},{"s":"UNISWAP3POLYGON:TAKIWMATIC_DEFC31.USD","d":[]},{"s":"MEXC:XCHUSDT.P","d":[]},{"s":"BITFINEX:OGNUSD","d":[]},{"s":"POLONIEX:SRMUSD","d":[]},{"s":"UNISWAP:SYBLWETH_8DA23F.USD","d":[]},{"s":"PANGOLIN:WETHEWAVAX_7C05D5.USD","d":[]},{"s":"HITBTC:BTRSTUSDT","d":[]},{"s":"UNISWAP3ETH:SMTWETH_E9C219.USD","d":[]},{"s":"GATEIO:DASHUSDT.3S","d":[]},{"s":"KRAKEN:DOGEUSD","d":[]},{"s":"SPOOKYSWAP:FMXENWFTM_AB3738.USD","d":[]},{"s":"BINGX:ETCUSDT.P","d":[]},{"s":"QUICKSWAP:DMTWETH_871FF6","d":[]},{"s":"PIONEX:BLZUSDT.P","d":[]},{"s":"COINBASE:WBTCBTC","d":[]},{"s":"ZOOMEX:ILVUSDT.P","d":[]},{"s":"HITBTC:ANKRBTC","d":[]},{"s":"HITBTC:UOSUSD","d":[]},{"s":"UNISWAP3ETH:ITGRUSDC_C43102.USD","d":[]},{"s":"BINANCE:BLZBTC","d":[]},{"s":"MEXC:INSURUSDT","d":[]},{"s":"COINEX:OXENBTC","d":[]},{"s":"UNISWAP:NASHWETH_1B7C2F","d":[]},{"s":"PHEMEX:RDNTUSDT.P","d":[]},{"s":"MEXC:CITYUSDT","d":[]},{"s":"HITBTC:POWRETH","d":[]},{"s":"UNISWAP3ETH:WETHZKML","d":[]},{"s":"MEXC:VAIUSDT","d":[]},{"s":"DERIBIT:LINKUSDC.P","d":[]},{"s":"PANGOLIN:PEFIPNG_1BB554","d":[]},{"s":"BYBIT:EOSUSDT","d":[]},{"s":"UNISWAP:VUZZWETH_5E9315.USD","d":[]},{"s":"GATEIO:MLNUSDT","d":[]},{"s":"BITFINEX:LRCBTC","d":[]},{"s":"UNISWAP:HOGEWETH_7FD1DE","d":[]},{"s":"COINEX:LAIUSDT","d":[]},{"s":"UNISWAP3ETH:WOJAKWETH_7316F8.USD","d":[]},{"s":"BITRUE:ZILXRP","d":[]},{"s":"COINEX:STRDUSDT","d":[]},{"s":"MEXC:TLTUSDT","d":[]},{"s":"QUICKSWAP:CNGTUSDC_DF1320","d":[]},{"s":"COINEX:LUNCUSDT","d":[]},{"s":"KRAKEN:NEARUSD","d":[]},{"s":"MEXC:PBRUSDT","d":[]},{"s":"UNISWAP:NEKOWETH_DD6614.USD","d":[]},{"s":"MEXC:XRPBTC","d":[]},{"s":"UNISWAP:ASTROWETH_441828","d":[]},{"s":"MEXC:ZEEUSDT","d":[]},{"s":"BITRUE:DOGEXRP","d":[]},{"s":"KRAKEN:JTOEUR","d":[]},{"s":"UNISWAP:XSUNCWETH_67A0B9.USD","d":[]},{"s":"BYBIT:CTKUSDT.P","d":[]},{"s":"PHEMEX:AXSUSDT.P","d":[]},{"s":"QUICKSWAP:DOSEWETH_2B633F.USD","d":[]},{"s":"UNISWAP:EDDAWETH_F44E8F.USD","d":[]},{"s":"PHEMEX:PENDLEUSDT","d":[]},{"s":"XEXCHANGE:USDTUSDC","d":[]},{"s":"UNISWAP3POLYGON:AEGUSDT_53E9A5.USD","d":[]},{"s":"MEXC:WASUSDT","d":[]},{"s":"UNISWAP:LINKWETH_A2107F","d":[]},{"s":"HITBTC:THETAUSD","d":[]},{"s":"UNISWAP:BENTWETH_A0D7B8.USD","d":[]},{"s":"MEXC:BWOLFUSDT","d":[]},{"s":"BINANCE:APETRY","d":[]},{"s":"UNISWAP:CBYWETH_B09BA3.USD","d":[]},{"s":"BINANCE:PYRBTC","d":[]},{"s":"BINANCE:SOLBTC","d":[]},{"s":"TRADERJOE:SAVAXWAVAX_4B946C.USD","d":[]},{"s":"BINANCE:BTCUSDT","d":[]},{"s":"BINANCE:NEOBTC","d":[]},{"s":"HITBTC:SXPUSD","d":[]},{"s":"UNISWAP:CCBWETH_5BCEB3","d":[]},{"s":"TRADERJOE:RPGWAVAX_E42E7C.USD","d":[]},{"s":"COINEX:CTKUSDT","d":[]},{"s":"UNISWAP:DEIWETH_CEBAB1.USD","d":[]},{"s":"PANGOLIN:ORBSWAVAX_662135","d":[]},{"s":"BITFINEX:ZRXUSD","d":[]},{"s":"QUICKSWAP:KNOTUSDT_CFC38D","d":[]},{"s":"PHEMEX:WIFUSDT","d":[]},{"s":"GATEIO:DDOSUSDT","d":[]},{"s":"UNISWAP:SORAWETH_7EEC7A.USD","d":[]},{"s":"BITGET:BTTUSDT","d":[]},{"s":"UNISWAP:CREWETH_1387E9.USD","d":[]},{"s":"UNISWAP:INUWETH_9E53FA.USD","d":[]},{"s":"TRADERJOE:WIFWAVAX_4E733F.USD","d":[]},{"s":"GATEIO:COVALUSDT","d":[]},{"s":"UNISWAP3ETH:WETHKNC","d":[]},{"s":"UNISWAP:DOGE1WETH_D55287","d":[]},{"s":"HITBTC:RNDRUSDC","d":[]},{"s":"COINBASE:XTZUSD","d":[]},{"s":"MEXC:MAKAUSDT","d":[]},{"s":"SPOOKYSWAP:AXLUSDCWFTM_A196C7.USD","d":[]},{"s":"GATEIO:GARDUSDT","d":[]},{"s":"UNISWAP3ETH:PLOTWETH","d":[]},{"s":"BINANCE:SXPBTC","d":[]},{"s":"TRADERJOE:OBXWAVAX_1A95F0","d":[]},{"s":"COINEX:LOOKSUSDT","d":[]},{"s":"HITBTC:SOLUSDC","d":[]},{"s":"PHEMEX:MOVRUSDT","d":[]},{"s":"UNISWAP:POLSWETH_FFA98A.USD","d":[]},{"s":"SPOOKYSWAP:OOEWFTM_0F941A","d":[]},{"s":"BYBIT:RUNEUSDT.P","d":[]},{"s":"MEXC:FTMUSDT","d":[]},{"s":"TRADERJOE:OKTO404WAVAX_D42081.USD","d":[]},{"s":"UNISWAP:SHREKWETH_121A8D","d":[]},{"s":"GATEIO:FEVRUSDT","d":[]},{"s":"UNISWAP:AIWETH_90D7B2.USD","d":[]},{"s":"UNISWAP:DDXUSDC_F1EE73","d":[]},{"s":"DELTA:SANDUSDT.P","d":[]},{"s":"MEXC:SNSUSDT","d":[]},{"s":"UNISWAP3ETH:ATORUSDC","d":[]},{"s":"MEXC:BABYDOGEUSDT","d":[]},{"s":"MEXC:PIGUSDT","d":[]},{"s":"UNISWAP3ETH:BSSBWETH","d":[]},{"s":"BISWAP:TWTWBNB_F1A12E","d":[]},{"s":"MEXC:LOOPUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSTC","d":[]},{"s":"HITBTC:WAXPUSD","d":[]},{"s":"COINEX:DENTUSDT","d":[]},{"s":"UNISWAP3ETH:XYOUSDC_AB9F4F.USD","d":[]},{"s":"MEXC:RBNUSDT","d":[]},{"s":"UNISWAP:PANDORAWETH_DC9008.USD","d":[]},{"s":"MEXC:RBX1USDT","d":[]},{"s":"PIONEX:LTCUSDT.P","d":[]},{"s":"KRAKEN:EURTEUR","d":[]},{"s":"UNISWAP3POLYGON:USDGLOUSDC_B51CD2.USD","d":[]},{"s":"TRADERJOE:PGXWAVAX_0A7EB7.USD","d":[]},{"s":"QUICKSWAP:PYMUSDT_D236CA","d":[]},{"s":"BITGET:FLMUSDT.P","d":[]},{"s":"PIONEX:LDOUSDT.P","d":[]},{"s":"GATEIO:IMXUSDT.3S","d":[]},{"s":"BINGX:OSMOUSDT.PS","d":[]},{"s":"MEXC:DASHBTC","d":[]},{"s":"COINBASE:ALGOEUR","d":[]},{"s":"UNISWAP:BLADEWETH_BE309F.USD","d":[]},{"s":"MEXC:RITEUSDT","d":[]},{"s":"WOONETWORK:XTZUSDT","d":[]},{"s":"UNISWAP3ETH:GRTRNG_D17BED.USD","d":[]},{"s":"UNISWAP:SANIWETH_394CB9.USD","d":[]},{"s":"KRAKEN:CHZEUR","d":[]},{"s":"UNISWAP3ETH:ALIWETH","d":[]},{"s":"HITBTC:DARBTC","d":[]},{"s":"UNISWAP3ETH:JCDWETH_1F123B.USD","d":[]},{"s":"BTSE:BNBUSD","d":[]},{"s":"UNISWAP3ETH:RNDWETH_96B083.USD","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDC_B533C1.USD","d":[]},{"s":"UNISWAP:AIKEKWETH_7B9761","d":[]},{"s":"UNISWAP3ETH:NMRUSDC_DAAC0D.USD","d":[]},{"s":"BITGET:BADGERUSDT","d":[]},{"s":"UNISWAP3ETH:PPWETH","d":[]},{"s":"UNISWAP:ANKRWETH_520188","d":[]},{"s":"GATEIO:ONCUSDT","d":[]},{"s":"BITFINEX:NEOUST.P","d":[]},{"s":"UNISWAP3ETH:WETHBOND","d":[]},{"s":"UNISWAP3ETH:YUMYUMWETH","d":[]},{"s":"UNISWAP3ETH:UNIWETH","d":[]},{"s":"MEXC:ALFUSDT","d":[]},{"s":"UNISWAP:VERSEWETH_4DBE08.USD","d":[]},{"s":"BLOFIN:POWRUSDT.P","d":[]},{"s":"MEXC:CTYUSDT","d":[]},{"s":"WAGYUSWAP:WWYWVLX_B89151","d":[]},{"s":"UNISWAP:ECASWETH_FBD268.USD","d":[]},{"s":"UNISWAP:DOVWETH_610382.USD","d":[]},{"s":"GATEIO:ALTUSDT","d":[]},{"s":"UNISWAP:BONEWETH_F7D318","d":[]},{"s":"MEXC:CBKUSDT","d":[]},{"s":"HITBTC:GRINUSDT","d":[]},{"s":"SPOOKYSWAP:YELWFTM_8BFF7B.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBWETH_92C63D.USD","d":[]},{"s":"TRADERJOE:FLOTWAVAX_1C7050.USD","d":[]},{"s":"MEXC:SUSHIETH","d":[]},{"s":"UNISWAP:HOGEWETH_7FD1DE.USD","d":[]},{"s":"DELTA:ARUSDT.P","d":[]},{"s":"UNISWAP:MGKLWETH_57E1CE.USD","d":[]},{"s":"PHEMEX:DYMUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:HOPWETH_DD16A9.USD","d":[]},{"s":"BITGET:WOMUSDT","d":[]},{"s":"UNISWAP3ETH:BANANAWETH_6CDFF4.USD","d":[]},{"s":"BITGET:STGUSDT.P","d":[]},{"s":"BYBIT:MANAUSDT","d":[]},{"s":"QUICKSWAP:ICHIWMATIC_A3EAD9","d":[]},{"s":"UNISWAP3ETH:SHARESWETH_4C52D0.USD","d":[]},{"s":"MEXC:WOOUSDT.P","d":[]},{"s":"QUICKSWAP:EGGUSDT_76DB81","d":[]},{"s":"MEXC:PIPUSDT","d":[]},{"s":"UPBIT:1INCHKRW","d":[]},{"s":"TRADERJOE:WSOHMMIM_AA92C7.USD","d":[]},{"s":"HITBTC:HFTUSDT","d":[]},{"s":"SPOOKYSWAP:SCAREWFTM_D6B312.USD","d":[]},{"s":"BINANCE:KLAYUSDT","d":[]},{"s":"UNISWAP:ECASWETH_FBD268","d":[]},{"s":"BITSTAMP:PAXUSD","d":[]},{"s":"MEXC:STAUSDT","d":[]},{"s":"PHEMEX:TRBUSDT","d":[]},{"s":"COINEX:HECUSDT","d":[]},{"s":"UNISWAP:ZYNWETH_68B44C.USD","d":[]},{"s":"UNISWAP:OREUSDC_794854","d":[]},{"s":"PANGOLIN:PEFIWAVAX_494DD9.USD","d":[]},{"s":"QUICKSWAP:PINWMATIC_4CD730.USD","d":[]},{"s":"BITHUMB:BOBAKRW","d":[]},{"s":"HITBTC:PPCUSDT","d":[]},{"s":"PHEMEX:ZECUSDT","d":[]},{"s":"GATEIO:IOTAUSDT","d":[]},{"s":"BINANCEUS:POLYXUSDT","d":[]},{"s":"TRADERJOE:BARKWAVAX_176864.USD","d":[]},{"s":"GATEIO:RNDRUSDT.3L","d":[]},{"s":"UNISWAP3ETH:PBASEDBASEDAI_8F486A.USD","d":[]},{"s":"UNISWAP3ETH:WETHPETHOS","d":[]},{"s":"COINBASE:1INCHEUR","d":[]},{"s":"QUICKSWAP:AAVECCDAO_955276","d":[]},{"s":"GEMINI:LINKBTC","d":[]},{"s":"GATEIO:SKYRIMUSDT","d":[]},{"s":"UNISWAP:KINEWETH_B34DAA.USD","d":[]},{"s":"BITRUE:ATOMSOL","d":[]},{"s":"SPOOKYSWAP:BLACKYWFTM_E0C204.USD","d":[]},{"s":"UNISWAP3ETH:RINGWETH_75A63A.USD","d":[]},{"s":"QUICKSWAP:VINUWMATIC_3CAE7D.USD","d":[]},{"s":"GATEIO:COTIUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHRAINI","d":[]},{"s":"UNISWAP:POCHIWETH_A932DA.USD","d":[]},{"s":"UNISWAP3ETH:MONAIUSDT","d":[]},{"s":"UNISWAP3ETH:RIBBITWETH_316396.USD","d":[]},{"s":"UNISWAP:SHIDOWETH_C44B09","d":[]},{"s":"BINANCE:DOCKBTC","d":[]},{"s":"COINEX:PBRUSDT","d":[]},{"s":"UNISWAP3POLYGON:DRAMUSDT_F7D22E.USD","d":[]},{"s":"MEXC:MBOXXUSDT","d":[]},{"s":"BINANCE:RENBTC","d":[]},{"s":"UNISWAP:CFIWETH_36938D.USD","d":[]},{"s":"BINANCE:FRONTUSDT","d":[]},{"s":"DERIBIT:ETHUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCSOS","d":[]},{"s":"MEXC:GXEUSDT","d":[]},{"s":"HITBTC:NEOHIT","d":[]},{"s":"WAGYUSWAP:VERVEWVLX_6D2073","d":[]},{"s":"UNISWAP3ETH:WPPCUSDC","d":[]},{"s":"UNISWAP3ETH:SUMMERWETH","d":[]},{"s":"QUICKSWAP:FLTKUSDC_7D33DE.USD","d":[]},{"s":"MEXC:RONUSDT","d":[]},{"s":"MEXC:MAGUSDT","d":[]},{"s":"POLONIEX:MEMELANDUSDT","d":[]},{"s":"UNISWAP:OCP404WETH_F757CC","d":[]},{"s":"BINGX:PYTHUSDT.PS","d":[]},{"s":"BITGET:RACAUSDT","d":[]},{"s":"UNISWAP:DOGE20WETH_07F03A.USD","d":[]},{"s":"GATEIO:TROSSUSDT","d":[]},{"s":"GATEIO:POPKUSDT","d":[]},{"s":"KRAKEN:XRPETH","d":[]},{"s":"BITGET:ANIMUSDT","d":[]},{"s":"COINEX:DOMEUSDT","d":[]},{"s":"POLONIEX:PORTALUSDT","d":[]},{"s":"UNISWAP3ETH:HDRNWETH","d":[]},{"s":"GATEIO:FXFUSDT","d":[]},{"s":"GATEIO:DHVUSDT","d":[]},{"s":"BITGET:ANKRUSDT","d":[]},{"s":"MEXC:SOSUSDT","d":[]},{"s":"BYBIT:LMWRUSDT","d":[]},{"s":"PHEMEX:ARUSDT","d":[]},{"s":"MEXC:BDXBTC","d":[]},{"s":"UNISWAP3ETH:USDCDYDX","d":[]},{"s":"UNISWAP3ETH:WETHEPEPE","d":[]},{"s":"UNISWAP3ETH:IMGNAIWETH_28CFDE.USD","d":[]},{"s":"UNISWAP3ETH:ILVWETH_A89A1C.USD","d":[]},{"s":"UNISWAP:PODWETH_000B9F.USD","d":[]},{"s":"UNISWAP3ETH:WETHPOLK","d":[]},{"s":"UNISWAP:PLUWETH_87C952","d":[]},{"s":"MEXC:SONUSDT","d":[]},{"s":"BINANCE:NTRNBTC","d":[]},{"s":"BINGX:ORBSUSDT.PS","d":[]},{"s":"UNISWAP3OPTIMISM:PIKAWETH_4533BA.USD","d":[]},{"s":"COINBASE:LITUSD","d":[]},{"s":"BITHUMB:GLMKRW","d":[]},{"s":"MEXC:BTCUSD.P","d":[]},{"s":"TRADERJOE:PAYDAYWAVAX_61F8A0.USD","d":[]},{"s":"BYBIT:SXPUSDT.P","d":[]},{"s":"BITGET:KNCUSDT.P","d":[]},{"s":"TRADERJOE:BANKSYUSDTE_CF34F2","d":[]},{"s":"UNISWAP:HONRWETH_7BA88E.USD","d":[]},{"s":"BYBIT:FONUSDT","d":[]},{"s":"UNISWAP3ETH:USDTADX","d":[]},{"s":"POLONIEX:HNTAIUSDT","d":[]},{"s":"UNISWAP3ETH:UNBUSDC","d":[]},{"s":"GATEIO:XMONUSDT","d":[]},{"s":"UNISWAP3ETH:PERPWETH","d":[]},{"s":"UNISWAP:MCWETH_CCB632","d":[]},{"s":"QUICKSWAP:ZIGUSDC_8DA308","d":[]},{"s":"UNISWAP:BOOBSWETH_7B8B02.USD","d":[]},{"s":"GATEIO:BINUSDT","d":[]},{"s":"UNISWAP:SPACEPIWETH_959873.USD","d":[]},{"s":"POLONIEX:XRPTRX","d":[]},{"s":"UNISWAP3ETH:WNXMWETH","d":[]},{"s":"UNISWAP3ETH:USDTGENIE","d":[]},{"s":"BITFINEX:MATICUST.P","d":[]},{"s":"UNISWAP3ETH:WETHJPYC","d":[]},{"s":"SPOOKYSWAP:SEEDWFTM_437A6B.USD","d":[]},{"s":"POLONIEX:BTCBNB","d":[]},{"s":"UNISWAP3ETH:CBETHWETH","d":[]},{"s":"BINANCE:WANUSDT","d":[]},{"s":"GATEIO:FTNUSDT","d":[]},{"s":"UNISWAP3ETH:MELDWETH","d":[]},{"s":"PHEMEX:JUPUSDT","d":[]},{"s":"OKX:LOOKSUSDT.P","d":[]},{"s":"UNISWAP3ETH:ASIUSDT","d":[]},{"s":"GATEIO:MISUSDT","d":[]},{"s":"COINEX:REFUSDT","d":[]},{"s":"UNISWAP:SQUIDWETH_DF8EF4","d":[]},{"s":"QUICKSWAP:TELWETH_FC2FC9.USD","d":[]},{"s":"UNISWAP:KEEPWETH_E6F19D","d":[]},{"s":"GATEIO:PRTUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:OPXUSDC_C62D5F.USD","d":[]},{"s":"BLOFIN:PIXELUSDT.P","d":[]},{"s":"BITSTAMP:LRCUSD","d":[]},{"s":"GATEIO:THNUSDT","d":[]},{"s":"TRADERJOE:EGGPWAVAX_F55C75.USD","d":[]},{"s":"COINEX:BONEUSDT","d":[]},{"s":"UNISWAP:MOSSWETH_ECD493.USD","d":[]},{"s":"UNISWAP:DEEPLWETH_5DF0C5","d":[]},{"s":"UNISWAP:ARTWETH_ACEC5C","d":[]},{"s":"MEXC:XCADUSDT","d":[]},{"s":"COINBASE:BTCEUR","d":[]},{"s":"BITRUE:ZILBTC","d":[]},{"s":"QUICKSWAP:BICOWETH_7E02A8","d":[]},{"s":"UNISWAP3ETH:WETHAHT","d":[]},{"s":"BINANCE:DOTBRL","d":[]},{"s":"GATEIO:SANDUSDT.3L","d":[]},{"s":"TRADERJOE:MAGICUSDC_4514C7","d":[]},{"s":"UNISWAP3ETH:MOGWETH_EAE7BA.USD","d":[]},{"s":"UNISWAP3ETH:USDCHND","d":[]},{"s":"SPOOKYSWAP:POOHWFTM_29BA21","d":[]},{"s":"UNISWAP:WFAIWETH_EB56FF.USD","d":[]},{"s":"MEXC:MIRTOKENUSDT","d":[]},{"s":"BITGET:SAROSUSDT","d":[]},{"s":"GATEIO:MBLUSDT","d":[]},{"s":"UNISWAP3ETH:DAIMKR","d":[]},{"s":"UNISWAP:CFCWETH_8CC3B1","d":[]},{"s":"BITRUE:AAVEUSDC","d":[]},{"s":"BLOFIN:ZENUSDT.P","d":[]},{"s":"GATEIO:ELAUSDT","d":[]},{"s":"PANGOLIN:SFIWAVAX_C56788","d":[]},{"s":"UNISWAP3POLYGON:WETHDAI_6BAD0F.USD","d":[]},{"s":"UNISWAP3ETH:WETHMEOW","d":[]},{"s":"UNISWAP:YASHAWETH_3B35A9.USD","d":[]},{"s":"UNISWAP:ITWETH_F03371.USD","d":[]},{"s":"BYBIT:BCHUSDT.P","d":[]},{"s":"BISWAP:BTCBWBNB_C7E9D7","d":[]},{"s":"BITHUMB:WAXLKRW","d":[]},{"s":"BITGET:DOTUSDC","d":[]},{"s":"BLOFIN:HBARUSDT.P","d":[]},{"s":"COINEX:COSUSDT","d":[]},{"s":"MEXC:TIMEUSDT","d":[]},{"s":"MEXC:MORRAUSDT","d":[]},{"s":"UNISWAP:CROCWETH_6B2689.USD","d":[]},{"s":"ZOOMEX:1INCHUSDT.P","d":[]},{"s":"HITBTC:USDZUSDT","d":[]},{"s":"UNISWAP:DORKLWETH_EF9EF6","d":[]},{"s":"GATEIO:ORBRUSDT","d":[]},{"s":"KRAKEN:XLMUSD","d":[]},{"s":"MEXC:XODEXUSDT","d":[]},{"s":"MEXC:CRVUSDT.P","d":[]},{"s":"BINANCE:ARBFDUSD","d":[]},{"s":"UNISWAP:VALWETH_64C9CF.USD","d":[]},{"s":"UNISWAP:YFIWETH_2FDBAD","d":[]},{"s":"UNISWAP:ERUTAWETH_F294D0.USD","d":[]},{"s":"UNISWAP3POLYGON:METADEXDAOUSDC_F69974.USD","d":[]},{"s":"POLONIEX:BTCUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:MATICWETH_522DDA.USD","d":[]},{"s":"PANGOLIN:DIAMONDTOKENWORLDWAVAX_886118.USD","d":[]},{"s":"UNISWAP3ETH:USDTLIKE","d":[]},{"s":"BLOFIN:BADGERUSDT.P","d":[]},{"s":"BITHUMB:ACEKRW","d":[]},{"s":"UNISWAP3POLYGON:PAXGUSDT_211E6C.USD","d":[]},{"s":"UNISWAP:COCWETH_39FB7A","d":[]},{"s":"BINGX:BNTUSDT.P","d":[]},{"s":"BITMEX:APEUSDT","d":[]},{"s":"COINEX:NULSUSDT","d":[]},{"s":"BINGX:RLCUSDT.P","d":[]},{"s":"QUICKSWAP:SAFLEQUICK_AA2953","d":[]},{"s":"UNISWAP3OPTIMISM:WETHDAI_03AF20.USD","d":[]},{"s":"QUICKSWAP:IQTUSDT_4F3490","d":[]},{"s":"GATEIO:DFAUSDT","d":[]},{"s":"UNISWAP3ETH:RLBUSDC_2322E5.USD","d":[]},{"s":"UNISWAP3ETH:DCKUSDT_7498E0.USD","d":[]},{"s":"UNISWAP:DRAGONWETH_B5A9A9","d":[]},{"s":"MEXC:HNBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCOFFEE","d":[]},{"s":"UNISWAP3ETH:MELANIAWETH","d":[]},{"s":"UNISWAP:VRXWETH_BC159C.USD","d":[]},{"s":"ZOOMEX:1000BONKUSDT.P","d":[]},{"s":"WAGYUSWAP:VICIBUSD_60C144","d":[]},{"s":"GATEIO:STARUSDT","d":[]},{"s":"BITHUMB:HIVEKRW","d":[]},{"s":"PHEMEX:CTKUSDT.P","d":[]},{"s":"UNISWAP:HUSBANTWETH_60F2CC.USD","d":[]},{"s":"UNISWAP3POLYGON:BOBCWMATIC_CA4C5A.USD","d":[]},{"s":"UNISWAP:PNODEWETH_C4AAE4.USD","d":[]},{"s":"BITGET:LVLUSDT","d":[]},{"s":"COINEX:GHSTUSDT","d":[]},{"s":"MEXC:SDEXUSDT","d":[]},{"s":"BITGET:TRXUSD.P","d":[]},{"s":"HITBTC:LNCBTC","d":[]},{"s":"PANGOLIN:QIWAVAX_E530DC","d":[]},{"s":"UNISWAP3ETH:DXDWETH","d":[]},{"s":"PANGOLIN:EXPUSDTE_5A6151.USD","d":[]},{"s":"BINANCE:SUIEUR","d":[]},{"s":"GATEIO:PEOPLEUSDT.3L","d":[]},{"s":"POLONIEX:ACMUSDT","d":[]},{"s":"UNISWAP:PEMWETH_EFFFFD","d":[]},{"s":"HITBTC:ETHUSD","d":[]},{"s":"UNISWAP3ETH:WETHPRINTS","d":[]},{"s":"BITSTAMP:DAIUSD","d":[]},{"s":"UNISWAP3ETH:ANTWETH","d":[]},{"s":"TRADERJOE:UNIQOCWAVAX_D4359D.USD","d":[]},{"s":"UNISWAP:PIRBWETH_32B680","d":[]},{"s":"UNISWAP3ETH:CQTWETH","d":[]},{"s":"UNISWAP3ETH:GOHMWETH_C987D5.USD","d":[]},{"s":"UNISWAP3ETH:WETHWAMPL","d":[]},{"s":"UNISWAP3ARBITRUM:ARBGMX_DB3D8A.USD","d":[]},{"s":"WHITEBIT:EOSBTC","d":[]},{"s":"UNISWAP:TOTOWETH_5008D3","d":[]},{"s":"BITSTAMP:FLREUR","d":[]},{"s":"MEXC:MARSCOINUSDT","d":[]},{"s":"HITBTC:PHBBTC","d":[]},{"s":"BINGX:CETUSUSDT.PS","d":[]},{"s":"QUICKSWAP:HAKKAWETH_4C53FE","d":[]},{"s":"QUICKSWAP:QUICKWMATIC_F3EB2F","d":[]},{"s":"TRADERJOE:MAGICWAVAX_B9775B.USD","d":[]},{"s":"UNISWAP:MINGMONG_9E6646","d":[]},{"s":"KRAKEN:BCHUSDM2024","d":[]},{"s":"MEXC:XELSUSDT","d":[]},{"s":"UNISWAP3ETH:L2USDT","d":[]},{"s":"UNISWAP3ETH:LOVESNOOPYWETH_4FC81C.USD","d":[]},{"s":"UNISWAP:THNDWETH_974771","d":[]},{"s":"COINEX:QRDOUSDT","d":[]},{"s":"KRAKEN:TRXEUR","d":[]},{"s":"UNISWAP3ETH:CUPWETH","d":[]},{"s":"BINANCE:XNOUSDT","d":[]},{"s":"GATEIO:SHIBUSDT.5S","d":[]},{"s":"UNISWAP3ETH:ONEICHIUSDC","d":[]},{"s":"TRADERJOE:DWONKWAVAX_88F912.USD","d":[]},{"s":"UNISWAP3ETH:ARBWETH_593543.USD","d":[]},{"s":"UNISWAP3POLYGON:TBACWMATIC_98060D.USD","d":[]},{"s":"PHEMEX:AXLUSDT.P","d":[]},{"s":"GATEIO:WEARUSDT","d":[]},{"s":"UNISWAP:XRAIWETH_C16253","d":[]},{"s":"KRAKEN:AVAXUSDT","d":[]},{"s":"UNISWAP:BEARWETH_9D0242.USD","d":[]},{"s":"MEXC:RISEUSDT","d":[]},{"s":"UNISWAP3ETH:DAIREN","d":[]},{"s":"BINANCE:ATMTRY","d":[]},{"s":"COINEX:WEMIXUSDT","d":[]},{"s":"PANGOLIN:HUSKYWAVAX_D05E43","d":[]},{"s":"BITRUE:DASHXRP","d":[]},{"s":"COINEX:TONBTC","d":[]},{"s":"KRAKEN:SRMEUR","d":[]},{"s":"BINGX:CHZUSDT.PS","d":[]},{"s":"QUICKSWAP:NACHOWETH_8D25FE.USD","d":[]},{"s":"PHEMEX:KSMUSDT","d":[]},{"s":"BYBIT:MANAUSD.P","d":[]},{"s":"MEXC:NXRAUSDT","d":[]},{"s":"UNISWAP:ZEUSWETH_BC0EB0","d":[]},{"s":"QUICKSWAP:1FLRWMATIC_F1464F.USD","d":[]},{"s":"UNISWAP:CTRLWETH_E4CD22.USD","d":[]},{"s":"BITSTAMP:WBTCBTC","d":[]},{"s":"UNISWAP3POLYGON:ICHIWETH_B035B6.USD","d":[]},{"s":"UNISWAP3ETH:JAYWETH_27FBF1.USD","d":[]},{"s":"BINANCE:ETCETH","d":[]},{"s":"GATEIO:PCXUSDT","d":[]},{"s":"GATEIO:FILUSDT.3S","d":[]},{"s":"BITGET:AITECHUSDT","d":[]},{"s":"UNISWAP3ETH:DAIPEAS","d":[]},{"s":"MEXC:SCRTUSDT.P","d":[]},{"s":"BISWAP:PMRWBNB_08ECD2","d":[]},{"s":"HITBTC:EVERBTC","d":[]},{"s":"MEXC:ZILUSDT.P","d":[]},{"s":"ZOOMEX:NTRNUSDT.P","d":[]},{"s":"MEXC:DOGECEOUSDT","d":[]},{"s":"UNISWAP:CLDWETH_C70254.USD","d":[]},{"s":"QUICKSWAP:OGUNWMATIC_45E725.USD","d":[]},{"s":"BINGX:SUPERUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_C31E54.USD","d":[]},{"s":"GATEIO:PYRUSDT","d":[]},{"s":"UNISWAP:BLOBSWETH_C1C73C","d":[]},{"s":"BITSTAMP:RADEUR","d":[]},{"s":"BINANCE:LDOTUSD","d":[]},{"s":"PANGOLIN:LOSTWAVAX_846168.USD","d":[]},{"s":"UNISWAP:FLRBRGWETH_E3550F.USD","d":[]},{"s":"UNISWAP:N1WETH_797CCC","d":[]},{"s":"UNISWAP:LTOWETH_9CD740","d":[]},{"s":"BITFINEX:GBPUST.P","d":[]},{"s":"POLONIEX:LPTBTC","d":[]},{"s":"UNISWAP:ROCKWETH_9C1928","d":[]},{"s":"HITBTC:ZECEOS","d":[]},{"s":"UNISWAP:BOTTOWETH_9FF68F","d":[]},{"s":"UNISWAP3ARBITRUM:GRAILWETH_7244BC.USD","d":[]},{"s":"BITFINEX:EOSUST","d":[]},{"s":"UNISWAP:TEQWETH_EBCD8C.USD","d":[]},{"s":"GATEIO:CQTUSDT","d":[]},{"s":"MEXC:KSMBTC","d":[]},{"s":"BLOFIN:BSWUSDT.P","d":[]},{"s":"UNISWAP:PPIZZAWETH_CD6653.USD","d":[]},{"s":"UNISWAP:GODZILLAWETH_723792.USD","d":[]},{"s":"MEXC:SIMPUSDT","d":[]},{"s":"GATEIO:CRTUSDT","d":[]},{"s":"UNISWAP3ETH:STTAOWETH_C57CAC.USD","d":[]},{"s":"BITSTAMP:ALGOBTC","d":[]},{"s":"PANGOLIN:BLUEWAVAX_985C2B","d":[]},{"s":"UNISWAP3ETH:WETHFLIP","d":[]},{"s":"GATEIO:ANCUSDT","d":[]},{"s":"GATEIO:DOTUSDT.5L","d":[]},{"s":"MEXC:LBTCBTC","d":[]},{"s":"BITFINEX:SUKUBTC","d":[]},{"s":"HITBTC:XEMBTC","d":[]},{"s":"HITBTC:GALUSDT","d":[]},{"s":"MEXC:ASTRADAOUSDT","d":[]},{"s":"HITBTC:AVAXETH","d":[]},{"s":"BITSTAMP:SOLUSD","d":[]},{"s":"HITBTC:BTCTUSD","d":[]},{"s":"BITRUE:REQUSDT","d":[]},{"s":"UNISWAP3ETH:BOOWETH","d":[]},{"s":"UNISWAP3ETH:SOSUSDC","d":[]},{"s":"KRAKEN:EGLDEUR","d":[]},{"s":"PHEMEX:HOOKUSDT.P","d":[]},{"s":"KRAKEN:USTEUR","d":[]},{"s":"BINANCEUS:FLOKIUSDT","d":[]},{"s":"GATEIO:CATHEONUSDT","d":[]},{"s":"BITGET:IDEXUSDT","d":[]},{"s":"TRADERJOE:BAMBOOWAVAX_F0645B.USD","d":[]},{"s":"COINEX:METISUSDT","d":[]},{"s":"UNISWAP3POLYGON:UNIWBTC_17D0FF.USD","d":[]},{"s":"COINEX:DOTUSDC","d":[]},{"s":"POLONIEX:HAMUSDT","d":[]},{"s":"UNISWAP:NFTWETH_AEB925","d":[]},{"s":"UNISWAP:BRC20WETH_2AFF7A.USD","d":[]},{"s":"POLONIEX:HOPPYUSDT","d":[]},{"s":"MEXC:FREEDOMUSDT","d":[]},{"s":"SPOOKYSWAP:SUMMITWFTM_06300C","d":[]},{"s":"BINANCEUS:STMXUSDT","d":[]},{"s":"MEXC:DRAGOUSDT","d":[]},{"s":"HITBTC:RFRBTC","d":[]},{"s":"OKX:EGLDUSDT.P","d":[]},{"s":"UNISWAP3ETH:ABTWETH_677D05.USD","d":[]},{"s":"UNISWAP:NUGWETH_EAB7E9.USD","d":[]},{"s":"BITGET:TRXBTC","d":[]},{"s":"BITGET:1000BONKUSDT.P","d":[]},{"s":"UNISWAP3ETH:SWEATUSDC_AAE63D.USD","d":[]},{"s":"BYBIT:DOTBTC","d":[]},{"s":"UNISWAP:CARDSWETH_94AE6D","d":[]},{"s":"UNISWAP:GUCCIWETH_EB416A","d":[]},{"s":"MEXC:BIGTIMEUSDT.P","d":[]},{"s":"MEXC:NAVISTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:DERIWETH_96C396.USD","d":[]},{"s":"UNISWAP:PLOUTSWETH_1D4E66.USD","d":[]},{"s":"MEXC:STEEMUSDT.P","d":[]},{"s":"BITFINEX:JSTUST","d":[]},{"s":"COINEX:XLMBTC","d":[]},{"s":"UNISWAP3ETH:WETHVAL","d":[]},{"s":"COINEX:VRTXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAUCTION","d":[]},{"s":"POLONIEX:SUPERUSDT","d":[]},{"s":"BINANCE:ROSETRY","d":[]},{"s":"UNISWAP:FOXWETH_470E8D.USD","d":[]},{"s":"TRADERJOE:KITTYWAVAX_BC61C7.USD","d":[]},{"s":"UNISWAP3ETH:WETHMZERO","d":[]},{"s":"UNISWAP:ZEEWETH_2E0367","d":[]},{"s":"UNISWAP3ETH:JELLYWETH_67E8A9.USD","d":[]},{"s":"UNISWAP:KNODEWETH_D10E18","d":[]},{"s":"DELTA:WLDUSDT.P","d":[]},{"s":"UPBIT:BSVKRW","d":[]},{"s":"XEXCHANGE:LEGLDWEGLD","d":[]},{"s":"ZOOMEX:HFTUSDT.P","d":[]},{"s":"SPOOKYSWAP:NRGYWFTM_ECADFF.USD","d":[]},{"s":"BINANCEUS:SYSUSDT","d":[]},{"s":"COINEX:SORAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCUP","d":[]},{"s":"MEXC:WOMUSDT","d":[]},{"s":"BITFINEX:BTCUST.P","d":[]},{"s":"KRAKEN:LMWREUR","d":[]},{"s":"UNISWAP3ETH:USDCAMPL","d":[]},{"s":"QUICKSWAP:FTMWMATIC_D2B61A","d":[]},{"s":"UNISWAP3ETH:FRAXUSDT_C2A856.USD","d":[]},{"s":"UNISWAP:MONKEYWETH_82A3B9","d":[]},{"s":"COINEX:THETAUSDC","d":[]},{"s":"UNISWAP3ETH:WETHWEWE","d":[]},{"s":"COINBASE:ERNUSD","d":[]},{"s":"MEXC:AITKUSDT","d":[]},{"s":"BLOFIN:MTLUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTPRISMA","d":[]},{"s":"PIONEX:ZRXUSDT.P","d":[]},{"s":"UNISWAP3ETH:GFIWETH_2A4D54.USD","d":[]},{"s":"BITHUMB:FXSKRW","d":[]},{"s":"UNISWAP3ETH:BISCWETH_652E87.USD","d":[]},{"s":"TRADERJOE:PEFIWAVAX_B78C82","d":[]},{"s":"UNISWAP3ETH:ARTEWETH","d":[]},{"s":"GATEIO:XCVUSDT","d":[]},{"s":"PHEMEX:EDUUSDT.P","d":[]},{"s":"UNISWAP:MONAWETH_CA5B18.USD","d":[]},{"s":"BITFINEX:SMRBTC","d":[]},{"s":"TRADERJOE:DLQWAVAX_074163.USD","d":[]},{"s":"UNISWAP:ASTROXWETH_ACD37B","d":[]},{"s":"GATEIO:COPIUSDT","d":[]},{"s":"UNISWAP3ETH:RETHWETH_553E9C.USD","d":[]},{"s":"UNISWAP:NPCWETH_69C7BD","d":[]},{"s":"UNISWAP:XPERPWETH_F57B9D.USD","d":[]},{"s":"UNISWAP3ETH:WETHSOX","d":[]},{"s":"UNISWAP3ETH:QLTUSDC","d":[]},{"s":"UNISWAP3ETH:FENGFENGWETH","d":[]},{"s":"BITMEX:LINKUSDT","d":[]},{"s":"UNISWAP3ETH:DRAGWETH","d":[]},{"s":"COINEX:FLOWUSDT","d":[]},{"s":"PHEMEX:10000LADYSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWBNB","d":[]},{"s":"UNISWAP3ETH:01AIWETH","d":[]},{"s":"UNISWAP3ETH:WETHBCT","d":[]},{"s":"POLONIEX:FLOKICEOUSDT","d":[]},{"s":"BINANCE:POWRBTC","d":[]},{"s":"UNISWAP3ETH:ANTUSDC","d":[]},{"s":"BINGX:BEAMUSDT.PS","d":[]},{"s":"HITBTC:PLABTC","d":[]},{"s":"GATEIO:ETHUSDT.3L","d":[]},{"s":"HITBTC:AKROUSDT","d":[]},{"s":"DERIBIT:ETHUSDC.P","d":[]},{"s":"UNISWAP:GNBWETH_F46F4E.USD","d":[]},{"s":"UNISWAP:BTCMEMEWETH_579DA7.USD","d":[]},{"s":"MEXC:ADABTC","d":[]},{"s":"WHITEBIT:OCEANUSDT","d":[]},{"s":"UNISWAP:BENANCEWETH_AB3F65.USD","d":[]},{"s":"BINANCE:APTEUR","d":[]},{"s":"UNISWAP:MJ404WETH_84DA03","d":[]},{"s":"UNISWAP:SANDWETH_3DD49F.USD","d":[]},{"s":"UNISWAP:OPCATWETH_88DB1D.USD","d":[]},{"s":"UNISWAP:GAMBITWETH_BA9D01.USD","d":[]},{"s":"TRADERJOE:0XBWAVAX_E66A11.USD","d":[]},{"s":"MEXC:TLOSUSDT","d":[]},{"s":"UNISWAP:LESLIEWETH_C2A560.USD","d":[]},{"s":"UNISWAP3POLYGON:SDEXWETH_957F50.USD","d":[]},{"s":"BLOFIN:TWTUSDT.P","d":[]},{"s":"BINANCE:DOTTRY","d":[]},{"s":"BITRUE:SANDUSDC","d":[]},{"s":"POLONIEX:WBTCBTC","d":[]},{"s":"UNISWAP:RICKV2WETH_B1A438.USD","d":[]},{"s":"UNISWAP3ETH:WETHALI","d":[]},{"s":"UNISWAP:CRYPTOBROWETH_3FAE02.USD","d":[]},{"s":"GATEIO:GOVIUSDT","d":[]},{"s":"UNISWAP:EDFIWETH_842A66","d":[]},{"s":"UNISWAP3ETH:BNBWETH","d":[]},{"s":"COINEX:PMONUSDT","d":[]},{"s":"UNISWAP:UPONLYWETH_B96DF8.USD","d":[]},{"s":"MEXC:BITCIUSDT","d":[]},{"s":"ZOOMEX:ARBUSDT.P","d":[]},{"s":"MEXC:FUDUSDT","d":[]},{"s":"GATEIO:XPLLUSDT","d":[]},{"s":"XEXCHANGE:ONEUSDC","d":[]},{"s":"BINANCE:SNXETH","d":[]},{"s":"QUICKSWAP:LCDWMATIC_AAB525.USD","d":[]},{"s":"BITHUMB:PYTHKRW","d":[]},{"s":"TRADERJOE:OHWAVAX_361B62","d":[]},{"s":"PIONEX:ONTUSDT.P","d":[]},{"s":"BYBIT:CPOOLUSDT","d":[]},{"s":"QUICKSWAP:SMBRWMATIC_3178BD.USD","d":[]},{"s":"BYBIT:SONUSDT","d":[]},{"s":"UNISWAP:DEFROGSWETH_A76A9B","d":[]},{"s":"UNISWAP3ETH:SHXWETH_E0397C.USD","d":[]},{"s":"HITBTC:HUBUSDT","d":[]},{"s":"QUICKSWAP:IBYUSDT_106661","d":[]},{"s":"MEXC:RCGUSDT","d":[]},{"s":"UNISWAP:CLNWLDWETH_2D3308.USD","d":[]},{"s":"UNISWAP:POMWETH_0CF353","d":[]},{"s":"SPOOKYSWAP:AVAXWFTM_5DF809","d":[]},{"s":"MEXC:STPTUSDT.P","d":[]},{"s":"QUICKSWAP:RMATICWMATIC_336B81.USD","d":[]},{"s":"GEMINI:ALIUSD","d":[]},{"s":"UNISWAP3ARBITRUM:WSTETHWETH_B93F8A.USD","d":[]},{"s":"BTSE:PEOPLEUSD.P","d":[]},{"s":"UNISWAP3POLYGON:WBTCWMATIC_6B75F2.USD","d":[]},{"s":"UNISWAP3OPTIMISM:TBOBWETH_2D14CA.USD","d":[]},{"s":"UNISWAP:TIWETH_4EF72B.USD","d":[]},{"s":"HITBTC:XRPDAI","d":[]},{"s":"HITBTC:TXAUSDT","d":[]},{"s":"UNISWAP3ETH:FORTUSDC_167388.USD","d":[]},{"s":"UNISWAP3ETH:PAIWETH","d":[]},{"s":"BISWAP:BSWWBNB_46492B","d":[]},{"s":"UNISWAP3ETH:WETHSHX","d":[]},{"s":"GATEIO:BCDNUSDT","d":[]},{"s":"HITBTC:ENSBTC","d":[]},{"s":"UNISWAP3ETH:GAMERSDEX_579220.USD","d":[]},{"s":"KRAKEN:GHSTUSD","d":[]},{"s":"BITGET:ASMUSDT","d":[]},{"s":"QUICKSWAP:MSWMATIC_B44F63","d":[]},{"s":"PANGOLIN:WBTCEWAVAX_5764B8","d":[]},{"s":"POLONIEX:INSUSDT","d":[]},{"s":"ZOOMEX:FORTHUSDT.P","d":[]},{"s":"UNISWAP3ETH:LNDXUSDC_8A694E.USD","d":[]},{"s":"UNISWAP:CTWETH_3BA665.USD","d":[]},{"s":"UNISWAP3ETH:GOFURSWETH_F3F3DC.USD","d":[]},{"s":"UNISWAP:X7103WETH_CECF54.USD","d":[]},{"s":"UNISWAP:CINUWETH_EC6771","d":[]},{"s":"UNISWAP:NRDCWETH_316D5F","d":[]},{"s":"GATEIO:FDUSDUSDT","d":[]},{"s":"HITBTC:DGBTUSD","d":[]},{"s":"UNISWAP:MRIWETH_88ADE0.USD","d":[]},{"s":"POLONIEX:SXPBTC","d":[]},{"s":"UNISWAP:GROKWETH_69C66B.USD","d":[]},{"s":"GATEIO:WRXUSDT","d":[]},{"s":"COINEX:LRCUSDT","d":[]},{"s":"BINANCE:GASBTC","d":[]},{"s":"HITBTC:GTCUSDT","d":[]},{"s":"QUICKSWAP:VOLTWMATIC_8FA6C2.USD","d":[]},{"s":"UNISWAP:METALWETH_83B33B.USD","d":[]},{"s":"GATEIO:THETAUSDT.3L","d":[]},{"s":"GATEIO:ARKUSDT","d":[]},{"s":"TRADERJOE:0XBWAVAX_E66A11","d":[]},{"s":"UNISWAP3ARBITRUM:ARCARB_614F48.USD","d":[]},{"s":"GATEIO:XECUSDT","d":[]},{"s":"HITBTC:ZRXETH","d":[]},{"s":"UNISWAP3ETH:USDVUSDC_F17616.USD","d":[]},{"s":"UNISWAP:SOUTHWETH_D1E606.USD","d":[]},{"s":"UNISWAP:BJWETH_20DDBF.USD","d":[]},{"s":"SPOOKYSWAP:UUBWFTM_488F42","d":[]},{"s":"TRADERJOE:AVXLWAVAX_02D6BE.USD","d":[]},{"s":"POLONIEX:KLVUSD","d":[]},{"s":"OKX:TRXUSD.P","d":[]},{"s":"UNISWAP:XEDWETH_481EFD.USD","d":[]},{"s":"TRADERJOE:ROCOWAVAX_8C2839","d":[]},{"s":"UNISWAP:BULLWETH_AFF69F","d":[]},{"s":"UNISWAP3ETH:NINJAWETH","d":[]},{"s":"GATEIO:SHOPXUSDT","d":[]},{"s":"UNISWAP:ZYNWETH_68B44C","d":[]},{"s":"UNISWAP:RINGWETH_5CE2C2.USD","d":[]},{"s":"UNISWAP:ANARCHYWETH_088301.USD","d":[]},{"s":"HITBTC:KAVAUSDT","d":[]},{"s":"WHITEBIT:ADAUSDC","d":[]},{"s":"UNISWAP:NIBIWETH_A15093","d":[]},{"s":"BYBIT:ARUSDT.P","d":[]},{"s":"MEXC:CHRUSDT.P","d":[]},{"s":"PANGOLIN:CNRUSDCE_CD359C","d":[]},{"s":"BITHUMB:ADAKRW","d":[]},{"s":"BITGET:ALIUSDT","d":[]},{"s":"MEXC:LENDSUSDT","d":[]},{"s":"UNISWAP:BAOWETH_9973BB.USD","d":[]},{"s":"UPBIT:ETHKRW","d":[]},{"s":"HITBTC:XDNETH","d":[]},{"s":"UNISWAP:PAINTWETH_478893","d":[]},{"s":"UNISWAP:GROCWETH_D39279.USD","d":[]},{"s":"MEXC:XRPHUSDT","d":[]},{"s":"MEXC:BOBOUSDT","d":[]},{"s":"POLONIEX:SMILEYUSDT","d":[]},{"s":"BINGX:10000LADYSUSDT.P","d":[]},{"s":"UNISWAP3ETH:BNKLTOWETH_FCD5C2.USD","d":[]},{"s":"POLONIEX:BYTEUSDT","d":[]},{"s":"UNISWAP3ETH:DUSTDEGODS_3D8889.USD","d":[]},{"s":"UNISWAP:GPUWETH_769F53.USD","d":[]},{"s":"QUICKSWAP:MOCAWETH_7849E5","d":[]},{"s":"MEXC:DEPINDAOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWCK","d":[]},{"s":"MEXC:EGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBUMP","d":[]},{"s":"UNISWAP3ETH:WETHOSQTH","d":[]},{"s":"UNISWAP:POPEWETH_0650B0","d":[]},{"s":"SPOOKYSWAP:MONEYRAINWFTM_18C7A0.USD","d":[]},{"s":"QUICKSWAP:TEADWMATIC_7EFFDD","d":[]},{"s":"UNISWAP3ETH:USDCSKEB","d":[]},{"s":"UNISWAP:BOBWETH_BE8BC2","d":[]},{"s":"UNISWAP3ETH:UBTWETH_F9D29C.USD","d":[]},{"s":"MEXC:SATSUSDT","d":[]},{"s":"UNISWAP3ETH:SDAIWETH","d":[]},{"s":"GATEIO:BLURUSDT.3S","d":[]},{"s":"UNISWAP3ETH:PRIMEUSDC_FAC9C0.USD","d":[]},{"s":"UNISWAP3ETH:APXWETH","d":[]},{"s":"UNISWAP3ETH:OTHRFLC_0685CC.USD","d":[]},{"s":"HITBTC:ABBCUSDT","d":[]},{"s":"TRADERJOE:MUDAIE_C813D2","d":[]},{"s":"GATEIO:DVIUSDT","d":[]},{"s":"BYBIT:CMPUSDT","d":[]},{"s":"UNISWAP3ETH:MONWETH","d":[]},{"s":"UNISWAP3OPTIMISM:SUSDUSDC_8EDA97.USD","d":[]},{"s":"OKX:ETHWUSDT.P","d":[]},{"s":"UNISWAP:EQUADWETH_B06A5F","d":[]},{"s":"BLOFIN:GPTUSDT.P","d":[]},{"s":"BINANCEUS:TLMUSDT","d":[]},{"s":"BITRUE:VTHOUSDT","d":[]},{"s":"COINBASE:CHZEUR","d":[]},{"s":"UNISWAP:ROKOWETH_E0076D.USD","d":[]},{"s":"TRADERJOE:FLDWAVAX_F1840B","d":[]},{"s":"UNISWAP3ETH:BOBOWETH","d":[]},{"s":"UNISWAP:POPWETH_4357EA.USD","d":[]},{"s":"UNISWAP3ETH:WETHEVEX","d":[]},{"s":"SPOOKYSWAP:GRAVEWFTM_DF5958.USD","d":[]},{"s":"UNISWAP3ETH:WETHKARATE","d":[]},{"s":"GATEIO:MEPADUSDT","d":[]},{"s":"UNISWAP3ETH:CSWAPWETH_315566.USD","d":[]},{"s":"BINGX:AUCTIONUSDT.PS","d":[]},{"s":"SPOOKYSWAP:MAXWFTM_A15A9A","d":[]},{"s":"HITBTC:LOOMBTC","d":[]},{"s":"UNISWAP:INJWETH_3C70F4.USD","d":[]},{"s":"UNISWAP3ETH:USDDUSDT","d":[]},{"s":"DELTA:ADAUSDT.P","d":[]},{"s":"QUICKSWAP:GMEEWMATIC_7AFA30.USD","d":[]},{"s":"UNISWAP:DOGGYNFTWETH_BDE9B4","d":[]},{"s":"UNISWAP3ETH:BOBAWETH_256BD8.USD","d":[]},{"s":"UNISWAP:GRAPEWETH_06F438","d":[]},{"s":"COINBASE:SOLUSDT","d":[]},{"s":"GATEIO:NMTUSDT","d":[]},{"s":"GATEIO:LINKUSDT.5L","d":[]},{"s":"UNISWAP3ETH:FERCWETH_253C06.USD","d":[]},{"s":"GATEIO:OMNUSDT","d":[]},{"s":"BINANCE:MEMEFDUSD","d":[]},{"s":"BITGET:RSRUSDT.P","d":[]},{"s":"BYBIT:ARBUSDT","d":[]},{"s":"GATEIO:AIBBUSDT","d":[]},{"s":"UNISWAP:ALICEUSDT_DE9368","d":[]},{"s":"SPOOKYSWAP:BOOFUSDT_BE8DA8","d":[]},{"s":"UNISWAP3ETH:MERCUSDC_407248.USD","d":[]},{"s":"BINANCE:GLMBTC","d":[]},{"s":"MEXC:SHIRYOUSDT","d":[]},{"s":"WAGYUSWAP:AVAXWAG_F20C64","d":[]},{"s":"BINANCE:GALUSDT","d":[]},{"s":"GATEIO:YOOSHIUSDT","d":[]},{"s":"UNISWAP:VSTWETH_83E74A","d":[]},{"s":"MEXC:DNXUSDT","d":[]},{"s":"COINEX:RBNUSDT","d":[]},{"s":"UNISWAP:WZNNWETH_DAC866.USD","d":[]},{"s":"UNISWAP3ETH:MICWETH","d":[]},{"s":"WHITEBIT:GLMRUSDT","d":[]},{"s":"UNISWAP3ETH:TRUMP404WETH","d":[]},{"s":"SPOOKYSWAP:CREDITWFTM_06F3CB.USD","d":[]},{"s":"UNISWAP3ETH:WETHDEGEN","d":[]},{"s":"GATEIO:TSHPUSDT","d":[]},{"s":"UNISWAP3ETH:USDTUSDC","d":[]},{"s":"BINANCE:LTCTRY","d":[]},{"s":"BITGET:WLDUSDT.P","d":[]},{"s":"UNISWAP:DBZWETH_C4CD6C.USD","d":[]},{"s":"UNISWAP:MBLOCKWETH_6447BE","d":[]},{"s":"COINBASE:BOBAUSD","d":[]},{"s":"UNISWAP3ETH:WETHBCDT","d":[]},{"s":"UNISWAP:OINWETH_54D16D","d":[]},{"s":"BITFINEX:ETHMXNT","d":[]},{"s":"BITGET:MBLUSDT","d":[]},{"s":"UNISWAP3ETH:SWISEWETH","d":[]},{"s":"UNISWAP3ETH:WETHKATA","d":[]},{"s":"GATEIO:FEARUSDT","d":[]},{"s":"QUICKSWAP:SPORTGMEE_0A6707","d":[]},{"s":"WOONETWORK:BLURUSDT","d":[]},{"s":"QUICKSWAP:DPIWETH_9F77EF","d":[]},{"s":"ZOOMEX:1000LUNCUSDT.P","d":[]},{"s":"UNISWAP3ETH:ELOWETH","d":[]},{"s":"UNISWAP:DAWGWETH_33D19C.USD","d":[]},{"s":"UNISWAP3ETH:STCWETH","d":[]},{"s":"POLONIEX:AGIUSDT","d":[]},{"s":"TRADERJOE:DBYWAVAX_30556A","d":[]},{"s":"COINEX:ZTXUSDT","d":[]},{"s":"BYBIT:ZILUSDT","d":[]},{"s":"BITMEX:EOSUSD.P","d":[]},{"s":"POLONIEX:LDOUSDT","d":[]},{"s":"BINANCEUS:APEUSDT","d":[]},{"s":"HITBTC:SCBTC","d":[]},{"s":"UNISWAP:PSYOPWETH_99B1A8.USD","d":[]},{"s":"UNISWAP3ETH:WETHPEEN","d":[]},{"s":"UNISWAP:TXWETH_1A293C.USD","d":[]},{"s":"GATEIO:TAPUSDT","d":[]},{"s":"BITSTAMP:STORJEUR","d":[]},{"s":"UNISWAP3ETH:AAVEUSDC_DCEAF5.USD","d":[]},{"s":"BITGET:TENETUSDT","d":[]},{"s":"POLONIEX:LOOTUSDT","d":[]},{"s":"UNISWAP3ETH:GNUSWETH_F10E8C.USD","d":[]},{"s":"XEXCHANGE:CPAUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:AMKTUSDC_0E7D19.USD","d":[]},{"s":"TRADERJOE:DUAUSDC_389556","d":[]},{"s":"BINANCE:BLZFDUSD","d":[]},{"s":"UNISWAP:MELONWETH_2DBA02.USD","d":[]},{"s":"TRADERJOE:SBRMIM_EE60D8","d":[]},{"s":"BISWAP:REEFWBNB_FBBD09.USD","d":[]},{"s":"UNISWAP:CORWETH_DE26D7","d":[]},{"s":"UNISWAP3ETH:NMRWETH","d":[]},{"s":"UNISWAP3POLYGON:GFARM2GNS_4D0B8F.USD","d":[]},{"s":"UNISWAP:GUISEWETH_62931A","d":[]},{"s":"WHITEBIT:ETCBTC","d":[]},{"s":"MEXC:EVMOSUSDT","d":[]},{"s":"GEMINI:USDTUSD","d":[]},{"s":"POLONIEX:COCOUSDT","d":[]},{"s":"QUICKSWAP:BOMBUSDT_8B4E00","d":[]},{"s":"COINBASE:MATICBTC","d":[]},{"s":"UNISWAP:TIGRAWETH_D845C0","d":[]},{"s":"UNISWAP3ETH:DOLLARMNBWETH","d":[]},{"s":"KRAKEN:SUSHIEUR","d":[]},{"s":"UNISWAP3ETH:WETHWILD","d":[]},{"s":"UNISWAP3POLYGON:MOOVWETH_EB3A72.USD","d":[]},{"s":"BITKUB:BTCTHB","d":[]},{"s":"GATEIO:HBARUSDT.3S","d":[]},{"s":"UNISWAP3ETH:WPEPEWETH_D10B1A.USD","d":[]},{"s":"GATEIO:WIFUSDT","d":[]},{"s":"UNISWAP3ETH:ALTWETH_B7E746.USD","d":[]},{"s":"ZOOMEX:XRDUSDT.P","d":[]},{"s":"UNISWAP:THUMBWETH_99B4D2.USD","d":[]},{"s":"UNISWAP:DIEWETH_D1C9CB.USD","d":[]},{"s":"COINEX:AITUSDT","d":[]},{"s":"UNISWAP:ELONIUMWETH_1490B8","d":[]},{"s":"BINANCE:DATABTC","d":[]},{"s":"POLONIEX:KNCBTC","d":[]},{"s":"GATEIO:AEUSDT","d":[]},{"s":"MEXC:OPTIMUSUSDT","d":[]},{"s":"COINBASE:PERPUSD","d":[]},{"s":"TRADERJOE:DCAUUSDTE_605AAC.USD","d":[]},{"s":"HITBTC:REEFBTC","d":[]},{"s":"HITBTC:MTHUSD","d":[]},{"s":"HITBTC:XTZUSDT","d":[]},{"s":"BITRUE:UTKUSDT","d":[]},{"s":"MEXC:MAVIAUSDT.P","d":[]},{"s":"BITSTAMP:ENSEUR","d":[]},{"s":"GATEIO:ATOMARCUSDT","d":[]},{"s":"BITGET:KATUSDT","d":[]},{"s":"UNISWAP:DFIWETH_B079D6","d":[]},{"s":"UNISWAP3ETH:DAIPOHM","d":[]},{"s":"BYBIT:USTCUSDT.P","d":[]},{"s":"UNISWAP:TKXUSDT_124AA7","d":[]},{"s":"UNISWAP:PBTCWETH_8D50D0.USD","d":[]},{"s":"GATEIO:CANTOUSDT","d":[]},{"s":"HITBTC:CAPAUSDT","d":[]},{"s":"UNISWAP3ETH:ALVAWETH_01C49E.USD","d":[]},{"s":"COINBASE:LRCUSDT","d":[]},{"s":"PHEMEX:ONGUSDT.P","d":[]},{"s":"MEXC:TRYBUSDT","d":[]},{"s":"BITFINEX:SPELLUST","d":[]},{"s":"MEXC:DZOOUSDT","d":[]},{"s":"GATEIO:VPRUSDT","d":[]},{"s":"BLOFIN:ONGUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCMKR","d":[]},{"s":"BITSTAMP:TRACUSD","d":[]},{"s":"WHITEBIT:LINKBTC","d":[]},{"s":"UNISWAP3ETH:USDCSX","d":[]},{"s":"UNISWAP3ETH:WETHBLLB","d":[]},{"s":"PIONEX:STARLUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:DEEPPUSDC_F2A8CC.USD","d":[]},{"s":"COINBASE:VARAUSD","d":[]},{"s":"POLONIEX:FCT2USDT","d":[]},{"s":"ZOOMEX:XEMUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPDI","d":[]},{"s":"UNISWAP:DOMIWETH_75D308.USD","d":[]},{"s":"UNISWAP3ETH:D2TUSDT","d":[]},{"s":"UNISWAP:EVNWETH_29F07E.USD","d":[]},{"s":"KRAKEN:FLRUSD.PM","d":[]},{"s":"QUICKSWAP:GMEEQUICK_FE4BA2.USD","d":[]},{"s":"BISWAP:AIRTWBNB_80A71D.USD","d":[]},{"s":"UNISWAP3POLYGON:DUCKIESUSDT_046BBD.USD","d":[]},{"s":"UNISWAP3ETH:WETHHOODIE","d":[]},{"s":"TRADERJOE:MAGICUSDC_4514C7.USD","d":[]},{"s":"UNISWAP:NEOWETH_477862.USD","d":[]},{"s":"GATEIO:RADARUSDT","d":[]},{"s":"MEXC:XENDUSDT","d":[]},{"s":"UNISWAP3POLYGON:VOXELWETH_FD65C2.USD","d":[]},{"s":"BISWAP:HAYUSDT_E0AA23","d":[]},{"s":"UNISWAP:BZAIWETH_C33C95.USD","d":[]},{"s":"UNISWAP:ESAIWETH_E4A85F.USD","d":[]},{"s":"UNISWAP:AIDIWETH_F0CEB5.USD","d":[]},{"s":"PIONEX:FETUSDT.P","d":[]},{"s":"BITMEX:PEPEUSD.P","d":[]},{"s":"UNISWAP3ETH:ANSWETH_694A1B.USD","d":[]},{"s":"HITBTC:AXLUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ARBWETH_C6F780.USD","d":[]},{"s":"BITFINEX:UOSBTC","d":[]},{"s":"ZOOMEX:VTHOUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHKROM","d":[]},{"s":"BYBIT:MYRIAUSDT","d":[]},{"s":"BLOFIN:YGGUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHFORK","d":[]},{"s":"UNISWAP:CMAXWETH_8B3290.USD","d":[]},{"s":"UNISWAP3ETH:DAICELL","d":[]},{"s":"COINEX:OCEANUSDC","d":[]},{"s":"UNISWAP:PAXUWETH_A9C00D.USD","d":[]},{"s":"UNISWAP:NEWSWETH_6FDF03.USD","d":[]},{"s":"POLONIEX:ETCUSD","d":[]},{"s":"BINANCE:DUSKBTC","d":[]},{"s":"BYBIT:BARUSDT","d":[]},{"s":"UNISWAP:UDOUSDC_B76BCF","d":[]},{"s":"UNISWAP:WTSWETH_4D6E9D.USD","d":[]},{"s":"UNISWAP:EYEBOTWETH_34DE14","d":[]},{"s":"UNISWAP:PEPIWETH_751088.USD","d":[]},{"s":"BINANCE:FTMUSDT","d":[]},{"s":"MEXC:WEFINUSDT","d":[]},{"s":"QUICKSWAP:MMSATOSHI_2903C7.USD","d":[]},{"s":"TRADERJOE:FIREWAVAX_C71FA9","d":[]},{"s":"MEXC:VGXUSDT","d":[]},{"s":"UNISWAP:ELDGWETH_FE615E","d":[]},{"s":"UNISWAP3ETH:TRUWETH","d":[]},{"s":"BYBIT:MLKUSDT","d":[]},{"s":"UNISWAP:GROK15WETH_8A4008","d":[]},{"s":"BYBIT:VRAUSDT","d":[]},{"s":"UNISWAP3ETH:GFUSDC_14036B.USD","d":[]},{"s":"KRAKEN:POLISEUR","d":[]},{"s":"HITBTC:JULDBTC","d":[]},{"s":"ZOOMEX:ALTUSDT.P","d":[]},{"s":"UNISWAP:NALIWETH_8F5467.USD","d":[]},{"s":"UNISWAP:PIKAWETH_132BC4","d":[]},{"s":"UNISWAP:DEVWETH_4168CE","d":[]},{"s":"KRAKEN:BSXEUR","d":[]},{"s":"BISWAP:FTMWBNB_7BFCD2","d":[]},{"s":"BITFINEX:CRVBTC","d":[]},{"s":"GATEIO:XCNUSDT","d":[]},{"s":"MEXC:MSTRUSDT","d":[]},{"s":"SPOOKYSWAP:BASEDTOMB_AB2DDC.USD","d":[]},{"s":"GATEIO:MITHUSDT","d":[]},{"s":"BITGET:IMXUSDT","d":[]},{"s":"COINBASE:PAXUSD","d":[]},{"s":"UNISWAP3ETH:LSETHWETH_5D811A.USD","d":[]},{"s":"POLONIEX:ADAUSD","d":[]},{"s":"COINBASE:FARMUSD","d":[]},{"s":"UNISWAP3ETH:EMPWETH_E09276.USD","d":[]},{"s":"UNISWAP3ETH:USDCEURE","d":[]},{"s":"BINANCE:AUDIOTRY","d":[]},{"s":"UNISWAP3ETH:WETHICSA","d":[]},{"s":"ZOOMEX:YGGUSDT.P","d":[]},{"s":"UPBIT:SHIBKRW","d":[]},{"s":"BYBIT:XRDUSDT.P","d":[]},{"s":"UNISWAP:FUSIONWETH_6484B5","d":[]},{"s":"COINEX:SANDUSDT","d":[]},{"s":"HITBTC:PEOPLEUSDT","d":[]},{"s":"PHEMEX:MASKUSDT","d":[]},{"s":"MEXC:LGBTQUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFUNG","d":[]},{"s":"HITBTC:IHTUSDT","d":[]},{"s":"XEXCHANGE:CGGUSDC","d":[]},{"s":"UNISWAP:SECTWETH_15842C","d":[]},{"s":"UNISWAP3ARBITRUM:LIONWETH_F5873D.USD","d":[]},{"s":"GATEIO:VRTUSDT","d":[]},{"s":"TRADERJOE:MMACWAVAX_31396C.USD","d":[]},{"s":"MEXC:SEIUSDT.P","d":[]},{"s":"COINEX:SKLUSDC","d":[]},{"s":"HITBTC:MNTUSDT","d":[]},{"s":"UNISWAP3ETH:USDTCELL","d":[]},{"s":"BITGET:GMTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWPOKT","d":[]},{"s":"BITRUE:ENSUSDC","d":[]},{"s":"SPOOKYSWAP:MAXWFTM_A15A9A.USD","d":[]},{"s":"BITGET:LUNAUSDC","d":[]},{"s":"MEXC:BENDOGUSDT","d":[]},{"s":"BITFINEX:COMPUST.P","d":[]},{"s":"BITSTAMP:SKLEUR","d":[]},{"s":"HITBTC:WAXPETH","d":[]},{"s":"UNISWAP3ETH:WETHROAR","d":[]},{"s":"HITBTC:SNXUSDT","d":[]},{"s":"UNISWAP3ETH:DAOUSDC_15E7F2.USD","d":[]},{"s":"COINBASE:ZETAUSD","d":[]},{"s":"MEXC:HEARTAIUSDT","d":[]},{"s":"UNISWAP:PAWWETH_04137C.USD","d":[]},{"s":"BITGET:SSVUSDT","d":[]},{"s":"BISWAP:MATICWBNB_3B09E1.USD","d":[]},{"s":"UNISWAP3ETH:BATWETH_AE614A.USD","d":[]},{"s":"WHITEBIT:SOLBTC","d":[]},{"s":"GATEIO:SWOUSDT","d":[]},{"s":"HITBTC:SUKUUSDT","d":[]},{"s":"UNISWAP:PUPUWETH_E9C8B1.USD","d":[]},{"s":"UNISWAP3ARBITRUM:YURIWETH_5B1E98.USD","d":[]},{"s":"MEXC:GROWUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:UNIUSDC_0D9494.USD","d":[]},{"s":"BITGET:NESSUSDT","d":[]},{"s":"BITRUE:BCHSOL","d":[]},{"s":"UNISWAP:WANNAWETH_6E12CF","d":[]},{"s":"GATEIO:OPULUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GOBWETH_200BC2.USD","d":[]},{"s":"BITGET:ELONUSDT","d":[]},{"s":"POLONIEX:AAVEBTC","d":[]},{"s":"BLOFIN:PENDLEUSDT.P","d":[]},{"s":"UNISWAP:NEZUKOWETH_CEFDEA","d":[]},{"s":"ZOOMEX:ORDIUSDT.P","d":[]},{"s":"UNISWAP3ETH:LOOMWETH_E3E686.USD","d":[]},{"s":"BLOFIN:XLMUSDT.P","d":[]},{"s":"BITSTAMP:LTCEUR","d":[]},{"s":"BLOFIN:ONEUSDT.P","d":[]},{"s":"GATEIO:LONUSDT","d":[]},{"s":"BITGET:BANDUSDT","d":[]},{"s":"BYBIT:MAGICUSDT","d":[]},{"s":"GATEIO:PORUSDT","d":[]},{"s":"BINANCEUS:LOOMUSDT","d":[]},{"s":"UNISWAP:BRCTUSDT_0FD6AE","d":[]},{"s":"KRAKEN:DYDXUSD.PM","d":[]},{"s":"POLONIEX:XTZBTC","d":[]},{"s":"UPBIT:STRAXKRW","d":[]},{"s":"COINEX:HTRUSDT","d":[]},{"s":"HITBTC:BTCBRL","d":[]},{"s":"QUICKSWAP:MARTWETH_C9BC08.USD","d":[]},{"s":"UNISWAP:VLXWETH_ECC558.USD","d":[]},{"s":"BITGET:OPUSDT","d":[]},{"s":"OKX:IOSTUSDT.P","d":[]},{"s":"GATEIO:GNOUSDT","d":[]},{"s":"BYBIT:CBKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNCT","d":[]},{"s":"UNISWAP3POLYGON:BSKTWMATIC_B0D208.USD","d":[]},{"s":"MEXC:KMICEUSDT","d":[]},{"s":"UNISWAP3ETH:POWWETH_C07937.USD","d":[]},{"s":"BYBIT:DARUSDT.P","d":[]},{"s":"BITHUMB:ZRXKRW","d":[]},{"s":"BITGET:SFPUSDT.P","d":[]},{"s":"BITGET:ILVUSDT","d":[]},{"s":"UNISWAP:STEMWETH_ED899D","d":[]},{"s":"BITHUMB:ACSKRW","d":[]},{"s":"UNISWAP:DEJITARUSHIRUDOWETH_BA2221","d":[]},{"s":"BYBIT:OMGUSDT","d":[]},{"s":"BITSTAMP:MANAEUR","d":[]},{"s":"GATEIO:O3USDT","d":[]},{"s":"COINBASE:XYOUSD","d":[]},{"s":"DERIBIT:BTCUSD26J2024","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCUSDC_AC70BD.USD","d":[]},{"s":"TRADERJOE:HUSKYWAVAX_91B62F","d":[]},{"s":"BITMEX:TRXUSDT","d":[]},{"s":"BITGET:MEMEUSDT.P","d":[]},{"s":"BYBIT:NEONUSDT","d":[]},{"s":"UNISWAP3ETH:STGUSDC_859206.USD","d":[]},{"s":"HITBTC:AUDIOBTC","d":[]},{"s":"MEXC:MEMEKINGUSDT","d":[]},{"s":"POLONIEX:BONKUSDD","d":[]},{"s":"UNISWAP3POLYGON:BTC.BWETH_3BF369.USD","d":[]},{"s":"BITGET:STIKUSDT","d":[]},{"s":"POLONIEX:POLYDOGEUSDT","d":[]},{"s":"WHITEBIT:USDTTRY","d":[]},{"s":"BYBIT:WBTCUSDT","d":[]},{"s":"TRADERJOE:OWLWAVAX_E644B6.USD","d":[]},{"s":"GATEIO:ESGUSDT","d":[]},{"s":"GATEIO:MOTGUSDT","d":[]},{"s":"UNISWAP:DMTRWETH_CF3F7D","d":[]},{"s":"BYBIT:GODSUSDT","d":[]},{"s":"BITHUMB:DOGEKRW","d":[]},{"s":"UNISWAP:SONIKWETH_77778A.USD","d":[]},{"s":"UNISWAP3ETH:COREDAODAI","d":[]},{"s":"UNISWAP:BEZOGEWETH_1F964F.USD","d":[]},{"s":"SPOOKYSWAP:PARTIALWFTM_E78C2B.USD","d":[]},{"s":"WAGYUSWAP:WAGASTRO_40AC95.USD","d":[]},{"s":"UNISWAP:CATWETH_781CE9.USD","d":[]},{"s":"UNISWAP:VERSEWETH_4DBE08","d":[]},{"s":"POLONIEX:OETHETH","d":[]},{"s":"HITBTC:REVVBTC","d":[]},{"s":"BITHUMB:IDKRW","d":[]},{"s":"SPOOKYSWAP:TUSDUSDC_12692B","d":[]},{"s":"KRAKEN:BONDUSD","d":[]},{"s":"QUICKSWAP:POLXWMATIC_EE3213.USD","d":[]},{"s":"BITGET:RFDUSDT","d":[]},{"s":"UNISWAP3POLYGON:EUREUSDT_F0ABD1.USD","d":[]},{"s":"COINEX:BEETSUSDT","d":[]},{"s":"MEXC:NBSUSDT","d":[]},{"s":"WHITEBIT:LTCEUR","d":[]},{"s":"COINEX:AAVEBTC","d":[]},{"s":"UNISWAP3ETH:UNA.WEMIXWETH_9DF562.USD","d":[]},{"s":"UNISWAP3ETH:PAWWETH","d":[]},{"s":"COINEX:MANAUSDT","d":[]},{"s":"BITGET:CYBERUSDT.P","d":[]},{"s":"GATEIO:UNIBOTUSDT","d":[]},{"s":"DYDX:MKRUSD.P","d":[]},{"s":"HITBTC:SPIUSD","d":[]},{"s":"MEXC:ENJUSDT.P","d":[]},{"s":"HITBTC:STRAXBTC","d":[]},{"s":"UNISWAP3ETH:ERBBUSDT","d":[]},{"s":"MEXC:GINUXUSDT","d":[]},{"s":"BITFINEX:HTXUST","d":[]},{"s":"MEXC:HGTUSDT","d":[]},{"s":"HITBTC:WBTCETH","d":[]},{"s":"UNISWAP3POLYGON:UBTWETH_DE4B2E.USD","d":[]},{"s":"BITGET:CAMLYUSDT","d":[]},{"s":"BITRUE:WBTCBTC","d":[]},{"s":"UNISWAP:OBOTWETH_E7B0C1.USD","d":[]},{"s":"QUICKSWAP:DWEBWMATIC_FCA921.USD","d":[]},{"s":"GATEIO:PARAUSDT","d":[]},{"s":"TRADERJOE:GMXWAVAX_0C91A0.USD","d":[]},{"s":"BITGET:BBLUSDT","d":[]},{"s":"BITGET:OCEANUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPRIME","d":[]},{"s":"UNISWAP:RLYWETH_27FD08.USD","d":[]},{"s":"UNISWAP3ETH:HIPPWETH","d":[]},{"s":"POLONIEX:TOKAMAKUSDT","d":[]},{"s":"BINANCE:DOTUSD.P","d":[]},{"s":"UNISWAP:ROCKIWETH_B2FB04.USD","d":[]},{"s":"MEXC:ALTLAYERUSDT","d":[]},{"s":"UNISWAP:TRENDXWETH_917C85","d":[]},{"s":"UNISWAP3ETH:ENSUSDC","d":[]},{"s":"OKX:GRTUSDT.P","d":[]},{"s":"GATEIO:GHNYUSDT","d":[]},{"s":"BINANCEUS:BICOUSDT","d":[]},{"s":"UNISWAP:MVERSEWETH_EBD057.USD","d":[]},{"s":"COINEX:KEYUSDT","d":[]},{"s":"BINANCE:WBETHETH","d":[]},{"s":"GATEIO:KONUSDT","d":[]},{"s":"BITFINEX:ALT2612UST","d":[]},{"s":"BINGX:BCHUSDT.PS","d":[]},{"s":"UNISWAP3ARBITRUM:BONERWETH_D1DF04.USD","d":[]},{"s":"QUICKSWAP:DQUICKWMATIC_758B27","d":[]},{"s":"HITBTC:WBTCUSDT","d":[]},{"s":"UNISWAP:YDFWETH_153F20","d":[]},{"s":"PIONEX:FILUSDT.P","d":[]},{"s":"MEXC:TWTETH","d":[]},{"s":"HITBTC:ARBUSDT","d":[]},{"s":"BITGET:DENTUSDT.P","d":[]},{"s":"UNISWAP3ETH:PSDNWETH","d":[]},{"s":"UNISWAP3ETH:WETHAUTO","d":[]},{"s":"UNISWAP:CATEWETH_5CB8A1.USD","d":[]},{"s":"POLONIEX:MMSSUSDT","d":[]},{"s":"BYBIT:RDNTUSDT.P","d":[]},{"s":"COINEX:ZENUSDT","d":[]},{"s":"UNISWAP:SPYROWETH_D420D5","d":[]},{"s":"UNISWAP:CNTRWETH_A12B7A.USD","d":[]},{"s":"UNISWAP:SVPNWETH_1686F2.USD","d":[]},{"s":"MEXC:MRSTUSDT","d":[]},{"s":"COINEX:SEILORUSDT","d":[]},{"s":"UNISWAP3ETH:XBASKETUSDC_0C9338.USD","d":[]},{"s":"GATEIO:MNDEUSDT","d":[]},{"s":"PANGOLIN:NFSGROCO_5BF7AA","d":[]},{"s":"SPOOKYSWAP:JEFEWFTM_D7F1DD.USD","d":[]},{"s":"UNISWAP:PEPECASHWETH_BE42FA","d":[]},{"s":"COINEX:NULSBTC","d":[]},{"s":"OKX:UNIUSD.P","d":[]},{"s":"OKX:USTCUSDT.P","d":[]},{"s":"UNISWAP:BBANKWETH_2A182E","d":[]},{"s":"COINBASE:ENJUSD","d":[]},{"s":"UNISWAP3ETH:GALUSDC","d":[]},{"s":"UNISWAP:BOOBSWETH_7B8B02","d":[]},{"s":"UNISWAP:PLEBWETH_5F91C8","d":[]},{"s":"UNISWAP3ETH:TLOSWETH","d":[]},{"s":"BITHUMB:RDNTKRW","d":[]},{"s":"BINGX:LUNAUSDT.PS","d":[]},{"s":"BINANCE:ZRXBTC","d":[]},{"s":"XEXCHANGE:BFYWEGLD","d":[]},{"s":"UNISWAP3ETH:WETHFORGE","d":[]},{"s":"BITRUE:CRVUSDC","d":[]},{"s":"MEXC:MBRUSDT","d":[]},{"s":"QUICKSWAP:MOCAUSDC_FD0D4C","d":[]},{"s":"MEXC:GFALUSDT","d":[]},{"s":"MEXC:TANPINUSDT","d":[]},{"s":"UNISWAP3ETH:LCSNWETH","d":[]},{"s":"TRADERJOE:SHENWAVAX_618D07","d":[]},{"s":"BITGET:WOJAKUSDT","d":[]},{"s":"HITBTC:GLMRUSDT","d":[]},{"s":"UNISWAP:KRTEKWETH_2E8861.USD","d":[]},{"s":"GATEIO:GALAUSDT","d":[]},{"s":"BYBIT:XCNUSDT.P","d":[]},{"s":"GATEIO:F3USDT","d":[]},{"s":"MEXC:PLUGUSDT","d":[]},{"s":"UNISWAP3ETH:OXSU_41FFA8.USD","d":[]},{"s":"UNISWAP:CENTWETH_D1B32D.USD","d":[]},{"s":"GATEIO:LIKEUSDT","d":[]},{"s":"UNISWAP:GMWETH_24F930","d":[]},{"s":"UNISWAP3ETH:WIFSWETH_BBBC45.USD","d":[]},{"s":"QUICKSWAP:SRSUSDC_A907E8","d":[]},{"s":"UNISWAP3ETH:GRTLINK","d":[]},{"s":"MEXC:XPETUSDT","d":[]},{"s":"HITBTC:DASHUSD","d":[]},{"s":"UNISWAP:SIDUSWETH_8C07E1.USD","d":[]},{"s":"UNISWAP:UNCXWETH_C70BB2.USD","d":[]},{"s":"HITBTC:SBTCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHANKR","d":[]},{"s":"ZOOMEX:SILLYUSDT.P","d":[]},{"s":"BITFLYER:ETHJPY","d":[]},{"s":"WAGYUSWAP:JUNGLEETH_CA0012.USD","d":[]},{"s":"UPBIT:SEIKRW","d":[]},{"s":"PHEMEX:GALUSDT","d":[]},{"s":"UNISWAP3ETH:RPLUSDC","d":[]},{"s":"BINANCE:RVNTRY","d":[]},{"s":"UNISWAP:MICKEYWETH_2A7AE6.USD","d":[]},{"s":"GATEIO:MYRIAUSDT","d":[]},{"s":"POLONIEX:CVPUSDT","d":[]},{"s":"MEXC:ONGUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:LPTWETH_4FD47E.USD","d":[]},{"s":"UNISWAP3POLYGON:MAKERXWMATIC_3EA34C.USD","d":[]},{"s":"BITFINEX:TOMIUSD","d":[]},{"s":"BYBIT:ELDAUSDT","d":[]},{"s":"POLONIEX:EGGUSDT","d":[]},{"s":"BYBIT:DYMUSDT","d":[]},{"s":"BITKUB:USDCTHB","d":[]},{"s":"UNISWAP3ETH:RAELWETH_C2DB32.USD","d":[]},{"s":"UNISWAP:PEEPWETH_1C06D2.USD","d":[]},{"s":"SPOOKYSWAP:MAGIC2DAI_A40DBF","d":[]},{"s":"UNISWAP:GUILDUSDC_DCEC56","d":[]},{"s":"BITGET:AVAVUSDT","d":[]},{"s":"OKX:QTUMUSDT.P","d":[]},{"s":"HITBTC:MIRBTC","d":[]},{"s":"UNISWAP:NFTWETH_41FCF9.USD","d":[]},{"s":"UNISWAP3ETH:KATAWETH","d":[]},{"s":"MEXC:LDOUSDT.P","d":[]},{"s":"TRADERJOE:EGGWAVAX_3052A7","d":[]},{"s":"UNISWAP:COLIWETH_5ECDC0","d":[]},{"s":"HITBTC:FRONTETH","d":[]},{"s":"BITGET:BITCOINUSDT","d":[]},{"s":"UNISWAP:TOTOWETH_5008D3.USD","d":[]},{"s":"BYBIT:BONKUSDT","d":[]},{"s":"UNISWAP3ETH:HAKAWETH_29B15C.USD","d":[]},{"s":"SPOOKYSWAP:BIFIWFTM_165672","d":[]},{"s":"QUICKSWAP:WHEYWMATIC_1B18C6.USD","d":[]},{"s":"UNISWAP3ARBITRUM:DAIUSDC_D37AF6.USD","d":[]},{"s":"OKX:SOLUSDT.P","d":[]},{"s":"UNISWAP:VVUSDT_F723BC","d":[]},{"s":"UNISWAP:SHILLDWETH_B2F616","d":[]},{"s":"UNISWAP:MODAWETH_C98A5C","d":[]},{"s":"UNISWAP:FLOKIN2WETH_8B1E94","d":[]},{"s":"BINANCE:UNIBTC","d":[]},{"s":"UNISWAP:KZNWETH_2E953F.USD","d":[]},{"s":"UNISWAP3ETH:HARAMBEWSTETH_58EE92.USD","d":[]},{"s":"BITHUMB:CYBERKRW","d":[]},{"s":"QUICKSWAP:WETHWMATIC_ADBF18.USD","d":[]},{"s":"UNISWAP3ETH:DOLLARAIWETH","d":[]},{"s":"BTSE:APEUSD.P","d":[]},{"s":"UNISWAP3POLYGON:TRCUSDC_7399C6.USD","d":[]},{"s":"TRADERJOE:MUMUG_67D9AA.USD","d":[]},{"s":"QUICKSWAP:OMENUSDC_50409D","d":[]},{"s":"UNISWAP3ETH:USDCBHOME","d":[]},{"s":"UNISWAP3ETH:WETHMXC","d":[]},{"s":"COINBASE:XTZGBP","d":[]},{"s":"BITHUMB:ZILKRW","d":[]},{"s":"GATEIO:PLANETUSDT","d":[]},{"s":"BITHUMB:VALORKRW","d":[]},{"s":"QUICKSWAP:POLIWETH_660EF3","d":[]},{"s":"BITGET:THALESUSDT","d":[]},{"s":"BYBIT:APTUSDT","d":[]},{"s":"UNISWAP3ETH:JAREDWETH_828C1D.USD","d":[]},{"s":"UNISWAP:BAZEDWETH_9EB51E.USD","d":[]},{"s":"COINBASE:PYUSDUSD","d":[]},{"s":"BINANCEUS:LTCUSDT","d":[]},{"s":"BTSE:ZRXUSD","d":[]},{"s":"COINEX:ASTRBTC","d":[]},{"s":"UNISWAP3ETH:WETHSEEDS","d":[]},{"s":"QUICKSWAP:SCAWETH_2922E1.USD","d":[]},{"s":"KRAKEN:ALGOUSDT","d":[]},{"s":"KRAKEN:STGUSD.PM","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCWETH_149E36.USD","d":[]},{"s":"TRADERJOE:SINGUSDTE_42B33D.USD","d":[]},{"s":"UNISWAP3ETH:WETHNESSY","d":[]},{"s":"COINEX:GRTUSDT","d":[]},{"s":"HITBTC:XRDUSDT","d":[]},{"s":"MEXC:BALLZUSDT","d":[]},{"s":"GATEIO:GMMUSDT","d":[]},{"s":"PHEMEX:ARBUSDT","d":[]},{"s":"POLONIEX:RINGUSDT","d":[]},{"s":"MEXC:MMOSHUSDT","d":[]},{"s":"UNISWAP3ETH:PRINTSWETH","d":[]},{"s":"UNISWAP:COCOWETH_0FBC0A.USD","d":[]},{"s":"COINEX:OXTUSDT","d":[]},{"s":"SPOOKYSWAP:COVERWFTM_5DC784.USD","d":[]},{"s":"UNISWAP:K9WETH_EC2232.USD","d":[]},{"s":"GATEIO:ALPINEUSDT","d":[]},{"s":"BITFINEX:GRTUST","d":[]},{"s":"UNISWAP:ETHERBITCOIN_3D86E6","d":[]},{"s":"QUICKSWAP:MCRNWETH_DE84C8","d":[]},{"s":"GATEIO:SKTUSDT","d":[]},{"s":"UNISWAP:DEXIOWETH_1AACE5.USD","d":[]},{"s":"BYBIT:C98USDT.P","d":[]},{"s":"KRAKEN:RLCEUR","d":[]},{"s":"UNISWAP3OPTIMISM:XCHFDAI_381AF0.USD","d":[]},{"s":"UNISWAP:FIGUREWETH_8F6C01.USD","d":[]},{"s":"UNISWAP3ETH:WETHSQT","d":[]},{"s":"POLONIEX:BNTUSDT","d":[]},{"s":"MEXC:GROKUSDT.P","d":[]},{"s":"UNISWAP3ETH:KASWETH_B02045.USD","d":[]},{"s":"MEXC:ZPAYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHILV","d":[]},{"s":"GATEIO:SKILLUSDT","d":[]},{"s":"BINANCE:OPTRY","d":[]},{"s":"TRADERJOE:DSLAWAVAX_3108D8","d":[]},{"s":"POLONIEX:PERPUSDT","d":[]},{"s":"MEXC:SLPUSDT","d":[]},{"s":"UNISWAP:HOLDWETH_9E5F2B.USD","d":[]},{"s":"HITBTC:GFTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LDOWETH_25AB7D.USD","d":[]},{"s":"BYBIT:FRONTUSDT.P","d":[]},{"s":"UNISWAP:CHATXWETH_468CE1","d":[]},{"s":"GATEIO:DXCTUSDT","d":[]},{"s":"GATEIO:EJSUSDT","d":[]},{"s":"BITKUB:DOGETHB","d":[]},{"s":"MEXC:AKITAXUSDT","d":[]},{"s":"QUICKSWAP:ORBSQUICK_882624","d":[]},{"s":"UNISWAP3ETH:WETHCTSI","d":[]},{"s":"UNISWAP:TUCKERWETH_4A885A.USD","d":[]},{"s":"BITGET:JASMYUSDT.P","d":[]},{"s":"WHITEBIT:JTOUSDT","d":[]},{"s":"UNISWAP:CAFEWETH_EE47D4","d":[]},{"s":"BITHUMB:BLYKRW","d":[]},{"s":"PIONEX:MNTUSDT.P","d":[]},{"s":"UNISWAP:XWGUSDT_1272C7","d":[]},{"s":"UNISWAP:HIGHWETH_385461.USD","d":[]},{"s":"BLOFIN:KAVAUSDT.P","d":[]},{"s":"PANGOLIN:GEGGSCOQ_9A1108","d":[]},{"s":"HITBTC:UFTUSDT","d":[]},{"s":"UNISWAP3ETH:IZIWETH","d":[]},{"s":"UNISWAP3ETH:STGUSDC","d":[]},{"s":"TRADERJOE:MONEYWAVAX_66D12E.USD","d":[]},{"s":"UNISWAP3POLYGON:MOONEDUSDC_9D91CC.USD","d":[]},{"s":"WHITEBIT:ZECBTC","d":[]},{"s":"BINGX:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHIPX","d":[]},{"s":"MEXC:WFTUSDT","d":[]},{"s":"TRADERJOE:AAVEEWAVAX_C3E6D9.USD","d":[]},{"s":"QUICKSWAP:DAIMIMATIC_74214F.USD","d":[]},{"s":"BINANCE:CLVUSDT","d":[]},{"s":"UNISWAP:WNUNISHIB_E8DC5D","d":[]},{"s":"UNISWAP3POLYGON:SOULSUSDT_865910.USD","d":[]},{"s":"TRADERJOE:USDTEUSDT_74B651","d":[]},{"s":"UNISWAP3ETH:WETHLIQ","d":[]},{"s":"GATEIO:KINUSDT","d":[]},{"s":"MEXC:XRPBABYUSDT","d":[]},{"s":"UNISWAP:OPOEWETH_F60028.USD","d":[]},{"s":"BITGET:MVUSDT","d":[]},{"s":"QUICKSWAP:ETHVUSDC_F0DCDE","d":[]},{"s":"BITGET:BGBEUR","d":[]},{"s":"PHEMEX:MAGICUSDT","d":[]},{"s":"KRAKEN:SUSHIUSD","d":[]},{"s":"PANGOLIN:PEFISNOB_0B9753","d":[]},{"s":"UNISWAP3ETH:HFTWETH","d":[]},{"s":"UNISWAP:SWEETWETH_6F807C.USD","d":[]},{"s":"BITGET:DUSDUSDC","d":[]},{"s":"BITHUMB:REIKRW","d":[]},{"s":"PHEMEX:AUDIOUSDT.P","d":[]},{"s":"UNISWAP:TRUMPWETH_7F91A7","d":[]},{"s":"COINEX:PLSUSDT","d":[]},{"s":"TRADERJOE:COOKWAVAX_3FCD1D","d":[]},{"s":"MEXC:UMAUSDT.P","d":[]},{"s":"HITBTC:MINBTC","d":[]},{"s":"TRADERJOE:GMBLUSDC_C29C5A","d":[]},{"s":"BYBIT:JSTUSDT.P","d":[]},{"s":"UNISWAP3ETH:ASHWETH_3EE301.USD","d":[]},{"s":"UNISWAP3ETH:BULLFIUSDC","d":[]},{"s":"QUICKSWAP:SPEPEWMATIC_63E624.USD","d":[]},{"s":"UNISWAP3ETH:WETHOXT","d":[]},{"s":"COINEX:HIVEBTC","d":[]},{"s":"TRADERJOE:PACWAVAX_C00FA4.USD","d":[]},{"s":"BITFINEX:ALGUST","d":[]},{"s":"GATEIO:RAYUSDT","d":[]},{"s":"MEXC:INTERUSDT","d":[]},{"s":"OKX:RNDRUSDT.P","d":[]},{"s":"BINANCE:GALABNB","d":[]},{"s":"UNISWAP:GOATWETH_AD3D18","d":[]},{"s":"UNISWAP:NGLWETH_20D996.USD","d":[]},{"s":"BITRUE:TUSDUSDT","d":[]},{"s":"UPBIT:MTLKRW","d":[]},{"s":"COINEX:NANAUSDT","d":[]},{"s":"HITBTC:VTHOUSDT","d":[]},{"s":"QUICKSWAP:TELEBTCWMATIC_4108CE.USD","d":[]},{"s":"SPOOKYSWAP:BASEDTOMB_AB2DDC","d":[]},{"s":"POLONIEX:BRCBTCSUSDT","d":[]},{"s":"BINANCE:JTOUSDT","d":[]},{"s":"UNISWAP3ETH:USDTATOS","d":[]},{"s":"GATEIO:EGLDUSDT.3S","d":[]},{"s":"PANGOLIN:RACEXWAVAX_B57C80","d":[]},{"s":"MEXC:STEPNUSDT","d":[]},{"s":"GATEIO:DISUSDT","d":[]},{"s":"POLONIEX:BIFUSDT","d":[]},{"s":"SPOOKYSWAP:EYEWFTM_AF6125","d":[]},{"s":"SPOOKYSWAP:WBANWFTM_1406E4","d":[]},{"s":"HITBTC:HTMLUSDT","d":[]},{"s":"HITBTC:LTCUSDC","d":[]},{"s":"MEXC:GRVUSDT","d":[]},{"s":"DERIBIT:BTCUSD.P","d":[]},{"s":"UNISWAP3ETH:USDCSHEETP","d":[]},{"s":"BINGX:WAXPUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHBEANS","d":[]},{"s":"BITGET:LOVELYUSDT","d":[]},{"s":"XEXCHANGE:AIXUSDC","d":[]},{"s":"UNISWAP3ETH:CHAINWETH_D9B364.USD","d":[]},{"s":"UNISWAP:ZCXWETH_797E1D.USD","d":[]},{"s":"UNISWAP3ETH:PROSWETH_062B50.USD","d":[]},{"s":"MEXC:BIDPUSDT","d":[]},{"s":"BITMEX:LDOUSD.P","d":[]},{"s":"BINANCE:BNBUSDC","d":[]},{"s":"MEXC:NIZAUSDT","d":[]},{"s":"MEXC:TORNUSDT","d":[]},{"s":"UNISWAP3ETH:SANWETH_345BEC.USD","d":[]},{"s":"GATEIO:RNDXUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:GETHWETH_987F74.USD","d":[]},{"s":"UNISWAP3ETH:WETHCHAX","d":[]},{"s":"UNISWAP3ETH:LOVEWETH_7BFA17.USD","d":[]},{"s":"UNISWAP:INUSWETH_5EAD54","d":[]},{"s":"GATEIO:ALDUSDT","d":[]},{"s":"UNISWAP:GMEMEWETH_EB5716.USD","d":[]},{"s":"UNISWAP3ETH:PAIDWETH_DD6422.USD","d":[]},{"s":"GATEIO:GOZUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCAAVE","d":[]},{"s":"UNISWAP3POLYGON:ZIUSDC_E638F3.USD","d":[]},{"s":"PANGOLIN:TUSWAVAX_BCED3B.USD","d":[]},{"s":"MEXC:ELFETH","d":[]},{"s":"HITBTC:CTKUSDT","d":[]},{"s":"BLOFIN:1000XECUSDT.P","d":[]},{"s":"COINEX:BOOUSDT","d":[]},{"s":"UNISWAP:POLYHEDRAWETH_EFC437.USD","d":[]},{"s":"UNISWAP3ETH:WBTCUSDT","d":[]},{"s":"BITRUE:RADUSDT","d":[]},{"s":"HITBTC:DOTBTC","d":[]},{"s":"UNISWAP3POLYGON:USDVUSDC_82EC70.USD","d":[]},{"s":"UNISWAP:OPEPEWETH_923F42.USD","d":[]},{"s":"UNISWAP3ARBITRUM:FRAXUSDC_D0E325.USD","d":[]},{"s":"PANGOLIN:YAYWAVAX_04D80D","d":[]},{"s":"UNISWAP3ETH:PDIWETH_F5FE7E.USD","d":[]},{"s":"HITBTC:GOLDUSDT","d":[]},{"s":"UNISWAP:MARVINWETH_F71998","d":[]},{"s":"UNISWAP3ETH:GEARUSDT","d":[]},{"s":"COINBASE:ADAETH","d":[]},{"s":"BYBIT:MNZUSDT","d":[]},{"s":"UNISWAP3POLYGON:DRAMUSDC_350BBC.USD","d":[]},{"s":"UNISWAP3ETH:PABLOWETH","d":[]},{"s":"KRAKEN:CFGUSD","d":[]},{"s":"BITFINEX:SUSHIUST.P","d":[]},{"s":"QUICKSWAP:XEDWETH_8A98D8.USD","d":[]},{"s":"UNISWAP:WQTWETH_F1FE85.USD","d":[]},{"s":"COINBASE:ORCAUSD","d":[]},{"s":"BISWAP:CAKEWBNB_3D94D0.USD","d":[]},{"s":"MEXC:JOEUSDT.P","d":[]},{"s":"BYBIT:APEXUSDT","d":[]},{"s":"BLOFIN:NEOUSDT.P","d":[]},{"s":"SPOOKYSWAP:ZOOWFTM_3CCEB4.USD","d":[]},{"s":"BISWAP:ULANDWBNB_4B0BB5","d":[]},{"s":"UNISWAP:EWTBWETH_DC7D8C.USD","d":[]},{"s":"HITBTC:ROOKBTC","d":[]},{"s":"UNISWAP:GOSWETH_1F8592.USD","d":[]},{"s":"POLONIEX:ATOMUSDC","d":[]},{"s":"QUICKSWAP:XENDWMATIC_D13845","d":[]},{"s":"TRADERJOE:ZEUSWAVAX_8D304A","d":[]},{"s":"GATEIO:BTSUSDT","d":[]},{"s":"DELTA:UNIUSDT.P","d":[]},{"s":"UNISWAP:FTXWETH_3B6EA8.USD","d":[]},{"s":"SPOOKYSWAP:KIRBYWFTM_368470.USD","d":[]},{"s":"MEXC:BADGERBTC","d":[]},{"s":"UNISWAP3POLYGON:AAVEWMATIC_B3866E.USD","d":[]},{"s":"BYBIT:PSPUSDT","d":[]},{"s":"KRAKEN:MKRUSD.PM","d":[]},{"s":"BITHUMB:API3KRW","d":[]},{"s":"BINGX:VANRYUSDT.P","d":[]},{"s":"UNISWAP3ETH:IMXICHI_765C55.USD","d":[]},{"s":"WHITEBIT:ACEUSDT.P","d":[]},{"s":"GATEIO:SBTCUSDT","d":[]},{"s":"UNISWAP3ETH:UNIDAI","d":[]},{"s":"GATEIO:DORAUSDT","d":[]},{"s":"PIONEX:DYDXUSDT.P","d":[]},{"s":"UNISWAP3ETH:RAIWETH","d":[]},{"s":"UNISWAP:UFOWETH_97E1FC","d":[]},{"s":"KRAKEN:GARIEUR","d":[]},{"s":"ZOOMEX:METISUSDT.P","d":[]},{"s":"UNISWAP3ETH:DERPWETH_5F553A.USD","d":[]},{"s":"MEXC:SITYUSDT","d":[]},{"s":"COINEX:SANTOSUSDT","d":[]},{"s":"UNISWAP:VIDYAWETH_DA3706","d":[]},{"s":"BITHUMB:BNTKRW","d":[]},{"s":"HITBTC:SMARTUSDT","d":[]},{"s":"UNISWAP:SMILEYWETH_9345C3.USD","d":[]},{"s":"KRAKEN:KEEPEUR","d":[]},{"s":"BINANCE:AVAXETH","d":[]},{"s":"BITHUMB:VRAKRW","d":[]},{"s":"COINEX:SFLUSDT","d":[]},{"s":"QUICKSWAP:GIBWMATIC_DE5A12.USD","d":[]},{"s":"POLONIEX:DORAUSDT","d":[]},{"s":"UNISWAP:FOURWETH_B15624.USD","d":[]},{"s":"COINEX:MPLUSDT","d":[]},{"s":"BYBIT:YFIIUSDT.P","d":[]},{"s":"GATEIO:IDEXUSDT","d":[]},{"s":"POLONIEX:GTAIUSDT","d":[]},{"s":"MEXC:ASTRUSDT","d":[]},{"s":"BINANCE:FISBTC","d":[]},{"s":"UNISWAP:TRUTHWETH_C1D93F","d":[]},{"s":"UNISWAP:MUTEWETH_0EFB42","d":[]},{"s":"HITBTC:NCTUSDT","d":[]},{"s":"UNISWAP3ETH:BLOODWETH_700F4D.USD","d":[]},{"s":"HITBTC:NEXOETH","d":[]},{"s":"WHITEBIT:ETHUSDC","d":[]},{"s":"COINEX:SPEEROUSDT","d":[]},{"s":"UNISWAP3ETH:MICKEYUSDC","d":[]},{"s":"KRAKEN:CRVEUR","d":[]},{"s":"UNISWAP:AISIGWETH_52A1B8","d":[]},{"s":"UNISWAP3ETH:PLSBUSDC","d":[]},{"s":"UNISWAP:NEURALINKWETH_51B383","d":[]},{"s":"GATEIO:KMAUSDT","d":[]},{"s":"UNISWAP3ETH:USDCFORT","d":[]},{"s":"UNISWAP:ASAPWETH_49AA60","d":[]},{"s":"GATEIO:RFOXUSDT","d":[]},{"s":"BYBIT:IZIUSDT","d":[]},{"s":"UNISWAP:ISHIWETH_048D31","d":[]},{"s":"QUICKSWAP:BONWMATIC_26432F.USD","d":[]},{"s":"UNISWAP:EVNWETH_29F07E","d":[]},{"s":"UNISWAP3ETH:ARBWETH_755E5A.USD","d":[]},{"s":"KRAKEN:LINAUSD.PM","d":[]},{"s":"UNISWAP3ARBITRUM:PLXWETH_E7AAA5.USD","d":[]},{"s":"ZOOMEX:KDAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPNDC","d":[]},{"s":"QUICKSWAP:MONAQUICK_82F167.USD","d":[]},{"s":"BITRUE:DOGEUSDC","d":[]},{"s":"UNISWAP:NMTUSDC_A86ACA","d":[]},{"s":"UNISWAP:M2WPE_9816F2.USD","d":[]},{"s":"MEXC:JUPUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRACWETH","d":[]},{"s":"BITFINEX:FETBTC","d":[]},{"s":"GATEIO:PYUSDUSDT","d":[]},{"s":"KRAKEN:GRTUSD","d":[]},{"s":"PANGOLIN:ROCOWAVAX_4A2CB9","d":[]},{"s":"GATEIO:ADPUSDT","d":[]},{"s":"BYBIT:BTCUSDC","d":[]},{"s":"BITRUE:PXPUSDT","d":[]},{"s":"PHEMEX:PERPUSDT","d":[]},{"s":"UNISWAP:COPEWETH_AD1B37.USD","d":[]},{"s":"UNISWAP3ETH:USDCSDAO","d":[]},{"s":"GATEIO:UNTUSDT","d":[]},{"s":"KRAKEN:DOTUSD.PM","d":[]},{"s":"COINEX:FURUCOMBOUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:LUSDUSDC_1682DC.USD","d":[]},{"s":"SPOOKYSWAP:XTAROTWFTM_D0C08B","d":[]},{"s":"COINEX:DEGOUSDT","d":[]},{"s":"UNISWAP3ETH:POWRWETH_E3FE80.USD","d":[]},{"s":"HITBTC:AAVEUSDC","d":[]},{"s":"UNISWAP:ESOVWETH_127CAD","d":[]},{"s":"HITBTC:CNDBTC","d":[]},{"s":"OKX:ACHUSDT.P","d":[]},{"s":"GATEIO:CIRUSUSDT","d":[]},{"s":"POLONIEX:ACMUSDD","d":[]},{"s":"COINEX:SOLSUSDT","d":[]},{"s":"MEXC:RETUSDT","d":[]},{"s":"BINANCE:PYRUSDT","d":[]},{"s":"KRAKEN:XCNUSD","d":[]},{"s":"GATEIO:HDVUSDT","d":[]},{"s":"UNISWAP:POLARUSDC_9BBB51","d":[]},{"s":"UNISWAP:DOGWSTETH_801C86","d":[]},{"s":"UNISWAP:SYNCWETH_FB2F54.USD","d":[]},{"s":"UNISWAP3ETH:WMTWETH","d":[]},{"s":"UNISWAP:VABWETH_37DE1B","d":[]},{"s":"PHEMEX:RLCUSDT.P","d":[]},{"s":"BINGX:MASKUSDT.PS","d":[]},{"s":"BITKUB:GRTTHB","d":[]},{"s":"POLONIEX:MASKUSDD","d":[]},{"s":"UNISWAP:DEFXWETH_BDEE9C","d":[]},{"s":"DELTA:FILUSDT.P","d":[]},{"s":"WHITEBIT:CYBERUSDT.P","d":[]},{"s":"UNISWAP3ETH:LOOKSWETH_4B5AB6.USD","d":[]},{"s":"COINEX:TTUSDT","d":[]},{"s":"UNISWAP:RIZZWETH_6AC536.USD","d":[]},{"s":"UNISWAP:GTHWETH_36A48C","d":[]},{"s":"UNISWAP:UDOWETH_AB3B03","d":[]},{"s":"BINANCE:COMPUSDT","d":[]},{"s":"UNISWAP:UMIWETH_41875E.USD","d":[]},{"s":"MEXC:WBRGEUSDT","d":[]},{"s":"UNISWAP:MRIWETH_88ADE0","d":[]},{"s":"POLONIEX:HNTUSDT","d":[]},{"s":"UNISWAP:CATWETH_613212","d":[]},{"s":"BITHUMB:MANAKRW","d":[]},{"s":"SPOOKYSWAP:BLACKYWFTM_E0C204","d":[]},{"s":"UNISWAP:PEPPAWETH_442D4D","d":[]},{"s":"BISWAP:ULANDWBNB_4B0BB5.USD","d":[]},{"s":"UNISWAP:LONWETH_7924A8.USD","d":[]},{"s":"UNISWAP:STILTWETH_A3D456","d":[]},{"s":"BITFINEX:LUNA2BTC","d":[]},{"s":"UNISWAP:FONZYWETH_5C8EB4.USD","d":[]},{"s":"UNISWAP3ETH:BENWETH_DCE93E.USD","d":[]},{"s":"QUICKSWAP:IDNWMATIC_013F67.USD","d":[]},{"s":"MEXC:LINKUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSWTH","d":[]},{"s":"HITBTC:BAKEBTC","d":[]},{"s":"UNISWAP3ETH:PANDORAUSDT","d":[]},{"s":"BITFINEX:CELOUST","d":[]},{"s":"UNISWAP3ETH:WETHKOI","d":[]},{"s":"MEXC:SIXUSDT","d":[]},{"s":"UNISWAP:BABYDOGE20WETH_A75B1F","d":[]},{"s":"POLONIEX:DSWPUSDT","d":[]},{"s":"MEXC:XERSUSDT","d":[]},{"s":"UNISWAP:PPWETH_A66097.USD","d":[]},{"s":"UNISWAP:KAIWETH_9DDED5.USD","d":[]},{"s":"BYBIT:NMRUSDT.P","d":[]},{"s":"MEXC:KINGUSDT","d":[]},{"s":"UNISWAP3ETH:USDTHOPE","d":[]},{"s":"BINGX:TOKENUSDT.PS","d":[]},{"s":"POLONIEX:CARMINUSDT","d":[]},{"s":"BINGX:GTCUSDT.P","d":[]},{"s":"BINANCE:SANDFDUSD","d":[]},{"s":"UNISWAP3POLYGON:LIMEWMATIC_845BD6.USD","d":[]},{"s":"QUICKSWAP:MALTDAI_F864DB.USD","d":[]},{"s":"MEXC:SRMUSDT","d":[]},{"s":"BITRUE:GMTUSDC","d":[]},{"s":"UNISWAP3ETH:WETHSWITCH","d":[]},{"s":"COINEX:QNTUSDT","d":[]},{"s":"UNISWAP3ETH:GLMUSDC_60257C.USD","d":[]},{"s":"BITMEX:AXSUSDT","d":[]},{"s":"POLONIEX:LOOKSUSDT","d":[]},{"s":"HITBTC:MBOXUSD","d":[]},{"s":"MEXC:ARCHUSDT","d":[]},{"s":"WOONETWORK:MANAUSDT","d":[]},{"s":"BTSE:BALUSD","d":[]},{"s":"PIONEX:BATUSDT.P","d":[]},{"s":"KRAKEN:ETHUSDM2024","d":[]},{"s":"BINANCEUS:AXLUSDT","d":[]},{"s":"QUICKSWAP:MNFTWMATIC_046330","d":[]},{"s":"UNISWAP3ETH:FOOMWETH","d":[]},{"s":"BITFINEX:PAXBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_616A2A.USD","d":[]},{"s":"UNISWAP:PAINTWETH_478893.USD","d":[]},{"s":"BINANCE:UNIUSDC","d":[]},{"s":"MEXC:PAYUUSDT","d":[]},{"s":"MEXC:BLOCXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDERC","d":[]},{"s":"UNISWAP3POLYGON:TRADEUSDT_362D04.USD","d":[]},{"s":"BITGET:CANTOUSDT","d":[]},{"s":"GATEIO:IDUSDT.3S","d":[]},{"s":"MEXC:C98USDT","d":[]},{"s":"UNISWAP3POLYGON:GLMWETH_D64FB3.USD","d":[]},{"s":"HITBTC:DASHHIT","d":[]},{"s":"UNISWAP3ETH:EULWETH","d":[]},{"s":"BITGET:ANKRUSDT.P","d":[]},{"s":"KRAKEN:KNCUSD.PM","d":[]},{"s":"MEXC:BTCBAMUSDT","d":[]},{"s":"BITMEX:ETHBTCM2024","d":[]},{"s":"GATEIO:STETHUSDT","d":[]},{"s":"COINEX:TRBUSDT","d":[]},{"s":"MEXC:UMAETH","d":[]},{"s":"BYBIT:PUMLXUSDT","d":[]},{"s":"GATEIO:GOLDUSDT","d":[]},{"s":"MEXC:GFTUSDT.P","d":[]},{"s":"UNISWAP3ETH:SLNUSDT","d":[]},{"s":"MEXC:REEFUSDT.P","d":[]},{"s":"TRADERJOE:ENIGMA404WAVAX_737268","d":[]},{"s":"HITBTC:NGCUSDT","d":[]},{"s":"BINANCE:ORNUSDT","d":[]},{"s":"UNISWAP3ETH:1INCHUSDC","d":[]},{"s":"UNISWAP:BETTEDWETH_098B61","d":[]},{"s":"UNISWAP3ETH:KNIGHTWETH_03BC32.USD","d":[]},{"s":"QUICKSWAP:UCOWETH_25BAE7.USD","d":[]},{"s":"UNISWAP:SNPUSDC_6B5FC4","d":[]},{"s":"UNISWAP:XDOGEWETH_EEA71C.USD","d":[]},{"s":"UNISWAP:BBOTWETH_9BBD3D","d":[]},{"s":"BINANCE:BTCUAH","d":[]},{"s":"HITBTC:LINAUSD","d":[]},{"s":"MEXC:VMINTUSDT","d":[]},{"s":"GATEIO:PEPEUSDT","d":[]},{"s":"SPOOKYSWAP:POOHWFTM_29BA21.USD","d":[]},{"s":"MEXC:RNDRUSDT.P","d":[]},{"s":"UNISWAP3ETH:TONCOINWETH_4B62FA.USD","d":[]},{"s":"UNISWAP:PREMEWETH_E6B7E5.USD","d":[]},{"s":"UNISWAP3ETH:TRUUSDT","d":[]},{"s":"UNISWAP3POLYGON:FXA3AEURO3_58C787.USD","d":[]},{"s":"UNISWAP:GLMWETH_B5F790","d":[]},{"s":"COINEX:USTCUSDT","d":[]},{"s":"UNISWAP3ETH:IZEWETH","d":[]},{"s":"UNISWAP3OPTIMISM:CELOWETH_6B3A3D.USD","d":[]},{"s":"PANGOLIN:ACREWAVAX_64694F.USD","d":[]},{"s":"BYBIT:LOOKSUSDT.P","d":[]},{"s":"HITBTC:ETPUSD","d":[]},{"s":"UNISWAP:SURVIVORWETH_E119FF","d":[]},{"s":"MEXC:EULUSDT","d":[]},{"s":"UNISWAP3POLYGON:CGGUSDC_C8BECA.USD","d":[]},{"s":"UNISWAP3ETH:SAMAWETH_854B57.USD","d":[]},{"s":"WHITEBIT:TIAUSDT.P","d":[]},{"s":"UNISWAP3ETH:TAOSHARDWETH","d":[]},{"s":"COINEX:TONEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHOOKS","d":[]},{"s":"SPOOKYSWAP:FOLIVEWFTM_F1D412","d":[]},{"s":"MEXC:ENSUSDT.P","d":[]},{"s":"UNISWAP3ETH:EMERALDWETH","d":[]},{"s":"UNISWAP3POLYGON:SYNWMATIC_8F685B.USD","d":[]},{"s":"TRADERJOE:GRABWAVAX_5AC6F8","d":[]},{"s":"UNISWAP3OPTIMISM:USDCWETH_C1738D.USD","d":[]},{"s":"MEXC:XENETH","d":[]},{"s":"PIONEX:NEOUSDT.P","d":[]},{"s":"DELTA:NEARUSDT.P","d":[]},{"s":"POLONIEX:ATMUSDT","d":[]},{"s":"MEXC:ASTROUSDT","d":[]},{"s":"BITGET:AMUUSDT","d":[]},{"s":"MEXC:DEXEBTC","d":[]},{"s":"UNISWAP3ETH:WETHNFAI","d":[]},{"s":"UNISWAP:IKUNWETH_AB7050.USD","d":[]},{"s":"KRAKEN:HDXUSD","d":[]},{"s":"UNISWAP3ETH:USDCPSYOP","d":[]},{"s":"BITFINEX:WMINIMABTC","d":[]},{"s":"UNISWAP3ETH:ADWETH","d":[]},{"s":"UNISWAP3ETH:NXRAUSDT","d":[]},{"s":"UNISWAP:FUUUUWETH_32A81F.USD","d":[]},{"s":"UNISWAP3ETH:USDTSOUL","d":[]},{"s":"MEXC:BAJUUSDT","d":[]},{"s":"HITBTC:WLXTUSDT","d":[]},{"s":"DELTA:CRVUSDT.P","d":[]},{"s":"BINANCE:FIDATRY","d":[]},{"s":"UNISWAP:0XLWETH_0AE8D7.USD","d":[]},{"s":"MEXC:APEUSDT.P","d":[]},{"s":"UNISWAP:OSAKWETH_05C024.USD","d":[]},{"s":"POLONIEX:SHPINGUSDT","d":[]},{"s":"MEXC:THOLUSDT","d":[]},{"s":"COINEX:XTZUSDC","d":[]},{"s":"BITKUB:ENSTHB","d":[]},{"s":"UNISWAP:LOONGWETH_11E5CD.USD","d":[]},{"s":"PIONEX:THETAUSDT.P","d":[]},{"s":"POLONIEX:MKRBTC","d":[]},{"s":"BITGET:RSS3USDT","d":[]},{"s":"UNISWAP:GUSTAWETH_9DAEB7.USD","d":[]},{"s":"BITHUMB:MAPKRW","d":[]},{"s":"BITMEX:POLYXUSDT.P","d":[]},{"s":"UNISWAP:SATAWETH_BC00E7.USD","d":[]},{"s":"UNISWAP3ETH:LINUWETH","d":[]},{"s":"POLONIEX:APXUSDD","d":[]},{"s":"GATEIO:ASTUSDT","d":[]},{"s":"PHEMEX:1000PEPEUSDT.P","d":[]},{"s":"UNISWAP:NENOWETH_9AC73B","d":[]},{"s":"HITBTC:STARLBTC","d":[]},{"s":"UNISWAP3ETH:DOVAWETH_F3E53D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:YFIIIARB_60E516.USD","d":[]},{"s":"BITFLYER:BTCJPY","d":[]},{"s":"UNISWAP3ETH:WETHCETH","d":[]},{"s":"KRAKEN:ICXUSD","d":[]},{"s":"UNISWAP3ETH:OGVWETH","d":[]},{"s":"BYBIT:COTUSDT","d":[]},{"s":"UNISWAP3ETH:PRINTSWETH_9558B1.USD","d":[]},{"s":"COINEX:SEIYANUSDT","d":[]},{"s":"PIONEX:RDNTUSDT.P","d":[]},{"s":"BITSTAMP:LRCEUR","d":[]},{"s":"UNISWAP:USTMIR_87DA82.USD","d":[]},{"s":"UNISWAP:BSTWETH_61F49F.USD","d":[]},{"s":"COINEX:SOLOUSDT","d":[]},{"s":"BINANCE:DCRBTC","d":[]},{"s":"UNISWAP:BONKWETH_08DDB0","d":[]},{"s":"UNISWAP3ETH:UBXUSDT","d":[]},{"s":"UNISWAP:ETFWETH_39D297.USD","d":[]},{"s":"WHITEBIT:DFUSDT","d":[]},{"s":"BINANCE:CLVBTC","d":[]},{"s":"HITBTC:XCNUSD","d":[]},{"s":"MEXC:CHEERSUSDT","d":[]},{"s":"TRADERJOE:MOREWAVAX_B8361D","d":[]},{"s":"KRAKEN:APEUSD.PM","d":[]},{"s":"HITBTC:MTLXBTC","d":[]},{"s":"GATEIO:REACHUSDT","d":[]},{"s":"MEXC:LUAUSDT","d":[]},{"s":"UNISWAP3ETH:ELOWETH_482ECE.USD","d":[]},{"s":"MEXC:FEGUSDT","d":[]},{"s":"GATEIO:ALICEUSDT.3L","d":[]},{"s":"BITGET:BABYBONKUSDT","d":[]},{"s":"BINANCE:AVAXUSDT","d":[]},{"s":"QUICKSWAP:WOLFWMATIC_652A7B","d":[]},{"s":"UNISWAP3ETH:EUREUSDC","d":[]},{"s":"UNISWAP3ETH:USDCGF","d":[]},{"s":"MEXC:STRAXUSDT.P","d":[]},{"s":"UNISWAP3ETH:SOSWETH","d":[]},{"s":"HITBTC:CAKEUSDC","d":[]},{"s":"UNISWAP:SAITOKIWETH_A7AF82","d":[]},{"s":"ZOOMEX:LOOKSUSDT.P","d":[]},{"s":"HITBTC:XMCBTC","d":[]},{"s":"COINEX:ATOMUSDC","d":[]},{"s":"UNISWAP3OPTIMISM:USDVUSDT_1D789E.USD","d":[]},{"s":"UNISWAP:BANKWETH_EBE359","d":[]},{"s":"MEXC:DARUSDT.P","d":[]},{"s":"UNISWAP:NOISEGPTWETH_3A001A","d":[]},{"s":"OKX:AXSUSDT.P","d":[]},{"s":"UNISWAP3ETH:TAIDAI","d":[]},{"s":"UNISWAP:JAYUSDC_EB7B52","d":[]},{"s":"POLONIEX:XTOKENUSDT","d":[]},{"s":"DERIBIT:BTCUSDT.P","d":[]},{"s":"UNISWAP:EDUUSDT_1EEDEC","d":[]},{"s":"UNISWAP:AITEKWETH_197166.USD","d":[]},{"s":"UNISWAP3ETH:WETHANGLE","d":[]},{"s":"UNISWAP:PEPEGAINSWETH_198C13","d":[]},{"s":"BITGET:TLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTBSGG","d":[]},{"s":"HITBTC:DGTXBTC","d":[]},{"s":"MEXC:AITUSDT","d":[]},{"s":"UNISWAP3ETH:BOJACKWETH","d":[]},{"s":"UNISWAP3ETH:WETHWOO","d":[]},{"s":"BINANCE:NULSBTC","d":[]},{"s":"QUICKSWAP:ISPWETH_B60D9E.USD","d":[]},{"s":"MEXC:HAHAUSDT","d":[]},{"s":"HITBTC:BATUSD","d":[]},{"s":"UNISWAP:CHOOWETH_5AA920.USD","d":[]},{"s":"UNISWAP3ETH:USDCUSDY","d":[]},{"s":"UNISWAP3ETH:ICHIONEICHI_9E2000.USD","d":[]},{"s":"TRADERJOE:FLOKIWIFWAVAX_2B0085.USD","d":[]},{"s":"UNISWAP3ETH:WOOOWETH","d":[]},{"s":"UNISWAP3ETH:USDCUERII","d":[]},{"s":"UNISWAP3ETH:JASMYWETH_4D1EFF.USD","d":[]},{"s":"TRADERJOE:BAYUSDC_02F9AC.USD","d":[]},{"s":"POLONIEX:CTSIUSDT","d":[]},{"s":"BITSTAMP:CVXUSD","d":[]},{"s":"UNISWAP:AISIGWETH_52A1B8.USD","d":[]},{"s":"UNISWAP3ETH:YFIWETH_049160.USD","d":[]},{"s":"UNISWAP:TCARDWETH_E9594A.USD","d":[]},{"s":"UNISWAP:PRAIWETH_F0F93A","d":[]},{"s":"MEXC:CELRUSDT","d":[]},{"s":"UNISWAP3ETH:SHEBWETH_59B6BC.USD","d":[]},{"s":"UNISWAP:CAWWETH_48D20B.USD","d":[]},{"s":"QUICKSWAP:KAMPAYWMATIC_85374E.USD","d":[]},{"s":"UNISWAP:LIZAWETH_A81F04","d":[]},{"s":"BYBIT:PHBUSDT.P","d":[]},{"s":"POLONIEX:XCADUSDT","d":[]},{"s":"UNISWAP3ETH:NTXWETH","d":[]},{"s":"GATEIO:PLACEUSDT","d":[]},{"s":"UNISWAP3POLYGON:CGGWMATIC_876D54.USD","d":[]},{"s":"MEXC:YFIIETH","d":[]},{"s":"BITFINEX:LRCUSD","d":[]},{"s":"GATEIO:XTZUSDT","d":[]},{"s":"OKX:ZETAUSDT.P","d":[]},{"s":"WHITEBIT:AXLUSDT","d":[]},{"s":"MEXC:BBAIUSDT","d":[]},{"s":"BITFINEX:WMINIMAUSD","d":[]},{"s":"UNISWAP:PKFWETH_FE903A","d":[]},{"s":"KRAKEN:LPTBTC","d":[]},{"s":"PIONEX:ONDOUSDT.P","d":[]},{"s":"BITHUMB:WOOKRW","d":[]},{"s":"HITBTC:AUCBTC","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDC_B0F4DF.USD","d":[]},{"s":"UNISWAP:TESTWETH_176BB3","d":[]},{"s":"WHITEBIT:UNFIUSDT","d":[]},{"s":"KRAKEN:SCETH","d":[]},{"s":"UNISWAP3ETH:JELLYWETH","d":[]},{"s":"BITFINEX:WIFBTC","d":[]},{"s":"UNISWAP3ETH:MOONEYWETH","d":[]},{"s":"HITBTC:UUUBTC","d":[]},{"s":"MEXC:OXTUSDT.P","d":[]},{"s":"BINANCE:ALPACABTC","d":[]},{"s":"PHEMEX:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP3ETH:LYXEWETH","d":[]},{"s":"UNISWAP3ETH:USDCDIA","d":[]},{"s":"POLONIEX:DAIUSDT","d":[]},{"s":"UPBIT:SXPKRW","d":[]},{"s":"UNISWAP3POLYGON:MIMATICWMATIC_F7024F.USD","d":[]},{"s":"UNISWAP:DEJITARUSHIRUDOWETH_BA2221.USD","d":[]},{"s":"MEXC:ASTRUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WSTETHUSDC_AB0076.USD","d":[]},{"s":"BYBIT:BCHUSDT","d":[]},{"s":"UNISWAP3ETH:PPGFLC_1945BB.USD","d":[]},{"s":"HITBTC:CLOBTC","d":[]},{"s":"POLONIEX:ONEINCHUSDT","d":[]},{"s":"MEXC:FPUSDT","d":[]},{"s":"UNISWAP:WORMWETH_EF32AE","d":[]},{"s":"SPOOKYSWAP:TOMBWFTM_2A6515.USD","d":[]},{"s":"UNISWAP:YUANWETH_8BC907","d":[]},{"s":"COINEX:EVERUSDT","d":[]},{"s":"COINEX:ALPINEUSDT","d":[]},{"s":"UNISWAP:PEMPPOHM_C49671.USD","d":[]},{"s":"KRAKEN:PSTAKEUSD","d":[]},{"s":"BINANCE:YGGBTC","d":[]},{"s":"GATEIO:XNFTUSDT","d":[]},{"s":"UNISWAP:POGWETH_556EB7.USD","d":[]},{"s":"TRADERJOE:3ULLWAVAX_4B5BC8","d":[]},{"s":"MEXC:EULUSDC","d":[]},{"s":"POLONIEX:ELONUSDT","d":[]},{"s":"UNISWAP:FLOPWETH_9BB63A","d":[]},{"s":"UNISWAP3ARBITRUM:PLSARBARB_030571.USD","d":[]},{"s":"QUICKSWAP:WBTCWMATIC_F6B871.USD","d":[]},{"s":"HITBTC:BDXUSD","d":[]},{"s":"HITBTC:VTHOBTC","d":[]},{"s":"KRAKEN:FXSEUR","d":[]},{"s":"UNISWAP:CATSWETH_76C09E.USD","d":[]},{"s":"BITRUE:MELDUSDT","d":[]},{"s":"UNISWAP:NFTWETH_41FCF9","d":[]},{"s":"UNISWAP:WOOOOOWETH_1B1137.USD","d":[]},{"s":"BINANCEUS:EOSUSDT","d":[]},{"s":"UNISWAP:MADWETH_866A9C.USD","d":[]},{"s":"GATEIO:VERAUSDT","d":[]},{"s":"PHEMEX:RSRUSDT","d":[]},{"s":"MEXC:POGAIUSDT","d":[]},{"s":"HONEYSWAPPOLYGON:AAVEWETH","d":[]},{"s":"ZOOMEX:GMTUSDT.P","d":[]},{"s":"COINEX:ANKRUSDC","d":[]},{"s":"PHEMEX:MBLUSDT.P","d":[]},{"s":"BITGET:SLPUSDT","d":[]},{"s":"GATEIO:EPIKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDN404","d":[]},{"s":"MEXC:PIVNUSDT","d":[]},{"s":"COINEX:NFTUSDT","d":[]},{"s":"GATEIO:CORGIAIUSDT","d":[]},{"s":"COINEX:RVNBTC","d":[]},{"s":"BINANCE:BARTRY","d":[]},{"s":"UNISWAP:SAUDIBONKWETH_BA2B73.USD","d":[]},{"s":"UNISWAP:DYPWETH_BA7872.USD","d":[]},{"s":"BINANCE:DEGOBTC","d":[]},{"s":"GATEIO:ARBUSDT.3S","d":[]},{"s":"UNISWAP:UMBWETH_B1BBEE.USD","d":[]},{"s":"UNISWAP:BIAOWETH_8296D8.USD","d":[]},{"s":"UNISWAP3ETH:BLURWETH_6F4104.USD","d":[]},{"s":"BITRUE:RENUSDT","d":[]},{"s":"HITBTC:ALICEUSD","d":[]},{"s":"TRADERJOE:USDTEFITFI_D82FFD","d":[]},{"s":"MEXC:NOTHINGUSDT","d":[]},{"s":"BITGET:XTZUSDT","d":[]},{"s":"BINGX:GALAUSDT.P","d":[]},{"s":"COINEX:AGIXUSDT","d":[]},{"s":"WHITEBIT:FISUSDT","d":[]},{"s":"UNISWAP3ETH:QRDOUSDC","d":[]},{"s":"UNISWAP3ETH:WETHTTX","d":[]},{"s":"UNISWAP3ETH:IZEWETH_23473B.USD","d":[]},{"s":"UNISWAP3ETH:PIXELWETH_F6E28A.USD","d":[]},{"s":"BLOFIN:HFTUSDT.P","d":[]},{"s":"UNISWAP:SDGWETH_5DEE35.USD","d":[]},{"s":"BITGET:ORBSUSDT.P","d":[]},{"s":"PHEMEX:PROMUSDT.P","d":[]},{"s":"UPBIT:CROKRW","d":[]},{"s":"OKX:LQTYUSDT.P","d":[]},{"s":"UNISWAP:TWTCWETH_667B70","d":[]},{"s":"QUICKSWAP:PRPSUSDC_C2F972","d":[]},{"s":"MEXC:ETHEREUM2USDT","d":[]},{"s":"HITBTC:KRRXUSDT","d":[]},{"s":"BYBIT:ADAUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHL","d":[]},{"s":"UNISWAP:SORAIWETH_1AD209.USD","d":[]},{"s":"PANGOLIN:EXPUSDTE_5A6151","d":[]},{"s":"UNISWAP:TRUWETH_EC6A6B.USD","d":[]},{"s":"UNISWAP3ETH:SFIWETH","d":[]},{"s":"MEXC:EGCUSDT","d":[]},{"s":"MEXC:HGPTUSDT","d":[]},{"s":"HITBTC:XRPUSD","d":[]},{"s":"UNISWAP3ETH:SOCUSDT","d":[]},{"s":"BITSTAMP:DGLDEUR","d":[]},{"s":"PANGOLIN:PNGUSDC_1784B2.USD","d":[]},{"s":"UNISWAP3ETH:HYPEWETH","d":[]},{"s":"HITBTC:FILUSDT","d":[]},{"s":"BYBIT:SYNRUSDT","d":[]},{"s":"COINEX:OCTUSDT","d":[]},{"s":"UNISWAP:CLOSEDAIWETH_7BC703.USD","d":[]},{"s":"UNISWAP3ETH:ASTOUSDC","d":[]},{"s":"UNISWAP3POLYGON:LINKWBTC_0C61D1.USD","d":[]},{"s":"UNISWAP:ASTXWETH_68E4AF","d":[]},{"s":"COINEX:XEDUSDT","d":[]},{"s":"POLONIEX:TISMUSDT","d":[]},{"s":"GATEIO:CRFUSDT","d":[]},{"s":"GATEIO:ZATUSDT","d":[]},{"s":"COINEX:MARSUSDT","d":[]},{"s":"UNISWAP:MOFIWETH_2CEA67","d":[]},{"s":"HITBTC:STAKUSDT","d":[]},{"s":"UNISWAP:TENWETH_FD3F91","d":[]},{"s":"UNISWAP3ETH:AGEURWETH_9496D1.USD","d":[]},{"s":"QUICKSWAP:POLUSDT_1BAA09","d":[]},{"s":"UNISWAP3ETH:WETHSPC","d":[]},{"s":"UNISWAP3ETH:MKRDAI_DFDD6D.USD","d":[]},{"s":"UNISWAP:DNWETH_0DC80E","d":[]},{"s":"DELTA:DETOUSDT","d":[]},{"s":"UNISWAP3ETH:TEXANUSDC_B78A10.USD","d":[]},{"s":"HITBTC:FRONTBTC","d":[]},{"s":"BITGET:EVAUSDT","d":[]},{"s":"UNISWAP:BOUNTYWETH_C66DF5.USD","d":[]},{"s":"GATEIO:RMRKUSDT","d":[]},{"s":"PHEMEX:AUDIOUSDT","d":[]},{"s":"QUICKSWAP:MAXXWMATIC_4787B7.USD","d":[]},{"s":"UNISWAP3ETH:USDTLQTY","d":[]},{"s":"UNISWAP:METAVWETH_6CAE12.USD","d":[]},{"s":"UNISWAP3ETH:WCOMAIUSDC","d":[]},{"s":"GATEIO:DNXCUSDT","d":[]},{"s":"HONEYSWAPPOLYGON:USDTWETH","d":[]},{"s":"GATEIO:CELUSDT","d":[]},{"s":"BINANCE:SUPERFDUSD","d":[]},{"s":"MEXC:DERIUSDT","d":[]},{"s":"UNISWAP3ETH:B3WETH","d":[]},{"s":"UNISWAP3POLYGON:RNDRUSDC_450918.USD","d":[]},{"s":"GATEIO:GLMRUSDT.3L","d":[]},{"s":"UNISWAP3ETH:PENGUWETH","d":[]},{"s":"BINANCE:BNBDAI","d":[]},{"s":"BINANCE:BIFIUSDT","d":[]},{"s":"COINEX:MOGUSDT","d":[]},{"s":"BITFINEX:PLUUSD","d":[]},{"s":"TRADERJOE:TUSWAVAX_565D20","d":[]},{"s":"COINBASE:MEDIAUSD","d":[]},{"s":"UNISWAP:CHATXWETH_468CE1.USD","d":[]},{"s":"UNISWAP3ETH:BAPEWETH","d":[]},{"s":"UNISWAP3ETH:D2TUSDT_A19F4E.USD","d":[]},{"s":"UNISWAP3ETH:SYBZEROWETH","d":[]},{"s":"BITHUMB:XVSKRW","d":[]},{"s":"TRADERJOE:MMACWAVAX_31396C","d":[]},{"s":"POLONIEX:ALTUSDT","d":[]},{"s":"GEMINI:MKRUSD","d":[]},{"s":"KRAKEN:ADAAUD","d":[]},{"s":"UNISWAP3ETH:GLMUSDC","d":[]},{"s":"MEXC:SOLBTC","d":[]},{"s":"HITBTC:NFTUSDT","d":[]},{"s":"UNISWAP3ETH:USDTVMINT","d":[]},{"s":"QUICKSWAP:MOONEDUSDC_2D252D","d":[]},{"s":"QUICKSWAP:FODLWMATIC_2FC4DF.USD","d":[]},{"s":"ZOOMEX:TAOUSDT.P","d":[]},{"s":"UNISWAP:DGNRTWETH_290E8D","d":[]},{"s":"SPOOKYSWAP:TAROTUSDC_35A60B","d":[]},{"s":"SPOOKYSWAP:BOUJEUSDC_ACF672","d":[]},{"s":"QUICKSWAP:BOOMUSDT_AC9EC8","d":[]},{"s":"UNISWAP:DADAWETH_91CA5D","d":[]},{"s":"GATEIO:OLYUSDT","d":[]},{"s":"UPBIT:SUIKRW","d":[]},{"s":"UNISWAP:DYMWETH_657761","d":[]},{"s":"UNISWAP:HELGAWETH_548409.USD","d":[]},{"s":"BLOFIN:ARKMUSDT.P","d":[]},{"s":"OKX:LUNAUSDT.P","d":[]},{"s":"PHEMEX:EGLDUSDT.P","d":[]},{"s":"BITGET:CFXUSDT.P","d":[]},{"s":"BINGX:XRPUSDT.P","d":[]},{"s":"BINANCE:DOTFDUSD","d":[]},{"s":"UNISWAP:PEPEAIWETH_0C467F.USD","d":[]},{"s":"GATEIO:BASUSDT","d":[]},{"s":"UNISWAP3ETH:PEPEUSDC_CEE31C.USD","d":[]},{"s":"COINEX:THGUSDT","d":[]},{"s":"BITGET:FORTUSDT","d":[]},{"s":"MEXC:STETHUSDC","d":[]},{"s":"UNISWAP:PWGWETH_A757B7.USD","d":[]},{"s":"UNISWAP3ETH:OLASUSDT","d":[]},{"s":"COINEX:SOLBTC","d":[]},{"s":"UNISWAP:BRLUSDC_F0E66E","d":[]},{"s":"MEXC:TKAIUSDT","d":[]},{"s":"BITGET:ENJUSDT","d":[]},{"s":"OKX:GASUSDT.P","d":[]},{"s":"GATEIO:MTNUSDT","d":[]},{"s":"UNISWAP3ETH:BBCGWETH","d":[]},{"s":"POLONIEX:ERNUSDT","d":[]},{"s":"HITBTC:BNXBTC","d":[]},{"s":"TRADERJOE:USTWAVAX_ECD6D3","d":[]},{"s":"UNISWAP:VISIONWETH_A323FC","d":[]},{"s":"BITSTAMP:AVAXEUR","d":[]},{"s":"GATEIO:UNIUSDT.5L","d":[]},{"s":"BITGET:QTUMUSDT.P","d":[]},{"s":"UNISWAP:TAOXWETH_B657A7","d":[]},{"s":"BITRUE:THETASOL","d":[]},{"s":"BITRUE:XRPUSDC","d":[]},{"s":"UNISWAP3ETH:HYVEUSDT","d":[]},{"s":"HITBTC:VIBUSD","d":[]},{"s":"UNISWAP3ETH:USDTWCOMAI","d":[]},{"s":"BITRUE:XECUSDT","d":[]},{"s":"MEXC:XMS2023USDT","d":[]},{"s":"UNISWAP3ETH:WETHBS9000","d":[]},{"s":"UNISWAP:ALDUSDC_AAA2BB","d":[]},{"s":"TRADERJOE:TNGLWAVAX_A02F0B","d":[]},{"s":"UNISWAP:ETFETHWETH_0F391E.USD","d":[]},{"s":"HITBTC:C98USDC","d":[]},{"s":"UNISWAP3ETH:USDTNBT","d":[]},{"s":"TIMEX:QTCUSDT","d":[]},{"s":"UNISWAP:RIDEWETH_49492D.USD","d":[]},{"s":"BITFINEX:AMPUST","d":[]},{"s":"UNISWAP3POLYGON:AVAXWMATIC_C39D4B.USD","d":[]},{"s":"UNISWAP:GENWETH_A95E77","d":[]},{"s":"GATEIO:PBTC35AUSDT","d":[]},{"s":"UNISWAP:EARNWETH_32558F.USD","d":[]},{"s":"BITGET:PENDLEUSDT.P","d":[]},{"s":"GATEIO:HERAUSDT","d":[]},{"s":"COINEX:RVNUSDC","d":[]},{"s":"UNISWAP:ETHEREUMWETH_BC63C8","d":[]},{"s":"BITGET:ARPAUSDT","d":[]},{"s":"COINEX:ETCUSDT","d":[]},{"s":"UNISWAP:ITGRWETH_0120B5.USD","d":[]},{"s":"UNISWAP3ETH:FRAXUSDC_C63B07.USD","d":[]},{"s":"UNISWAP:CYBERWETH_BDE17E","d":[]},{"s":"UNISWAP3ETH:USDCTEXAN","d":[]},{"s":"UNISWAP3ETH:HYVEWETH","d":[]},{"s":"MEXC:XONEUSDT","d":[]},{"s":"BINANCE:OGNTRY","d":[]},{"s":"UNISWAP:CAWETH_20623D","d":[]},{"s":"GATEIO:METAXUSDT","d":[]},{"s":"COINEX:MAPUSDT","d":[]},{"s":"UNISWAP3POLYGON:KTCUSDT_CF42CE.USD","d":[]},{"s":"UNISWAP:DPRUSDC_85673C","d":[]},{"s":"GATEIO:VMTUSDT","d":[]},{"s":"BLOFIN:BICOUSDT.P","d":[]},{"s":"UNISWAP:LOCKWETH_CA9D4C","d":[]},{"s":"UNISWAP3ETH:FUTUREWETH","d":[]},{"s":"UNISWAP:ANDYWETH_16E3C9","d":[]},{"s":"UNISWAP3ETH:VLLCWETH_A12F38.USD","d":[]},{"s":"COINBASE:EURCUSD","d":[]},{"s":"BITFINEX:ETCUSD","d":[]},{"s":"UNISWAP3ETH:POOHWETH_C4B186.USD","d":[]},{"s":"UNISWAP:LUNARWETH_3B85BD","d":[]},{"s":"MEXC:NODLUSDT","d":[]},{"s":"UNISWAP3ETH:JESUSWETH_13DAB3.USD","d":[]},{"s":"UNISWAP:BULLWETH_5E27DE.USD","d":[]},{"s":"UNISWAP3ETH:RLBUSDC","d":[]},{"s":"COINEX:X2Y2USDT","d":[]},{"s":"OKX:ETCUSD.P","d":[]},{"s":"UNISWAP:KNODEWETH_D10E18.USD","d":[]},{"s":"UNISWAP3ETH:WETHKEY","d":[]},{"s":"BYBIT:TUSDUSDT","d":[]},{"s":"UNISWAP3ETH:XINWETH","d":[]},{"s":"XEXCHANGE:SFITUSDC","d":[]},{"s":"COINEX:GTCUSDT","d":[]},{"s":"UNISWAP3ETH:RTHWETH","d":[]},{"s":"UNISWAP3ETH:VARKWETH_2B0C5F.USD","d":[]},{"s":"KRAKEN:QTUMETH","d":[]},{"s":"COINBASE:DOTEUR","d":[]},{"s":"UNISWAP:TOKEWETH_5FA464","d":[]},{"s":"HITBTC:STXBTC","d":[]},{"s":"COINEX:PHAUSDT","d":[]},{"s":"MEXC:IFMUSDT","d":[]},{"s":"UNISWAP3POLYGON:UNIWETH_357FAF.USD","d":[]},{"s":"BINANCE:AUDIOBTC","d":[]},{"s":"UNISWAP:RAKEWETH_4C6F01.USD","d":[]},{"s":"BINANCE:ALTBTC","d":[]},{"s":"GATEIO:XDBUSDT","d":[]},{"s":"COINBASE:GALUSD","d":[]},{"s":"POLONIEX:SHARESUSDT","d":[]},{"s":"SPOOKYSWAP:O3USDC_991155","d":[]},{"s":"UNISWAP:WXMRWETH_14C10B.USD","d":[]},{"s":"UNISWAP:REALSMURFCATWETH_977C5F","d":[]},{"s":"UNISWAP:RABBITWETH_C4E978","d":[]},{"s":"UNISWAP:HEDEXWETH_FCBA83.USD","d":[]},{"s":"XEXCHANGE:ASHWEGLD","d":[]},{"s":"BINANCE:ALPHAUSDT","d":[]},{"s":"UNISWAP3ETH:STNDWETH","d":[]},{"s":"BITKUB:ZETATHB","d":[]},{"s":"UNISWAP3ARBITRUM:USDCUSDT_13398E.USD","d":[]},{"s":"UNISWAP:NEURALINKWETH_51B383.USD","d":[]},{"s":"UNISWAP:SWIFTIESWETH_28B66B.USD","d":[]},{"s":"BYBIT:RLCUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:SMOLWETH_C184D9.USD","d":[]},{"s":"KRAKEN:EURJPY","d":[]},{"s":"KRAKEN:LRCEUR","d":[]},{"s":"UNISWAP:EXRDUSDC_684B00","d":[]},{"s":"MEXC:MINDUSDT","d":[]},{"s":"UNISWAP:RCEWETH_B06EBF.USD","d":[]},{"s":"HITBTC:UNIETH","d":[]},{"s":"UNISWAP:NOIAWETH_B8A1A8.USD","d":[]},{"s":"BTSE:SUSHIUSD.P","d":[]},{"s":"WHITEBIT:ZETAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHWSTOR","d":[]},{"s":"HITBTC:CTKBTC","d":[]},{"s":"UNISWAP3ARBITRUM:RAMWETH_B39722.USD","d":[]},{"s":"UNISWAP3ETH:RSWETHWETH","d":[]},{"s":"UNISWAP:HIVEUSDC_C7A433","d":[]},{"s":"QUICKSWAP:FLTKUSDC_7D33DE","d":[]},{"s":"HITBTC:PERLUSDT","d":[]},{"s":"UNISWAP:NOVAWETH_87CCEB.USD","d":[]},{"s":"COINBASE:CROUSD","d":[]},{"s":"UNISWAP3ETH:CELLUSDT","d":[]},{"s":"BINANCEUS:MKRUSDT","d":[]},{"s":"WAGYUSWAP:USDVWVLX_5080E9","d":[]},{"s":"UNISWAP3ETH:WETHMVI","d":[]},{"s":"BTSE:LINKUSD","d":[]},{"s":"UNISWAP3ETH:RAELWETH","d":[]},{"s":"GATEIO:AVTUSDT","d":[]},{"s":"UNISWAP:ENCRWETH_B1A7CB.USD","d":[]},{"s":"BYBIT:AXLUSDT.P","d":[]},{"s":"GATEIO:SMTYUSDT","d":[]},{"s":"GATEIO:ENNOUSDT","d":[]},{"s":"BYBIT:MYROUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:AETUSDC_CCAFB8.USD","d":[]},{"s":"HITBTC:STEEMUSD","d":[]},{"s":"BINANCE:FETFDUSD","d":[]},{"s":"UNISWAP3ETH:SWISEWETH_15D123.USD","d":[]},{"s":"UNISWAP3ETH:DIPWETH_EFC19B.USD","d":[]},{"s":"MEXC:BINUSDT","d":[]},{"s":"UNISWAP:TOADUSDC_4D7B07","d":[]},{"s":"GATEIO:MARTUSDT","d":[]},{"s":"POLONIEX:MYRAUSDT","d":[]},{"s":"UNISWAP:0XMWETH_0B264F","d":[]},{"s":"UNISWAP:BELWETH_9E98DE","d":[]},{"s":"UNISWAP3ETH:BEEFWETH","d":[]},{"s":"UNISWAP:RARIWETH_1EEB05","d":[]},{"s":"TRADERJOE:BETAWAVAX_2CFF4E.USD","d":[]},{"s":"GATEIO:SOLUSDT","d":[]},{"s":"UNISWAP3ETH:CLBUSDC","d":[]},{"s":"UNISWAP:SHIBUSDC_881D5C","d":[]},{"s":"GATEIO:SLNV2USDT","d":[]},{"s":"MEXC:DISUSDT","d":[]},{"s":"BINANCE:FTMFDUSD","d":[]},{"s":"BITGET:BIP1USDT","d":[]},{"s":"UNISWAP:GOATWETH_B1D6E2.USD","d":[]},{"s":"UNISWAP:SOBWETH_8F4CA0","d":[]},{"s":"MEXC:CATGIRLUSDT","d":[]},{"s":"POLONIEX:ETFUSDT","d":[]},{"s":"BYBIT:SPARTAUSDT","d":[]},{"s":"UNISWAP:MORIWETH_AB1BFB.USD","d":[]},{"s":"UNISWAP3OPTIMISM:SUSDDAI_9438A9.USD","d":[]},{"s":"UNISWAP3ETH:ZUSDUSDC_692D10.USD","d":[]},{"s":"UNISWAP:URQAWETH_2DEEED.USD","d":[]},{"s":"UNISWAP3POLYGON:DIMOUSDC_D48CB7.USD","d":[]},{"s":"MEXC:ALPHAUSDT","d":[]},{"s":"HITBTC:BCHUSDC","d":[]},{"s":"UNISWAP3ETH:WETHSWEENEY","d":[]},{"s":"MEXC:PUMPUSDT","d":[]},{"s":"MEXC:ALTUSDT.P","d":[]},{"s":"UNISWAP3ETH:VALWETH","d":[]},{"s":"BITFINEX:GRTBTC","d":[]},{"s":"UNISWAP:MAGICWETH_8C56CA","d":[]},{"s":"MEXC:WOJAKUSDT","d":[]},{"s":"UNISWAP3ETH:VEMPWETH","d":[]},{"s":"UNISWAP:SPILLWAYSUSDC_E59FD7","d":[]},{"s":"UNISWAP3ETH:WETHMORK","d":[]},{"s":"HITBTC:API3USD","d":[]},{"s":"UNISWAP3ETH:COTIWETH_83695F.USD","d":[]},{"s":"PIONEX:AERGOUSDT.P","d":[]},{"s":"UNISWAP3ETH:NIIWETH","d":[]},{"s":"UNISWAP:YOKENWETH_76DB56","d":[]},{"s":"MEXC:SEXYUSDT","d":[]},{"s":"BITFINEX:TRYUST","d":[]},{"s":"GATEIO:DOGE2USDT","d":[]},{"s":"GATEIO:MANUSDT","d":[]},{"s":"PIONEX:BANDUSDT.P","d":[]},{"s":"UNISWAP:REVVMYTH_14DF54.USD","d":[]},{"s":"UNISWAP3ARBITRUM:NCWWWETH_A85CD3.USD","d":[]},{"s":"MEXC:AWOUSDT","d":[]},{"s":"UNISWAP3ETH:NAKABVM_AE8614.USD","d":[]},{"s":"BINANCEUS:FORTUSDT","d":[]},{"s":"BINANCE:ACHBTC","d":[]},{"s":"GATEIO:SSWPUSDT","d":[]},{"s":"COINEX:MINUSDT","d":[]},{"s":"UNISWAP:FR33WETH_F71E8A.USD","d":[]},{"s":"COINEX:STPTUSDT","d":[]},{"s":"UNISWAP:MAIWETH_A333F2","d":[]},{"s":"COINEX:FLXUSDT","d":[]},{"s":"HITBTC:EGLDUSDT","d":[]},{"s":"BINGX:MDTUSDT.P","d":[]},{"s":"UNISWAP:BITROCKWETH_2854FB.USD","d":[]},{"s":"SPOOKYSWAP:BLASTWFTM_A7E9C8.USD","d":[]},{"s":"MEXC:JONESUSDT","d":[]},{"s":"BINANCE:ILVBTC","d":[]},{"s":"MEXC:ITGRUSDT","d":[]},{"s":"BITKUB:BLURTHB","d":[]},{"s":"UNISWAP:FEARUSDT_E53533","d":[]},{"s":"BITFINEX:EURUST.P","d":[]},{"s":"MEXC:AXSUSDT","d":[]},{"s":"GATEIO:DEFILANDUSDT","d":[]},{"s":"TRADERJOE:3QFDWETHE_B1175C.USD","d":[]},{"s":"GATEIO:CPOOLUSDT","d":[]},{"s":"PANGOLIN:TIMEWAVAX_2F1516.USD","d":[]},{"s":"UNISWAP3POLYGON:SNKUSDC_C26615.USD","d":[]},{"s":"KRAKEN:ORDIUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHBNKLTO","d":[]},{"s":"UNISWAP:SHIDOWETH_F6D109.USD","d":[]},{"s":"MEXC:XIUSDT","d":[]},{"s":"BYBIT:ACSUSDT","d":[]},{"s":"MEXC:LGRUSDT","d":[]},{"s":"BITGET:GPTUSDT","d":[]},{"s":"COINBASE:DASHUSD","d":[]},{"s":"COINEX:ENSUSDT","d":[]},{"s":"QUICKSWAP:CHAINWMATIC_A54E44","d":[]},{"s":"MEXC:OMGUSDT.P","d":[]},{"s":"UNISWAP3ETH:SPOTUSDC","d":[]},{"s":"BINANCE:SKLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBIPS","d":[]},{"s":"UNISWAP3ETH:MICKEYWETH_892B28.USD","d":[]},{"s":"TRADERJOE:JEWELWAVAX_E90E8B.USD","d":[]},{"s":"MEXC:CIRIUSDT","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDC_221771.USD","d":[]},{"s":"QUICKSWAP:QIWMATIC_9A8B26","d":[]},{"s":"UNISWAP3POLYGON:RNDRUSDT_6A28EE.USD","d":[]},{"s":"MEXC:SPACEPIUSDT","d":[]},{"s":"QUICKSWAP:CONEWETH_C3266F","d":[]},{"s":"UNISWAP3ETH:VMPXWETH","d":[]},{"s":"UNISWAP:VALWETH_EADAB5","d":[]},{"s":"UNISWAP:0KNWETH_2947DC","d":[]},{"s":"HITBTC:ZECUSD","d":[]},{"s":"SPOOKYSWAP:WOOLWFTM_143F2D","d":[]},{"s":"ZOOMEX:SUSHIUSDT.P","d":[]},{"s":"BINANCE:NMRBTC","d":[]},{"s":"GATEIO:LBLOCKUSDT","d":[]},{"s":"BLOFIN:MATICUSDT.P","d":[]},{"s":"MEXC:GROKBSCUSDT","d":[]},{"s":"KRAKEN:APEUSD","d":[]},{"s":"COINEX:SYSBTC","d":[]},{"s":"UNISWAP:ETFWETH_3ADF72.USD","d":[]},{"s":"WOONETWORK:PERPUSDT","d":[]},{"s":"BINGX:XAIUSDT.PS","d":[]},{"s":"GATEIO:IMXUSDT.3L","d":[]},{"s":"UNISWAP:6DCUSDT_683545","d":[]},{"s":"SPOOKYSWAP:FOLIVEUSDC_2438D4","d":[]},{"s":"KRAKEN:PAXGETH","d":[]},{"s":"QUICKSWAP:ASTRAFERWMATIC_B300F1.USD","d":[]},{"s":"TIMEX:XRPAUDT","d":[]},{"s":"UNISWAP:JESUS20WETH_404677","d":[]},{"s":"HITBTC:DUSKUSDT","d":[]},{"s":"MEXC:NABOXUSDT","d":[]},{"s":"COINBASE:LRCUSD","d":[]},{"s":"HITBTC:SHIBUSD","d":[]},{"s":"HITBTC:PTOYBTC","d":[]},{"s":"UNISWAP3ETH:XMTUSDT_B143BB.USD","d":[]},{"s":"POLONIEX:AFCUSDD","d":[]},{"s":"UNISWAP:FAIRHEXHEX_AF629D.USD","d":[]},{"s":"UNISWAP3ETH:WETHNXRA","d":[]},{"s":"UNISWAP:BCWETH_2ED63E","d":[]},{"s":"UNISWAP3ETH:WETHWHO","d":[]},{"s":"BYBIT:PSGUSDT","d":[]},{"s":"UNISWAP:NEXUSWETH_8FE9EF","d":[]},{"s":"UNISWAP:BEANWETH_711867.USD","d":[]},{"s":"BINANCE:MANATRY","d":[]},{"s":"UNISWAP:BETZWETH_1F61CD.USD","d":[]},{"s":"UNISWAP3ETH:USDCHILO","d":[]},{"s":"MEXC:WNKUSDT","d":[]},{"s":"COINEX:PLAYUSDT","d":[]},{"s":"GATEIO:HTMUSDT","d":[]},{"s":"POLONIEX:MDTUSDT","d":[]},{"s":"UNISWAP3ETH:USDTEXD","d":[]},{"s":"BITGET:UNIUSDT","d":[]},{"s":"PHEMEX:OCEANUSDT.P","d":[]},{"s":"MEXC:XERTUSDT","d":[]},{"s":"UNISWAP:ANDYWETH_16E3C9.USD","d":[]},{"s":"UNISWAP3POLYGON:FXADDYUSDC_C9621A.USD","d":[]},{"s":"BINANCE:CITYUSDT","d":[]},{"s":"UNISWAP3POLYGON:UPOWMATIC_61FE82.USD","d":[]},{"s":"UNISWAP:LABSWETH_2D9FD5.USD","d":[]},{"s":"MEXC:WBTUSDT","d":[]},{"s":"HITBTC:QTUMETH","d":[]},{"s":"BINANCEUS:THETAUSDT","d":[]},{"s":"BINANCE:CAKEBTC","d":[]},{"s":"UNISWAP:RAPWETH_0837CA.USD","d":[]},{"s":"MEXC:APTUSDT","d":[]},{"s":"TRADERJOE:RISEWAVAX_5472E9","d":[]},{"s":"XEXCHANGE:INFRAUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:ICHIUSDC_66FD93.USD","d":[]},{"s":"COINBASE:BCHEUR","d":[]},{"s":"UNISWAP3ARBITRUM:WEETHWETH_143534.USD","d":[]},{"s":"BITHUMB:RADKRW","d":[]},{"s":"BITMEX:LTCUSD.P","d":[]},{"s":"COINEX:CVCUSDT","d":[]},{"s":"PANGOLIN:AVXTWAVAX_792055.USD","d":[]},{"s":"UNISWAP3ETH:USDTPAPER","d":[]},{"s":"BITFINEX:JSTUSD","d":[]},{"s":"UNISWAP:ARCADEWETH_B65205","d":[]},{"s":"MEXC:VTHOETH","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCWSTETH_03A9DC.USD","d":[]},{"s":"UNISWAP3ETH:DOGWIFHATWETH","d":[]},{"s":"ZOOMEX:CROUSDT.P","d":[]},{"s":"UNISWAP:MEFWETH_675FF6","d":[]},{"s":"UNISWAP:TREEWETH_3E800F.USD","d":[]},{"s":"UNISWAP:WHATWETH_0AC9BF.USD","d":[]},{"s":"UNISWAP:ZKHIVEWETH_6FE467","d":[]},{"s":"UNISWAP3ARBITRUM:CAPWETH_3BE3EB.USD","d":[]},{"s":"TRADERJOE:SUBOWAVAX_F382D2","d":[]},{"s":"UNISWAP:INJWETH_3C70F4","d":[]},{"s":"BITHUMB:FNSAKRW","d":[]},{"s":"MEXC:BATUSDT.P","d":[]},{"s":"UNISWAP:BORINGWETH_AACBF2.USD","d":[]},{"s":"HITBTC:TLMUSDT","d":[]},{"s":"UNISWAP:RPEPEWETH_FF496E.USD","d":[]},{"s":"BITHUMB:WAVESKRW","d":[]},{"s":"UNISWAP3ETH:WETHSKL","d":[]},{"s":"BYBIT:PRIMALUSDT","d":[]},{"s":"UNISWAP:WAITWETH_6028EB.USD","d":[]},{"s":"GATEIO:CVCUSDT","d":[]},{"s":"UNISWAP:AZEEWETH_A927D0","d":[]},{"s":"COINEX:EOSUSDC","d":[]},{"s":"BINANCE:RNDRTRY","d":[]},{"s":"MEXC:REFUSDT","d":[]},{"s":"BYBIT:DOGEUSDT.2S","d":[]},{"s":"UNISWAP3ETH:WETHCERES","d":[]},{"s":"BYBIT:ETHBTC","d":[]},{"s":"MEXC:MOONUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:KWENTAWETH_E9E389.USD","d":[]},{"s":"BITFINEX:NEOUSD","d":[]},{"s":"TRADERJOE:BPTWAVAX_0B44F6","d":[]},{"s":"KRAKEN:OXYEUR","d":[]},{"s":"MEXC:RADUSDT","d":[]},{"s":"GATEIO:HERUSDT","d":[]},{"s":"UNISWAP:ODGNWETH_3BB6DC","d":[]},{"s":"ZOOMEX:BICOUSDT.P","d":[]},{"s":"UNISWAP:OBTCWETH_AF6050.USD","d":[]},{"s":"PHEMEX:OMGUSDT.P","d":[]},{"s":"OKX:NEOUSDT.P","d":[]},{"s":"BINANCE:AVABTC","d":[]},{"s":"UNISWAP:FXSFRAX_E1573B","d":[]},{"s":"UNISWAP:NEXWETH_D767DA.USD","d":[]},{"s":"HITBTC:ICPUSDT","d":[]},{"s":"MEXC:WATERUSDT","d":[]},{"s":"BITHUMB:SUIKRW","d":[]},{"s":"MEXC:XCHUSDT","d":[]},{"s":"UNISWAP:MVLWETH_3C8AD3","d":[]},{"s":"COINEX:BEAMUSDT","d":[]},{"s":"UNISWAP3ETH:VARKWETH","d":[]},{"s":"BYBIT:TENETUSDT","d":[]},{"s":"UNISWAP:MUSKPEPEWETH_9D6DBE","d":[]},{"s":"MEXC:RADARUSDT","d":[]},{"s":"TIMEX:TIMEBTC","d":[]},{"s":"BINANCE:JSTUSDT","d":[]},{"s":"BINANCEUS:BOSONUSDT","d":[]},{"s":"GATEIO:OROUSDT","d":[]},{"s":"GATEIO:BSUSDT","d":[]},{"s":"PIONEX:LOOMUSDT.P","d":[]},{"s":"UNISWAP:1001WETH_F8C297","d":[]},{"s":"MEXC:EQUSDT","d":[]},{"s":"TRADERJOE:LUEEGIWAVAX_15EF0E","d":[]},{"s":"ZOOMEX:C98USDT.P","d":[]},{"s":"UNISWAP:BUILDWETH_870239.USD","d":[]},{"s":"POLONIEX:KLVTRX","d":[]},{"s":"BINGX:ONDOUSDT.PS","d":[]},{"s":"BITRUE:STRMUSDT","d":[]},{"s":"UNISWAP3ETH:TIAWETH","d":[]},{"s":"UNISWAP3ARBITRUM:KROMWETH_54651C.USD","d":[]},{"s":"UNISWAP3ETH:XRGBWETH","d":[]},{"s":"BINGX:ETHWUSDT.PS","d":[]},{"s":"UNISWAP3POLYGON:IOTXWMATIC_1024E7.USD","d":[]},{"s":"UNISWAP:DOTSWETH_75061B.USD","d":[]},{"s":"BYBIT:ROUTEUSDT","d":[]},{"s":"COINEX:FSNUSDT","d":[]},{"s":"UNISWAP:MAJIKWETH_FAAD97","d":[]},{"s":"UNISWAP:SPURDOWETH_2606A6","d":[]},{"s":"HITBTC:STMXBTC","d":[]},{"s":"UNISWAP3ETH:ZZWETH","d":[]},{"s":"QUICKSWAP:TRYWMATIC_DC2D6F","d":[]},{"s":"UNISWAP:0X1WETH_5F3FA8","d":[]},{"s":"BYBIT:RACAUSDT","d":[]},{"s":"GATEIO:ANMLUSDT","d":[]},{"s":"UNISWAP3ETH:TONCOINWBTC","d":[]},{"s":"UNISWAP:BLEPEWETH_E11CE9","d":[]},{"s":"UNISWAP3ETH:BTCINUWETH","d":[]},{"s":"MEXC:TITANUSDT","d":[]},{"s":"HITBTC:AVAXBTC","d":[]},{"s":"UNISWAP:ARNXMWETH_7CA514","d":[]},{"s":"UNISWAP:BRC20WETH_2AFF7A","d":[]},{"s":"BYBIT:ONEUSDT.P","d":[]},{"s":"BITGET:EURTUSDT","d":[]},{"s":"PHEMEX:CELOUSDT.P","d":[]},{"s":"QUICKSWAP:GMEEWETH_388509","d":[]},{"s":"HITBTC:LUNAUSD","d":[]},{"s":"BINGX:AAVEUSDT.P","d":[]},{"s":"PANGOLIN:WBTCEUSDC_9D8624","d":[]},{"s":"GATEIO:NAVXUSDT","d":[]},{"s":"MEXC:SYNCUSDT","d":[]},{"s":"GATEIO:RAGEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:CRYPTOWETH_14AF18.USD","d":[]},{"s":"HITBTC:DNTBTC","d":[]},{"s":"UNISWAP:SQUIDGROWWETH_4FBF00","d":[]},{"s":"QUICKSWAP:MTAWMATIC_CD6A6D.USD","d":[]},{"s":"HITBTC:CHRBTC","d":[]},{"s":"GATEIO:BCUTUSDT","d":[]},{"s":"MEXC:STNUSDT","d":[]},{"s":"UNISWAP:DTOWETH_6473C1","d":[]},{"s":"GATEIO:VTHOUSDT","d":[]},{"s":"UNISWAP:VGPUWETH_FB9ECD.USD","d":[]},{"s":"DELTA:CHZUSDT.P","d":[]},{"s":"UPBIT:NEOKRW","d":[]},{"s":"UNISWAP3POLYGON:NAKAWMATIC_E6C36E.USD","d":[]},{"s":"TRADERJOE:AAVEEWAVAX_C3E6D9","d":[]},{"s":"POLONIEX:STEEMUSD","d":[]},{"s":"UNISWAP3ARBITRUM:PEPEWETH_1944AC.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GHAUSDC_4E0A15.USD","d":[]},{"s":"UNISWAP:IPORWETH_4ACFB4.USD","d":[]},{"s":"BINANCE:MDXUSDT","d":[]},{"s":"GATEIO:RATSUSDT","d":[]},{"s":"HITBTC:REQBTC","d":[]},{"s":"KRAKEN:USDCUSD","d":[]},{"s":"UNISWAP:MVIWETH_4D3C5D.USD","d":[]},{"s":"QUICKSWAP:TELWETH_FC2FC9","d":[]},{"s":"DYDX:ATOMUSD.P","d":[]},{"s":"GATEIO:KLAYUSDT.3S","d":[]},{"s":"QUICKSWAP:MCASHWETH_1FEF1C.USD","d":[]},{"s":"WOONETWORK:AEVOUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TWTSWETH_075CB0.USD","d":[]},{"s":"TRADERJOE:HAILWAVAX_D643AA","d":[]},{"s":"KRAKEN:DENTUSD","d":[]},{"s":"QUICKSWAP:TELWBTC_ADDC9C.USD","d":[]},{"s":"BISWAP:SFPWBNB_857F60.USD","d":[]},{"s":"PHEMEX:BALUSDT.P","d":[]},{"s":"TRADERJOE:WLRSUSDCE_82845B","d":[]},{"s":"POLONIEX:PRISMAUSDT","d":[]},{"s":"POLONIEX:RARIUSDT","d":[]},{"s":"MEXC:MRSUSDT","d":[]},{"s":"HITBTC:DODOBTC","d":[]},{"s":"POLONIEX:ETHFUSDD","d":[]},{"s":"OKX:XLMUSD.P","d":[]},{"s":"KRAKEN:KAVAETH","d":[]},{"s":"QUICKSWAP:JPYCUSDC_59377D","d":[]},{"s":"UNISWAP:ECHOESWETH_A392A2","d":[]},{"s":"UNISWAP:ZEUSWETH_BC0EB0.USD","d":[]},{"s":"MEXC:COTIUSDT.P","d":[]},{"s":"MEXC:PI2USDT","d":[]},{"s":"UNISWAP:TOSHIWETH_CAACAC","d":[]},{"s":"UNISWAP3ETH:SENWETH","d":[]},{"s":"UNISWAP:BCUBEWETH_C62BF2","d":[]},{"s":"HITBTC:DYDXUSDT","d":[]},{"s":"KRAKEN:PEPEUSD.PM","d":[]},{"s":"QUICKSWAP:VINUWMATIC_3CAE7D","d":[]},{"s":"BTSE:LTCUSD","d":[]},{"s":"UNISWAP3ETH:BLURWETH","d":[]},{"s":"UNISWAP3ETH:CGGUSDC_BFF6B8.USD","d":[]},{"s":"MEXC:GTCUSDT","d":[]},{"s":"KRAKEN:ANTUSD","d":[]},{"s":"UNISWAP3ETH:STARSWETH","d":[]},{"s":"TRADERJOE:USTWAVAX_7BF98B","d":[]},{"s":"GATEIO:USDDUSDT","d":[]},{"s":"WHITEBIT:GMTUSDT","d":[]},{"s":"GATEIO:LOAUSDT","d":[]},{"s":"HITBTC:OAXBTC","d":[]},{"s":"UNISWAP3ETH:USDCQCAD","d":[]},{"s":"COINEX:WNXMUSDT","d":[]},{"s":"XEXCHANGE:JOYUSDC","d":[]},{"s":"BINGX:BEAMUSDT.P","d":[]},{"s":"MEXC:VSYSUSDT","d":[]},{"s":"UNISWAP:GIACWETH_A2BBBE","d":[]},{"s":"UNISWAP:TXNWETH_ADE7B9","d":[]},{"s":"BINANCE:XRPUSDH2024","d":[]},{"s":"UNISWAP3ETH:GDRWETH_C1106A.USD","d":[]},{"s":"GATEIO:DLCUSDT","d":[]},{"s":"UNISWAP:BINGOWETH_C261AB.USD","d":[]},{"s":"UNISWAP3OPTIMISM:SUSDDAI_ADB354.USD","d":[]},{"s":"UNISWAP3ARBITRUM:STGWETH_A8BD64.USD","d":[]},{"s":"UNISWAP3ETH:GPWETH_8407A5.USD","d":[]},{"s":"COINBASE:ETCUSD","d":[]},{"s":"UNISWAP3ETH:DAIFXS","d":[]},{"s":"MEXC:HMTTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBLOCKS","d":[]},{"s":"UNISWAP3ETH:WETHSILV2","d":[]},{"s":"BTSE:ETHWUSD","d":[]},{"s":"UNISWAP:FTMWETH_1FFC57","d":[]},{"s":"GATEIO:ALPHUSDT","d":[]},{"s":"BINANCE:OMUSDT","d":[]},{"s":"UNISWAP:SHIBDAOWETH_775569.USD","d":[]},{"s":"UNISWAP3ETH:FORKWETH_176A8B.USD","d":[]},{"s":"BYBIT:BSVUSDT.P","d":[]},{"s":"KRAKEN:INJEUR","d":[]},{"s":"BINANCE:METISTRY","d":[]},{"s":"GATEIO:SMURFCATUSDT","d":[]},{"s":"UNISWAP3ETH:LINKTOIL","d":[]},{"s":"UNISWAP:ONIWETH_DD7EF7.USD","d":[]},{"s":"HONEYSWAPPOLYGON:MSTRMUSDC","d":[]},{"s":"MEXC:ORDIUSDT","d":[]},{"s":"PHEMEX:SNTUSDT.P","d":[]},{"s":"BITRUE:RAYUSDT","d":[]},{"s":"PHEMEX:LITUSDT.P","d":[]},{"s":"TRADERJOE:LFMIM_D7CDC2.USD","d":[]},{"s":"MEXC:EXDUSDT","d":[]},{"s":"UNISWAP:DCARDWETH_A3DA4F","d":[]},{"s":"UNISWAP:DKUMAWETH_B4EDFE.USD","d":[]},{"s":"PANGOLIN:MFIUSDTE_F4880E","d":[]},{"s":"TRADERJOE:DCAUUSDC_E0CD3F.USD","d":[]},{"s":"WHITEBIT:PEOPLEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBUCC","d":[]},{"s":"POLONIEX:ADAUSDT","d":[]},{"s":"BINGX:MYROUSDT.PS","d":[]},{"s":"QUICKSWAP:ANRXWETH_3DD6A0","d":[]},{"s":"UNISWAP3ETH:WBTCUSDC_CBFB07.USD","d":[]},{"s":"BINANCEUS:SOLUSDC","d":[]},{"s":"UNISWAP:WPCWETH_C790B0","d":[]},{"s":"PIONEX:WOOUSDT.P","d":[]},{"s":"COINEX:SNTUSDT","d":[]},{"s":"BTSE:OMGUSD","d":[]},{"s":"BITGET:TONUSDT.P","d":[]},{"s":"BYBIT:USDTEUR","d":[]},{"s":"UNISWAP:MGLSWETH_C7ECAB.USD","d":[]},{"s":"BYBIT:ADAEUR","d":[]},{"s":"PIONEX:WAVESUSDT.P","d":[]},{"s":"MEXC:HYVEUSDT","d":[]},{"s":"UNISWAP:UNLWETH_1D2694.USD","d":[]},{"s":"UPBIT:AVAXKRW","d":[]},{"s":"COINEX:BAKEUSDC","d":[]},{"s":"BINANCE:PIXELBTC","d":[]},{"s":"UNISWAP3POLYGON:FXWENWETH_215EA9.USD","d":[]},{"s":"KRAKEN:ENJJPY","d":[]},{"s":"KRAKEN:FISUSD","d":[]},{"s":"BTSE:ETHUSDM2024","d":[]},{"s":"KRAKEN:DYMUSD.PM","d":[]},{"s":"UNISWAP:RVSWETH_AE0FB0","d":[]},{"s":"UNISWAP3ETH:CHEXWETH","d":[]},{"s":"MEXC:PAYSUSDT","d":[]},{"s":"UNISWAP3ETH:FACTRWETH_CAB82C.USD","d":[]},{"s":"UNISWAP3ETH:IQTUSDT","d":[]},{"s":"MEXC:NWTUSDT","d":[]},{"s":"UNISWAP:REEFWETH_793761","d":[]},{"s":"UNISWAP3ARBITRUM:LINKUSDC_BBE36E.USD","d":[]},{"s":"PIONEX:XRPUSDT.P","d":[]},{"s":"MEXC:KDGUSDT","d":[]},{"s":"QUICKSWAP:IXTUSDT_304E57","d":[]},{"s":"UNISWAP3ETH:RAIDAI","d":[]},{"s":"GATEIO:AMCUSDT","d":[]},{"s":"BINGX:POLYXUSDT.P","d":[]},{"s":"COINEX:SNXUSDT","d":[]},{"s":"UNISWAP3ETH:MEUWETH_52C892.USD","d":[]},{"s":"UNISWAP:CHUBWETH_D50123","d":[]},{"s":"QUICKSWAP:E8WMATIC_053C90.USD","d":[]},{"s":"BINANCE:CTKBNB","d":[]},{"s":"UNISWAP:DOGWIFHATWETH_11C20A.USD","d":[]},{"s":"MEXC:HUAHUAUSDT","d":[]},{"s":"QUICKSWAP:VOXELWMATIC_01FD0D.USD","d":[]},{"s":"UNISWAP:7DD8BCWETH_190570","d":[]},{"s":"UNISWAP3ETH:USDCWBAI","d":[]},{"s":"BINANCE:SHIBTUSD","d":[]},{"s":"BINANCE:UMAUSDT","d":[]},{"s":"UNISWAP:ZETAWETH_576466","d":[]},{"s":"MEXC:LFGUSDT","d":[]},{"s":"GATEIO:APTUSDT","d":[]},{"s":"GATEIO:SENSOUSDT","d":[]},{"s":"UNISWAP3ETH:GETWETH_02469E.USD","d":[]},{"s":"HITBTC:NIMBTC","d":[]},{"s":"GATEIO:ERGUSDT","d":[]},{"s":"BITFINEX:PAXUST","d":[]},{"s":"UNISWAP3ETH:USDTELUNR","d":[]},{"s":"HITBTC:XYOUSDT","d":[]},{"s":"PHEMEX:LRCUSDT.P","d":[]},{"s":"BITFINEX:MKRUST","d":[]},{"s":"UNISWAP:X7102WETH_49C838","d":[]},{"s":"UNISWAP:EEFIOHM_79FE75","d":[]},{"s":"HITBTC:PAYUSD","d":[]},{"s":"XEXCHANGE:MEXWEGLD","d":[]},{"s":"WHITEBIT:HBARBTC","d":[]},{"s":"UNISWAP:XFITUSDC_803FC0","d":[]},{"s":"MEXC:USDCUSDT.P","d":[]},{"s":"COINEX:TIPUSDT","d":[]},{"s":"ZOOMEX:ARKMUSDT.P","d":[]},{"s":"BITKUB:IDTHB","d":[]},{"s":"UNISWAP:CATWETH_E87E0B.USD","d":[]},{"s":"UNISWAP3ARBITRUM:DAIUSDC_F04286.USD","d":[]},{"s":"BINANCEUS:GLMUSDT","d":[]},{"s":"BINANCE:PEPETRY","d":[]},{"s":"UNISWAP:BMUSKWETH_A63C9A.USD","d":[]},{"s":"PHEMEX:OCEANUSDT","d":[]},{"s":"MEXC:1000BONKUSDT.P","d":[]},{"s":"UNISWAP:BCWETH_C9C9C0","d":[]},{"s":"UNISWAP:NHIWETH_8FE15B.USD","d":[]},{"s":"QUICKSWAP:TECHWETH_204A7A","d":[]},{"s":"UNISWAP3ETH:TWBTC_854438.USD","d":[]},{"s":"PHEMEX:USDPUSDT","d":[]},{"s":"QUICKSWAP:XGEMWMATIC_BFB158","d":[]},{"s":"MEXC:AXLUSDT.P","d":[]},{"s":"MEXC:MEGALANDUSDT","d":[]},{"s":"PHEMEX:WLDUSDT.P","d":[]},{"s":"COINBASE:KNCUSD","d":[]},{"s":"UNISWAP3ETH:USDTKEL","d":[]},{"s":"KRAKEN:EOSETH","d":[]},{"s":"MEXC:MIDDLEUSDT","d":[]},{"s":"UNISWAP:REQUSDC_EB4B2B","d":[]},{"s":"UNISWAP3ETH:DAICDAI","d":[]},{"s":"BINANCE:STPTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBABYTAO","d":[]},{"s":"COINEX:ADAUSDT","d":[]},{"s":"UNISWAP:DYNETHWETH_144A31.USD","d":[]},{"s":"HITBTC:JASMYUSD","d":[]},{"s":"UNISWAP:SYLOWETH_2A6639","d":[]},{"s":"BITGET:OMGUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WSGWETH_070716.USD","d":[]},{"s":"TRADERJOE:POLARWAVAX_D81CB1.USD","d":[]},{"s":"POLONIEX:ONDOUSDT","d":[]},{"s":"BYBIT:ATOMUSDT","d":[]},{"s":"WHITEBIT:YFIUAH","d":[]},{"s":"UNISWAP3ETH:WETHMOONCAT","d":[]},{"s":"UNISWAP:FRENSWETH_4A8C88.USD","d":[]},{"s":"BINGX:KNCUSDT.P","d":[]},{"s":"HITBTC:SNXUSDC","d":[]},{"s":"UNISWAP:SYNTXWETH_58C4E3.USD","d":[]},{"s":"UNISWAP:PUTINWETH_3DD9AA","d":[]},{"s":"UNISWAP:DUNGWETH_6F3611.USD","d":[]},{"s":"BITGET:ONTUSDT","d":[]},{"s":"DYDX:SNXUSD.P","d":[]},{"s":"UNISWAP:HLNKWETH_531C8A.USD","d":[]},{"s":"MEXC:QKCUSDT","d":[]},{"s":"UNISWAP:NEURALAIWETH_1F2B28","d":[]},{"s":"HITBTC:ADXNBTC","d":[]},{"s":"BITGET:GSTUSDT","d":[]},{"s":"UPBIT:METAKRW","d":[]},{"s":"QUICKSWAP:ICEWBTC_DC4734","d":[]},{"s":"GATEIO:SWOPUSDT","d":[]},{"s":"GATEIO:BDINUSDT","d":[]},{"s":"BTSE:YFIUSD","d":[]},{"s":"GATEIO:TUSDUSDT","d":[]},{"s":"BITGET:SEIUSDT.P","d":[]},{"s":"UNISWAP:DEXMWETH_C92B1C.USD","d":[]},{"s":"COINBASE:USDCEUR","d":[]},{"s":"UNISWAP3POLYGON:TRADEWMATIC_FE1E09.USD","d":[]},{"s":"UNISWAP3ETH:DAIGLM","d":[]},{"s":"UNISWAP:UNIV2VOW_F848E9.USD","d":[]},{"s":"UNISWAP3ARBITRUM:AFCWETH_E2DDD3.USD","d":[]},{"s":"GATEIO:TRXUSDT.3L","d":[]},{"s":"BINANCE:LINKEUR","d":[]},{"s":"COINBASE:PUNDIXUSD","d":[]},{"s":"MEXC:MINARUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:PREMIAWETH_4D834A.USD","d":[]},{"s":"MEXC:KEYUSDT.P","d":[]},{"s":"BINANCE:ARDRUSDT","d":[]},{"s":"UNISWAP:XAIWETH_85F68F.USD","d":[]},{"s":"HITBTC:OGNUSDT","d":[]},{"s":"BINANCE:TRUBTC","d":[]},{"s":"BINANCE:ETHEUR","d":[]},{"s":"MEXC:BONK2USDT","d":[]},{"s":"HITBTC:XVGUSDC","d":[]},{"s":"MEXC:OOEUSDT","d":[]},{"s":"UNISWAP3ETH:USDC1INCH","d":[]},{"s":"QUICKSWAP:MODUSDC_81E796","d":[]},{"s":"UNISWAP:UFTWETH_99DFDE.USD","d":[]},{"s":"BITGET:CELUSDT","d":[]},{"s":"BITGET:BLZUSDT","d":[]},{"s":"GATEIO:WNZUSDT","d":[]},{"s":"GATEIO:BBCUSDT","d":[]},{"s":"GATEIO:THETAUSDT","d":[]},{"s":"BINANCE:BTCARS","d":[]},{"s":"UNISWAP:YUNAWETH_99B975.USD","d":[]},{"s":"XEXCHANGE:LPADUSDC","d":[]},{"s":"COINBASE:JASMYUSD","d":[]},{"s":"TRADERJOE:MIMTIME_113F41.USD","d":[]},{"s":"BITGET:MNTCUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:SNXSUSD_25E412.USD","d":[]},{"s":"POLONIEX:SWINGBYUSDT","d":[]},{"s":"TIMEX:EOSUSDT","d":[]},{"s":"UNISWAP:DGWETH_44C21F.USD","d":[]},{"s":"HITBTC:SOLUSD","d":[]},{"s":"UNISWAP:ENSWETH_B87B65","d":[]},{"s":"COINEX:ORDIUSDT","d":[]},{"s":"BYBIT:GMUSDT","d":[]},{"s":"UNISWAP:POOHWETH_AF06E7","d":[]},{"s":"GATEIO:EDGUSDT","d":[]},{"s":"UNISWAP:DRAGONWETH_7CA83D.USD","d":[]},{"s":"ZOOMEX:QTUMUSDT.P","d":[]},{"s":"UNISWAP:OGZWETH_173A95","d":[]},{"s":"TRADERJOE:LUNAWAVAX_DFA048","d":[]},{"s":"BITHUMB:ICXKRW","d":[]},{"s":"GATEIO:WOOUSDT.3L","d":[]},{"s":"PANGOLIN:ETHPNG_53B37B.USD","d":[]},{"s":"BITGET:PEPECOINUSDT","d":[]},{"s":"UNISWAP3ETH:USDTCBX","d":[]},{"s":"HITBTC:BSVUSD","d":[]},{"s":"BINGX:ORDIUSDT.PS","d":[]},{"s":"BINANCEUS:ADAUSDC","d":[]},{"s":"UNISWAP3ETH:CDAIDAI_53C0D5.USD","d":[]},{"s":"UNISWAP:CATWETH_AE30F1","d":[]},{"s":"UNISWAP:LOLAWETH_8BF1AC.USD","d":[]},{"s":"BTSE:NEARUSD.P","d":[]},{"s":"COINEX:MAVUSDT","d":[]},{"s":"GATEIO:T23USDT","d":[]},{"s":"UNISWAP:KTNWETH_92DBB7","d":[]},{"s":"KRAKEN:ETHPYUSD","d":[]},{"s":"UNISWAP:TAOBOTWETH_8FE920","d":[]},{"s":"KRAKEN:USDCGBP","d":[]},{"s":"UNISWAP3ETH:WETHDIVER","d":[]},{"s":"TRADERJOE:ORBSWAVAX_031552.USD","d":[]},{"s":"COINEX:TEMPUSDT","d":[]},{"s":"WAGYUSWAP:SWAPZWVLX_A9858D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:BLOCKUSDC_ED997A.USD","d":[]},{"s":"BTSE:OPUSD","d":[]},{"s":"TRADERJOE:ISAUSDCE_0EDB0E","d":[]},{"s":"UNISWAP:EMPIREWETH_BCE5A3.USD","d":[]},{"s":"SPOOKYSWAP:BTCETH_EC454E","d":[]},{"s":"WOONETWORK:CRVUSDT","d":[]},{"s":"POLONIEX:BTSUSDT","d":[]},{"s":"UNISWAP:ENLIGHTENEDWETH_7D4A36","d":[]},{"s":"UNISWAP3ETH:WETHMASQ","d":[]},{"s":"BITHUMB:MANTAKRW","d":[]},{"s":"BYBIT:WBTCBTC","d":[]},{"s":"UNISWAP3ETH:SDAXWETH","d":[]},{"s":"UNISWAP:OMEGAWETH_40F8DA","d":[]},{"s":"COINEX:BREEDUSDT","d":[]},{"s":"SPOOKYSWAP:STAWFTM_1CE91D","d":[]},{"s":"UNISWAP3ETH:AUTOWETH_7C7244.USD","d":[]},{"s":"MEXC:MOOVUSDT","d":[]},{"s":"BITFINEX:JPYUST.P","d":[]},{"s":"OKX:HBARUSDT.P","d":[]},{"s":"MEXC:OGGYBSCUSDT","d":[]},{"s":"MEXC:1000BTTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHDXD","d":[]},{"s":"UNISWAP:DOBOWETH_54BD05","d":[]},{"s":"UNISWAP3ETH:PINEOWLWETH","d":[]},{"s":"BITRUE:GAMESUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRADAR","d":[]},{"s":"UNISWAP:FAKEWETH_89225F.USD","d":[]},{"s":"BINANCE:SYSBTC","d":[]},{"s":"BINANCEUS:VTHOUSDT","d":[]},{"s":"GATEIO:PSGUSDT","d":[]},{"s":"KRAKEN:KEYUSD","d":[]},{"s":"BINANCE:STEEMBTC","d":[]},{"s":"QUICKSWAP:STSWMATIC_5FFC61","d":[]},{"s":"UNISWAP:UOSWETH_42D528.USD","d":[]},{"s":"MEXC:TRIBEUSDT","d":[]},{"s":"QUICKSWAP:TELWBTC_ADDC9C","d":[]},{"s":"WHITEBIT:METISTRY","d":[]},{"s":"MEXC:LDAOUSDT","d":[]},{"s":"BINANCE:APTBTC","d":[]},{"s":"POLONIEX:SWINGBYBTC","d":[]},{"s":"BYBIT:KONUSDT","d":[]},{"s":"TRADERJOE:DCAUUSDC_E0CD3F","d":[]},{"s":"BITSTAMP:UNIUSD","d":[]},{"s":"BINANCE:LUNAUSDT","d":[]},{"s":"MEXC:ZETAUSDT","d":[]},{"s":"UNISWAP3ETH:PLSXUSDC","d":[]},{"s":"HITBTC:UTTUSD","d":[]},{"s":"POLONIEX:OGUSDD","d":[]},{"s":"UNISWAP3ETH:WETHCGG","d":[]},{"s":"UNISWAP3ETH:WETHDOGWIFHAT","d":[]},{"s":"UNISWAP3ETH:ICSAUSDC_3AAF77.USD","d":[]},{"s":"BITRUE:1INCHADA","d":[]},{"s":"SPOOKYSWAP:AXLUSDCUSDC_6A450B","d":[]},{"s":"UNISWAP3ETH:BANANAWETH_A961BA.USD","d":[]},{"s":"BITRUE:THETAUSDC","d":[]},{"s":"GATEIO:GMPDUSDT","d":[]},{"s":"GATEIO:LOKAUSDT","d":[]},{"s":"BYBIT:1000XECUSDT.P","d":[]},{"s":"GATEIO:KAVAUSDT","d":[]},{"s":"UNISWAP3POLYGON:EBOXWMATIC_6CAF88.USD","d":[]},{"s":"UNISWAP3ETH:DCHFUSDC","d":[]},{"s":"TRADERJOE:BOOFIWAVAX_3FF33B.USD","d":[]},{"s":"PIONEX:ARBUSDT.P","d":[]},{"s":"HITBTC:XMCUSD","d":[]},{"s":"UNISWAP:WILDWETH_DA20DD","d":[]},{"s":"BINANCEUS:DAIUSDT","d":[]},{"s":"UNISWAP3POLYGON:BEATWMATIC_BF6613.USD","d":[]},{"s":"BINANCE:BAKEBNB","d":[]},{"s":"COINEX:TAOUSDT","d":[]},{"s":"GEMINI:SOLGUSD.P","d":[]},{"s":"GATEIO:PPADUSDT","d":[]},{"s":"MEXC:LEMNUSDT","d":[]},{"s":"BYBIT:OPUSDC","d":[]},{"s":"PANGOLIN:KLOWAVAX_6745D7","d":[]},{"s":"UNISWAP3ETH:LNDXUSDC","d":[]},{"s":"COINEX:XDEFIUSDT","d":[]},{"s":"BITGET:COTIUSDT.P","d":[]},{"s":"HITBTC:BTBUSD","d":[]},{"s":"UNISWAP3POLYGON:INDUWMATIC_D7ACD7.USD","d":[]},{"s":"OKX:DOGEUSD.P","d":[]},{"s":"UNISWAP:PROPHETWETH_A07674","d":[]},{"s":"BYBIT:5IREUSDT","d":[]},{"s":"BITGET:ICEUSDT","d":[]},{"s":"HITBTC:CBCETH","d":[]},{"s":"UNISWAP:CXWETH_1B68A2.USD","d":[]},{"s":"PIONEX:AGIXUSDT.P","d":[]},{"s":"COINEX:ZUZALUUSDT","d":[]},{"s":"GATEIO:AGIUSDT","d":[]},{"s":"BITRUE:KUJIUSDT","d":[]},{"s":"HITBTC:SENSOUSDT","d":[]},{"s":"KRAKEN:KNCBTC","d":[]},{"s":"TRADERJOE:3QFDWAVAX_7B5E30","d":[]},{"s":"UNISWAP3ETH:EVEXWETH","d":[]},{"s":"UNISWAP:LIFEWETH_72FD6A","d":[]},{"s":"UNISWAP3POLYGON:SOLUSDC_DD86C7.USD","d":[]},{"s":"MEXC:BZZUSDT","d":[]},{"s":"UNISWAP3ETH:TRESTLEUSDC","d":[]},{"s":"UNISWAP3ETH:DEXTFUSDT_C59ED0.USD","d":[]},{"s":"GATEIO:BEAMXUSDT","d":[]},{"s":"TRADERJOE:SUBZSHARE_B10A87.USD","d":[]},{"s":"UNISWAP3ETH:WETHRARE","d":[]},{"s":"UNISWAP3ETH:ZYNWETH_5B2904.USD","d":[]},{"s":"WHITEBIT:1INCHBTC","d":[]},{"s":"BITGET:WOOUSDT","d":[]},{"s":"BINGX:XLMUSDT.P","d":[]},{"s":"TRADERJOE:PGXWAVAX_0A7EB7","d":[]},{"s":"UNISWAP:HORDUSDT_DE6FAE","d":[]},{"s":"BITFINEX:SENATEUSD","d":[]},{"s":"UNISWAP3ETH:FABRICWETH","d":[]},{"s":"COINEX:SLNUSDT","d":[]},{"s":"HITBTC:PREUSD","d":[]},{"s":"UNISWAP:RTHWETH_214ABB.USD","d":[]},{"s":"WOONETWORK:ORCAUSDT","d":[]},{"s":"UNISWAP3ETH:PASSUSDC","d":[]},{"s":"UNISWAP:CHEDDAWETH_32A505","d":[]},{"s":"GATEIO:ACHUSDT.3L","d":[]},{"s":"MEXC:PCXBTC","d":[]},{"s":"KRAKEN:CFGEUR","d":[]},{"s":"UNISWAP3ETH:MAPUSDT_609D96.USD","d":[]},{"s":"BLOFIN:KEYUSDT.P","d":[]},{"s":"POLONIEX:BCHSVUSD","d":[]},{"s":"UNISWAP:KAPWETH_482000","d":[]},{"s":"UNISWAP:HAMSWETH_479D7A","d":[]},{"s":"QUICKSWAP:EVEWMATIC_3DC471","d":[]},{"s":"PIONEX:RSRUSDT.P","d":[]},{"s":"BISWAP:PMGWBNB_56F6BA","d":[]},{"s":"UNISWAP3ETH:OKBWETH","d":[]},{"s":"HITBTC:RUNEUSD","d":[]},{"s":"UNISWAP:DIONEWETH_EEDFF7.USD","d":[]},{"s":"UNISWAP3ETH:WETHPT404","d":[]},{"s":"UNISWAP:NFTDUSDT_9CCEBB","d":[]},{"s":"UNISWAP:BITCOINWETH_2CC846.USD","d":[]},{"s":"PANGOLIN:BUSDWAVAX_4DD92A","d":[]},{"s":"BINANCE:FTMBNB","d":[]},{"s":"GATEIO:LTCUSDT.5S","d":[]},{"s":"UNISWAP3ARBITRUM:YSLWETH_DDF387.USD","d":[]},{"s":"MEXC:IGUUSDT","d":[]},{"s":"BITGET:KNCUSDT","d":[]},{"s":"BTSE:BCHUSD.P","d":[]},{"s":"UNISWAP3ETH:WBTCUSDT_9DB9E0.USD","d":[]},{"s":"PHEMEX:PYTHUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMUTE","d":[]},{"s":"GATEIO:CTYUSDT","d":[]},{"s":"UNISWAP:WSBWETH_63F2A1.USD","d":[]},{"s":"COINBASE:SYNUSD","d":[]},{"s":"QUICKSWAP:OPT3WMATIC_A48CF1.USD","d":[]},{"s":"MEXC:XLMUSDT","d":[]},{"s":"COINEX:PIVXUSDT","d":[]},{"s":"BLOFIN:1INCHUSDT.P","d":[]},{"s":"BITRUE:VETUSDT","d":[]},{"s":"ZOOMEX:DOTUSDT.P","d":[]},{"s":"UNISWAP:MAJIKWETH_FAAD97.USD","d":[]},{"s":"KRAKEN:MKREUR","d":[]},{"s":"BINGX:SLEEPLESSAIUSDT.PS","d":[]},{"s":"COINBASE:TVKUSD","d":[]},{"s":"BLOFIN:GMTUSDT.P","d":[]},{"s":"UNISWAP3ETH:BRIGHTWETH","d":[]},{"s":"OKX:WLDUSDT.P","d":[]},{"s":"PANGOLIN:SAVAXWAVAX_4E9A38.USD","d":[]},{"s":"MEXC:FAVRUSDT","d":[]},{"s":"UNISWAP:OSHIBWETH_F0451A","d":[]},{"s":"MEXC:LPTUSDT","d":[]},{"s":"BINGX:PEPEUSDT.PS","d":[]},{"s":"SPOOKYSWAP:ORBSWFTM_50D13B","d":[]},{"s":"UNISWAP3ARBITRUM:WEETHWETH_A169D1.USD","d":[]},{"s":"KRAKEN:DAIEUR","d":[]},{"s":"UNISWAP:BIZWETH_7F4959","d":[]},{"s":"COINBASE:WAXLUSD","d":[]},{"s":"COINEX:TRXBTC","d":[]},{"s":"UNISWAP:RIZZWETH_215EC2.USD","d":[]},{"s":"GATEIO:ONEUSDT.3L","d":[]},{"s":"UNISWAP3ETH:USDCPYUSD","d":[]},{"s":"GATEIO:CAGAUSDT","d":[]},{"s":"GATEIO:ANGLEUSDT","d":[]},{"s":"UNISWAP:MUMUWETH_ABD503.USD","d":[]},{"s":"QUICKSWAP:BIGDWMATIC_CE9F7A","d":[]},{"s":"UNISWAP3ETH:WETHBCUT","d":[]},{"s":"UNISWAP3ETH:CHZUSDT","d":[]},{"s":"GATEIO:ORBSUSDT","d":[]},{"s":"BTSE:TOKENUSD.P","d":[]},{"s":"BITSTAMP:RLYEUR","d":[]},{"s":"MEXC:COMPUSDT.P","d":[]},{"s":"GATEIO:NXDUSDT","d":[]},{"s":"QUICKSWAP:GLQWETH_9BD48F","d":[]},{"s":"BINANCE:XVGUSDT","d":[]},{"s":"COINBASE:LCXUSD","d":[]},{"s":"GATEIO:VRTXUSDT","d":[]},{"s":"UNISWAP:AETHCWETH_614780","d":[]},{"s":"BINGX:GASUSDT.P","d":[]},{"s":"POLONIEX:LRCUSD","d":[]},{"s":"UNISWAP:TISMWETH_2B38C0","d":[]},{"s":"UNISWAP:BPTLWETH_B73901","d":[]},{"s":"BTSE:SKLUSD.P","d":[]},{"s":"BINGX:SNTUSDT.P","d":[]},{"s":"COINEX:JTOUSDT","d":[]},{"s":"UNISWAP3ETH:VEEUSDT_E8E2C1.USD","d":[]},{"s":"UNISWAP:RUFFWETH_1DC7F4","d":[]},{"s":"UNISWAP:USDEBTWETH_006FA2.USD","d":[]},{"s":"UNISWAP:NFAIWETH_4B05D6","d":[]},{"s":"GEMINI:AAVEUSD","d":[]},{"s":"SPOOKYSWAP:ORBSAXLUSDC_99A894.USD","d":[]},{"s":"HITBTC:DENTETH","d":[]},{"s":"UNISWAP:RACWETH_F74441","d":[]},{"s":"HITBTC:GRUSDT","d":[]},{"s":"BITGET:EDUUSDT","d":[]},{"s":"DYDX:XTZUSD.P","d":[]},{"s":"UNISWAP:HPNYWETH_6577F3","d":[]},{"s":"BYBIT:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHGFI","d":[]},{"s":"UNISWAP3ETH:SILV2WETH","d":[]},{"s":"UNISWAP:BABYSHIAWETH_1635D1","d":[]},{"s":"PHEMEX:SHIBUSDC","d":[]},{"s":"QUICKSWAP:IUXUSDC_140A56","d":[]},{"s":"COINEX:SRKUSDT","d":[]},{"s":"BINANCE:RNDRBTC","d":[]},{"s":"UNISWAP:VIRTUWETH_F6CF82.USD","d":[]},{"s":"UNISWAP3ETH:WETHLOCK","d":[]},{"s":"SPOOKYSWAP:PYROWFTM_1C328D","d":[]},{"s":"BINGX:BNTUSDT.PS","d":[]},{"s":"MEXC:ADAUSDC","d":[]},{"s":"HITBTC:SANDUSDC","d":[]},{"s":"HITBTC:VETUSDC","d":[]},{"s":"HITBTC:THETAUSDC","d":[]},{"s":"UNISWAP:INUWETH_10AE23.USD","d":[]},{"s":"UNISWAP3ETH:MXCWETH","d":[]},{"s":"BYBIT:DODOUSDT.P","d":[]},{"s":"COINEX:NMRUSDT","d":[]},{"s":"POLONIEX:JAREDUSDT","d":[]},{"s":"MEXC:MEMETOONUSDT","d":[]},{"s":"BINANCE:NEARUSD.P","d":[]},{"s":"TRADERJOE:SWORDWAVAX_434484","d":[]},{"s":"UNISWAP:NOONEWETH_73FA66","d":[]},{"s":"POLONIEX:WBTCUSD","d":[]},{"s":"BINANCE:ILVUSDT","d":[]},{"s":"PHEMEX:AEVOUSDT.P","d":[]},{"s":"GEMINI:BTCEUR","d":[]},{"s":"KRAKEN:GALUSD","d":[]},{"s":"UNISWAP:SSBWETH_97540D","d":[]},{"s":"UNISWAP:MDXWETH_2EFB41.USD","d":[]},{"s":"HITBTC:ICXUSD","d":[]},{"s":"BYBIT:EOSUSDT.2S","d":[]},{"s":"OKX:DOGEUSDT.P","d":[]},{"s":"UNISWAP3ETH:RAEUSDC","d":[]},{"s":"PHEMEX:THETAUSDT.P","d":[]},{"s":"UNISWAP3ETH:CTLSWETH","d":[]},{"s":"BINGX:ALTUSDT.PS","d":[]},{"s":"QUICKSWAP:RMATICWMATIC_336B81","d":[]},{"s":"MEXC:CLFIUSDT","d":[]},{"s":"BITGET:MLUSDT","d":[]},{"s":"GATEIO:ORDIUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TGGMWETH_C90DAC.USD","d":[]},{"s":"COINEX:XTZUSDT","d":[]},{"s":"UNISWAP3ETH:CPOOLUSDC","d":[]},{"s":"MEXC:EYESUSDT","d":[]},{"s":"BITFINEX:SMRUST","d":[]},{"s":"UNISWAP3ETH:DEVVEWETH_18BBE2.USD","d":[]},{"s":"GATEIO:PIUSDT","d":[]},{"s":"BITFINEX:FORTHUST","d":[]},{"s":"UNISWAP3ETH:WETHSDAO","d":[]},{"s":"COINBASE:VOXELUSD","d":[]},{"s":"KRAKEN:XTZUSD.PM","d":[]},{"s":"UNISWAP:PHAWETH_8867F2.USD","d":[]},{"s":"BINGX:C98USDT.PS","d":[]},{"s":"KRAKEN:WIFEUR","d":[]},{"s":"MEXC:ZENIUSDT","d":[]},{"s":"TRADERJOE:WOLFCOQWAVAX_810A5E.USD","d":[]},{"s":"UNISWAP:WXRPWETH_D1D739.USD","d":[]},{"s":"BINANCEUS:ENJUSDT","d":[]},{"s":"WHITEBIT:KNCUSDT","d":[]},{"s":"UNISWAP3ETH:DUSTWETH_CCAB9A.USD","d":[]},{"s":"KRAKEN:YFIUSD","d":[]},{"s":"HITBTC:CRVUSDT","d":[]},{"s":"UPBIT:XECKRW","d":[]},{"s":"BITKUB:SIXTHB","d":[]},{"s":"PIONEX:TLMUSDT.P","d":[]},{"s":"GATEIO:ATKUSDT","d":[]},{"s":"KRAKEN:ZRXEUR","d":[]},{"s":"BITMEX:BMEXUSD.P","d":[]},{"s":"BITGET:STGUSDT","d":[]},{"s":"BYBIT:ASTRUSDT.P","d":[]},{"s":"TRADERJOE:ACSWAVAX_996E16.USD","d":[]},{"s":"UNISWAP:CSWAPWETH_21FFAA","d":[]},{"s":"QUICKSWAP:FXSFRAX_4756FF","d":[]},{"s":"UNISWAP:BRISEWETH_4FC0C4","d":[]},{"s":"UNISWAP3ETH:ICSAWETH","d":[]},{"s":"HITBTC:KCSUSD","d":[]},{"s":"WHITEBIT:MEMEUSDT","d":[]},{"s":"KRAKEN:RPLUSD","d":[]},{"s":"UNISWAP3ETH:ERC20USDT","d":[]},{"s":"UNISWAP3ETH:OSAKWETH_6208E6.USD","d":[]},{"s":"COINEX:MASKUSDT","d":[]},{"s":"WOONETWORK:ETHUSDC","d":[]},{"s":"UNISWAP:MARKSWETH_C1F82F","d":[]},{"s":"UNISWAP:JINPOOHWETH_FEF9A8.USD","d":[]},{"s":"UNISWAP3ETH:WETHFLC","d":[]},{"s":"BINGX:1INCHUSDT.P","d":[]},{"s":"UNISWAP:CRMWETH_971CFF.USD","d":[]},{"s":"BITRUE:TLMUSDC","d":[]},{"s":"BITGET:PENGUSDT","d":[]},{"s":"UNISWAP:RSTKWETH_8C894D.USD","d":[]},{"s":"UNISWAP:ARCHWETH_48A918","d":[]},{"s":"PHEMEX:IDUSDT.P","d":[]},{"s":"UNISWAP:DACCWETH_22052A","d":[]},{"s":"MEXC:TTCUSDT","d":[]},{"s":"UNISWAP:AIFORKWETH_B335AF.USD","d":[]},{"s":"UNISWAP:TOADWETH_F2498C","d":[]},{"s":"MEXC:HAMBURGLARUSDT","d":[]},{"s":"BITRUE:ETCUSDC","d":[]},{"s":"HITBTC:TRXBTC","d":[]},{"s":"COINEX:CETUSUSDT","d":[]},{"s":"UNISWAP:FOLOWETH_D7160F.USD","d":[]},{"s":"BITGET:PPTUSDT","d":[]},{"s":"BINGX:GFTUSDT.P","d":[]},{"s":"MEXC:KLSUSDT","d":[]},{"s":"COINBASE:DOGEGBP","d":[]},{"s":"MEXC:ESCUSDT","d":[]},{"s":"BITGET:ALTLAYERUSDT","d":[]},{"s":"UNISWAP3ETH:WETHETH2X","d":[]},{"s":"MEXC:ALEXUSDT","d":[]},{"s":"BITKUB:NEXTTHB","d":[]},{"s":"UNISWAP3ETH:HNDUSDC","d":[]},{"s":"MEXC:MXETH","d":[]},{"s":"UNISWAP3ETH:WETHWDOGE","d":[]},{"s":"BITKUB:1INCHTHB","d":[]},{"s":"BINANCE:TRBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBIDEN","d":[]},{"s":"BYBIT:JUPUSDT","d":[]},{"s":"SPOOKYSWAP:TADWFTM_7E52E2","d":[]},{"s":"UNISWAP:BXBTWETH_9C0456","d":[]},{"s":"BINGX:CAKEUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARENCR","d":[]},{"s":"BITRUE:XRPUSDT","d":[]},{"s":"UNISWAP3ETH:PRQWETH","d":[]},{"s":"UNISWAP3ETH:WETHJARVIS","d":[]},{"s":"UNISWAP3ETH:LOONGWETH_42F86D.USD","d":[]},{"s":"QUICKSWAP:AIWMATIC_994099","d":[]},{"s":"PIONEX:PORTALUSDT.P","d":[]},{"s":"BISWAP:TENFIBUSD_84123D","d":[]},{"s":"MEXC:SAFEUSDT","d":[]},{"s":"BYBIT:AFCUSDT","d":[]},{"s":"UNISWAP3ETH:LMWRUSDC","d":[]},{"s":"UNISWAP3ETH:WETHZCHF","d":[]},{"s":"XEXCHANGE:RISAUSDC","d":[]},{"s":"UNISWAP3ETH:GREENWETH_4EFC9E.USD","d":[]},{"s":"UNISWAP3POLYGON:SEXYUSDT_6DE484.USD","d":[]},{"s":"GATEIO:PTSUSDT","d":[]},{"s":"COINBASE:ATOMUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:AICOREWETH_F2E8AC.USD","d":[]},{"s":"UNISWAP:ARCADEWETH_B65205.USD","d":[]},{"s":"BINANCE:KMDUSDT","d":[]},{"s":"UNISWAP:FSTWETH_88AE9E","d":[]},{"s":"UNISWAP3ETH:WETHSGT","d":[]},{"s":"UNISWAP3ETH:USDTNOTE","d":[]},{"s":"BITFINEX:EOSUST.P","d":[]},{"s":"UNISWAP3ETH:WETHLEASH","d":[]},{"s":"HITBTC:KNCUSD","d":[]},{"s":"UNISWAP3ETH:ELANDWETH","d":[]},{"s":"BITFINEX:WHBTUSD","d":[]},{"s":"BINANCE:ENJBTC","d":[]},{"s":"WHITEBIT:BTCKZT","d":[]},{"s":"UNISWAP:GMEEWETH_4C0830","d":[]},{"s":"UNISWAP3ETH:TOKEWETH","d":[]},{"s":"TRADERJOE:JNSWAVAX_4F3F39","d":[]},{"s":"BITFINEX:PNKUSD","d":[]},{"s":"COINEX:GRAILUSDT","d":[]},{"s":"BITKUB:OMGTHB","d":[]},{"s":"UNISWAP:TSUKAUSDC_67CEA3","d":[]},{"s":"UNISWAP3ETH:WETHBBCG","d":[]},{"s":"TRADERJOE:COQBOXWAVAX_1CAF1E.USD","d":[]},{"s":"UNISWAP:PEEPAWETH_A22C67.USD","d":[]},{"s":"TRADERJOE:LFGWAVAX_13DD08","d":[]},{"s":"TRADERJOE:GMXWAVAX_0C91A0","d":[]},{"s":"GATEIO:YFXUSDT","d":[]},{"s":"MEXC:GPT1USDT","d":[]},{"s":"UNISWAP3ETH:WOLFWETH_E4AFDE.USD","d":[]},{"s":"UNISWAP:GZLRWETH_551617","d":[]},{"s":"UNISWAP:RHEGIC2WETH_51996F.USD","d":[]},{"s":"TRADERJOE:NODAWAVAX_1B7D2B.USD","d":[]},{"s":"MEXC:AZEROUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:NOLAWETH_F01064.USD","d":[]},{"s":"GATEIO:POLKUSDT","d":[]},{"s":"PANGOLIN:MAXIWAVAX_4716B5","d":[]},{"s":"UNISWAP3ETH:POINTSWETH","d":[]},{"s":"UNISWAP:SOJUWETH_6C9A9E","d":[]},{"s":"POLONIEX:CVXUSDT","d":[]},{"s":"QUICKSWAP:HIDWETH_0D3EAD","d":[]},{"s":"UPBIT:BCHKRW","d":[]},{"s":"UNISWAP:X7101WETH_81B786.USD","d":[]},{"s":"UNISWAP:TOUGHWETH_FBD068","d":[]},{"s":"MEXC:FREEUSDT","d":[]},{"s":"UNISWAP:LEAGUEWETH_4251B1.USD","d":[]},{"s":"UNISWAP:TRNDWETH_5102F3","d":[]},{"s":"BYBIT:FMCUSDT","d":[]},{"s":"UNISWAP:0XMWETH_0B264F.USD","d":[]},{"s":"BITFLYER:XRPJPY","d":[]},{"s":"PHEMEX:LEVERUSDT.P","d":[]},{"s":"BINANCE:STXBTC","d":[]},{"s":"UNISWAP3ETH:PERPWETH_CD8305.USD","d":[]},{"s":"COINBASE:FILEUR","d":[]},{"s":"MEXC:MDTUSDT.P","d":[]},{"s":"QUICKSWAP:REQUSDT_EABF86","d":[]},{"s":"GATEIO:DERIUSDT","d":[]},{"s":"UNISWAP3ETH:SGTUSDT_6CC07E.USD","d":[]},{"s":"BYBIT:RONUSDT.P","d":[]},{"s":"HITBTC:BERRYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBULLY","d":[]},{"s":"COINEX:EVMOSUSDT","d":[]},{"s":"BLOFIN:HOTUSDT.P","d":[]},{"s":"HITBTC:BTGETH","d":[]},{"s":"UNISWAP3ETH:SHIAWETH","d":[]},{"s":"UNISWAP:TDXWETH_AF77BB","d":[]},{"s":"BITGET:VELAUSDT","d":[]},{"s":"HITBTC:KLAYUSDT","d":[]},{"s":"HITBTC:ARVUSD","d":[]},{"s":"POLONIEX:XTZUSDT","d":[]},{"s":"BITHUMB:MEVKRW","d":[]},{"s":"UNISWAP3ETH:ICHIWETH_4F845C.USD","d":[]},{"s":"TRADERJOE:GAUUSDC_035D10.USD","d":[]},{"s":"QUICKSWAP:EONWETH_283075","d":[]},{"s":"COINEX:BBLUSDT","d":[]},{"s":"MEXC:MITXUSDT","d":[]},{"s":"TRADERJOE:98A487USDC_E784AE.USD","d":[]},{"s":"UNISWAP3ETH:SWAPUSDC","d":[]},{"s":"COINEX:CAKEUSDT","d":[]},{"s":"QUICKSWAP:ORBSUSDC_B2B6D4","d":[]},{"s":"BITKUB:CHZTHB","d":[]},{"s":"COINEX:ALEXUSDT","d":[]},{"s":"GATEIO:KTUSDT","d":[]},{"s":"SPOOKYSWAP:BEFTMWFTM_B5512E.USD","d":[]},{"s":"KRAKEN:TIAUSD.PM","d":[]},{"s":"HITBTC:RSRUSD","d":[]},{"s":"UNISWAP:MEMEWETH_5DFBE9","d":[]},{"s":"BINANCE:MDTBTC","d":[]},{"s":"HITBTC:FTTUSD","d":[]},{"s":"QUICKSWAP:ICEWETH_8D22F9","d":[]},{"s":"UNISWAP:RIORST_450298","d":[]},{"s":"PHEMEX:AAVEUSDT.P","d":[]},{"s":"TRADERJOE:WXTUSDCE_7CBD37","d":[]},{"s":"MEXC:OMGUSDT","d":[]},{"s":"WHITEBIT:UNIUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHOK","d":[]},{"s":"HITBTC:XRPUSDC","d":[]},{"s":"OKX:ACEUSDT.P","d":[]},{"s":"KRAKEN:MOONEUR","d":[]},{"s":"UNISWAP3ETH:BEANSWETH","d":[]},{"s":"QUICKSWAP:NLTUSDC_E371DC","d":[]},{"s":"UNISWAP3ETH:ZARPUSDC_17A155.USD","d":[]},{"s":"HITBTC:DOTUSD","d":[]},{"s":"HITBTC:GNXUSD","d":[]},{"s":"UNISWAP3ETH:SMOGWETH","d":[]},{"s":"UNISWAP3ETH:WETHIPOR","d":[]},{"s":"MEXC:SNFTUSDT","d":[]},{"s":"BISWAP:FILUSDT_52A499","d":[]},{"s":"MEXC:MKRUSDT.P","d":[]},{"s":"BINANCE:ANKRUSDT","d":[]},{"s":"GATEIO:FULUSDT","d":[]},{"s":"BITSTAMP:ETHUSDC","d":[]},{"s":"MEXC:PYRUSDT","d":[]},{"s":"UNISWAP3ETH:APWWETH","d":[]},{"s":"BITRUE:GALABTR","d":[]},{"s":"UNISWAP:SLICEWETH_A21ECE","d":[]},{"s":"TRADERJOE:GRAPEWAVAX_F79E0F","d":[]},{"s":"BINANCE:LTCUSDT","d":[]},{"s":"GATEIO:JSTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPOLY","d":[]},{"s":"OKX:ADAUSD.P","d":[]},{"s":"COINEX:STRAXBTC","d":[]},{"s":"POLONIEX:HAYUSDT","d":[]},{"s":"BITFINEX:SEIUST","d":[]},{"s":"UNISWAP3ETH:RADIWETH","d":[]},{"s":"BYBIT:VELOUSDT","d":[]},{"s":"UNISWAP:ATHWETH_AB239E","d":[]},{"s":"POLONIEX:SHIAUSDT","d":[]},{"s":"HITBTC:BNXUSD","d":[]},{"s":"BINANCE:LTOUSDT","d":[]},{"s":"UNISWAP3POLYGON:GELWETH_3032DF.USD","d":[]},{"s":"BINGX:FRONTUSDT.P","d":[]},{"s":"HITBTC:DGTXETH","d":[]},{"s":"MEXC:WTAUSDT","d":[]},{"s":"UNISWAP:GIGAWETH_65B9AD.USD","d":[]},{"s":"BINANCE:FTMEUR","d":[]},{"s":"BITGET:MYRIAUSDT","d":[]},{"s":"GATEIO:GASDAOUSDT","d":[]},{"s":"QUICKSWAP:LGNSDAI_882DF4","d":[]},{"s":"HITBTC:XMCUSDT","d":[]},{"s":"UNISWAP3ETH:SHADOWWETH","d":[]},{"s":"PANGOLIN:USTPNG_2A0F65","d":[]},{"s":"UNISWAP3ETH:USDCUNI","d":[]},{"s":"COINEX:GMXUSDT","d":[]},{"s":"BINANCE:VETUSDT","d":[]},{"s":"UNISWAP:SMAI20WETH_367C56","d":[]},{"s":"WHITEBIT:EOSUSDT","d":[]},{"s":"BITGET:API3USDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:MAIWETH_777662.USD","d":[]},{"s":"UNISWAP3ETH:MMAWETH","d":[]},{"s":"UNISWAP3ETH:USDTSAITO","d":[]},{"s":"UNISWAP:UNITAOWETH_43BEC8","d":[]},{"s":"MEXC:ICXUSDT.P","d":[]},{"s":"HITBTC:CROUSDT","d":[]},{"s":"MEXC:JENUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:HANEPWBTC_CA1B83.USD","d":[]},{"s":"UNISWAP:ATAIWETH_79F46E.USD","d":[]},{"s":"UNISWAP3ETH:BIGTIMEWETH","d":[]},{"s":"BITGET:LABUSDT","d":[]},{"s":"COINEX:AURAUSDT","d":[]},{"s":"MEXC:ROOSUSDT","d":[]},{"s":"POLONIEX:INUUSDT","d":[]},{"s":"UNISWAP:CHAINWETH_339064.USD","d":[]},{"s":"ZOOMEX:MOVRUSDT.P","d":[]},{"s":"UNISWAP3ETH:OXWETH_49727B.USD","d":[]},{"s":"MEXC:KNCUSDT.P","d":[]},{"s":"OKX:1INCHUSDT.P","d":[]},{"s":"TRADERJOE:AFINSUSDT_8B292A","d":[]},{"s":"UNISWAP3ARBITRUM:STARWETH_EF5475.USD","d":[]},{"s":"HITBTC:CHPETH","d":[]},{"s":"MEXC:ADAUSDT","d":[]},{"s":"BITRUE:SOLUSDT","d":[]},{"s":"POLONIEX:RNDRUSDT","d":[]},{"s":"TRADERJOE:MANWAVAX_A215C7","d":[]},{"s":"UNISWAP3ETH:SNXWETH","d":[]},{"s":"BITRUE:VETBTC","d":[]},{"s":"UNISWAP:JUPWETH_2DFEE8","d":[]},{"s":"HITBTC:FIROBTC","d":[]},{"s":"UNISWAP3ETH:RLYWETH","d":[]},{"s":"UNISWAP:NUDEWETH_8554E5","d":[]},{"s":"ZOOMEX:TUSDT.P","d":[]},{"s":"UNISWAP:TOPIAWETH_C91EF7","d":[]},{"s":"COINEX:XRDUSDT","d":[]},{"s":"UNISWAP3ETH:USDDUSDT_2BC477.USD","d":[]},{"s":"HITBTC:DGBBTC","d":[]},{"s":"BINANCE:STORJUSDT","d":[]},{"s":"UNISWAP:CRATEWETH_5D4BF2.USD","d":[]},{"s":"BYBIT:GCAKEUSDT","d":[]},{"s":"BINANCEUS:EGLDUSDT","d":[]},{"s":"UNISWAP3ETH:SDLLINK","d":[]},{"s":"BINANCE:PENDLEFDUSD","d":[]},{"s":"UNISWAP3ETH:SHIBELON_EE4E9D.USD","d":[]},{"s":"PANGOLIN:WAVAXUSDT_9EE0A4","d":[]},{"s":"UNISWAP3POLYGON:PAINTWETH_3B9A1E.USD","d":[]},{"s":"UPBIT:GMTKRW","d":[]},{"s":"COINEX:TLOSBTC","d":[]},{"s":"UNISWAP3ETH:AGIXWETH_99A688.USD","d":[]},{"s":"PHEMEX:LQTYUSDT","d":[]},{"s":"UNISWAP3ETH:USDCDAI","d":[]},{"s":"BYBIT:SCRTUSDT","d":[]},{"s":"UNISWAP:MAIWETH_A8BBC4","d":[]},{"s":"UNISWAP:XODEXWETH_B1CEBF.USD","d":[]},{"s":"UNISWAP3ETH:WETHNPC","d":[]},{"s":"KRAKEN:STRKUSD.PM","d":[]},{"s":"UNISWAP:FCLWETH_DEC87F","d":[]},{"s":"SPOOKYSWAP:SANIKWFTM_AF8DFB","d":[]},{"s":"UNISWAP:CELKEL_638BC0.USD","d":[]},{"s":"UNISWAP:PSVECDAI_A686CC","d":[]},{"s":"UNISWAP:MEMEWETH_5DFBE9.USD","d":[]},{"s":"UNISWAP:BOBOWETH_E94568.USD","d":[]},{"s":"SPOOKYSWAP:RINGUSDC_84FC84","d":[]},{"s":"UNISWAP3ETH:WETHBABYDOGE","d":[]},{"s":"SPOOKYSWAP:LINKWFTM_89D9BC","d":[]},{"s":"UNISWAP3ETH:TAMAWETH_F1B5CF.USD","d":[]},{"s":"UNISWAP3ETH:CUSDCUSDC","d":[]},{"s":"BISWAP:FLOKIWBNB_ADBFE3","d":[]},{"s":"UNISWAP3OPTIMISM:PERPUSDC_E1A0C2.USD","d":[]},{"s":"UNISWAP3ETH:UNIUSDC","d":[]},{"s":"BITGET:NEXOUSDT","d":[]},{"s":"MEXC:KUBEUSDT","d":[]},{"s":"UNISWAP3ETH:ALPHWETH_962810.USD","d":[]},{"s":"UNISWAP3ETH:STFXWETH","d":[]},{"s":"BITHUMB:SEIKRW","d":[]},{"s":"UNISWAP3ARBITRUM:GRTARB_0C26BE.USD","d":[]},{"s":"GATEIO:EZUSDT","d":[]},{"s":"UNISWAP:HODLWETH_75A33D","d":[]},{"s":"COINEX:FSNBTC","d":[]},{"s":"UNISWAP3ETH:ZOOAWETH_F20F34.USD","d":[]},{"s":"BLOFIN:RADUSDT.P","d":[]},{"s":"MEXC:PCXUSDT","d":[]},{"s":"UNISWAP3ETH:GLMUSDT","d":[]},{"s":"HITBTC:GNOBTC","d":[]},{"s":"UNISWAP:WORMZWETH_72F5A3","d":[]},{"s":"UNISWAP3OPTIMISM:GNOMEWETH_9411CF.USD","d":[]},{"s":"BINANCE:UNITRY","d":[]},{"s":"UNISWAP3ETH:ARBUSDC_42EAC6.USD","d":[]},{"s":"BITGET:LINKBTC","d":[]},{"s":"BYBIT:XECUSDT","d":[]},{"s":"BYBIT:AFGUSDT","d":[]},{"s":"UNISWAP:AMASWETH_4C8771.USD","d":[]},{"s":"POLONIEX:QTUMUSD","d":[]},{"s":"UNISWAP3ETH:SAVMWETH_AD9EF1.USD","d":[]},{"s":"UNISWAP:SEERWETH_F5C678","d":[]},{"s":"UNISWAP3ETH:WETHFLRBRG","d":[]},{"s":"UNISWAP3ETH:WETHPSDN","d":[]},{"s":"XEXCHANGE:HYPEUSDC","d":[]},{"s":"KRAKEN:PYUSDEUR","d":[]},{"s":"UNISWAP3ETH:WETHWINTER","d":[]},{"s":"HITBTC:AMBBTC","d":[]},{"s":"BINGX:RIFUSDT.PS","d":[]},{"s":"UNISWAP:BLFWETH_D75DF5","d":[]},{"s":"UNISWAP:TUFWETH_7A1080.USD","d":[]},{"s":"UNISWAP3ARBITRUM:VIMUSDT_455BF8.USD","d":[]},{"s":"BYBIT:CVCUSDT.P","d":[]},{"s":"MEXC:BLZUSDT.P","d":[]},{"s":"HITBTC:IHTBTC","d":[]},{"s":"UNISWAP:READWETH_511D04","d":[]},{"s":"HITBTC:AGLDUSDT","d":[]},{"s":"UNISWAP3POLYGON:XSGDUSDT_D524CA.USD","d":[]},{"s":"HITBTC:ICXBTC","d":[]},{"s":"UNISWAP3POLYGON:FXSUSDC_651A53.USD","d":[]},{"s":"MEXC:BADGERUSDT","d":[]},{"s":"UNISWAP3ETH:WTONTOS_1C0CE9.USD","d":[]},{"s":"UNISWAP:ABRUSDT_63CD4C","d":[]},{"s":"UNISWAP:TAOSHARDWETH_0F7941","d":[]},{"s":"TRADERJOE:BROWAVAX_480160","d":[]},{"s":"GATEIO:GRTUSDT.3L","d":[]},{"s":"BITGET:UNFIUSDT.P","d":[]},{"s":"BINANCE:ATOMETH","d":[]},{"s":"BITGET:EGLDUSDT.P","d":[]},{"s":"BINGX:AVAXUSDT.P","d":[]},{"s":"MEXC:FURUCOMBOUSDT","d":[]},{"s":"QUICKSWAP:AXIWETH_9A91A7.USD","d":[]},{"s":"COINEX:POLCUSDT","d":[]},{"s":"UNISWAP3ETH:JAMWETH_3DDF8F.USD","d":[]},{"s":"UNISWAP:EMPIREWETH_BCE5A3","d":[]},{"s":"UNISWAP3ETH:RIOWETH","d":[]},{"s":"PHEMEX:IOSTUSDT.P","d":[]},{"s":"UNISWAP:REQWETH_4A7D4B.USD","d":[]},{"s":"BINANCE:LINKFDUSD","d":[]},{"s":"UNISWAP3ETH:USDCDOGWIFHAT","d":[]},{"s":"UNISWAP3ETH:CBYUSDT_0A4431.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBTUSDT_4140A7.USD","d":[]},{"s":"BITHUMB:SOFIKRW","d":[]},{"s":"TRADERJOE:DRAGONWAVAX_CF05FC","d":[]},{"s":"BYBIT:XLMUSDT.P","d":[]},{"s":"GATEIO:GENSUSDT","d":[]},{"s":"COINEX:CKBUSDT","d":[]},{"s":"PIONEX:LINAUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:MCBWETH_DCC3AC.USD","d":[]},{"s":"UNISWAP3ETH:SWISEWETH_2AF41D.USD","d":[]},{"s":"MEXC:KILTUSDT","d":[]},{"s":"UNISWAP3ETH:GGTKWETH_4AC97B.USD","d":[]},{"s":"BINANCE:QIBTC","d":[]},{"s":"HITBTC:STETHETH","d":[]},{"s":"MEXC:VPPUSDT","d":[]},{"s":"COINBASE:LINKGBP","d":[]},{"s":"GATEIO:ADAUSDT","d":[]},{"s":"UNISWAP:GPUWETH_769F53","d":[]},{"s":"UNISWAP3ETH:WETHUNT","d":[]},{"s":"MEXC:AIMEMESUSDT","d":[]},{"s":"UNISWAP3ETH:GHOUSDC_5C95D4.USD","d":[]},{"s":"UNISWAP:MUSKWETH_AB31DC","d":[]},{"s":"KRAKEN:ETHCHF","d":[]},{"s":"UNISWAP:EMOTIWETH_FFFA78","d":[]},{"s":"BLOFIN:SHIBUSDT.P","d":[]},{"s":"HITBTC:VIBBTC","d":[]},{"s":"WAGYUSWAP:VDGTWVLX_7B714B.USD","d":[]},{"s":"BYBIT:VPADUSDT","d":[]},{"s":"XEXCHANGE:SAFEWEGLD","d":[]},{"s":"UNISWAP3ETH:PUNDIXWETH","d":[]},{"s":"UNISWAP:BXXWETH_912046","d":[]},{"s":"QUICKSWAP:WUBQWETH_8DCCC1.USD","d":[]},{"s":"UNISWAP:TRENDXWETH_917C85.USD","d":[]},{"s":"SPOOKYSWAP:BTCFUSDT_E51813.USD","d":[]},{"s":"BINANCE:FTMUSD.P","d":[]},{"s":"PIONEX:IDEXUSDT.P","d":[]},{"s":"POLONIEX:BATUSDT","d":[]},{"s":"TRADERJOE:WETHEMIM_8EA6DD","d":[]},{"s":"UNISWAP:ZKBUSDT_8F7159","d":[]},{"s":"HITBTC:ELFUSD","d":[]},{"s":"UNISWAP:MUZZWETH_06D9CD.USD","d":[]},{"s":"COINBASE:IMXUSD","d":[]},{"s":"WAGYUSWAP:JUNGLEWAG_8EFCD4.USD","d":[]},{"s":"MEXC:EVEUSDT","d":[]},{"s":"BYBIT:GSWIFTUSDT","d":[]},{"s":"BITSTAMP:BTCUSD","d":[]},{"s":"UNISWAP:HAKKAWETH_9C5999","d":[]},{"s":"POLONIEX:SPONGEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDEO","d":[]},{"s":"KRAKEN:ZRXUSD","d":[]},{"s":"UNISWAP:LUSHWETH_D056DE.USD","d":[]},{"s":"MEXC:SOL2USDT","d":[]},{"s":"UNISWAP3ETH:WETHUTU","d":[]},{"s":"HITBTC:WAVESUSDC","d":[]},{"s":"BINGX:WLDUSDT.P","d":[]},{"s":"BISWAP:DOGEWBNB_1EF315","d":[]},{"s":"MEXC:CVXUSDT","d":[]},{"s":"UNISWAP:WOLFYWETH_457784.USD","d":[]},{"s":"MEXC:NFPUSDT","d":[]},{"s":"PANGOLIN:COOKWAVAX_F7FF4F.USD","d":[]},{"s":"PIONEX:STORJUSDT.P","d":[]},{"s":"UNISWAP3ETH:GCHWETH","d":[]},{"s":"UNISWAP:STCWETH_3B6AB2.USD","d":[]},{"s":"POLONIEX:AKROUSD","d":[]},{"s":"UNISWAP3ETH:DAMWETH","d":[]},{"s":"QUICKSWAP:WEB3WETH_EE875E.USD","d":[]},{"s":"QUICKSWAP:QUIDDSPORT_ADF652","d":[]},{"s":"BITMEX:ZETAUSDT.P","d":[]},{"s":"HITBTC:LSKUSDT","d":[]},{"s":"BINANCE:WINEUR","d":[]},{"s":"HITBTC:NEOUSDC","d":[]},{"s":"UNISWAP3OPTIMISM:VELOWETH_BCFAC1.USD","d":[]},{"s":"UNISWAP:ETHYSWETH_5C344E","d":[]},{"s":"BITHUMB:ARPAKRW","d":[]},{"s":"UNISWAP:PSWEARWETH_34E0B3.USD","d":[]},{"s":"POLONIEX:HTUSDT","d":[]},{"s":"UNISWAP3POLYGON:EURO3USDC_E1F970.USD","d":[]},{"s":"UNISWAP:UNIBOTWETH_811559","d":[]},{"s":"UNISWAP:SHIB20WETH_8249CA.USD","d":[]},{"s":"BLOFIN:MAGICUSDT.P","d":[]},{"s":"UNISWAP:NGNWETH_F6417E.USD","d":[]},{"s":"DELTA:STXUSDT.P","d":[]},{"s":"PHEMEX:DOGEUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGYEN","d":[]},{"s":"PHEMEX:LINKUSDT","d":[]},{"s":"BITFINEX:APENFTUST","d":[]},{"s":"UNISWAP:NGMIWETH_0C8FC2","d":[]},{"s":"MEXC:SPACEUSDT","d":[]},{"s":"SPOOKYSWAP:MULTIWFTM_297C89","d":[]},{"s":"PANGOLIN:GOHMWAVAX_B68F4E.USD","d":[]},{"s":"UNISWAP3ARBITRUM:DMTUSDC_32271F.USD","d":[]},{"s":"UNISWAP3ETH:WETH1INCH","d":[]},{"s":"QUICKSWAP:MNTLVERSA_725307","d":[]},{"s":"HITBTC:MLNBTC","d":[]},{"s":"UNISWAP:CSMUSDT_D02AC3","d":[]},{"s":"ZOOMEX:COREUSDT.P","d":[]},{"s":"UNISWAP3ETH:TURBOWETH_7BAECE.USD","d":[]},{"s":"UNISWAP:PADREWETH_3B8F9B","d":[]},{"s":"COINEX:STORJUSDT","d":[]},{"s":"GATEIO:WHALEUSDT","d":[]},{"s":"UNISWAP3ETH:ZPXWETH","d":[]},{"s":"DELTA:XLMUSDT.P","d":[]},{"s":"BITRUE:ATOMUSDT","d":[]},{"s":"UNISWAP3ETH:COMUSDC_D79A24.USD","d":[]},{"s":"UNISWAP3ETH:GBPTWETH","d":[]},{"s":"UNISWAP:OJAWETH_4BD66F.USD","d":[]},{"s":"BINANCE:ARBUSDT","d":[]},{"s":"UNISWAP:ELMOWETH_3AD26E","d":[]},{"s":"HITBTC:NEARETH","d":[]},{"s":"UNISWAP:1PIECEWETH_723552.USD","d":[]},{"s":"BINGX:GASUSDT.PS","d":[]},{"s":"GATEIO:LPOOLUSDT","d":[]},{"s":"UNISWAP:AGWETH_2F0FB0","d":[]},{"s":"UNISWAP:PPWETH_A66097","d":[]},{"s":"KRAKEN:ETHJPY","d":[]},{"s":"COINEX:NEXOBTC","d":[]},{"s":"GATEIO:RAZORUSDT","d":[]},{"s":"BINANCE:ADAEUR","d":[]},{"s":"MEXC:QLINDOUSDT","d":[]},{"s":"QUICKSWAP:TCPUSDC_AD431D","d":[]},{"s":"UNISWAP3ETH:BURNWETH_F5B7CA.USD","d":[]},{"s":"BINANCE:FIDAUSDT","d":[]},{"s":"BINGX:MBLUSDT.P","d":[]},{"s":"UNISWAP:ASWUSDT_BB98FF","d":[]},{"s":"UNISWAP3ETH:BATRNG_DEDDF8.USD","d":[]},{"s":"MEXC:PORTALUSDT.P","d":[]},{"s":"BITFINEX:SANDBTC","d":[]},{"s":"GATEIO:VINUUSDT","d":[]},{"s":"MEXC:BALUSDT.P","d":[]},{"s":"BITGET:SUDOUSDT","d":[]},{"s":"BINANCEUS:ETHBTC","d":[]},{"s":"UNISWAP3ETH:LUSDDAI","d":[]},{"s":"BITKUB:BANDTHB","d":[]},{"s":"QUICKSWAP:LIQWMATIC_2F5A5E","d":[]},{"s":"UNISWAP3ETH:WETHMEME","d":[]},{"s":"UNISWAP3ETH:WAVXUSDT_1A7547.USD","d":[]},{"s":"BITGET:1INCHUSDT.P","d":[]},{"s":"GATEIO:PORTUSDT","d":[]},{"s":"COINEX:OLTUSDT","d":[]},{"s":"UNISWAP:BABYJESUSWETH_9D680D","d":[]},{"s":"UNISWAP3ETH:ZETAWETH_738EA5.USD","d":[]},{"s":"UPBIT:IMXKRW","d":[]},{"s":"UNISWAP3ETH:MAHAWETH","d":[]},{"s":"BITGET:FILUSDC","d":[]},{"s":"UNISWAP:DINEROWETH_605684.USD","d":[]},{"s":"HITBTC:NMRBTC","d":[]},{"s":"UNISWAP3ETH:BPVCWETH","d":[]},{"s":"UNISWAP:WSKRWETH_EEA39D.USD","d":[]},{"s":"SPOOKYSWAP:PLDUSDC_8F319F","d":[]},{"s":"UNISWAP:BABYDOGE20WETH_D215BC.USD","d":[]},{"s":"GATEIO:IOSTUSDT","d":[]},{"s":"QUICKSWAP:MSUUSDC_24C8CD","d":[]},{"s":"KRAKEN:ARBEUR","d":[]},{"s":"VERSEETH:DAIUSDT_D0A9C5.USD","d":[]},{"s":"UNISWAP3ETH:RADIWETH_451F99.USD","d":[]},{"s":"BINANCE:NEARTRY","d":[]},{"s":"PHEMEX:ARBUSDT.P","d":[]},{"s":"SPOOKYSWAP:NFTWWFTM_388AC1","d":[]},{"s":"BLOFIN:AEVOUSDT.P","d":[]},{"s":"HITBTC:BADGERUSDT","d":[]},{"s":"BYBIT:1000TURBOUSDT.P","d":[]},{"s":"MEXC:TAPROOTUSDT","d":[]},{"s":"UNISWAP3POLYGON:PSYOPCUSDT_5400DF.USD","d":[]},{"s":"PIONEX:AAVEUSDT.P","d":[]},{"s":"MEXC:TSUGTUSDT","d":[]},{"s":"UNISWAP3ETH:PORKWETH","d":[]},{"s":"BINANCE:BTCBRL","d":[]},{"s":"UNISWAP:KZNWETH_2E953F","d":[]},{"s":"DELTA:MANAUSDT.P","d":[]},{"s":"MEXC:OBROKUSDT","d":[]},{"s":"UNISWAP:OCEANWETH_9B7DAD","d":[]},{"s":"UNISWAP:LEVXWETH_2E5151","d":[]},{"s":"SPOOKYSWAP:CHARMWFTM_69B482.USD","d":[]},{"s":"UNISWAP:LEEROYWETH_357494.USD","d":[]},{"s":"UNISWAP3ETH:WETHPRX","d":[]},{"s":"MEXC:SAIXUSDT","d":[]},{"s":"GATEIO:GRNDUSDT","d":[]},{"s":"MEXC:DODOUSDT","d":[]},{"s":"BINGX:FTMUSDT.PS","d":[]},{"s":"UNISWAP:TOOLSWETH_DAE6D9.USD","d":[]},{"s":"UNISWAP3POLYGON:LYAUSDC_58C66E.USD","d":[]},{"s":"KRAKEN:DASHUSD","d":[]},{"s":"MEXC:TURBOUSDT","d":[]},{"s":"BINGX:SKLUSDT.P","d":[]},{"s":"COINEX:AURYUSDT","d":[]},{"s":"UNISWAP3ETH:DEXTWETH_1910E0.USD","d":[]},{"s":"UNISWAP3POLYGON:VOLLARUSDT_57477D.USD","d":[]},{"s":"UNISWAP:HOSHIWETH_DD5C89.USD","d":[]},{"s":"UNISWAP3ETH:WETHHARRIS","d":[]},{"s":"UNISWAP:BIDENWETH_7EDC29.USD","d":[]},{"s":"MEXC:CAFUSDT","d":[]},{"s":"UNISWAP:NOTHINGWETH_278ACE.USD","d":[]},{"s":"UNISWAP3ETH:BLURUSDT","d":[]},{"s":"BITGET:TETUSDT","d":[]},{"s":"MEXC:PYIUSDT","d":[]},{"s":"BITFINEX:XLMUST","d":[]},{"s":"MEXC:SAMAUSDT","d":[]},{"s":"GATEIO:ADAPADUSDT","d":[]},{"s":"MEXC:TRUMPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGOD","d":[]},{"s":"QUICKSWAP:GRAINUSDC_0787D0","d":[]},{"s":"MEXC:JASMYUSDT","d":[]},{"s":"UNISWAP3POLYGON:GRTWMATIC_3C9BD4.USD","d":[]},{"s":"UNISWAP:RICHARDWETH_3E20D1.USD","d":[]},{"s":"UNISWAP3ETH:OBIUSDT_E0498F.USD","d":[]},{"s":"UNISWAP3POLYGON:WBTCDAI_D0BEB9.USD","d":[]},{"s":"GATEIO:GEARUSDT","d":[]},{"s":"UNISWAP:BIBLEWETH_7A310B.USD","d":[]},{"s":"COINEX:NFTDUSDT","d":[]},{"s":"UNISWAP:CDYWETH_79DCF9","d":[]},{"s":"UNISWAP:DNXCUSDC_A39D7A","d":[]},{"s":"BLOFIN:RENUSDT.P","d":[]},{"s":"MEXC:RAINUSDT","d":[]},{"s":"WHITEBIT:ICPUSDT","d":[]},{"s":"BITGET:SOLBTC","d":[]},{"s":"UNISWAP3ETH:PREWETH","d":[]},{"s":"UNISWAP:PAGWETH_B40687.USD","d":[]},{"s":"GATEIO:SEIUSDT.3S","d":[]},{"s":"QUICKSWAP:ORBSQUICK_882624.USD","d":[]},{"s":"UNISWAP:DEXTWETH_A29FE6","d":[]},{"s":"BLOFIN:LDOUSDT.P","d":[]},{"s":"BINANCEUS:ETCUSDT","d":[]},{"s":"UNISWAP3ETH:SIWETH","d":[]},{"s":"WHITEBIT:MATICEUR","d":[]},{"s":"UNISWAP3ETH:DAIBITCOIN","d":[]},{"s":"UNISWAP3ETH:WETHSOTU","d":[]},{"s":"PHEMEX:WLDUSDT","d":[]},{"s":"QUICKSWAP:EROWANQUICK_631F39","d":[]},{"s":"PHEMEX:XTZUSDT","d":[]},{"s":"BINANCE:SEITUSD","d":[]},{"s":"TRADERJOE:AVABBCUSDC_618607","d":[]},{"s":"BITRUE:XVSUSDT","d":[]},{"s":"UNISWAP:0X9469D0WETH_A32523","d":[]},{"s":"BITFINEX:SOLBTC.P","d":[]},{"s":"UNISWAP3ETH:WETHMTO","d":[]},{"s":"COINEX:DNXUSDT","d":[]},{"s":"UNISWAP:GORILLAWETH_DD2E06.USD","d":[]},{"s":"UNISWAP3ETH:MAHAARTH_8A039F.USD","d":[]},{"s":"BITMEX:USTCUSDT.P","d":[]},{"s":"UNISWAP:ODDZWETH_2A1A72","d":[]},{"s":"UNISWAP:YOKENWETH_76DB56.USD","d":[]},{"s":"BITKUB:ANKRTHB","d":[]},{"s":"UNISWAP:CTRLWETH_8AEF2B","d":[]},{"s":"UNISWAP:IONXWETH_60F6E2.USD","d":[]},{"s":"SPOOKYSWAP:EGGMANWFTM_C1DECE.USD","d":[]},{"s":"TRADERJOE:SNOXWAVAX_B1B062","d":[]},{"s":"UNISWAP:GROCWETH_D39279","d":[]},{"s":"BITMEX:BLURUSD.P","d":[]},{"s":"PHEMEX:JUPUSDT.P","d":[]},{"s":"UNISWAP:PENGYWETH_4212A9","d":[]},{"s":"KRAKEN:GMXEUR","d":[]},{"s":"UNISWAP3ETH:WETHYFI","d":[]},{"s":"WHITEBIT:BTCEUR","d":[]},{"s":"POLONIEX:SMURFCATUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGEM","d":[]},{"s":"UNISWAP3ETH:ZYNWETH","d":[]},{"s":"UNISWAP:APRSWETH_2BA4CD","d":[]},{"s":"BYBIT:KASUSDT.P","d":[]},{"s":"BINANCE:CHRBTC","d":[]},{"s":"WHITEBIT:CRVUSDT","d":[]},{"s":"UNISWAP3ETH:OSQTHWETH","d":[]},{"s":"BITGET:WIFUSDT","d":[]},{"s":"BLOFIN:REEFUSDT.P","d":[]},{"s":"UNISWAP:JEWWETH_6FC794.USD","d":[]},{"s":"BITGET:BSVUSDT.P","d":[]},{"s":"BITHUMB:ORCKRW","d":[]},{"s":"QUICKSWAP:ICHIWMATIC_A3EAD9.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LVLUSDC_FBFE7B.USD","d":[]},{"s":"QUICKSWAP:MPADUSDT_5D63B8","d":[]},{"s":"UNISWAP:SAITAMAWETH_995135","d":[]},{"s":"BINGX:1000BONKUSDT.PS","d":[]},{"s":"MEXC:GAINSUSDT","d":[]},{"s":"BITGET:TRBUSDT","d":[]},{"s":"BINGX:PERPUSDT.P","d":[]},{"s":"BISWAP:BSWUSDT_2B30C3","d":[]},{"s":"KRAKEN:TUSDEUR","d":[]},{"s":"UNISWAP3ETH:PAINTWETH","d":[]},{"s":"UNISWAP3ETH:USDTRICE","d":[]},{"s":"TRADERJOE:CLYWAVAX_0B2777.USD","d":[]},{"s":"HITBTC:GRINUSD","d":[]},{"s":"UNISWAP:MADWETH_049B44.USD","d":[]},{"s":"BYBIT:HOTUSDT","d":[]},{"s":"UNISWAP3ETH:FDZWETH","d":[]},{"s":"BINANCE:IDEXUSDT","d":[]},{"s":"UNISWAP3ETH:WCELLWETH_685C40.USD","d":[]},{"s":"BINANCE:JASMYTRY","d":[]},{"s":"UNISWAP:NOISEGPTWETH_3A001A.USD","d":[]},{"s":"UNISWAP:MXCWETH_D9F910","d":[]},{"s":"UNISWAP:PANOWETH_DAC5DE","d":[]},{"s":"UNISWAP3ETH:WETHSCOMP","d":[]},{"s":"UNISWAP:ELONIUMWETH_1490B8.USD","d":[]},{"s":"UNISWAP:EDFIWETH_842A66.USD","d":[]},{"s":"HITBTC:STAKUSD","d":[]},{"s":"UNISWAP:CLOSEDAIWETH_7BC703","d":[]},{"s":"BISWAP:TENFIWBNB_F9FADB","d":[]},{"s":"UNISWAP3ETH:NATIWETH_B6C0C1.USD","d":[]},{"s":"COINEX:FORTHUSDT","d":[]},{"s":"MEXC:ZOAUSDT","d":[]},{"s":"WHITEBIT:ARBUSDT","d":[]},{"s":"GATEIO:RIFUSDT","d":[]},{"s":"COINEX:LSKUSDT","d":[]},{"s":"KRAKEN:AXSUSD","d":[]},{"s":"BITRUE:MASKUSDT","d":[]},{"s":"UNISWAP:WG0WETH_D00ED1.USD","d":[]},{"s":"BINGX:SHIBUSDT.PS","d":[]},{"s":"BITRUE:DOTSOL","d":[]},{"s":"POLONIEX:NMRUSDT","d":[]},{"s":"TRADERJOE:JOEUSDC_3BC40D","d":[]},{"s":"MEXC:CHESSUSDT","d":[]},{"s":"COINEX:NEXOUSDT","d":[]},{"s":"GATEIO:COREUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:SPANKUSDC_B80710.USD","d":[]},{"s":"BINANCE:METISUSDT","d":[]},{"s":"UNISWAP:SURFWETH_32D588.USD","d":[]},{"s":"KRAKEN:SOLGBP","d":[]},{"s":"UNISWAP:SPXWETH_52C77B.USD","d":[]},{"s":"QUICKSWAP:SOLWMATIC_898386.USD","d":[]},{"s":"COINEX:FARUSDT","d":[]},{"s":"UNISWAP:SYNTXWETH_58C4E3","d":[]},{"s":"UNISWAP:ENJWETH_E56C60.USD","d":[]},{"s":"UNISWAP:MOOVWETH_7C5F2A.USD","d":[]},{"s":"UNISWAP:RIOWETH_0B85B3","d":[]},{"s":"UNISWAP3ETH:YFIWETH","d":[]},{"s":"POLONIEX:WINUSDD","d":[]},{"s":"BITGET:ORNJUSDT","d":[]},{"s":"UNISWAP:PERPSWETH_989DD5.USD","d":[]},{"s":"BINANCE:FXSUSDT","d":[]},{"s":"GATEIO:FTMUSDT.3S","d":[]},{"s":"UNISWAP3ETH:WBAIUSDC","d":[]},{"s":"UNISWAP3ETH:NEXTUSDC","d":[]},{"s":"BYBIT:LTCUSDT","d":[]},{"s":"UNISWAP3ETH:SHUUSDC","d":[]},{"s":"UNISWAP3ETH:WETHBRISE","d":[]},{"s":"BITGET:BABYDOGEUSDT","d":[]},{"s":"GATEIO:ORDIUSDT.3L","d":[]},{"s":"UNISWAP3ETH:UNILINK","d":[]},{"s":"UNISWAP3ETH:USDCPLSB","d":[]},{"s":"UNISWAP:VINLINKWETH_D20A4C.USD","d":[]},{"s":"WOONETWORK:ETHBTC","d":[]},{"s":"WHITEBIT:WBTUSDT","d":[]},{"s":"COINEX:NAKAUSDT","d":[]},{"s":"BYBIT:SAROSUSDT","d":[]},{"s":"BINANCE:IDBTC","d":[]},{"s":"SPOOKYSWAP:LIQRWFTM_6AB8F0","d":[]},{"s":"UNISWAP3ETH:PREUSDT","d":[]},{"s":"UNISWAP:PRISMAWETH_488E55.USD","d":[]},{"s":"UNISWAP3POLYGON:WWDUSDC_8066EE.USD","d":[]},{"s":"TRADERJOE:STRUMPWAVAX_581B82.USD","d":[]},{"s":"UNISWAP3ETH:ENQAIWETH","d":[]},{"s":"MEXC:AUTOUSDT","d":[]},{"s":"BITGET:SALDUSDT","d":[]},{"s":"HITBTC:INJUSD","d":[]},{"s":"GATEIO:FCONUSDT","d":[]},{"s":"KRAKEN:BATETH","d":[]},{"s":"UNISWAP:MILK2WETH_EE802B","d":[]},{"s":"UNISWAP:YESNOWETH_C894E4","d":[]},{"s":"COINEX:AGIUSDT","d":[]},{"s":"HITBTC:IDEXUSDT","d":[]},{"s":"WOONETWORK:GMTUSDT","d":[]},{"s":"PHEMEX:IOTXUSDT.P","d":[]},{"s":"UNISWAP:CREDSWETH_BBC882","d":[]},{"s":"GATEIO:SAILUSDT","d":[]},{"s":"UNISWAP3ETH:RNDRUSDC","d":[]},{"s":"UNISWAP:RJVWETH_30E327","d":[]},{"s":"BITFINEX:LDOUSD","d":[]},{"s":"SPOOKYSWAP:DOLAWFTM_49EC56.USD","d":[]},{"s":"HITBTC:PPTBTC","d":[]},{"s":"UNISWAP:CRWETH_35571C","d":[]},{"s":"POLONIEX:XUSDT","d":[]},{"s":"BITFINEX:FTMUST","d":[]},{"s":"UNISWAP:PICKLEWETH_DC9855.USD","d":[]},{"s":"MEXC:XLMBTC","d":[]},{"s":"UNISWAP:FAIRWETH_5EBB45.USD","d":[]},{"s":"UNISWAP:SHEZMUWETH_74E6CA.USD","d":[]},{"s":"GATEIO:ULTIMAUSDT","d":[]},{"s":"QUICKSWAP:CHPUSDT_694379","d":[]},{"s":"UNISWAP3ETH:FLCUSDC","d":[]},{"s":"UNISWAP:ZOOMERWETH_C2C701","d":[]},{"s":"SPOOKYSWAP:VOLTADAI_78B51A","d":[]},{"s":"COINEX:BLURUSDT","d":[]},{"s":"UNISWAP3POLYGON:IDRTUSDT_198563.USD","d":[]},{"s":"UNISWAP3POLYGON:PIGUSDT_768EBC.USD","d":[]},{"s":"COINEX:SILOUSDT","d":[]},{"s":"MEXC:DOTUSDT","d":[]},{"s":"COINEX:ZRXUSDC","d":[]},{"s":"OKX:MOVRUSDT.P","d":[]},{"s":"UNISWAP:PPUSDC_03DFF8","d":[]},{"s":"GATEIO:KTONUSDT","d":[]},{"s":"KRAKEN:SEIUSD.PM","d":[]},{"s":"ZOOMEX:GALUSDT.P","d":[]},{"s":"BITGET:MONGUSDT","d":[]},{"s":"UNISWAP3ETH:NETHWETH_DB5C6D.USD","d":[]},{"s":"UNISWAP3ETH:AGRSUSDT","d":[]},{"s":"BYBIT:ALGOUSDT","d":[]},{"s":"EXMO:ETHUAH","d":[]},{"s":"UNISWAP3ETH:WETHBETS","d":[]},{"s":"WHITEBIT:AUDIOUSDT","d":[]},{"s":"UNISWAP:WAGERWETH_E01ABD.USD","d":[]},{"s":"BYBIT:ONEUSDT","d":[]},{"s":"UNISWAP:WEBAIWETH_2AD5BD.USD","d":[]},{"s":"GATEIO:XCHNGUSDT","d":[]},{"s":"BITFINEX:BCHNBTC","d":[]},{"s":"UNISWAP:LARPWETH_CDF6C7","d":[]},{"s":"MEXC:KAIUSDT","d":[]},{"s":"UNISWAP3ETH:XONEWETH","d":[]},{"s":"UNISWAP:STEVEWETH_3F96FD.USD","d":[]},{"s":"UNISWAP:DENAWETH_E4FABD","d":[]},{"s":"GATEIO:GOFXUSDT","d":[]},{"s":"UNISWAP3ETH:SABRWETH","d":[]},{"s":"MEXC:CNCUSDT","d":[]},{"s":"UNISWAP:SXPWETH_AC317D.USD","d":[]},{"s":"TRADERJOE:DCAUWAVAX_81034A","d":[]},{"s":"KRAKEN:CVXUSD.PM","d":[]},{"s":"BYBIT:TIAUSDT.P","d":[]},{"s":"COINEX:NFPUSDT","d":[]},{"s":"PHEMEX:FLMUSDT.P","d":[]},{"s":"KRAKEN:XRPUSDM2024","d":[]},{"s":"KRAKEN:LTCUSDH2024","d":[]},{"s":"HITBTC:RACAUSDT","d":[]},{"s":"MEXC:VELOUSDT","d":[]},{"s":"UNISWAP:SMIWETH_2D27CA","d":[]},{"s":"MEXC:LINAUSDT","d":[]},{"s":"GATEIO:AIUSDT","d":[]},{"s":"GATEIO:OLTUSDT","d":[]},{"s":"BYBIT:GSTSUSDT","d":[]},{"s":"ZOOMEX:RDNTUSDT.P","d":[]},{"s":"BYBIT:CATUSDT","d":[]},{"s":"COINBASE:ACHUSD","d":[]},{"s":"COINEX:FLOWUSDC","d":[]},{"s":"UNISWAP:SHROOMWETH_7D611E","d":[]},{"s":"UNISWAP3ETH:WETHGAMMA","d":[]},{"s":"PIONEX:ARKMUSDT.P","d":[]},{"s":"BITRUE:LINKUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LVLUSDC_5E87CD.USD","d":[]},{"s":"UNISWAP3ETH:WETHWAGMI","d":[]},{"s":"BINANCE:IOTXBTC","d":[]},{"s":"BITFINEX:BLURUST","d":[]},{"s":"HITBTC:KMDBTC","d":[]},{"s":"GATEIO:AIOZUSDT","d":[]},{"s":"UNISWAP:CYCWETH_37D9C7","d":[]},{"s":"BYBIT:ETCUSDT.2S","d":[]},{"s":"UNISWAP3POLYGON:AAVEUSDC_C42BF5.USD","d":[]},{"s":"BYBIT:AXLUSDT","d":[]},{"s":"UNISWAP:DOGSWETH_AC6E39.USD","d":[]},{"s":"COINEX:SANDUSDC","d":[]},{"s":"COINEX:SANDBTC","d":[]},{"s":"KRAKEN:XRPAUD","d":[]},{"s":"BITGET:FETUSDT.P","d":[]},{"s":"UNISWAP:TIMEWETH_1D474D.USD","d":[]},{"s":"UNISWAP:CBKWETH_3F1597.USD","d":[]},{"s":"POLONIEX:BENDOGUSDT","d":[]},{"s":"UNISWAP3ETH:BTC20WETH_7234C9.USD","d":[]},{"s":"KRAKEN:ETHUSD.PM","d":[]},{"s":"UNISWAP3POLYGON:BOSONUSDT_C7ED6C.USD","d":[]},{"s":"GATEIO:WIFIUSDT","d":[]},{"s":"COINEX:ETHUSDT","d":[]},{"s":"UNISWAP3ETH:WAMPLWETH_1EEC74.USD","d":[]},{"s":"COINEX:ARKMUSDT","d":[]},{"s":"QUICKSWAP:RAMPWETH_E55739","d":[]},{"s":"UNISWAP3ARBITRUM:DOGWETH_9F456E.USD","d":[]},{"s":"MEXC:FORUSDT","d":[]},{"s":"COINEX:DVIUSDT","d":[]},{"s":"BTSE:ORDIUSD.P","d":[]},{"s":"BINANCE:XVGETH","d":[]},{"s":"GATEIO:AVAXUSDT.3L","d":[]},{"s":"BITMEX:NEARUSDT.P","d":[]},{"s":"UNISWAP:VSWETH_6E204B","d":[]},{"s":"UNISWAP3ETH:XINUSDT_3BC12D.USD","d":[]},{"s":"BYBIT:LSKUSDT.P","d":[]},{"s":"UNISWAP:DOPWETH_4C0EE2","d":[]},{"s":"DELTA:BONKUSDT.P","d":[]},{"s":"BITHUMB:XECKRW","d":[]},{"s":"BTSE:OMGUSD.P","d":[]},{"s":"HITBTC:ZSCUSD","d":[]},{"s":"UNISWAP3ETH:WETHSOCKS","d":[]},{"s":"QUICKSWAP:JCHFWETH_95697B","d":[]},{"s":"UNISWAP:TODWETH_3DF44D.USD","d":[]},{"s":"BINANCE:LINKTRY","d":[]},{"s":"UNISWAP3ETH:PUNDIXWETH_D05043.USD","d":[]},{"s":"MEXC:BIZAUSDT","d":[]},{"s":"TRADERJOE:JOEUSDCE_67926D","d":[]},{"s":"POLONIEX:UMEEUSDT","d":[]},{"s":"MEXC:NEERUSDT","d":[]},{"s":"BINANCE:1INCHBTC","d":[]},{"s":"UNISWAP:RDTWETH_C433E2.USD","d":[]},{"s":"UNISWAP3ETH:BABYTAOWETH","d":[]},{"s":"TRADERJOE:BLOODWAVAX_E0C109.USD","d":[]},{"s":"TRADERJOE:BLOODWAVAX_E0C109","d":[]},{"s":"UNISWAP3POLYGON:ANKRMATICWMATIC_ABD95B.USD","d":[]},{"s":"UNISWAP3ETH:SEAMWETH_32AEA6.USD","d":[]},{"s":"TRADERJOE:CROCWAVAX_6A73C3","d":[]},{"s":"UNISWAP:PSPSWETH_D35972.USD","d":[]},{"s":"UNISWAP3ETH:USDTWX","d":[]},{"s":"KRAKEN:XMRUSDT","d":[]},{"s":"HITBTC:ADAUSDT","d":[]},{"s":"QUICKSWAP:1MANWMATIC_BFB605","d":[]},{"s":"TRADERJOE:USTWAVAX_ECD6D3.USD","d":[]},{"s":"BYBIT:XRPUSDC.P","d":[]},{"s":"MEXC:HARAMBEUSDT","d":[]},{"s":"WHITEBIT:LDOUSDT","d":[]},{"s":"KRAKEN:STORJUSD","d":[]},{"s":"UNISWAP3ETH:WETHPRINGLES","d":[]},{"s":"UNISWAP3ARBITRUM:AGEURUSDC_E4D9FA.USD","d":[]},{"s":"UNISWAP:OLASWETH_09D1D7","d":[]},{"s":"UNISWAP3POLYGON:RVRSUSDC_B9E930.USD","d":[]},{"s":"UNISWAP:PPWETH_BDDFFC","d":[]},{"s":"POLONIEX:BITCIUSDT","d":[]},{"s":"MEXC:TIAUSDT","d":[]},{"s":"UNISWAP3ETH:USDTSTOS","d":[]},{"s":"MEXC:ASTRBUSDT","d":[]},{"s":"BITGET:AUDIOUSDT.P","d":[]},{"s":"HITBTC:FDZUSD","d":[]},{"s":"PHEMEX:BCHUSDT","d":[]},{"s":"BITFLYER:BCHUSD","d":[]},{"s":"UNISWAP:LOOKSWETH_DC00BA.USD","d":[]},{"s":"PANGOLIN:HSHARESWAVAX_C132FF","d":[]},{"s":"UNISWAP3ETH:BDIDWETH","d":[]},{"s":"UNISWAP:EMOTIWETH_FFFA78.USD","d":[]},{"s":"BINGX:OPUSDT.PS","d":[]},{"s":"GATEIO:CHAMPUSDT","d":[]},{"s":"UNISWAP3ETH:RAITWETH_D9D854.USD","d":[]},{"s":"UNISWAP3ETH:AZURWETH_E8C9F1.USD","d":[]},{"s":"UNISWAP3ETH:WBTCDAI","d":[]},{"s":"PIONEX:SSVUSDT.P","d":[]},{"s":"UNISWAP:JOEWETH_704AD8.USD","d":[]},{"s":"UNISWAP3ETH:BOXETHWETH","d":[]},{"s":"UNISWAP3ETH:UNIUSDC_D0FC8B.USD","d":[]},{"s":"SPOOKYSWAP:YELWFTM_8BFF7B","d":[]},{"s":"BITFINEX:XPDUST.P","d":[]},{"s":"UNISWAP:MAGAWETH_C5A643.USD","d":[]},{"s":"UNISWAP3ETH:WETHRADI","d":[]},{"s":"UNISWAP3OPTIMISM:TKNWETH_6B54F7.USD","d":[]},{"s":"UNISWAP:AGENWETH_A7E61E.USD","d":[]},{"s":"GATEIO:SHXUSDT","d":[]},{"s":"UNISWAP:NRGWETH_61ADA4.USD","d":[]},{"s":"BITRUE:SOLBTR","d":[]},{"s":"MEXC:YGGUSDT.P","d":[]},{"s":"UNISWAP:STILTWETH_A3D456.USD","d":[]},{"s":"UNISWAP:ORDWETH_29A512","d":[]},{"s":"MEXC:ONEUSDT","d":[]},{"s":"GATEIO:NOMUSDT","d":[]},{"s":"MEXC:SPOLUSDT","d":[]},{"s":"WHITEBIT:BTCTUSD","d":[]},{"s":"UNISWAP:BLASTWETH_5311E3","d":[]},{"s":"BITGET:UNFIUSDT","d":[]},{"s":"MEXC:CHOKEUSDT","d":[]},{"s":"BITGET:IDEXUSDT.P","d":[]},{"s":"UNISWAP3ETH:RICEUSDT_41D552.USD","d":[]},{"s":"HITBTC:CHATBTC","d":[]},{"s":"BYBIT:QIUSDT.P","d":[]},{"s":"PANGOLIN:SUSHIWAVAX_D8B262.USD","d":[]},{"s":"UNISWAP:DEMONZWETH_B3AB77","d":[]},{"s":"UNISWAP3ETH:BYTESWETH_FEB09C.USD","d":[]},{"s":"COINEX:MATICUSDC","d":[]},{"s":"UNISWAP3ETH:MOCAWETH","d":[]},{"s":"BINANCE:FILFDUSD","d":[]},{"s":"UNISWAP3ETH:MALWETH_41506D.USD","d":[]},{"s":"UNISWAP3ETH:WXUSDT","d":[]},{"s":"UNISWAP3ETH:TADPOLEWETH","d":[]},{"s":"UNISWAP:TCATIWETH_0FD277","d":[]},{"s":"UNISWAP:DOGE1WETH_4DAD25.USD","d":[]},{"s":"UNISWAP3POLYGON:PAXGWETH_6A990C.USD","d":[]},{"s":"GATEIO:NVGUSDT","d":[]},{"s":"UNISWAP:MOCKWETH_54457A.USD","d":[]},{"s":"HITBTC:BTCUSDP","d":[]},{"s":"UNISWAP:LADYSWETH_CBE856.USD","d":[]},{"s":"QUICKSWAP:QIMIMATIC_7AFCF1","d":[]},{"s":"UNISWAP3ETH:MOGWETH_783231.USD","d":[]},{"s":"WHITEBIT:BTCUAH","d":[]},{"s":"GATEIO:ANKRUSDT","d":[]},{"s":"GATEIO:CUPUSDT","d":[]},{"s":"BLOFIN:RSRUSDT.P","d":[]},{"s":"BINGX:10000000AIDOGEUSDT.P","d":[]},{"s":"UNISWAP:MECHAWETH_185024","d":[]},{"s":"KRAKEN:CHZUSD.PM","d":[]},{"s":"UNISWAP3POLYGON:GEODUSDT_127E90.USD","d":[]},{"s":"UNISWAP3ETH:EDOGEWETH_8B6A6F.USD","d":[]},{"s":"QUICKSWAP:ACREWMATIC_561ED3","d":[]},{"s":"UNISWAP3OPTIMISM:SNXWETH_0392B3.USD","d":[]},{"s":"BYBIT:GMTUSDT","d":[]},{"s":"BITSTAMP:VEXTUSD","d":[]},{"s":"QUICKSWAP:CLAMMIMATIC_158180","d":[]},{"s":"BYBIT:FIREUSDT","d":[]},{"s":"UNISWAP:AXLWETH_3BC9AA.USD","d":[]},{"s":"UNISWAP:OPTIMUSWETH_8DE7A9","d":[]},{"s":"UNISWAP3ETH:MATICWETH_290A6A.USD","d":[]},{"s":"UNISWAP3ETH:NCRUSDC_DD0056.USD","d":[]},{"s":"UNISWAP:PLUGWETH_27F927","d":[]},{"s":"GATEIO:BATUSDT","d":[]},{"s":"GATEIO:ACNUSDT","d":[]},{"s":"ZOOMEX:ENJUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAMKT","d":[]},{"s":"MEXC:TOKENUSDT","d":[]},{"s":"UNISWAP:LONWETH_7924A8","d":[]},{"s":"COINEX:RAREUSDT","d":[]},{"s":"COINEX:DREPUSDT","d":[]},{"s":"GATEIO:COMPUSDT.3L","d":[]},{"s":"UNISWAP:AXEWETH_E2710F","d":[]},{"s":"MEXC:FXDXUSDT","d":[]},{"s":"MEXC:MLTUSDT","d":[]},{"s":"GATEIO:STZUSDT","d":[]},{"s":"BISWAP:AOGBUSD_FD9B7F","d":[]},{"s":"POLONIEX:BFICGOLDUSDT","d":[]},{"s":"POLONIEX:MATTERUSDT","d":[]},{"s":"COINEX:PNPUSDT","d":[]},{"s":"QUICKSWAP:VHCUSDC_4D86E3","d":[]},{"s":"UNISWAP3ETH:INJWETH","d":[]},{"s":"BITGET:PORTALUSDT","d":[]},{"s":"KRAKEN:TLMEUR","d":[]},{"s":"HITBTC:PPCUSD","d":[]},{"s":"TRADERJOE:AIWAVAX_1D65BD","d":[]},{"s":"UNISWAP3ETH:WARWETH_3AFEC5.USD","d":[]},{"s":"UNISWAP3ETH:BITWETH_5C128D.USD","d":[]},{"s":"HITBTC:WAXPBTC","d":[]},{"s":"ZOOMEX:POLYXUSDT.P","d":[]},{"s":"BINGX:AGLDUSDT.P","d":[]},{"s":"HITBTC:ANTUSDT","d":[]},{"s":"BINGX:LRCUSDT.P","d":[]},{"s":"POLONIEX:JSTTRX","d":[]},{"s":"COINEX:SOLUSDT","d":[]},{"s":"GATEIO:WELLUSDT","d":[]},{"s":"MEXC:PATEXUSDT","d":[]},{"s":"BINANCE:SUIFDUSD","d":[]},{"s":"POLONIEX:WEBUSDT","d":[]},{"s":"POLONIEX:AI1USDT","d":[]},{"s":"GATEIO:LIQUSDT","d":[]},{"s":"UNISWAP3ETH:TOWERWETH_74C6EB.USD","d":[]},{"s":"BITKUB:CELOTHB","d":[]},{"s":"UNISWAP3ETH:AGBWETH_4EC7D4.USD","d":[]},{"s":"UNISWAP:TRSCTWETH_D4FE3D.USD","d":[]},{"s":"BINANCE:MOBBTC","d":[]},{"s":"MEXC:NFPUSDT.P","d":[]},{"s":"MEXC:CGROKUSDT","d":[]},{"s":"BITFINEX:NEXOUSD","d":[]},{"s":"UNISWAP3ETH:TIMEWETH","d":[]},{"s":"UNISWAP3ETH:USDCPANDORA","d":[]},{"s":"PHEMEX:AXLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHXDOGE","d":[]},{"s":"UNISWAP3ARBITRUM:PEEWWETH_A34265.USD","d":[]},{"s":"SPOOKYSWAP:MULTIANY_A21E0B","d":[]},{"s":"UNISWAP3ETH:USDCWILD","d":[]},{"s":"UNISWAP:SCANWETH_2E4769","d":[]},{"s":"MEXC:CRUUSDT","d":[]},{"s":"BTSE:GALAUSD","d":[]},{"s":"MEXC:UGASBTC","d":[]},{"s":"UNISWAP:GRINCHWETH_7D3806","d":[]},{"s":"GATEIO:DFYUSDT","d":[]},{"s":"UNISWAP:XNOVAWETH_ACED1E.USD","d":[]},{"s":"BYBIT:SCRTUSDT.P","d":[]},{"s":"BITGET:PMGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBSKT","d":[]},{"s":"UNISWAP:PSMARKPOHM_664A8D","d":[]},{"s":"TRADERJOE:FEEDWAVAX_017025","d":[]},{"s":"PIONEX:GLMRUSDT.P","d":[]},{"s":"BINGX:HIGHUSDT.P","d":[]},{"s":"COINEX:ASMUSDT","d":[]},{"s":"HITBTC:BDPUSDT","d":[]},{"s":"GATEIO:RDNUSDT","d":[]},{"s":"UNISWAP:RHCWETH_531200.USD","d":[]},{"s":"UNISWAP:NOBWETH_5764FC.USD","d":[]},{"s":"BITGET:JUPUSDT","d":[]},{"s":"SPOOKYSWAP:RCWFTM_D52183.USD","d":[]},{"s":"BINANCEUS:GRTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHERSDL","d":[]},{"s":"WHITEBIT:ACEUSDT","d":[]},{"s":"UNISWAP:TRVLWETH_827CBD","d":[]},{"s":"UNISWAP3ETH:TWETH","d":[]},{"s":"TRADERJOE:ABOBWAVAX_A0CEF9","d":[]},{"s":"BINANCE:HIVEUSDT","d":[]},{"s":"UNISWAP3POLYGON:GRTUSDT_9CCE7A.USD","d":[]},{"s":"UNISWAP3ETH:WETHGHX","d":[]},{"s":"UNISWAP:RENTWETH_77FCA8","d":[]},{"s":"MEXC:TAOUSDT","d":[]},{"s":"HITBTC:BCHHIT","d":[]},{"s":"UNISWAP:TXNWETH_ADE7B9.USD","d":[]},{"s":"BYBIT:OMNUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTAMA","d":[]},{"s":"UNISWAP:XYOWETH_A986F2.USD","d":[]},{"s":"SPOOKYSWAP:RSHAREWFTM_CB2534.USD","d":[]},{"s":"UNISWAP:OTSEAWETH_75EABB.USD","d":[]},{"s":"UNISWAP:NPTRWETH_03FE32","d":[]},{"s":"UNISWAP3ETH:GRTUSDC_B06E7E.USD","d":[]},{"s":"QUICKSWAP:YGNUSDC_C3042A","d":[]},{"s":"UNISWAP:MBDWETH_FB9F9F.USD","d":[]},{"s":"MEXC:ENSUSDC","d":[]},{"s":"BITFINEX:LTCBTC","d":[]},{"s":"UNISWAP:PNTWETH_77BBC2.USD","d":[]},{"s":"UNISWAP3ETH:IDUSDC_6AC6B0.USD","d":[]},{"s":"BLOFIN:ILVUSDT.P","d":[]},{"s":"POLONIEX:ZETAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:VRTXSIZE_EBA951.USD","d":[]},{"s":"POLONIEX:AVAUSDT","d":[]},{"s":"UNISWAP3ETH:1CATWETH_AE790E.USD","d":[]},{"s":"KRAKEN:RAYUSD","d":[]},{"s":"UNISWAP3ETH:SCALEWETH","d":[]},{"s":"HITBTC:BDXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:RXTWETH_04DFCC.USD","d":[]},{"s":"BLOFIN:AMBUSDT.P","d":[]},{"s":"UNISWAP:WTPWETH_F9E78C.USD","d":[]},{"s":"UNISWAP3ETH:SOFEEWETH","d":[]},{"s":"UNISWAP:ALICEWETH_30BC87.USD","d":[]},{"s":"UNISWAP:AUDITWETH_F077EB","d":[]},{"s":"GATEIO:TALKUSDT","d":[]},{"s":"UNISWAP:DRBTWETH_032896.USD","d":[]},{"s":"WHITEBIT:HOOKUSDT","d":[]},{"s":"MEXC:CALCIUMUSDT","d":[]},{"s":"GATEIO:BADGERUSDT","d":[]},{"s":"UNISWAP3POLYGON:SMLUSDC_DA2E39.USD","d":[]},{"s":"UNISWAP3ETH:WETHMAP","d":[]},{"s":"BITGET:FETUSDT","d":[]},{"s":"UNISWAP3ETH:TUNEMATTER_209789.USD","d":[]},{"s":"UNISWAP3ETH:FOAMWETH","d":[]},{"s":"UNISWAP:PINUWETH_56CB10.USD","d":[]},{"s":"BITRUE:UNIUSDT","d":[]},{"s":"BITGET:OPUSDT.P","d":[]},{"s":"TRADERJOE:OKTO404WAVAX_D42081","d":[]},{"s":"UNISWAP:HONKWETH_B04255","d":[]},{"s":"QUICKSWAP:POLYDOGEQUICK_BEDEE6","d":[]},{"s":"GATEIO:SHPINGUSDT","d":[]},{"s":"BITGET:TRXETH","d":[]},{"s":"UNISWAP3ETH:TRGWETH_988750.USD","d":[]},{"s":"UNISWAP3POLYGON:ASHAUSDT_E5EF82.USD","d":[]},{"s":"BINANCE:IOTAFDUSD","d":[]},{"s":"BINANCE:ADAUSDT","d":[]},{"s":"UNISWAP3ETH:XYXYXWETH","d":[]},{"s":"UNISWAP:TACOWETH_905C81.USD","d":[]},{"s":"MEXC:KONOUSDT","d":[]},{"s":"UPBIT:CELOKRW","d":[]},{"s":"UNISWAP3ETH:WGRLCWETH","d":[]},{"s":"MEXC:FINBLOXUSDT","d":[]},{"s":"HITBTC:AVTETH","d":[]},{"s":"BYBIT:RNDRUSDT.P","d":[]},{"s":"BITGET:SILLYUSDT","d":[]},{"s":"UNISWAP:HYPEWETH_4CECA9.USD","d":[]},{"s":"QUICKSWAP:DOPWETH_C8A96D","d":[]},{"s":"MEXC:PKTUSDT","d":[]},{"s":"KRAKEN:MINAUSD","d":[]},{"s":"BITGET:ROSEUSDT","d":[]},{"s":"COINEX:CTXCBTC","d":[]},{"s":"BLOFIN:CROUSDT.P","d":[]},{"s":"WAGYUSWAP:SWAPZWAG_3F3C90","d":[]},{"s":"PIONEX:ZILUSDT.P","d":[]},{"s":"MEXC:EOSUSDT.P","d":[]},{"s":"ZOOMEX:HOTUSDT.P","d":[]},{"s":"BITRUE:PACUSDT","d":[]},{"s":"UNISWAP:PWBTCPOHM_3DEC6D.USD","d":[]},{"s":"POLONIEX:MUTEUSDT","d":[]},{"s":"UNISWAP3POLYGON:VOLLARUSDT_F45541.USD","d":[]},{"s":"UNISWAP:SHINUWETH_AC4A17.USD","d":[]},{"s":"BITFINEX:STRKUSD","d":[]},{"s":"BITHUMB:GALKRW","d":[]},{"s":"HITBTC:HFTBTC","d":[]},{"s":"HITBTC:FILUSDC","d":[]},{"s":"BLOFIN:AGLDUSDT.P","d":[]},{"s":"PANGOLIN:ORCAWAVAX_73E6CB","d":[]},{"s":"TRADERJOE:MAJINWAVAX_F261EB","d":[]},{"s":"GATEIO:DCRUSDT","d":[]},{"s":"PHEMEX:MKRUSDT.P","d":[]},{"s":"UNISWAP:HOMMIESWETH_106B3F.USD","d":[]},{"s":"TRADERJOE:WORMWAVAX_10866F","d":[]},{"s":"BLOFIN:ZKFUSDT.P","d":[]},{"s":"UNISWAP3ETH:GFIUSDC_3B1AC0.USD","d":[]},{"s":"UNISWAP3ETH:TUSDTGOLD","d":[]},{"s":"UNISWAP:PHAWETH_8867F2","d":[]},{"s":"GATEIO:WOJAKUSDT","d":[]},{"s":"UNISWAP3ETH:SUDOWETH","d":[]},{"s":"UNISWAP3ETH:WETHTEL","d":[]},{"s":"WHITEBIT:ETHWUSDT","d":[]},{"s":"UNISWAP:FUNDEDWETH_D57F28","d":[]},{"s":"SPOOKYSWAP:SCARWFTM_D2573A.USD","d":[]},{"s":"BYBIT:GALAUSDT.P","d":[]},{"s":"KRAKEN:RNDREUR","d":[]},{"s":"BYBIT:ACEUSDT.P","d":[]},{"s":"UNISWAP:LOVEWETH_DD97FC","d":[]},{"s":"BINANCE:FXSBTC","d":[]},{"s":"MEXC:ETHUSD.P","d":[]},{"s":"UNISWAP3ETH:GRGWETH_FC546A.USD","d":[]},{"s":"GATEIO:PSYUSDT","d":[]},{"s":"PANGOLIN:BOOFIWAVAX_E64CC2.USD","d":[]},{"s":"UNISWAP3ETH:SHIBA2WETH_AF5857.USD","d":[]},{"s":"TRADERJOE:GMBLUSDC_C29C5A.USD","d":[]},{"s":"UNISWAP:FLXUSDC_D6EF07","d":[]},{"s":"COINEX:VICBTC","d":[]},{"s":"GATEIO:CRVUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARMUSIC","d":[]},{"s":"WHITEBIT:XTZUSDT","d":[]},{"s":"UNISWAP3ETH:DNNERWETH_3C8FEB.USD","d":[]},{"s":"GATEIO:FORTUSDT","d":[]},{"s":"BITFINEX:RRTBTC","d":[]},{"s":"UNISWAP:HAKKAWETH_9C5999.USD","d":[]},{"s":"UNISWAP:CHIKUNWETH_D81833.USD","d":[]},{"s":"SPOOKYSWAP:PWFLWFTM_457CCA","d":[]},{"s":"UNISWAP3ARBITRUM:LINKWETH_221275.USD","d":[]},{"s":"BINANCE:CYBERTUSD","d":[]},{"s":"UNISWAP3ETH:SAVMUSDC","d":[]},{"s":"MEXC:STORJUSDT","d":[]},{"s":"MEXC:OCCUSDT","d":[]},{"s":"UNISWAP:ADVTWETH_906A30.USD","d":[]},{"s":"COINEX:XMRUSDC","d":[]},{"s":"UNISWAP3ETH:WETHMEMAGX","d":[]},{"s":"UNISWAP:WISDOMWETH_6D65FA","d":[]},{"s":"COINEX:BLACKDRAGONUSDT","d":[]},{"s":"GATEIO:PIZAUSDT","d":[]},{"s":"WAGYUSWAP:SCARWVLX_9D4192.USD","d":[]},{"s":"HITBTC:AUCTIONUSDT","d":[]},{"s":"UNISWAP3ETH:ZCNWETH","d":[]},{"s":"UNISWAP:ROPEWETH_61C91A.USD","d":[]},{"s":"UNISWAP:BLEPEWETH_2547BC","d":[]},{"s":"HITBTC:BICOUSD","d":[]},{"s":"MEXC:MTSUSDT","d":[]},{"s":"UNISWAP3ETH:AISORAWETH_CE75DD.USD","d":[]},{"s":"BYBIT:WLKNUSDT","d":[]},{"s":"TIMEX:DUDEUSDT","d":[]},{"s":"MEXC:SYAIUSDT","d":[]},{"s":"UNISWAP:FUFUWETH_F43672","d":[]},{"s":"MEXC:GRTUSDT","d":[]},{"s":"BINANCE:FLOKIUSDT","d":[]},{"s":"MEXC:WQTUSDT","d":[]},{"s":"GATEIO:XILUSDT","d":[]},{"s":"PIONEX:ORDIUSDT.P","d":[]},{"s":"WHITEBIT:PHAUSDT","d":[]},{"s":"UNISWAP3ETH:OHMWETH","d":[]},{"s":"POLONIEX:MMTUSDT","d":[]},{"s":"ZOOMEX:ZRXUSDT.P","d":[]},{"s":"POLONIEX:FLRUSDT","d":[]},{"s":"UNISWAP:TRUWETH_80B4D4.USD","d":[]},{"s":"UNISWAP:UNIXWETH_DD4C04","d":[]},{"s":"UNISWAP3ETH:RNGUSDT_F56C55.USD","d":[]},{"s":"GATEIO:XRPUSDT.3L","d":[]},{"s":"KRAKEN:SCBTC","d":[]},{"s":"UNISWAP3ETH:GETWETH","d":[]},{"s":"BITRUE:SHIBBTR","d":[]},{"s":"KRAKEN:HNTUSD","d":[]},{"s":"BYBIT:UMAUSDT.P","d":[]},{"s":"UNISWAP:DYPWETH_BA7872","d":[]},{"s":"UNISWAP3ETH:TSUKAUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:GMDUSDC_7F9A20.USD","d":[]},{"s":"DELTA:MASKUSDT.P","d":[]},{"s":"UNISWAP:NMRWETH_B784CE","d":[]},{"s":"UNISWAP:LOTTYWETH_1840C5","d":[]},{"s":"UNISWAP3ETH:TELWETH","d":[]},{"s":"BISWAP:LINKWBNB_16FE21.USD","d":[]},{"s":"BITFINEX:JUPUSD","d":[]},{"s":"HITBTC:CYBERUSDT","d":[]},{"s":"UNISWAP:CHATWETH_45FEEB.USD","d":[]},{"s":"BITGET:LPTUSDT","d":[]},{"s":"BITKUB:GLMRTHB","d":[]},{"s":"MEXC:MANTAUSDT","d":[]},{"s":"BITRUE:IRTUSDT","d":[]},{"s":"QUICKSWAP:JEURWETH_7090F6.USD","d":[]},{"s":"GATEIO:DIONEUSDT","d":[]},{"s":"GATEIO:BATUSDT.3L","d":[]},{"s":"HITBTC:XECUSD","d":[]},{"s":"GATEIO:AGLAUSDT","d":[]},{"s":"GATEIO:ZECUSDT","d":[]},{"s":"MEXC:LADYSUSDT","d":[]},{"s":"OKX:SNXUSDT.P","d":[]},{"s":"SPOOKYSWAP:DEVILDAI_C7A243","d":[]},{"s":"UNISWAP3ETH:WETHPHTR","d":[]},{"s":"PANGOLIN:BPTWAVAX_E15A55","d":[]},{"s":"MEXC:LOPESUSDT","d":[]},{"s":"UNISWAP3ETH:MCRTWETH_156923.USD","d":[]},{"s":"GATEIO:DORKLUSDT","d":[]},{"s":"UNISWAP:BLASTWETH_8C9E7A.USD","d":[]},{"s":"MEXC:ZAXUSDT","d":[]},{"s":"UNISWAP3ETH:SDAOWETH","d":[]},{"s":"UNISWAP3POLYGON:CPLEUSDT_613E24.USD","d":[]},{"s":"BINGX:CFXUSDT.PS","d":[]},{"s":"HITBTC:OKBUSD","d":[]},{"s":"UNISWAP:BTC20WETH_D50C5B","d":[]},{"s":"UNISWAP3ETH:NSFWWETH","d":[]},{"s":"UNISWAP:TAOSHARDWETH_0F7941.USD","d":[]},{"s":"SPOOKYSWAP:CEKKEWFTM_C5A18C.USD","d":[]},{"s":"UNISWAP3ETH:RAINIWETH_9E5887.USD","d":[]},{"s":"BINANCE:DASHUSDT","d":[]},{"s":"HITBTC:CRPTBTC","d":[]},{"s":"MEXC:CEEKUSDT","d":[]},{"s":"BITGET:DINOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSLUG","d":[]},{"s":"QUICKSWAP:AXIWETH_9A91A7","d":[]},{"s":"UNISWAP:AUDIOWETH_C730EF.USD","d":[]},{"s":"UNISWAP3ETH:ALTUSDC","d":[]},{"s":"UNISWAP3ETH:REQUSDT","d":[]},{"s":"BINGX:CHZUSDT.P","d":[]},{"s":"GATEIO:CWSUSDT","d":[]},{"s":"OKX:CELOUSDT.P","d":[]},{"s":"MEXC:CVNUSDT","d":[]},{"s":"MEXC:SOLBROEUSDT","d":[]},{"s":"UNISWAP3ETH:BYTEUSDC","d":[]},{"s":"GATEIO:XTZUSDT.3S","d":[]},{"s":"UNISWAP:MBOTWETH_14B184.USD","d":[]},{"s":"TRADERJOE:SAVAXWAVAX_4B946C","d":[]},{"s":"UNISWAP3ETH:GAMMAWETH","d":[]},{"s":"MEXC:SMILEUSDT","d":[]},{"s":"BINANCE:BONKFDUSD","d":[]},{"s":"BINGX:IDUSDT.PS","d":[]},{"s":"PANGOLIN:ETHWAVAX_1ACF15","d":[]},{"s":"MEXC:CATEUSDT","d":[]},{"s":"BITGET:MANAUSDC","d":[]},{"s":"BINANCE:TFUELBTC","d":[]},{"s":"COINEX:ANMLUSDT","d":[]},{"s":"GATEIO:BTCUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:DYORWETH_A3DAA4.USD","d":[]},{"s":"UNISWAP:ZOGZWETH_E33A68","d":[]},{"s":"UNISWAP:BIGFWETH_A843E0.USD","d":[]},{"s":"BITMEX:SUIUSD.P","d":[]},{"s":"BINANCE:PYTHUSDT","d":[]},{"s":"MEXC:NFEUSDT","d":[]},{"s":"UNISWAP3ETH:CRIMINGOWETH_03EE82.USD","d":[]},{"s":"MEXC:EGRNUSDT","d":[]},{"s":"COINEX:OMGUSDC","d":[]},{"s":"UNISWAP3ETH:PEPECOINWETH","d":[]},{"s":"GATEIO:TURTUSDT","d":[]},{"s":"UNISWAP3POLYGON:LDOWMATIC_8B810B.USD","d":[]},{"s":"BITGET:INSPUSDT","d":[]},{"s":"UNISWAP:TRGWETH_EC5E74","d":[]},{"s":"UNISWAP3ARBITRUM:MGNUSDC_99C2CE.USD","d":[]},{"s":"UNISWAP:FUSEWETH_4CE368","d":[]},{"s":"UNISWAP3ETH:INSWETH_DF7152.USD","d":[]},{"s":"BITGET:POLUSDT","d":[]},{"s":"PHEMEX:HFTUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCGHO","d":[]},{"s":"COINBASE:COMPUSD","d":[]},{"s":"GATEIO:CRPUSDT","d":[]},{"s":"PHEMEX:RENUSDT","d":[]},{"s":"MEXC:TKOUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:RETHWETH_09BA30.USD","d":[]},{"s":"UNISWAP3ETH:WETHFOREX","d":[]},{"s":"BINANCE:TFUELUSDT","d":[]},{"s":"BINGX:RADUSDT.PS","d":[]},{"s":"UNISWAP3POLYGON:FCARUSDC_06FC29.USD","d":[]},{"s":"UNISWAP:BONEWETH_F7D318.USD","d":[]},{"s":"ZOOMEX:MBLUSDT.P","d":[]},{"s":"QUICKSWAP:DEFYUSDC_DD6131","d":[]},{"s":"MEXC:GTAUSDT","d":[]},{"s":"MEXC:UMEEUSDT","d":[]},{"s":"GATEIO:RATIOUSDT","d":[]},{"s":"GATEIO:DOGEUSDT.5L","d":[]},{"s":"UNISWAP3ETH:WETHTONE","d":[]},{"s":"UNISWAP:SKRTWETH_EEF0C7","d":[]},{"s":"TRADERJOE:SNLPWAVAX_CBF6F4.USD","d":[]},{"s":"UNISWAP3POLYGON:PPDEXUSDC_82EB26.USD","d":[]},{"s":"GATEIO:NSBTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRAIL","d":[]},{"s":"COINBASE:GLMUSD","d":[]},{"s":"UNISWAP3POLYGON:METALWMATIC_65D856.USD","d":[]},{"s":"UNISWAP3ETH:HYPEWETH_759DBB.USD","d":[]},{"s":"MEXC:PANDAUSDT","d":[]},{"s":"DYDX:NEARUSD.P","d":[]},{"s":"UNISWAP:HEGICWETH_1273AD","d":[]},{"s":"MEXC:ARPAUSDT.P","d":[]},{"s":"UNISWAP:DESKWETH_B6E68C.USD","d":[]},{"s":"BITHUMB:BOAKRW","d":[]},{"s":"WHITEBIT:ETHGBP","d":[]},{"s":"UNISWAP:OVRWETH_0B0D6C.USD","d":[]},{"s":"MEXC:TUSDT","d":[]},{"s":"GATEIO:MAR3USDT","d":[]},{"s":"UNISWAP:ONYXWETH_536056","d":[]},{"s":"WHITEBIT:GRTUSDT","d":[]},{"s":"BYBIT:LINKUSDT.P","d":[]},{"s":"BLOFIN:PORTALUSDT.P","d":[]},{"s":"KRAKEN:MOVREUR","d":[]},{"s":"UNISWAP:ELONPEPEWETH_268FF8.USD","d":[]},{"s":"UNISWAP3POLYGON:MOCEANWMATIC_B625B5.USD","d":[]},{"s":"UNISWAP3ETH:PUFETHWETH","d":[]},{"s":"BITHUMB:APTKRW","d":[]},{"s":"BINANCEUS:DOTUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGUSD","d":[]},{"s":"MEXC:GLMUSDT.P","d":[]},{"s":"MEXC:PARTUSDT","d":[]},{"s":"MEXC:MAXUSDT","d":[]},{"s":"KRAKEN:BNCUSD","d":[]},{"s":"BYBIT:SUNUSDT.P","d":[]},{"s":"UNISWAP:LGCYWETH_DFEA03","d":[]},{"s":"UNISWAP:GETHWETH_4B1E9A.USD","d":[]},{"s":"BITFINEX:WOOUSD","d":[]},{"s":"PHEMEX:STRKUSDT","d":[]},{"s":"UNISWAP:BOLTWETH_A5AE09","d":[]},{"s":"UNISWAP:MEMEMEWETH_336951.USD","d":[]},{"s":"UNISWAP3ETH:SOONWETH_1CCEDC.USD","d":[]},{"s":"UNISWAP3ETH:DVIWETH","d":[]},{"s":"UNISWAP3ETH:TORNWETH_97A5A0.USD","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_42FC85.USD","d":[]},{"s":"PANGOLIN:CNRWAVAX_C04DE3","d":[]},{"s":"MEXC:DVTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPSWAP","d":[]},{"s":"UNISWAP3ETH:LINKMETIS","d":[]},{"s":"MEXC:WHALEUSDT","d":[]},{"s":"KRAKEN:UMAUSD.PM","d":[]},{"s":"GATEIO:AMKTUSDT","d":[]},{"s":"UNISWAP:HONEYCOINWETH_DF4462","d":[]},{"s":"POLONIEX:BONEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHABIBI","d":[]},{"s":"BITGET:BSVUSDT","d":[]},{"s":"UNISWAP:WAIFUWETH_4D5D2C","d":[]},{"s":"MEXC:ZENXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ATGUSDC_01C276.USD","d":[]},{"s":"UNISWAP3ETH:AZUKIFLC_E27BE8.USD","d":[]},{"s":"GATEIO:RITEUSDT","d":[]},{"s":"UNISWAP3ETH:USDTGRT","d":[]},{"s":"UNISWAP3ETH:WBTCUSDC_99AC8C.USD","d":[]},{"s":"BTSE:LUNAUSD","d":[]},{"s":"BINANCE:RUNEETH","d":[]},{"s":"HITBTC:DATAUSD","d":[]},{"s":"UNISWAP3ETH:INSPWETH_306778.USD","d":[]},{"s":"KRAKEN:LTCEUR","d":[]},{"s":"GATEIO:BALUSDT","d":[]},{"s":"KRAKEN:SANDBTC","d":[]},{"s":"UNISWAP:EBOXWETH_1B4F9F.USD","d":[]},{"s":"UNISWAP:GDAOWETH_4D184B.USD","d":[]},{"s":"UNISWAP3ETH:CAHUSDT","d":[]},{"s":"XEXCHANGE:USDTWEGLD","d":[]},{"s":"UNISWAP:PEPEWETH_A43FE1","d":[]},{"s":"PIONEX:KAVAUSDT.P","d":[]},{"s":"UNISWAP:CORGIAIWETH_4D2F3E.USD","d":[]},{"s":"UNISWAP:HASHWETH_069526.USD","d":[]},{"s":"UNISWAP:R34PWETH_5C460C.USD","d":[]},{"s":"COINEX:SATOXUSDT","d":[]},{"s":"UNISWAP3ETH:BLURUSDC","d":[]},{"s":"UNISWAP:OJAWETH_4BD66F","d":[]},{"s":"BINANCE:KAVAUSDT","d":[]},{"s":"HITBTC:D2TUSDT","d":[]},{"s":"SPOOKYSWAP:VEMPWFTM_928202","d":[]},{"s":"UNISWAP3ETH:FROGEWETH","d":[]},{"s":"PANGOLIN:PTPWAVAX_A7A175","d":[]},{"s":"COINEX:ICPUSDC","d":[]},{"s":"BITRUE:CHZXRP","d":[]},{"s":"UNISWAP3POLYGON:TBTUSDT_0A1FF1.USD","d":[]},{"s":"PANGOLIN:STORMWAVAX_9613AC.USD","d":[]},{"s":"MEXC:LFG1USDT","d":[]},{"s":"POLONIEX:BADUSDT","d":[]},{"s":"BLOFIN:DOTUSDT.P","d":[]},{"s":"BINGX:ONDOUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:SFCWMATIC_3AB7C7.USD","d":[]},{"s":"KRAKEN:LINKEUR","d":[]},{"s":"MEXC:QTVUSDT","d":[]},{"s":"BITRUE:OGNUSDT","d":[]},{"s":"UNISWAP3POLYGON:MANAUSDT_DC2F79.USD","d":[]},{"s":"UNISWAP:KRONKWETH_A8FF73","d":[]},{"s":"BITHUMB:STMXKRW","d":[]},{"s":"UNISWAP:TRUCKWETH_F21941","d":[]},{"s":"QUICKSWAP:MASKUSDC_253D63","d":[]},{"s":"QUICKSWAP:MVUSDT_690A87","d":[]},{"s":"PHEMEX:ONTUSDT","d":[]},{"s":"HITBTC:MINABTC","d":[]},{"s":"BYBIT:LGXUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:OSWETH_A95AC4.USD","d":[]},{"s":"BISWAP:THOREUMBUSD_1653E9","d":[]},{"s":"GATEIO:FNFUSDT","d":[]},{"s":"BISWAP:RACAWBNB_9C3D4F.USD","d":[]},{"s":"UNISWAP3ETH:FENGFENGWETH_BC57E3.USD","d":[]},{"s":"UNISWAP:DODOWETH_68FA18.USD","d":[]},{"s":"GATEIO:CITYUSDT","d":[]},{"s":"BINANCE:XNOBTC","d":[]},{"s":"UNISWAP:CHANGEUSDC_9247F8","d":[]},{"s":"BINANCE:ORDITUSD","d":[]},{"s":"UNISWAP3ETH:USDTLK99","d":[]},{"s":"UNISWAP3ETH:OPTIMUSWETH_4E4ABD.USD","d":[]},{"s":"WHITEBIT:PYTHUSDT","d":[]},{"s":"MEXC:RUNEUSDT","d":[]},{"s":"KRAKEN:YFIEUR","d":[]},{"s":"MEXC:PLANETSUSDT","d":[]},{"s":"POLONIEX:PLANETUSDT","d":[]},{"s":"UNISWAP:WALVWETH_BE1737","d":[]},{"s":"UNISWAP3ARBITRUM:BFRWETH_B529F8.USD","d":[]},{"s":"BITMEX:BIGTIMEUSDT.P","d":[]},{"s":"SPOOKYSWAP:TAZWFTM_59AE2E","d":[]},{"s":"POLONIEX:CLOSEDAIUSDT","d":[]},{"s":"UNISWAP3ETH:CAHUSDC","d":[]},{"s":"GATEIO:UMEEUSDT","d":[]},{"s":"HITBTC:PROBTC","d":[]},{"s":"MEXC:ROUTEUSDT","d":[]},{"s":"GATEIO:ONEUSDT.3S","d":[]},{"s":"HITBTC:SUNUSDT","d":[]},{"s":"UNISWAP3ETH:JEERGIRLFLC_B7C23E.USD","d":[]},{"s":"UNISWAP3POLYGON:FETAGIX_446446.USD","d":[]},{"s":"GATEIO:DSLAUSDT","d":[]},{"s":"BITGET:BCHUSDT.P","d":[]},{"s":"BINANCE:ADXBTC","d":[]},{"s":"UNISWAP3ETH:BISCWETH","d":[]},{"s":"GATEIO:SNFT1USDT","d":[]},{"s":"UNISWAP3ETH:PLSXUSDT","d":[]},{"s":"MEXC:ADAUSDT.P","d":[]},{"s":"UNISWAP:LPOOLWETH_2F85E1.USD","d":[]},{"s":"BITFINEX:TRADEBTC","d":[]},{"s":"UNISWAP:XALPHAWETH_8EF598.USD","d":[]},{"s":"UNISWAP3ETH:WTKUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:AISHIBWETH_524ECD.USD","d":[]},{"s":"BISWAP:LINKWBNB_16FE21","d":[]},{"s":"GATEIO:CFGUSDT","d":[]},{"s":"HITBTC:MKRDAI","d":[]},{"s":"GATEIO:WAVESUSDT.3L","d":[]},{"s":"HITBTC:QNTBTC","d":[]},{"s":"KRAKEN:LINKETH","d":[]},{"s":"UNISWAP3ETH:MIMUSDC","d":[]},{"s":"UNISWAP3ETH:WETHRUNE","d":[]},{"s":"BITGET:SCAUSDT","d":[]},{"s":"UNISWAP:BOOMERWETH_C68A4D.USD","d":[]},{"s":"UNISWAP3ETH:KRXWETH","d":[]},{"s":"BITGET:DOTUSD.P","d":[]},{"s":"PHEMEX:STPTUSDT.P","d":[]},{"s":"UNISWAP3ETH:DVFUSDT","d":[]},{"s":"UNISWAP:ZKTWETH_8AEB84.USD","d":[]},{"s":"GATEIO:MBXUSDT","d":[]},{"s":"UNISWAP:ZWWETH_D189D0.USD","d":[]},{"s":"BITFINEX:ETHBTC","d":[]},{"s":"MEXC:IGUPUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:USDCDAI_D28F71.USD","d":[]},{"s":"UNISWAP:BIGWETH_5710E8","d":[]},{"s":"UNISWAP3ETH:FINEWETH","d":[]},{"s":"UNISWAP:INTERNWETH_A84D7C","d":[]},{"s":"MEXC:SIMUSDT","d":[]},{"s":"POLONIEX:IMXUSDT","d":[]},{"s":"UNISWAP:MLWETH_7FE2F9","d":[]},{"s":"UNISWAP:BARTWETH_3A815D","d":[]},{"s":"GATEIO:BTCSUSDT","d":[]},{"s":"UNISWAP:SURFWETH_32D588","d":[]},{"s":"MEXC:NKOUSDT","d":[]},{"s":"UNISWAP:DEALWETH_345A87","d":[]},{"s":"WHITEBIT:CVCUSDT","d":[]},{"s":"UNISWAP3ETH:XTPWETH_66AD25.USD","d":[]},{"s":"UNISWAP3ETH:LOCUSDT","d":[]},{"s":"HITBTC:EMCUSD","d":[]},{"s":"BLOFIN:OGNUSDT.P","d":[]},{"s":"COINEX:DASHUSDT","d":[]},{"s":"BYBIT:HEROUSDT","d":[]},{"s":"MEXC:XMXUSDT","d":[]},{"s":"ZOOMEX:LOOMUSDT.P","d":[]},{"s":"UNISWAP3ETH:TPUWETH","d":[]},{"s":"TRADERJOE:TUSCRA_218890.USD","d":[]},{"s":"MEXC:WALLETUSDT","d":[]},{"s":"UNISWAP:AIUSWETH_53E79E","d":[]},{"s":"BITGET:MULTIUSDT","d":[]},{"s":"MEXC:SYPUSDT","d":[]},{"s":"UNISWAP:AMPLWETH_C5BE99","d":[]},{"s":"GATEIO:BMIUSDT","d":[]},{"s":"UNISWAP:QRXWETH_F227E9","d":[]},{"s":"MEXC:TKXUSDT","d":[]},{"s":"QUICKSWAP:SIMWMATIC_77F5FD","d":[]},{"s":"UNISWAP:MORTYWETH_EE0226.USD","d":[]},{"s":"POLONIEX:HFTUSDT","d":[]},{"s":"UNISWAP:SENTUSDC_E26648","d":[]},{"s":"UNISWAP:SKEYWETH_F346D0","d":[]},{"s":"UNISWAP:MTLXWETH_A71D01.USD","d":[]},{"s":"BINANCE:IQUSDT","d":[]},{"s":"GATEIO:WNDRUSDT","d":[]},{"s":"POLONIEX:SOLUSDC","d":[]},{"s":"PHEMEX:TONUSDT","d":[]},{"s":"UNISWAP:SHIBWETH_114120","d":[]},{"s":"UNISWAP3ETH:WPLSWETH_4A2987.USD","d":[]},{"s":"COINEX:ADXUSDT","d":[]},{"s":"BITGET:IMXUSDT.P","d":[]},{"s":"MEXC:ISPUSDT","d":[]},{"s":"UNISWAP:TKINUWETH_214913.USD","d":[]},{"s":"UNISWAP:BMUSKWETH_A63C9A","d":[]},{"s":"UNISWAP:AIWETH_1B8D13.USD","d":[]},{"s":"UNISWAP:KATWETH_1B67AF","d":[]},{"s":"UNISWAP:NEXOWETH_2615B8.USD","d":[]},{"s":"EXMO:XLMBTC","d":[]},{"s":"UNISWAP:TAOFIWETH_074C7D.USD","d":[]},{"s":"BYBIT:LRCUSDT","d":[]},{"s":"UNISWAP3ETH:SGTWETH_62CBAC.USD","d":[]},{"s":"UNISWAP3ETH:TAIWETH_AE6AFA.USD","d":[]},{"s":"KRAKEN:BALUSD.PM","d":[]},{"s":"BYBIT:EDUUSDT.P","d":[]},{"s":"BYBIT:ARBUSDT.P","d":[]},{"s":"COINEX:CSASUSDT","d":[]},{"s":"BISWAP:DARUSDT_5843D0","d":[]},{"s":"MEXC:CKBUSDT","d":[]},{"s":"GATEIO:MOTUSDT","d":[]},{"s":"UNISWAP:JONESWETH_9284A1","d":[]},{"s":"BITGET:ZKPEPEUSDT","d":[]},{"s":"PANGOLIN:BPTWAVAX_E15A55.USD","d":[]},{"s":"POLONIEX:BANDUSDT","d":[]},{"s":"UNISWAP:DMTWETH_CC5F55.USD","d":[]},{"s":"GEMINI:IMXUSD","d":[]},{"s":"WAGYUSWAP:ADAOBUSD_B52DED","d":[]},{"s":"MEXC:NOMUSDT","d":[]},{"s":"BINANCE:IDTUSD","d":[]},{"s":"POLONIEX:HEXUSDT","d":[]},{"s":"EXMO:EXMBTC","d":[]},{"s":"BINANCE:AXSBNB","d":[]},{"s":"UNISWAP:OREWETH_1069CE.USD","d":[]},{"s":"UNISWAP3ETH:SHIBWETH_5764A6.USD","d":[]},{"s":"HITBTC:PENDLEUSDT","d":[]},{"s":"UNISWAP:ALBTWETH_E5C522","d":[]},{"s":"PIONEX:AIUSDT.P","d":[]},{"s":"UNISWAP3ETH:LUNAWETH","d":[]},{"s":"UNISWAP3ETH:BOBOWETH_6A68DC.USD","d":[]},{"s":"UNISWAP3ETH:DIMOSDEX_A1FA67.USD","d":[]},{"s":"TRADERJOE:CHIHUAWAVAX_04463A","d":[]},{"s":"UNISWAP:PAPIWETH_FE17AB","d":[]},{"s":"HITBTC:VLXUSD","d":[]},{"s":"BINANCE:IOTABTC","d":[]},{"s":"TRADERJOE:MEATWAVAX_60B881.USD","d":[]},{"s":"BTSE:1KFLOKIUSD.P","d":[]},{"s":"MEXC:SUKUUSDT","d":[]},{"s":"TRADERJOE:KLOWAVAX_B2FF08","d":[]},{"s":"UNISWAP:YOBASEWETH_42210E.USD","d":[]},{"s":"UNISWAP:XAIWETH_85F68F","d":[]},{"s":"MEXC:CAWUSDC","d":[]},{"s":"XEXCHANGE:CUMBWEGLD","d":[]},{"s":"UNISWAP:SERPWETH_6F7621","d":[]},{"s":"BINGX:DOGEUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBWBTC_689C96.USD","d":[]},{"s":"TRADERJOE:SNCTWAVAX_D81425","d":[]},{"s":"COINEX:ONGUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCUSDC_6168EC.USD","d":[]},{"s":"UNISWAP3ETH:WOMBATWETH_F522C0.USD","d":[]},{"s":"COINEX:VINUUSDT","d":[]},{"s":"BITRUE:GBEXUSDT","d":[]},{"s":"BINGX:CTKUSDT.P","d":[]},{"s":"HITBTC:POSTUSDT","d":[]},{"s":"BITGET:PLAYUSDT","d":[]},{"s":"QUICKSWAP:LICGODL_521DFD.USD","d":[]},{"s":"BITSTAMP:PERPUSD","d":[]},{"s":"COINEX:GRTUSDC","d":[]},{"s":"UNISWAP:BIGSBWETH_BE44E5.USD","d":[]},{"s":"MEXC:VRUSDT","d":[]},{"s":"QUICKSWAP:PIWMATIC_452861.USD","d":[]},{"s":"BITFINEX:BALBTC","d":[]},{"s":"BINANCEUS:KNCUSDT","d":[]},{"s":"HITBTC:EURSUSDT","d":[]},{"s":"QUICKSWAP:REMNUSDC_AC607A","d":[]},{"s":"PHEMEX:CHESSUSDT","d":[]},{"s":"TRADERJOE:COXWAVAX_D66483","d":[]},{"s":"UNISWAP:VAULTWETH_4DAEAC.USD","d":[]},{"s":"UNISWAP3ARBITRUM:UMAMIUSDC_8AA868.USD","d":[]},{"s":"UNISWAP:BUCKBREAKERWETH_92478A.USD","d":[]},{"s":"TRADERJOE:MUMIM_6BB1CF.USD","d":[]},{"s":"GATEIO:CFIUSDT","d":[]},{"s":"UNISWAP:ZCASHWETH_5D1DD0","d":[]},{"s":"MEXC:BRCTUSDT","d":[]},{"s":"COINBASE:ALICEUSD","d":[]},{"s":"SPOOKYSWAP:BSLURPWFTM_245E6C.USD","d":[]},{"s":"UNISWAP3ETH:FLUXUSDT_5D1461.USD","d":[]},{"s":"SPOOKYSWAP:POLTERWFTM_44C85D.USD","d":[]},{"s":"MEXC:GGDUSDT","d":[]},{"s":"BYBIT:APEUSDT.P","d":[]},{"s":"BITGET:ANALOSUSDT","d":[]},{"s":"MEXC:NYMUSDT","d":[]},{"s":"BITMEX:OKBUSDT.P","d":[]},{"s":"XEXCHANGE:EFFORTWEGLD","d":[]},{"s":"UNISWAP3ETH:AGEURUSDC","d":[]},{"s":"QUICKSWAP:NFTBSWMATIC_9646F7.USD","d":[]},{"s":"MEXC:XPBUSDT","d":[]},{"s":"POLONIEX:AVAUSD","d":[]},{"s":"UNISWAP3ETH:WETHKCS","d":[]},{"s":"WHITEBIT:WBTBTC","d":[]},{"s":"WHITEBIT:FXSUSDT","d":[]},{"s":"ZOOMEX:OMGUSDT.P","d":[]},{"s":"UNISWAP:0XGASWETH_7CB7F9.USD","d":[]},{"s":"GATEIO:LDOUSDT","d":[]},{"s":"QUICKSWAP:JEURWETH_7090F6","d":[]},{"s":"HITBTC:DGBUSD","d":[]},{"s":"GATEIO:AURAUSDT","d":[]},{"s":"BYBIT:RLTMUSDT","d":[]},{"s":"HITBTC:DUSKBTC","d":[]},{"s":"WHITEBIT:FETUSDT.P","d":[]},{"s":"BINGX:1INCHUSDT.PS","d":[]},{"s":"MEXC:BOBAUSDT","d":[]},{"s":"HITBTC:OMGBTC","d":[]},{"s":"QUICKSWAP:REVVASTRAFER_6FE68F.USD","d":[]},{"s":"UNISWAP:FUNDEDWETH_D57F28.USD","d":[]},{"s":"BITHUMB:ETHKRW","d":[]},{"s":"PIONEX:CHRUSDT.P","d":[]},{"s":"BITGET:COMPUSDT.P","d":[]},{"s":"PANGOLIN:DAIWAVAX_17A2E8.USD","d":[]},{"s":"UNISWAP:KITTYWETH_969AF8.USD","d":[]},{"s":"UNISWAP:TERRAFORMWETH_2823F9.USD","d":[]},{"s":"MEXC:SIMPSONUSDT","d":[]},{"s":"UNISWAP3ETH:BETHWETH","d":[]},{"s":"UNISWAP:KEKEWETH_CA5BE5.USD","d":[]},{"s":"UNISWAP3ETH:USDCJPYC","d":[]},{"s":"UNISWAP3ARBITRUM:GRTUSDC_BEC22C.USD","d":[]},{"s":"BYBIT:DOTUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:MOOBIFIUSDC_DE9C23.USD","d":[]},{"s":"UNISWAP:BTSEWETH_966088.USD","d":[]},{"s":"BITFINEX:BTCCNHT","d":[]},{"s":"COINEX:COMAIUSDT","d":[]},{"s":"MEXC:BENDUSDT","d":[]},{"s":"QUICKSWAP:RISEWMATIC_F3C62D.USD","d":[]},{"s":"QUICKSWAP:WCROWMATIC_FD1687","d":[]},{"s":"UNISWAP:XIOWETH_E0CC5A","d":[]},{"s":"UNISWAP3ETH:ESSWETH","d":[]},{"s":"XEXCHANGE:OUROWEGLD","d":[]},{"s":"UNISWAP:BXBTWETH_9C0456.USD","d":[]},{"s":"UNISWAP:VIRALXWETH_E8AE1F.USD","d":[]},{"s":"UNISWAP:DARUMAUSDC_4D42FD","d":[]},{"s":"QUICKSWAP:RAYSWETH_8A2423","d":[]},{"s":"UNISWAP:WOXENUSDT_BAECA7","d":[]},{"s":"UNISWAP:CATSWETH_76C09E","d":[]},{"s":"MEXC:PUFFINUSDT","d":[]},{"s":"UNISWAP:BLOCKSWETH_DAC9B2","d":[]},{"s":"PANGOLIN:CATSWAVAX_A2BD7F.USD","d":[]},{"s":"UNISWAP3ETH:RIPDOGEWETH_DE4106.USD","d":[]},{"s":"UNISWAP:CDSWETH_0BE902.USD","d":[]},{"s":"UNISWAP:LISAWETH_24A50B.USD","d":[]},{"s":"UNISWAP:SENATEWETH_9572E4.USD","d":[]},{"s":"DELTA:APEUSDT.P","d":[]},{"s":"UNISWAP:DROPSWETH_9F8512","d":[]},{"s":"GATEIO:TOKOUSDT","d":[]},{"s":"QUICKSWAP:KITTYWMATIC_CA75C4.USD","d":[]},{"s":"PIONEX:RLCUSDT.P","d":[]},{"s":"KRAKEN:RENEUR","d":[]},{"s":"HITBTC:RLCBTC","d":[]},{"s":"COINEX:JOEUSDT","d":[]},{"s":"PIONEX:ADAETH.P","d":[]},{"s":"UNISWAP3ETH:SKRIMPWETH_FEB20F.USD","d":[]},{"s":"UNISWAP3POLYGON:UNBUSDC_E124A8.USD","d":[]},{"s":"KRAKEN:NYMBTC","d":[]},{"s":"UNISWAP3ETH:OSWETH","d":[]},{"s":"HITBTC:XDNUSDT","d":[]},{"s":"BINGX:TAOUSDT.PS","d":[]},{"s":"BYBIT:CWARUSDT","d":[]},{"s":"GATEIO:BAKEDUSDT","d":[]},{"s":"MEXC:SENSOETH","d":[]},{"s":"GATEIO:REVOLANDUSDT","d":[]},{"s":"SPOOKYSWAP:FONTWFTM_1C8D76.USD","d":[]},{"s":"HITBTC:TRXUSDT","d":[]},{"s":"COINBASE:MNDEUSD","d":[]},{"s":"UNISWAP3ARBITRUM:PLSWETH_ADFAD8.USD","d":[]},{"s":"BYBIT:BTCUSD.P","d":[]},{"s":"UNISWAP3ETH:RPLUSDC_417BAD.USD","d":[]},{"s":"UNISWAP:DENAWETH_E4FABD.USD","d":[]},{"s":"UNISWAP:CHRPWETH_124030","d":[]},{"s":"BITMEX:XBTUSDJ2024","d":[]},{"s":"GATEIO:ZKFUSDT","d":[]},{"s":"GATEIO:OPUSDT.3S","d":[]},{"s":"UNISWAP:SEEDWETH_95D9E8.USD","d":[]},{"s":"UNISWAP3ETH:SLNWETH_BA33A5.USD","d":[]},{"s":"UNISWAP3ETH:AVAWETH_41E570.USD","d":[]},{"s":"UNISWAP:DDDDWETH_B2C1F8.USD","d":[]},{"s":"BITSTAMP:MKREUR","d":[]},{"s":"BINANCE:APTETH","d":[]},{"s":"UNISWAP:KTNWETH_92DBB7.USD","d":[]},{"s":"BITGET:NFTUSDT","d":[]},{"s":"KRAKEN:ATOMBTC","d":[]},{"s":"KRAKEN:XLMGBP","d":[]},{"s":"UNISWAP3ETH:ARBUSDC","d":[]},{"s":"KRAKEN:STRKUSD","d":[]},{"s":"GEMINI:BNBGUSD.P","d":[]},{"s":"GATEIO:BDPUSDT","d":[]},{"s":"BINGX:GMTUSDT.P","d":[]},{"s":"BISWAP:OPTCMUSDT_950BF9","d":[]},{"s":"BYBIT:RNDRUSDT","d":[]},{"s":"UNISWAP3ETH:SCOMPWETH","d":[]},{"s":"UNISWAP:DONGOWETH_D1E3E4","d":[]},{"s":"COINBASE:VTHOUSD","d":[]},{"s":"BLOFIN:AAVEUSDT.P","d":[]},{"s":"KRAKEN:KEEPUSD","d":[]},{"s":"UNISWAP3ETH:ROOTWETH_943852.USD","d":[]},{"s":"UNISWAP3ETH:COTIWETH","d":[]},{"s":"GATEIO:ORAIUSDT","d":[]},{"s":"BITGET:ZRXUSDT","d":[]},{"s":"UNISWAP:SEERWETH_F5C678.USD","d":[]},{"s":"UNISWAP3POLYGON:FTXXXWMATIC_8E0190.USD","d":[]},{"s":"BINGX:ENSUSDT.PS","d":[]},{"s":"MEXC:ARKMUSDT","d":[]},{"s":"PANGOLIN:USTWAVAX_DEABB6.USD","d":[]},{"s":"KRAKEN:BTCCHF","d":[]},{"s":"BITMEX:ADABTCM2024","d":[]},{"s":"BITHUMB:UOSKRW","d":[]},{"s":"GATEIO:AIDOGEUSDT","d":[]},{"s":"KRAKEN:TUSD","d":[]},{"s":"UNISWAP3ARBITRUM:XAIWETH_30AB5D.USD","d":[]},{"s":"MEXC:FITUSDT","d":[]},{"s":"MEXC:FORAUSDT","d":[]},{"s":"WHITEBIT:TRBUSDT","d":[]},{"s":"HITBTC:XEMETH","d":[]},{"s":"UNISWAP:GOOGLEWETH_2EB918","d":[]},{"s":"BITSTAMP:SUSHIUSD","d":[]},{"s":"PANGOLIN:PNGUSDTE_1FFB6F","d":[]},{"s":"COINEX:ZETAUSDT","d":[]},{"s":"BITRUE:CELOUSDC","d":[]},{"s":"MEXC:SNEKUSDT","d":[]},{"s":"BYBIT:MXMUSDT","d":[]},{"s":"BINANCE:LDOTRY","d":[]},{"s":"UNISWAP:Z3DAI_856FF6","d":[]},{"s":"UNISWAP:ZAPEXWETH_A3DEC6","d":[]},{"s":"GATEIO:WBTUSDT","d":[]},{"s":"UNISWAP3ETH:MAPWETH_D43E49.USD","d":[]},{"s":"UNISWAP3ETH:MACKEWETH","d":[]},{"s":"MEXC:FANDUSDT","d":[]},{"s":"KRAKEN:JUNOEUR","d":[]},{"s":"UNISWAP3ETH:WETHBTRFLY","d":[]},{"s":"UNISWAP3POLYGON:MOMUSDT_A708D4.USD","d":[]},{"s":"UNISWAP:ITPWETH_4DB2C7.USD","d":[]},{"s":"GATEIO:SUKUUSDT","d":[]},{"s":"GATEIO:ASKUSDT","d":[]},{"s":"PIONEX:ARPAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHHUNT","d":[]},{"s":"BINANCE:HFTBTC","d":[]},{"s":"BINANCEUS:XRPUSDT","d":[]},{"s":"POLONIEX:APX1USDT","d":[]},{"s":"PHEMEX:CELRUSDT.P","d":[]},{"s":"UNISWAP3ETH:BCTWETH","d":[]},{"s":"UNISWAP:DIONEWETH_EEDFF7","d":[]},{"s":"HITBTC:RBISETH","d":[]},{"s":"COINEX:CLYUSDT","d":[]},{"s":"UNISWAP3ETH:USDCHEART","d":[]},{"s":"GATEIO:ARVUSDT","d":[]},{"s":"KRAKEN:CVCUSD","d":[]},{"s":"UNISWAP:BRETTWETH_C68FA2.USD","d":[]},{"s":"BITGET:X2Y2USDT","d":[]},{"s":"UNISWAP:LORDSWETH_8E35A6.USD","d":[]},{"s":"OKX:GALAUSDT.P","d":[]},{"s":"UNISWAP:SANIWETH_394CB9","d":[]},{"s":"UNISWAP:CLSUSDC_D75D1B","d":[]},{"s":"COINBASE:PONDUSD","d":[]},{"s":"UNISWAP3ETH:USDCPCH","d":[]},{"s":"COINBASE:FIDAUSD","d":[]},{"s":"BLOFIN:HIFIUSDT.P","d":[]},{"s":"COINEX:NEARUSDC","d":[]},{"s":"UNISWAP:ERICWETH_9755B8.USD","d":[]},{"s":"QUICKSWAP:POLYDOGEQUICK_BEDEE6.USD","d":[]},{"s":"HITBTC:MAIDUSD","d":[]},{"s":"COINEX:XRPUSDT","d":[]},{"s":"BINANCEUS:MATICETH","d":[]},{"s":"WHITEBIT:APTUSDT","d":[]},{"s":"BINANCE:ZILTRY","d":[]},{"s":"BITGET:PEPEUSDT","d":[]},{"s":"UNISWAP:ELON20WETH_5E4D41.USD","d":[]},{"s":"UNISWAP:LOOTWETH_30FEEE","d":[]},{"s":"BITGET:GRVUSDT","d":[]},{"s":"UNISWAP:SAITAMAWETH_E3D355","d":[]},{"s":"BINGX:MANAUSDT.P","d":[]},{"s":"TRADERJOE:COQBOXWAVAX_1CAF1E","d":[]},{"s":"SPOOKYSWAP:USDFIUSDC_53F584","d":[]},{"s":"UNISWAP3ETH:RSETHWETH","d":[]},{"s":"UNISWAP:BONEXWETH_EFE764.USD","d":[]},{"s":"GATEIO:PRXUSDT","d":[]},{"s":"UNISWAP:0NEFUND_5996C0","d":[]},{"s":"MEXC:WECUSDT","d":[]},{"s":"PHEMEX:SYNUSDT","d":[]},{"s":"UNISWAP:M87WETH_230D77","d":[]},{"s":"QUICKSWAP:BABYQUICKWMATIC_90EC67","d":[]},{"s":"QUICKSWAP:MMUSDC_5E06E1","d":[]},{"s":"UNISWAP:TRUCKWETH_45F11F.USD","d":[]},{"s":"GATEIO:SLPUSDT","d":[]},{"s":"GATEIO:KARATEUSDT","d":[]},{"s":"UNISWAP:VLXWETH_ECC558","d":[]},{"s":"SPOOKYSWAP:YFIETH_0845C0.USD","d":[]},{"s":"UNISWAP3ETH:USDTJUSTICE","d":[]},{"s":"UNISWAP:TOADWETH_9F6FAC.USD","d":[]},{"s":"PHEMEX:LINKUSDT.P","d":[]},{"s":"COINBASE:UNIUSD","d":[]},{"s":"UNISWAP:HILOUSDC_659E36","d":[]},{"s":"UNISWAP3OPTIMISM:TBTCUSDC_2CE49F.USD","d":[]},{"s":"UNISWAP3ETH:WETHXYXYX","d":[]},{"s":"UNISWAP:MSTRWETH_6D9350","d":[]},{"s":"GATEIO:OKBUSDT","d":[]},{"s":"SPOOKYSWAP:DANTEUSDC_D1AD20","d":[]},{"s":"UNISWAP3ETH:NFTYWETH_DB8188.USD","d":[]},{"s":"UNISWAP:COLRWETH_A71580","d":[]},{"s":"POLONIEX:IMGNAIUSDT","d":[]},{"s":"UNISWAP3ETH:WPLSUSDC","d":[]},{"s":"BYBIT:EVERUSDT","d":[]},{"s":"MEXC:LOCKUSDT","d":[]},{"s":"UNISWAP3ETH:USDCCRV","d":[]},{"s":"EXMO:LTCEUR","d":[]},{"s":"UNISWAP:LEGXWETH_5091D1.USD","d":[]},{"s":"PIONEX:JUPUSDT.P","d":[]},{"s":"UNISWAP3ETH:JPYCWETH_1BC8F4.USD","d":[]},{"s":"HITBTC:EPXUSDT","d":[]},{"s":"QUICKSWAP:VSQDAI_D95331","d":[]},{"s":"MEXC:BICOUSDT","d":[]},{"s":"QUICKSWAP:CYCWMATIC_6EA885.USD","d":[]},{"s":"POLONIEX:MOROSUSDT","d":[]},{"s":"COINEX:FTTUSDT","d":[]},{"s":"SPOOKYSWAP:TSHARETOMB_44CA5E.USD","d":[]},{"s":"KRAKEN:MINAUSD.PM","d":[]},{"s":"BITFINEX:FCLUST","d":[]},{"s":"QUICKSWAP:MTAWMATIC_CD6A6D","d":[]},{"s":"BITHUMB:CSPRKRW","d":[]},{"s":"HITBTC:EGLDUSDC","d":[]},{"s":"UNISWAP:PERLWETH_9B8D28.USD","d":[]},{"s":"OKX:BIGTIMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:BEANZWETH_FA9449.USD","d":[]},{"s":"BINANCE:DEXEUSDT","d":[]},{"s":"UNISWAP:NORMIEWETH_1DB24C.USD","d":[]},{"s":"BINANCE:USDTRON","d":[]},{"s":"UNISWAP:NAAIWETH_255608","d":[]},{"s":"HITBTC:CHZUSD","d":[]},{"s":"TRADERJOE:TOOTHLESSWAVAX_AFBAF3","d":[]},{"s":"TRADERJOE:VPNDWAVAX_4CD20F.USD","d":[]},{"s":"UNISWAP3ETH:AEVOWETH_D1A473.USD","d":[]},{"s":"MEXC:USTCUSDT.P","d":[]},{"s":"UPBIT:STPTKRW","d":[]},{"s":"UNISWAP:SDAOWETH_424485","d":[]},{"s":"BYBIT:WAVESUSDT","d":[]},{"s":"UNISWAP:ZEUMUSDT_0DFE1E","d":[]},{"s":"BINGX:UNIUSDT.PS","d":[]},{"s":"UNISWAP3ETH:SETHWETH","d":[]},{"s":"UNISWAP:AIMAGEWETH_2917F0","d":[]},{"s":"UNISWAP3ETH:APEWETH","d":[]},{"s":"COINEX:SHIBUSDC","d":[]},{"s":"BITFINEX:DAIUSD","d":[]},{"s":"BINANCE:TRXTRY","d":[]},{"s":"UNISWAP3ETH:LINKUNI","d":[]},{"s":"BYBIT:BELUSDT","d":[]},{"s":"BYBIT:SWEATUSDT","d":[]},{"s":"GATEIO:VTSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUNIFI","d":[]},{"s":"BITHUMB:LDOKRW","d":[]},{"s":"UNISWAP:DUELWETH_757344.USD","d":[]},{"s":"MEXC:ZKGAPUSDT","d":[]},{"s":"UNISWAP:WOLFWETH_60E5D1","d":[]},{"s":"UNISWAP3ETH:UNIFIWETH","d":[]},{"s":"UNISWAP:SHUBWETH_A54C1E","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDC_BCE006.USD","d":[]},{"s":"UNISWAP:HOSWETH_71B4CD","d":[]},{"s":"COINBASE:ENSUSD","d":[]},{"s":"BINANCE:USTCTRY","d":[]},{"s":"GATEIO:KPADUSDT","d":[]},{"s":"ZOOMEX:MTLUSDT.P","d":[]},{"s":"BYBIT:LPTUSDT.P","d":[]},{"s":"PHEMEX:XAIUSDT","d":[]},{"s":"COINBASE:BIGTIMEUSD","d":[]},{"s":"UNISWAP:UWONWETH_56DC58","d":[]},{"s":"UNISWAP3ETH:ORBKWETH","d":[]},{"s":"KRAKEN:AVAXEUR","d":[]},{"s":"UNISWAP3POLYGON:VESTWETH_4DA97B.USD","d":[]},{"s":"QUICKSWAP:VERIUSDC_F1AC4A","d":[]},{"s":"UNISWAP:SHIELDWETH_8C4071.USD","d":[]},{"s":"UNISWAP3ETH:WETHXRGB","d":[]},{"s":"GEMINI:BATETH","d":[]},{"s":"POLONIEX:MOBYUSDT","d":[]},{"s":"UNISWAP3ETH:GETHWETH_0CE2F0.USD","d":[]},{"s":"MEXC:FANCUSDT","d":[]},{"s":"MEXC:KCSUSDT","d":[]},{"s":"BITGET:SNTUSDT","d":[]},{"s":"UNISWAP:JIMWETH_E34225","d":[]},{"s":"COINEX:XRPUSDC","d":[]},{"s":"TRADERJOE:AGFWAVAX_B92DFF.USD","d":[]},{"s":"UNISWAP3POLYGON:GNUSWETH_45126B.USD","d":[]},{"s":"GATEIO:REDUSDT","d":[]},{"s":"BINANCEUS:AVAXBTC","d":[]},{"s":"MEXC:DEGOUSDT","d":[]},{"s":"MEXC:ETHUSDT","d":[]},{"s":"MEXC:IRONUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHIB","d":[]},{"s":"BITFINEX:GNOBTC","d":[]},{"s":"KRAKEN:ANTETH","d":[]},{"s":"MEXC:PUSHUSDT","d":[]},{"s":"BINANCE:MLNBTC","d":[]},{"s":"UNISWAP:MERLINWETH_E75D23","d":[]},{"s":"UNISWAP:MBLOCKWETH_6447BE.USD","d":[]},{"s":"BITMEX:XBTUSDM2024","d":[]},{"s":"MEXC:DOCUSDT","d":[]},{"s":"HITBTC:VRABTC","d":[]},{"s":"GATEIO:VATRENIUSDT","d":[]},{"s":"MEXC:NADAUSDT","d":[]},{"s":"BYBIT:TRVLUSDT","d":[]},{"s":"WOONETWORK:MUBIUSDT","d":[]},{"s":"UNISWAP:WBUYWETH_B5D948","d":[]},{"s":"GATEIO:REALUSDT","d":[]},{"s":"UNISWAP:MNTWETH_E04B5A.USD","d":[]},{"s":"UNISWAP:SHIB2WETH_224796","d":[]},{"s":"UNISWAP3POLYGON:OEPLWBTC_C13EEF.USD","d":[]},{"s":"TRADERJOE:FLDWAVAX_F1840B.USD","d":[]},{"s":"BYBIT:BLURUSDT.P","d":[]},{"s":"UNISWAP:FXSWETH_ECBA96.USD","d":[]},{"s":"UNISWAP3ETH:WBAIWETH","d":[]},{"s":"POLONIEX:TYTUSDT","d":[]},{"s":"POLONIEX:LTCUSDD","d":[]},{"s":"UNISWAP:TIGGERWETH_9AC29A","d":[]},{"s":"UNISWAP3ETH:VXVUSDT","d":[]},{"s":"MEXC:DOGE2USDT","d":[]},{"s":"BITMEX:AGIUSDT.P","d":[]},{"s":"UNISWAP:NEXOWETH_2615B8","d":[]},{"s":"UNISWAP:WIKWETH_2BD77C","d":[]},{"s":"UNISWAP:FANCUSDC_FBE4A6","d":[]},{"s":"PHEMEX:YFIUSDT","d":[]},{"s":"BINANCE:XLMUSD.P","d":[]},{"s":"BYBIT:ZTXUSDT","d":[]},{"s":"BINANCE:FETUSDC","d":[]},{"s":"COINEX:OLTBTC","d":[]},{"s":"KRAKEN:ETCEUR","d":[]},{"s":"SPOOKYSWAP:AXLETHAXLUSDC_613008","d":[]},{"s":"UNISWAP:RNDRWETH_C0A6BB","d":[]},{"s":"MEXC:BABYGROKUSDT","d":[]},{"s":"HITBTC:USDTTUSD","d":[]},{"s":"HITBTC:CAKEUSDT","d":[]},{"s":"MEXC:ALPHAUSDT.P","d":[]},{"s":"PANGOLIN:RACEXWAVAX_B57C80.USD","d":[]},{"s":"COINEX:DESOBTC","d":[]},{"s":"BLOFIN:SANDUSDT.P","d":[]},{"s":"BITHUMB:WEMIXKRW","d":[]},{"s":"MEXC:ZAIUSDT","d":[]},{"s":"UNISWAP:TKNWETH_050397","d":[]},{"s":"QUICKSWAP:DIGIWETH_F95FED.USD","d":[]},{"s":"COINBASE:REQUSD","d":[]},{"s":"QUICKSWAP:MSHEESHAUSDT_F64D2B","d":[]},{"s":"COINEX:FILUSDT","d":[]},{"s":"KRAKEN:ADAGBP","d":[]},{"s":"UNISWAP3ETH:WETHTOKENWATCH","d":[]},{"s":"UNISWAP3ETH:USDCALT","d":[]},{"s":"COINEX:PICAUSDT","d":[]},{"s":"BITGET:SONNEUSDT","d":[]},{"s":"QUICKSWAP:MCO2KLIMA_64A3B8.USD","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICWETH_7E7FB3.USD","d":[]},{"s":"UNISWAP3ETH:WETHSATOSHI","d":[]},{"s":"HITBTC:STXUSD","d":[]},{"s":"MEXC:ZKPEPEUSDT","d":[]},{"s":"PIONEX:AXSUSDT.P","d":[]},{"s":"BYBIT:TOKENUSDT.P","d":[]},{"s":"UNISWAP:ORBNWETH_CFB162","d":[]},{"s":"HITBTC:GNSUSDT","d":[]},{"s":"PHEMEX:ONTUSDT.P","d":[]},{"s":"OKX:OMUSDT.P","d":[]},{"s":"UNISWAP3ETH:SPXWETH","d":[]},{"s":"BITGET:XLMUSDT.P","d":[]},{"s":"GATEIO:TYPEUSDT","d":[]},{"s":"KRAKEN:ENJEUR","d":[]},{"s":"GATEIO:WSGUSDT","d":[]},{"s":"UNISWAP:CGVWETH_EDEE54.USD","d":[]},{"s":"UNISWAP3POLYGON:SWAVEWMATIC_EF2754.USD","d":[]},{"s":"TRADERJOE:ATECHWAVAX_4BC1BB.USD","d":[]},{"s":"BINANCEUS:ALPINEUSDT","d":[]},{"s":"UNISWAP3ETH:DREPUSDT","d":[]},{"s":"BYBIT:AXSUSDT","d":[]},{"s":"UNISWAP:PTKNWETH_B053B0","d":[]},{"s":"UNISWAP3ETH:WETHTRG","d":[]},{"s":"UNISWAP3ETH:EMAIDUSDC_355938.USD","d":[]},{"s":"BYBIT:NTRNUSDT.P","d":[]},{"s":"BYBIT:APEUSDT.2S","d":[]},{"s":"UNISWAP3ETH:MDXWETH","d":[]},{"s":"UNISWAP:TEQWETH_EBCD8C","d":[]},{"s":"COINEX:KAVAUSDT","d":[]},{"s":"BINANCE:DENTETH","d":[]},{"s":"QUICKSWAP:NEARWMATIC_35140E.USD","d":[]},{"s":"GATEIO:CREAMUSDT","d":[]},{"s":"BLOFIN:DUSKUSDT.P","d":[]},{"s":"PHEMEX:REEFUSDT.P","d":[]},{"s":"QUICKSWAP:SPORTTOWER_F84EAB","d":[]},{"s":"MEXC:VELOUSDT.P","d":[]},{"s":"UNISWAP3ETH:ZENWETH","d":[]},{"s":"BINANCE:ARBTUSD","d":[]},{"s":"UNISWAP3ETH:SYNWETH","d":[]},{"s":"UNISWAP:RICEWETH_4581CE.USD","d":[]},{"s":"MEXC:PUBLXUSDT","d":[]},{"s":"ZOOMEX:BEAMUSDT.P","d":[]},{"s":"XEXCHANGE:CUMBUSDC","d":[]},{"s":"BINANCE:ALTFDUSD","d":[]},{"s":"UNISWAP3ETH:WETHNATI","d":[]},{"s":"MEXC:TPTUSDT","d":[]},{"s":"BITGET:RAYUSDT","d":[]},{"s":"BYBIT:ICXUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ASCNWETH_121A4E.USD","d":[]},{"s":"BYBIT:WLDUSDC","d":[]},{"s":"UNISWAP:LMWRWETH_03296F","d":[]},{"s":"GATEIO:STOREUSDT","d":[]},{"s":"UNISWAP:SEELEUSDT_6BDD82","d":[]},{"s":"COINEX:FLUXUSDT","d":[]},{"s":"COINEX:ARUSDT","d":[]},{"s":"MEXC:DCPUSDT","d":[]},{"s":"PHEMEX:GRTUSDT.P","d":[]},{"s":"BLOFIN:STEEMUSDT.P","d":[]},{"s":"BITSTAMP:EUROCUSDC","d":[]},{"s":"TRADERJOE:WXGEMWAVAX_114EEA.USD","d":[]},{"s":"QUICKSWAP:MSCMSU_71EBEA","d":[]},{"s":"UNISWAP3ETH:USDTARBUZ","d":[]},{"s":"UNISWAP:QWETH_8B5778","d":[]},{"s":"COINEX:DEROBTC","d":[]},{"s":"GATEIO:EGGUSDT","d":[]},{"s":"WHITEBIT:QNTUSDT","d":[]},{"s":"UNISWAP:DEGENWETH_E0FE04","d":[]},{"s":"GATEIO:RNDRUSDT.3S","d":[]},{"s":"COINEX:MMSSUSDT","d":[]},{"s":"COINEX:MYTHUSDT","d":[]},{"s":"UNISWAP:LENNYFACEWETH_4B82E8","d":[]},{"s":"UNISWAP3ETH:TRDMWETH","d":[]},{"s":"UNISWAP:HAVOCWETH_044F4C","d":[]},{"s":"BLOFIN:FETUSDT.P","d":[]},{"s":"UNISWAP:GTA6WETH_9B909D.USD","d":[]},{"s":"GATEIO:MLKUSDT","d":[]},{"s":"BYBIT:1000FLOKIUSDT.P","d":[]},{"s":"SPOOKYSWAP:CLEVERUSDC_0643C7","d":[]},{"s":"UNISWAP:PAPEPOHM_435626","d":[]},{"s":"PIONEX:GTCUSDT.P","d":[]},{"s":"UNISWAP3ETH:DOGWETH_7731CA.USD","d":[]},{"s":"UNISWAP3ETH:USDCBSKT","d":[]},{"s":"COINBASE:FOXUSD","d":[]},{"s":"BYBIT:BICOUSDT.P","d":[]},{"s":"TRADERJOE:HONWAVAX_DB87BA.USD","d":[]},{"s":"UNISWAP:PLDWETH_CB397F","d":[]},{"s":"PHEMEX:ALICEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHTBTC","d":[]},{"s":"GATEIO:CUDOSUSDT","d":[]},{"s":"UNISWAP:WARPEDWETH_BF8887","d":[]},{"s":"BITGET:LITUSDT.P","d":[]},{"s":"POLONIEX:XENUSDT","d":[]},{"s":"UNISWAP3ETH:WETHEGGX","d":[]},{"s":"KRAKEN:BNCEUR","d":[]},{"s":"TRADERJOE:MIMWAVAX_781655","d":[]},{"s":"PANGOLIN:MSTRWAVAX_3BD58A","d":[]},{"s":"MEXC:REEFUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUDT","d":[]},{"s":"WHITEBIT:WBTUAH","d":[]},{"s":"MEXC:TTMUSDT","d":[]},{"s":"POLONIEX:TRUUSDT","d":[]},{"s":"GATEIO:CAKEUSDT.3S","d":[]},{"s":"BITRUE:SKLUSDT","d":[]},{"s":"UNISWAP3ETH:BBTCWETH_975B23.USD","d":[]},{"s":"UNISWAP:SNEKEWETH_A42386.USD","d":[]},{"s":"POLONIEX:FRONTUSDT","d":[]},{"s":"PIONEX:STEEMUSDT.P","d":[]},{"s":"UNISWAP:SONICWETH_26CC6A.USD","d":[]},{"s":"BITMEX:ETHUSD.P","d":[]},{"s":"BINANCE:NFPFDUSD","d":[]},{"s":"UNISWAP3ETH:XCMUSDC","d":[]},{"s":"GATEIO:VEXTUSDT","d":[]},{"s":"QUICKSWAP:WOLFWMATIC_652A7B.USD","d":[]},{"s":"SPOOKYSWAP:USDTUSDC_C109A3.USD","d":[]},{"s":"BITGET:WAVESUSDT","d":[]},{"s":"KRAKEN:TIAEUR","d":[]},{"s":"GATEIO:SEIUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHEARN","d":[]},{"s":"BISWAP:XVSWBNB_753C73.USD","d":[]},{"s":"BYBIT:PIPUSDT","d":[]},{"s":"BITFINEX:APEUST.P","d":[]},{"s":"GATEIO:EURTUSDT","d":[]},{"s":"ZOOMEX:STXUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:SPAWETH_C94560.USD","d":[]},{"s":"TRADERJOE:FTOMBWAVAX_2C2123.USD","d":[]},{"s":"MEXC:ALEPHUSDT","d":[]},{"s":"HITBTC:MLNETH","d":[]},{"s":"WOONETWORK:FEDCUTUSDT","d":[]},{"s":"UNISWAP:TRNDWETH_427A59","d":[]},{"s":"UNISWAP3ETH:FRAXDAI_97E7D5.USD","d":[]},{"s":"UNISWAP3OPTIMISM:MMYWETH_5D2D9D.USD","d":[]},{"s":"UNISWAP3ETH:RFDWETH","d":[]},{"s":"BYBIT:RVNUSDT","d":[]},{"s":"BITFINEX:DVFUSD","d":[]},{"s":"COINBASE:XTZBTC","d":[]},{"s":"UNISWAP3ETH:WETHPLSX","d":[]},{"s":"UNISWAP:GTRWETH_287F4D","d":[]},{"s":"HITBTC:TTCCUSD","d":[]},{"s":"COINEX:CEEKUSDT","d":[]},{"s":"UNISWAP3ETH:EXRDWETH_A295C1.USD","d":[]},{"s":"UPBIT:XTZKRW","d":[]},{"s":"BYBIT:GTCUSDT.P","d":[]},{"s":"UNISWAP:MEMEAIWETH_2FA947.USD","d":[]},{"s":"UNISWAP3ETH:BOBUSDC","d":[]},{"s":"COINEX:WHALESUSDT","d":[]},{"s":"MEXC:IRONHEROUSDT","d":[]},{"s":"GATEIO:ONTUSDT.3L","d":[]},{"s":"BITFINEX:AZEROUST","d":[]},{"s":"UNISWAP:PEPEWETH_D6930B.USD","d":[]},{"s":"KRAKEN:FARMEUR","d":[]},{"s":"POLONIEX:JSTUSDD","d":[]},{"s":"UNISWAP:WORLDWETH_D159AF.USD","d":[]},{"s":"KRAKEN:WBTCUSD","d":[]},{"s":"BINANCE:AGLDBTC","d":[]},{"s":"UNISWAP:SAMBOWETH_B59041","d":[]},{"s":"KRAKEN:STXUSD.PM","d":[]},{"s":"HITBTC:XUCUSDT","d":[]},{"s":"UNISWAP3POLYGON:UNIWETH_39CD97.USD","d":[]},{"s":"MEXC:GAMEUSDT","d":[]},{"s":"UNISWAP:XAMPWETH_6C35C4","d":[]},{"s":"TRADERJOE:TRACTORWAVAX_601E0F.USD","d":[]},{"s":"UNISWAP:DGENWETH_B918C7","d":[]},{"s":"BITSTAMP:GODSUSD","d":[]},{"s":"BYBIT:ZKFUSDT.P","d":[]},{"s":"GEMINI:PEPEGUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHLIF3","d":[]},{"s":"GATEIO:TOKENUSDT","d":[]},{"s":"UNISWAP3ETH:SDEXWTK_3B9AA2.USD","d":[]},{"s":"MEXC:DCKUSDT","d":[]},{"s":"XEXCHANGE:AIXWEGLD","d":[]},{"s":"WHITEBIT:MATICUSD","d":[]},{"s":"GATEIO:NAKAUSDT","d":[]},{"s":"OKX:LUNCUSDT.P","d":[]},{"s":"GATEIO:CLOREUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBBW","d":[]},{"s":"UNISWAP3ETH:ZEROUSDT_AF2E0A.USD","d":[]},{"s":"PHEMEX:ZETAUSDT","d":[]},{"s":"SPOOKYSWAP:2OMB2SHARES_D9B5F0","d":[]},{"s":"PANGOLIN:PEFIPNG_1BB554.USD","d":[]},{"s":"UNISWAP3OPTIMISM:HAIWETH_146B02.USD","d":[]},{"s":"SPOOKYSWAP:MUNNYWFTM_1A0119","d":[]},{"s":"UNISWAP3ETH:WBTCWETH_CBCDF9.USD","d":[]},{"s":"QUICKSWAP:ICEWETH_8D22F9.USD","d":[]},{"s":"UNISWAP:DDDDWETH_B2C1F8","d":[]},{"s":"BYBIT:XEMUSDT","d":[]},{"s":"MEXC:RMVUSDT","d":[]},{"s":"UNISWAP3ETH:YFIWETH_2E8DAF.USD","d":[]},{"s":"BYBIT:LOOMUSDT.P","d":[]},{"s":"UNISWAP:BLENDWETH_BB02C1.USD","d":[]},{"s":"UNISWAP:BOOMWETH_592E19.USD","d":[]},{"s":"COINEX:NMCBTC","d":[]},{"s":"UNISWAP:CATAIWETH_F40B22","d":[]},{"s":"BINANCE:API3BTC","d":[]},{"s":"MEXC:SAMOUSDT","d":[]},{"s":"UNISWAP3POLYGON:KROMWMATIC_BA589B.USD","d":[]},{"s":"GATEIO:SHIUSDT","d":[]},{"s":"BYBIT:SHRAPUSDT","d":[]},{"s":"BITFINEX:TLOSBTC","d":[]},{"s":"MEXC:BETAUSDT","d":[]},{"s":"BITHUMB:YGGKRW","d":[]},{"s":"ZOOMEX:GFTUSDT.P","d":[]},{"s":"BYBIT:MATICUSDT.2S","d":[]},{"s":"BLOFIN:LITUSDT.P","d":[]},{"s":"GATEIO:NBLUUSDT","d":[]},{"s":"HITBTC:SNTBTC","d":[]},{"s":"UNISWAP:ZIONWETH_073577.USD","d":[]},{"s":"MEXC:DT2024USDT","d":[]},{"s":"MEXC:ATIDUSDT","d":[]},{"s":"HITBTC:ADAHIT","d":[]},{"s":"UNISWAP3ARBITRUM:EQUWETH_AFF6B5.USD","d":[]},{"s":"UNISWAP:CIAWETH_5FC109.USD","d":[]},{"s":"UNISWAP:CRBNWETH_61122B.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCUSDC_394A9F.USD","d":[]},{"s":"BITRUE:FILUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSPONGE","d":[]},{"s":"MEXC:ARUSDT","d":[]},{"s":"ZOOMEX:ETCUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:AGCWMATIC_8837A6.USD","d":[]},{"s":"HITBTC:VRAUSD","d":[]},{"s":"BITRUE:DUSKUSDT","d":[]},{"s":"GATEIO:RVCUSDT","d":[]},{"s":"HITBTC:USGETH","d":[]},{"s":"COINEX:UNIUSDT","d":[]},{"s":"SPOOKYSWAP:VAMPWFTM_DB3C9C","d":[]},{"s":"COINEX:CHZUSDC","d":[]},{"s":"UNISWAP3ETH:AGLDWETH_5D752F.USD","d":[]},{"s":"BYBIT:VETUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRACWETH_ADD1B6.USD","d":[]},{"s":"BYBIT:OGUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:LDOUSDC_3D0ACD.USD","d":[]},{"s":"UNISWAP3POLYGON:RNDRWBTC_C2938E.USD","d":[]},{"s":"MEXC:SWEATUSDT.P","d":[]},{"s":"PIONEX:LUNCUSDT.P","d":[]},{"s":"COINEX:SCAUSDT","d":[]},{"s":"GATEIO:ICEUSDT","d":[]},{"s":"MEXC:RFDUSDT","d":[]},{"s":"BINANCEUS:KAVAUSDT","d":[]},{"s":"UNISWAP:CVWETH_F463A4.USD","d":[]},{"s":"UNISWAP:MOUSEWETH_024800","d":[]},{"s":"GATEIO:BMEXUSDT","d":[]},{"s":"KRAKEN:STEPUSD","d":[]},{"s":"TRADERJOE:SWIFTWAVAX_FFC7A0","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICWETH_59D72D.USD","d":[]},{"s":"COINBASE:ETHDAI","d":[]},{"s":"PHEMEX:RVNUSDT.P","d":[]},{"s":"ZOOMEX:ONEUSDT.P","d":[]},{"s":"UNISWAP:EDUWETH_F1DB9D","d":[]},{"s":"POLONIEX:VELOUSDT","d":[]},{"s":"COINBASE:LPTUSD","d":[]},{"s":"BITRUE:TRXBTR","d":[]},{"s":"GATEIO:HNSUSDT","d":[]},{"s":"QUICKSWAP:CRI3XWMATIC_AC36F0","d":[]},{"s":"UNISWAP:RBETWETH_7A47D6","d":[]},{"s":"BYBIT:VTHOUSDT.P","d":[]},{"s":"UNISWAP:WOMIWETH_B767C2.USD","d":[]},{"s":"PHEMEX:BNBUSDT.P","d":[]},{"s":"BTSE:BTCUSDM2024","d":[]},{"s":"BINANCE:SLPETH","d":[]},{"s":"ZOOMEX:HOOKUSDT.P","d":[]},{"s":"BITFINEX:TLOSUSD","d":[]},{"s":"UNISWAP:ROKOWETH_E0076D","d":[]},{"s":"UNISWAP3ETH:INSTWETH","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARMECHA","d":[]},{"s":"UNISWAP:RICKV2WETH_B1A438","d":[]},{"s":"HITBTC:LAMBUSD","d":[]},{"s":"OKX:BSVUSD.P","d":[]},{"s":"TRADERJOE:DLQWAVAX_074163","d":[]},{"s":"UNISWAP3ETH:LINKUSDT","d":[]},{"s":"UNISWAP:BUZZWETH_655B02","d":[]},{"s":"UNISWAP:X7102WETH_49C838.USD","d":[]},{"s":"GATEIO:ACENTUSDT","d":[]},{"s":"BINANCE:PHBBTC","d":[]},{"s":"BLOFIN:TLMUSDT.P","d":[]},{"s":"KRAKEN:GMTUSD","d":[]},{"s":"GATEIO:ISSPUSDT","d":[]},{"s":"MEXC:FAKEAIUSDT","d":[]},{"s":"MEXC:SCAUSDT.P","d":[]},{"s":"UNISWAP:DMTWETH_CC5F55","d":[]},{"s":"GATEIO:ATOZUSDT","d":[]},{"s":"BITRUE:SLPUSDC","d":[]},{"s":"UNISWAP3ETH:USDCLUSD","d":[]},{"s":"UNISWAP:XEDWETH_481EFD","d":[]},{"s":"HITBTC:DOVUSD","d":[]},{"s":"OKX:BANDUSDT.P","d":[]},{"s":"BINANCE:LINABTC","d":[]},{"s":"GATEIO:RAMUSDT","d":[]},{"s":"UNISWAP:BABYSTRKWETH_2D33EF.USD","d":[]},{"s":"COINEX:THLUSDT","d":[]},{"s":"EXMO:BTCGBP","d":[]},{"s":"UNISWAP3ETH:USDCXAI","d":[]},{"s":"PHEMEX:ADAUSDT","d":[]},{"s":"COINEX:XVSUSDT","d":[]},{"s":"UNISWAP3ETH:USDTDVF","d":[]},{"s":"UNISWAP3ETH:DINOWETH","d":[]},{"s":"UNISWAP:MESSIWETH_7754BA.USD","d":[]},{"s":"KRAKEN:BNTUSD","d":[]},{"s":"UNISWAP3ETH:USDCONEICHI","d":[]},{"s":"KRAKEN:LUNA2USD.PM","d":[]},{"s":"TRADERJOE:LINKEWAVAX_6F3A0C.USD","d":[]},{"s":"MEXC:POOLXUSDT","d":[]},{"s":"UNISWAP:STOSWETH_80D972.USD","d":[]},{"s":"MEXC:TYTUSDT","d":[]},{"s":"COINEX:ARBTC","d":[]},{"s":"UNISWAP3ETH:GPUWETH_D572D2.USD","d":[]},{"s":"GATEIO:SWAYUSDT","d":[]},{"s":"UNISWAP:YUANWETH_8BC907.USD","d":[]},{"s":"GATEIO:DZOOUSDT","d":[]},{"s":"SPOOKYSWAP:AXLUSDCBOO_564F85","d":[]},{"s":"SPOOKYSWAP:RARERUSDC_1FE1B2","d":[]},{"s":"UNISWAP3ETH:SDLLINK_51D102.USD","d":[]},{"s":"WOONETWORK:FTMUSDT","d":[]},{"s":"UNISWAP3POLYGON:GRTWMATIC_31C832.USD","d":[]},{"s":"UNISWAP:TAIL0NE_09B40A","d":[]},{"s":"TRADERJOE:BOOFIWAVAX_3FF33B","d":[]},{"s":"HITBTC:ENJUSD","d":[]},{"s":"UNISWAP3ETH:WETHHOFF","d":[]},{"s":"BINANCE:SOLUSDC","d":[]},{"s":"UNISWAP3ETH:WETHCHAI","d":[]},{"s":"QUICKSWAP:USDDUSDC_7EE7D0","d":[]},{"s":"BITGET:WNXMUSDT","d":[]},{"s":"UNISWAP:LUCKYSLPWETH_FD181F","d":[]},{"s":"HITBTC:ZYNUSDT","d":[]},{"s":"WHITEBIT:WOOUSDT","d":[]},{"s":"BINGX:XRPUSDT.PS","d":[]},{"s":"QUICKSWAP:PUNUSDC_EBAD59","d":[]},{"s":"DYDX:ETHUSD.P","d":[]},{"s":"ZOOMEX:SUIUSDT.P","d":[]},{"s":"COINEX:WAXPUSDT","d":[]},{"s":"BITGET:HFTUSDT","d":[]},{"s":"POLONIEX:DZHVUSDT","d":[]},{"s":"UNISWAP3ETH:WILDFIREWETH_C40EB3.USD","d":[]},{"s":"UNISWAP:GYOZAWETH_5A5562.USD","d":[]},{"s":"UNISWAP:FTWWETH_B2A497","d":[]},{"s":"GATEIO:HARDUSDT","d":[]},{"s":"DELTA:TRXUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTMANA","d":[]},{"s":"HITBTC:CLOUSD","d":[]},{"s":"COINEX:PONKEUSDT","d":[]},{"s":"UNISWAP:WOLFWETH_EBEA35.USD","d":[]},{"s":"UNISWAP:FOURWETH_D10182","d":[]},{"s":"GATEIO:AMBUSDT","d":[]},{"s":"UNISWAP:LOOTWETH_5D7BDE","d":[]},{"s":"UNISWAP:OPULUSDC_A5F0CF","d":[]},{"s":"UNISWAP3ETH:WETHFTM","d":[]},{"s":"POLONIEX:XEMBTC","d":[]},{"s":"QUICKSWAP:BANANAWETH_DEE9DC.USD","d":[]},{"s":"WOONETWORK:SUIUSDT","d":[]},{"s":"UNISWAP:MKONGWETH_DAB141.USD","d":[]},{"s":"BINANCE:AGIXBTC","d":[]},{"s":"BINANCE:BELUSDT","d":[]},{"s":"UNISWAP:METISWETH_D03DFF.USD","d":[]},{"s":"UNISWAP3ETH:USDTAUSD","d":[]},{"s":"BITGET:OGNUSDT","d":[]},{"s":"MEXC:BPCUSDT","d":[]},{"s":"BITRUE:OXTUSDT","d":[]},{"s":"BITGET:CHESSUSDT","d":[]},{"s":"MEXC:RWNUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:RETHWETH_AEFC1E.USD","d":[]},{"s":"BITRUE:TLMUSDT","d":[]},{"s":"TRADERJOE:BCASHWAVAX_AA8D62","d":[]},{"s":"BITGET:SINUSDT","d":[]},{"s":"BINANCE:FRONTTRY","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDC_79E424.USD","d":[]},{"s":"PANGOLIN:AAVEEWAVAX_5944F1.USD","d":[]},{"s":"TIMEX:BTCAUDT","d":[]},{"s":"UNISWAP:DEEPLWETH_5DF0C5.USD","d":[]},{"s":"BITMEX:BMEXUSDT.P","d":[]},{"s":"TRADERJOE:CATWAVAX_2D9A57","d":[]},{"s":"MEXC:KWENTAUSDT","d":[]},{"s":"UNISWAP3ETH:ICETHWETH_E5D028.USD","d":[]},{"s":"BITRUE:CHZUSDT","d":[]},{"s":"WHITEBIT:NEARUSDT.P","d":[]},{"s":"TRADERJOE:SLIMEWAVAX_15AB2D","d":[]},{"s":"POLONIEX:RIFUSDT","d":[]},{"s":"BINANCE:KLAYBTC","d":[]},{"s":"UNISWAP3POLYGON:WINTERWMATIC_FCC52F.USD","d":[]},{"s":"POLONIEX:AMPUSD","d":[]},{"s":"PIONEX:CHZUSDT.P","d":[]},{"s":"HITBTC:DATAUSDT","d":[]},{"s":"SPOOKYSWAP:PARUSDC_77ECD4","d":[]},{"s":"MEXC:TPYUSDT","d":[]},{"s":"MEXC:MMUIUSDT","d":[]},{"s":"BITRUE:RNDRUSDT","d":[]},{"s":"UNISWAP3ETH:DOLAUSDC_7C082B.USD","d":[]},{"s":"QUICKSWAP:GEOUSDT_68F36C","d":[]},{"s":"MEXC:KITTYUSDT","d":[]},{"s":"UNISWAP:UNDXWETH_16D30E","d":[]},{"s":"MEXC:ETVUSDT","d":[]},{"s":"BITFINEX:IOTUSD","d":[]},{"s":"UNISWAP:0X1WETH_5F3FA8.USD","d":[]},{"s":"BLOFIN:RUNEUSDT.P","d":[]},{"s":"BITHUMB:WNCGKRW","d":[]},{"s":"BITFINEX:TRXUST","d":[]},{"s":"UNISWAP:THINGWETH_6F1D9F.USD","d":[]},{"s":"MEXC:FONUSDT","d":[]},{"s":"MEXC:DSLAUSDT","d":[]},{"s":"QUICKSWAP:FODLWMATIC_2FC4DF","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_C69620.USD","d":[]},{"s":"UNISWAP3ETH:DVIWETH_3BAC56.USD","d":[]},{"s":"UNISWAP3ETH:SUSHIWETH","d":[]},{"s":"UNISWAP3ETH:JARVISWETH","d":[]},{"s":"UNISWAP:PIPIWETH_DBF8B0.USD","d":[]},{"s":"COINEX:OOKIUSDT","d":[]},{"s":"SPOOKYSWAP:WSPPFUSDT_25FDBF","d":[]},{"s":"BITHUMB:MATICKRW","d":[]},{"s":"BITGET:LITUSDT","d":[]},{"s":"UNISWAP:SOTUWETH_9E0F46","d":[]},{"s":"UNISWAP:LOVEWBTC_C149D5.USD","d":[]},{"s":"BITGET:CHRUSDT.P","d":[]},{"s":"BINANCE:CYBERTRY","d":[]},{"s":"GATEIO:KOKUSDT","d":[]},{"s":"MEXC:MMTUSDT","d":[]},{"s":"QUICKSWAP:JOCWMATIC_7C7372","d":[]},{"s":"UNISWAP:RAPWETH_0837CA","d":[]},{"s":"MEXC:PPCUSDT","d":[]},{"s":"HITBTC:SUBUSD","d":[]},{"s":"BINANCEUS:KDAUSDT","d":[]},{"s":"BITGET:BONEUSDT","d":[]},{"s":"COINBASE:ENJUSDT","d":[]},{"s":"POLONIEX:WSTUSDTUSDT","d":[]},{"s":"COINEX:POLISUSDT","d":[]},{"s":"MEXC:W3SUSDT","d":[]},{"s":"MEXC:DERPUSDT","d":[]},{"s":"TRADERJOE:TDWAVAX_3D289F.USD","d":[]},{"s":"UNISWAP3ETH:KINGWETH_2CF419.USD","d":[]},{"s":"HITBTC:IOTAUSD","d":[]},{"s":"UNISWAP:CYBAWETH_4DE01F.USD","d":[]},{"s":"UNISWAP:BABYTRUMPWETH_FD2553","d":[]},{"s":"UNISWAP3ETH:WETHOOFP","d":[]},{"s":"UNISWAP:MARKUSDC_2A0D53","d":[]},{"s":"UNISWAP:CPOOLUSDC_A1DB2F","d":[]},{"s":"UNISWAP:ESXWETH_BD4129.USD","d":[]},{"s":"UNISWAP3ETH:WETHBETH","d":[]},{"s":"COINBASE:API3USD","d":[]},{"s":"BINGX:IOTAUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:ENSWETH_F3724A.USD","d":[]},{"s":"WOONETWORK:XLMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTPRO","d":[]},{"s":"COINBASE:STRKUSD","d":[]},{"s":"POLONIEX:BADGERUSDT","d":[]},{"s":"UPBIT:POLYXKRW","d":[]},{"s":"GATEIO:FINEUSDT","d":[]},{"s":"BYBIT:AVAXUSDT.P","d":[]},{"s":"COINEX:XLMUSDC","d":[]},{"s":"UNISWAP:PTAOPOHM_60240B","d":[]},{"s":"UNISWAP:CTOWETH_709B80","d":[]},{"s":"UNISWAP3ETH:WETHJEFE","d":[]},{"s":"KRAKEN:LINKAUD","d":[]},{"s":"UNISWAP3ETH:PRTWETH","d":[]},{"s":"MEXC:VEILUSDT","d":[]},{"s":"GEMINI:ETHUSD","d":[]},{"s":"UNISWAP3ETH:USDCFEI","d":[]},{"s":"MEXC:MFUSDT","d":[]},{"s":"UNISWAP3POLYGON:DOGAUSDT_6D89B2.USD","d":[]},{"s":"COINBASE:AEROUSD","d":[]},{"s":"UNISWAP3ETH:HLXTITANX_2C83C5.USD","d":[]},{"s":"UNISWAP3ETH:USDTFAKT","d":[]},{"s":"BYBIT:LTCUSDT.P","d":[]},{"s":"COINEX:NKNUSDT","d":[]},{"s":"UNISWAP3ETH:ENZFWETH","d":[]},{"s":"GATEIO:MOBIUSDT","d":[]},{"s":"UNISWAP:EYEWETH_549658.USD","d":[]},{"s":"GATEIO:EHASHUSDT","d":[]},{"s":"SPOOKYSWAP:DMDUSDC_F62475","d":[]},{"s":"UNISWAP:ARCONAWETH_1A1FE6","d":[]},{"s":"UNISWAP3OPTIMISM:WETHSUSD_2E80D5.USD","d":[]},{"s":"UNISWAP:POWRWETH_3C442B.USD","d":[]},{"s":"BITFINEX:BANDUSD","d":[]},{"s":"UNISWAP:MATEWETH_357475.USD","d":[]},{"s":"UNISWAP:ODDZWETH_2A1A72.USD","d":[]},{"s":"MEXC:ORDUSDT","d":[]},{"s":"COINBASE:USDTUSD","d":[]},{"s":"BITGET:ONEUSDT.P","d":[]},{"s":"UNISWAP:ADVTWETH_906A30","d":[]},{"s":"UNISWAP:GFWETH_2F0B14","d":[]},{"s":"BITSTAMP:GBPUSD","d":[]},{"s":"PHEMEX:POLYXUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:AAVEUSDT_20FB28.USD","d":[]},{"s":"UNISWAP3ETH:WETHVDG","d":[]},{"s":"GATEIO:ITGRUSDT","d":[]},{"s":"BINANCE:CHZEUR","d":[]},{"s":"BITGET:ZETAUSDT","d":[]},{"s":"BINANCE:SSVBTC","d":[]},{"s":"KRAKEN:SDNUSD","d":[]},{"s":"UNISWAP:ORBKWETH_2E73FF.USD","d":[]},{"s":"UNISWAP:PZENUSDC_3150E4","d":[]},{"s":"UNISWAP3ETH:BBLWETH","d":[]},{"s":"UNISWAP:LSDWETH_B92FE0.USD","d":[]},{"s":"PHEMEX:AVAXUSDT.P","d":[]},{"s":"GATEIO:VLXPADUSDT","d":[]},{"s":"GATEIO:GMTUSDT.3L","d":[]},{"s":"COINBASE:USDTEUR","d":[]},{"s":"GATEIO:ARESUSDT","d":[]},{"s":"UNISWAP:FLUIDWETH_1FAB77","d":[]},{"s":"UNISWAP3ETH:WETHLUCHOW","d":[]},{"s":"UNISWAP3ARBITRUM:DLDARB_B2003E.USD","d":[]},{"s":"KRAKEN:GNOUSD","d":[]},{"s":"KRAKEN:BLURUSD.PM","d":[]},{"s":"GATEIO:LOOMUSDT","d":[]},{"s":"TRADERJOE:POLARWAVAX_D81CB1","d":[]},{"s":"COINBASE:MATICGBP","d":[]},{"s":"MEXC:WNCGUSDT","d":[]},{"s":"UNISWAP:MAGAWETH_C5A643","d":[]},{"s":"BITHUMB:BALKRW","d":[]},{"s":"UNISWAP3ETH:HDRNHEX_4A97B4.USD","d":[]},{"s":"UNISWAP3ETH:USDTUSDE","d":[]},{"s":"COINEX:YFIBTC","d":[]},{"s":"KRAKEN:LTCUSD.P","d":[]},{"s":"UNISWAP:FURWETH_099ED5","d":[]},{"s":"HITBTC:FLUXUSDT","d":[]},{"s":"MEXC:MEME2USDT","d":[]},{"s":"UNISWAP3ETH:WETHDCARD","d":[]},{"s":"MEXC:VSCUSDT","d":[]},{"s":"BITMEX:BMEXUSDT","d":[]},{"s":"UNISWAP:SLUTSWETH_336D25","d":[]},{"s":"PHEMEX:PIXELUSDT.P","d":[]},{"s":"MEXC:GFTUSDT","d":[]},{"s":"UNISWAP:WCDWETH_6A2DBA.USD","d":[]},{"s":"UNISWAP3ETH:SENDUSDT_69179E.USD","d":[]},{"s":"UNISWAP3POLYGON:OVRWMATIC_BEB894.USD","d":[]},{"s":"MEXC:VOLTUSDT","d":[]},{"s":"BINANCE:WIFFDUSD","d":[]},{"s":"HITBTC:BTCBBTC","d":[]},{"s":"GATEIO:TRVLUSDT","d":[]},{"s":"GATEIO:EMLUSDT","d":[]},{"s":"SPOOKYSWAP:BTCMIDAS_7F98C0.USD","d":[]},{"s":"GATEIO:P00LSUSDT","d":[]},{"s":"OKX:AIDOGEUSDT.P","d":[]},{"s":"MEXC:CELTUSDT","d":[]},{"s":"UNISWAP:MCONTENTWETH_1106BF.USD","d":[]},{"s":"HITBTC:BTCVBTC","d":[]},{"s":"WHITEBIT:WIFUSDT","d":[]},{"s":"TRADERJOE:BEARWAVAX_9C245E","d":[]},{"s":"GATEIO:AMUUSDT","d":[]},{"s":"MEXC:BNBTUSD","d":[]},{"s":"GATEIO:LMUSDT","d":[]},{"s":"POLONIEX:POLSUSDT","d":[]},{"s":"UNISWAP:TOONSWETH_248EC5.USD","d":[]},{"s":"UNISWAP:BILLYWETH_1B9FD5.USD","d":[]},{"s":"UNISWAP3ETH:PEPEWBTC","d":[]},{"s":"UNISWAP:CRUUSDT_576CEA","d":[]},{"s":"QUICKSWAP:BARCWMATIC_1BF943","d":[]},{"s":"UNISWAP:NERFWETH_8DC4B5","d":[]},{"s":"UNISWAP3OPTIMISM:MOOBIFIWETH_F800BA.USD","d":[]},{"s":"BITGET:AERGOUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ZPCWETH_BC5592.USD","d":[]},{"s":"MEXC:GPUAIUSDT","d":[]},{"s":"MEXC:SALDUSDT","d":[]},{"s":"SPOOKYSWAP:SUSHIWFTM_F84E31.USD","d":[]},{"s":"BINANCE:COSUSDT","d":[]},{"s":"UNISWAP3ETH:OPTIMUSWETH","d":[]},{"s":"UNISWAP3ETH:DOLLARNETWETH","d":[]},{"s":"MEXC:DOGESWAPUSDT","d":[]},{"s":"UNISWAP:WWWWETH_DCF6F5","d":[]},{"s":"EXMO:ETHBTC","d":[]},{"s":"HITBTC:FLOWUSD","d":[]},{"s":"KRAKEN:EURGBP","d":[]},{"s":"COINEX:BANANAUSDT","d":[]},{"s":"MEXC:LVLUSDT","d":[]},{"s":"COINBASE:ETCEUR","d":[]},{"s":"PIONEX:POLYXUSDT.P","d":[]},{"s":"WHITEBIT:C98USDT","d":[]},{"s":"GATEIO:FODLUSDT","d":[]},{"s":"BITGET:BRISEUSDT","d":[]},{"s":"COINEX:GUACUSDT","d":[]},{"s":"UNISWAP:ABYSSWETH_5FC0F8.USD","d":[]},{"s":"UNISWAP3POLYGON:TBTCWBTC_B38D0D.USD","d":[]},{"s":"UNISWAP3ETH:USDTCRV","d":[]},{"s":"UNISWAP3ETH:USDTCUDOS","d":[]},{"s":"HITBTC:REVUSD","d":[]},{"s":"MEXC:AIUSDT.P","d":[]},{"s":"TRADERJOE:BROWAVAX_480160.USD","d":[]},{"s":"KRAKEN:FTMUSD","d":[]},{"s":"POLONIEX:ATLASUSDT","d":[]},{"s":"UNISWAP3ETH:USDTTRU","d":[]},{"s":"GATEIO:SHOEUSDT","d":[]},{"s":"BYBIT:SILLYUSDT.P","d":[]},{"s":"UNISWAP:TEDWETH_0F8D03.USD","d":[]},{"s":"MEXC:OMNOMUSDT","d":[]},{"s":"KRAKEN:CRVBTC","d":[]},{"s":"QUICKSWAP:VOLTWMATIC_8975DD","d":[]},{"s":"UNISWAP:IPORWETH_4ACFB4","d":[]},{"s":"UNISWAP3POLYGON:BOARDUSDT_4B0898.USD","d":[]},{"s":"SPOOKYSWAP:ORBSWFTM_50D13B.USD","d":[]},{"s":"GATEIO:HORDUSDT","d":[]},{"s":"GATEIO:MOOVUSDT","d":[]},{"s":"BINGX:AMBUSDT.PS","d":[]},{"s":"UNISWAP:CREWETH_1387E9","d":[]},{"s":"UNISWAP3POLYGON:DOLZUSDT_C56DDB.USD","d":[]},{"s":"BITFINEX:APENFTUSD","d":[]},{"s":"UNISWAP:SPYROWETH_D420D5.USD","d":[]},{"s":"MEXC:W3FUSDT","d":[]},{"s":"UNISWAP3ETH:PLTWETH_C0A59D.USD","d":[]},{"s":"BITFINEX:APEUSD","d":[]},{"s":"BTSE:SOLUSD.P","d":[]},{"s":"BITFINEX:HIXBTC","d":[]},{"s":"BINGX:OSMOUSDT.P","d":[]},{"s":"UNISWAP:ETHIXWETH_B14B94","d":[]},{"s":"TRADERJOE:PTPWAVAX_CDFD91.USD","d":[]},{"s":"GATEIO:RJVUSDT","d":[]},{"s":"WHITEBIT:BCHBTC","d":[]},{"s":"UNISWAP3ETH:IOCWETH","d":[]},{"s":"UNISWAP3ETH:SKLWETH_12CC68.USD","d":[]},{"s":"UNISWAP:WOLVERINUWETH_93D05F.USD","d":[]},{"s":"BINGX:BIGTIMEUSDT.P","d":[]},{"s":"WHITEBIT:COMPUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:UMAMIUSDC_02C79A.USD","d":[]},{"s":"COINEX:NRGBTC","d":[]},{"s":"KRAKEN:OCEANBTC","d":[]},{"s":"UNISWAP:AQTISWETH_B777D3","d":[]},{"s":"BITFINEX:KAVAUSD","d":[]},{"s":"COINBASE:LQTYUSD","d":[]},{"s":"BINGX:FETUSDT.P","d":[]},{"s":"COINEX:KSMBTC","d":[]},{"s":"WHITEBIT:SANDUSDT","d":[]},{"s":"UNISWAP3ETH:TRVLWETH","d":[]},{"s":"BITFINEX:EURUST","d":[]},{"s":"KRAKEN:WBTCEUR","d":[]},{"s":"BINANCE:RUNEBTC","d":[]},{"s":"UNISWAP:GYSRWETH_5F0A85","d":[]},{"s":"MEXC:AIDOGEXLMUSDT","d":[]},{"s":"UNISWAP:MORKWETH_5390E2","d":[]},{"s":"COINEX:DEROUSDT","d":[]},{"s":"BTSE:CRVUSD.P","d":[]},{"s":"UNISWAP:RBNWETH_DB44A4","d":[]},{"s":"MEXC:WIFUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCELR","d":[]},{"s":"UNISWAP3ETH:WETHINST","d":[]},{"s":"BITGET:ARKMUSDT","d":[]},{"s":"MEXC:PEELUSDT","d":[]},{"s":"BYBIT:APEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:AAVEWETH_DD672B.USD","d":[]},{"s":"UNISWAP:PIRATESWETH_3C2247.USD","d":[]},{"s":"POLONIEX:AITECHUSDT","d":[]},{"s":"BINGX:YFIUSDT.P","d":[]},{"s":"OKX:ALGOUSDT.P","d":[]},{"s":"BYBIT:APPUSDT","d":[]},{"s":"SPOOKYSWAP:VAMPWFTM_DB3C9C.USD","d":[]},{"s":"UNISWAP:TPSWETH_6E96D0.USD","d":[]},{"s":"UNISWAP3ETH:MFERFLC_FDE0A0.USD","d":[]},{"s":"WOONETWORK:MATICUSDT","d":[]},{"s":"UNISWAP:SLUTSWETH_336D25.USD","d":[]},{"s":"MEXC:BNBUSDT","d":[]},{"s":"UNISWAP:CIVWETH_ED2474.USD","d":[]},{"s":"MEXC:GMMTUSDT","d":[]},{"s":"BINANCE:VETBTC","d":[]},{"s":"TRADERJOE:LEOWAVAX_E018D3.USD","d":[]},{"s":"UNISWAP:ZUZALUWETH_D40C30","d":[]},{"s":"UNISWAP3ETH:HOPWETH_021AB4.USD","d":[]},{"s":"UNISWAP3ETH:STRKWETH","d":[]},{"s":"UNISWAP:AGFIWETH_070218","d":[]},{"s":"GATEIO:GSTUSDT","d":[]},{"s":"BITGET:CALUSDT","d":[]},{"s":"UNISWAP3POLYGON:SNXWMATIC_3BDE45.USD","d":[]},{"s":"KRAKEN:LPTUSD","d":[]},{"s":"UNISWAP3ETH:IMOONWETH_34DD2C.USD","d":[]},{"s":"BITFINEX:SEIBTC","d":[]},{"s":"TRADERJOE:BLZZWAVAX_AC3F97","d":[]},{"s":"PIONEX:YFIUSDT.P","d":[]},{"s":"UNISWAP3ETH:MCWETH","d":[]},{"s":"MEXC:LBRUSDT","d":[]},{"s":"BITFINEX:GOCBTC","d":[]},{"s":"SPOOKYSWAP:GIZAUSDC_D038A7","d":[]},{"s":"BITGET:ETHUSDT","d":[]},{"s":"TRADERJOE:ECDPTPPTP_C8898E","d":[]},{"s":"BINANCE:GMTUSD.P","d":[]},{"s":"POLONIEX:LMWRUSDT","d":[]},{"s":"GATEIO:ORTBUSDT","d":[]},{"s":"BYBIT:SUPERUSDT.P","d":[]},{"s":"MEXC:OCTUSDT","d":[]},{"s":"COINBASE:ETHBTC","d":[]},{"s":"BINGX:IDEXUSDT.PS","d":[]},{"s":"UNISWAP3ETH:TPROWETH","d":[]},{"s":"BYBIT:MYROUSDT","d":[]},{"s":"WHITEBIT:MATICUSDT","d":[]},{"s":"UNISWAP3ETH:USDCLNDX","d":[]},{"s":"DYDX:BCHUSD.P","d":[]},{"s":"UNISWAP:NSUREWETH_ED196F.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCWETH_85C31F.USD","d":[]},{"s":"QUICKSWAP:WHEYWMATIC_1B18C6","d":[]},{"s":"BLOFIN:TRXUSDT.P","d":[]},{"s":"TRADERJOE:MUWAVAX_DAD81E","d":[]},{"s":"UNISWAP:BEGWETH_7C9A17","d":[]},{"s":"UNISWAP:MEGAWETH_943884","d":[]},{"s":"SPOOKYSWAP:LQDRWFTM_506DDC.USD","d":[]},{"s":"UNISWAP:0XBWETH_C98F57.USD","d":[]},{"s":"UNISWAP:SAINTWETH_C23B66","d":[]},{"s":"UNISWAP:LADYSWETH_CBE856","d":[]},{"s":"ZOOMEX:CTSIUSDT.P","d":[]},{"s":"UNISWAP3ETH:WTFWETH_FB6919.USD","d":[]},{"s":"COINEX:RLCUSDT","d":[]},{"s":"UNISWAP:HERMESWETH_A48FB3.USD","d":[]},{"s":"PIONEX:FLOWUSDT.P","d":[]},{"s":"BYBIT:FXSUSDT","d":[]},{"s":"MEXC:SDNUSDT","d":[]},{"s":"UNISWAP3ETH:USDCCRAB","d":[]},{"s":"KRAKEN:CELREUR","d":[]},{"s":"GATEIO:DYPUSDT","d":[]},{"s":"MEXC:IONXUSDT","d":[]},{"s":"UNISWAP3POLYGON:NGOLDUSDT_8EBB37.USD","d":[]},{"s":"BITKUB:GMXTHB","d":[]},{"s":"BITRUE:BCHXRP","d":[]},{"s":"COINEX:HBARUSDC","d":[]},{"s":"BITFINEX:ARBUST","d":[]},{"s":"GATEIO:SNXUSDT.3L","d":[]},{"s":"PHEMEX:CELRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSELF","d":[]},{"s":"UNISWAP:VXLWETH_3A0814","d":[]},{"s":"DERIBIT:ETHUSD28M2024","d":[]},{"s":"SPOOKYSWAP:MIMATICUSDC_4DE9F0","d":[]},{"s":"TRADERJOE:EXPUSDTE_EBF7A3","d":[]},{"s":"GATEIO:AZEROUSDT","d":[]},{"s":"QUICKSWAP:FTMWMATIC_D2B61A.USD","d":[]},{"s":"MEXC:NEWUSDT","d":[]},{"s":"UNISWAP:INUWETH_E5A7AB.USD","d":[]},{"s":"UNISWAP3ETH:ASMSDEX_3ACECA.USD","d":[]},{"s":"BINGX:LTCUSDT.P","d":[]},{"s":"BYBIT:LINGUSDT","d":[]},{"s":"MEXC:CANDUSDT","d":[]},{"s":"UNISWAP3ETH:STRKWETH_AC4FD9.USD","d":[]},{"s":"BITFINEX:UNIUST","d":[]},{"s":"BLOFIN:ENSUSDT.P","d":[]},{"s":"COINBASE:WBTCUSD","d":[]},{"s":"UNISWAP:KETWETH_5A012D","d":[]},{"s":"BINANCE:BCHBNB","d":[]},{"s":"MEXC:KEKEUSDT","d":[]},{"s":"UNISWAP:EVEDWETH_8448A5","d":[]},{"s":"UNISWAP3ETH:GENAIWETH","d":[]},{"s":"OKX:THETAUSDT.P","d":[]},{"s":"UNISWAP:BLXWETH_BCFF37.USD","d":[]},{"s":"BINANCE:MATICBRL","d":[]},{"s":"MEXC:RIOUSDT","d":[]},{"s":"BINANCE:WLDTRY","d":[]},{"s":"BLOFIN:ZECUSDT.P","d":[]},{"s":"COINEX:GELUSDT","d":[]},{"s":"KRAKEN:ICXETH","d":[]},{"s":"UNISWAP3ETH:ABTWETH_BFFB28.USD","d":[]},{"s":"PIONEX:REEFUSDT.P","d":[]},{"s":"POLONIEX:BARUSDT","d":[]},{"s":"MEXC:SOONUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCLOSEDAI","d":[]},{"s":"BITGET:NAVXUSDT","d":[]},{"s":"TRADERJOE:BABYCOQWAVAX_02C7D2","d":[]},{"s":"UNISWAP:OCWWETH_6F709F","d":[]},{"s":"COINEX:XECUSDT","d":[]},{"s":"COINEX:SDNUSDT","d":[]},{"s":"DELTA:COMPUSDT.P","d":[]},{"s":"QUICKSWAP:NITROWMATIC_032D86","d":[]},{"s":"HITBTC:OKBBTC","d":[]},{"s":"HITBTC:VLXBTC","d":[]},{"s":"BITGET:LDOUSDT.P","d":[]},{"s":"BINGX:IMXUSDT.P","d":[]},{"s":"BINANCEUS:1INCHUSDT","d":[]},{"s":"UNISWAP3ETH:PT404WETH_BE07EB.USD","d":[]},{"s":"TRADERJOE:HYHYWAVAX_38A5E9.USD","d":[]},{"s":"MEXC:MCONTENTUSDT","d":[]},{"s":"UNISWAP3ETH:XRTWETH_756934.USD","d":[]},{"s":"UNISWAP:SLNUSDT_D4E0B3","d":[]},{"s":"MEXC:LTCBTC","d":[]},{"s":"BINANCEUS:MASKUSDT","d":[]},{"s":"XEXCHANGE:WEGLDUSDC","d":[]},{"s":"KRAKEN:OXTBTC","d":[]},{"s":"GATEIO:ITRUMPUSDT","d":[]},{"s":"BITFINEX:TOMIUST","d":[]},{"s":"BTSE:SUIUSD.P","d":[]},{"s":"HITBTC:OAXUSD","d":[]},{"s":"UNISWAP3ETH:SPCWETH_03A86D.USD","d":[]},{"s":"BITGET:REDUSDT","d":[]},{"s":"KRAKEN:MKRUSD","d":[]},{"s":"UNISWAP3ETH:WETHCRV","d":[]},{"s":"TRADERJOE:STOMBWAVAX_75ADAD.USD","d":[]},{"s":"MEXC:IRENAUSDT","d":[]},{"s":"OKX:LSKUSDT.P","d":[]},{"s":"BLOFIN:STPTUSDT.P","d":[]},{"s":"BINANCE:MAVUSDT","d":[]},{"s":"POLONIEX:BIGTIMEUSDT","d":[]},{"s":"BINANCE:WINGUSDT","d":[]},{"s":"GATEIO:CHEQUSDT","d":[]},{"s":"WOONETWORK:PEOPLEUSDT","d":[]},{"s":"PANGOLIN:JOEWAVAX_134AD6","d":[]},{"s":"UNISWAP:ETHPADWETH_04B6BE","d":[]},{"s":"BITFINEX:XTZUSD","d":[]},{"s":"UNISWAP3POLYGON:PAXGWMATIC_56BD4F.USD","d":[]},{"s":"UNISWAP3POLYGON:PORYWMATIC_D1270D.USD","d":[]},{"s":"BINGX:ONGUSDT.PS","d":[]},{"s":"MEXC:KSNUSDT","d":[]},{"s":"GATEIO:SNOWUSDT","d":[]},{"s":"TRADERJOE:CLYWAVAX_0B2777","d":[]},{"s":"UNISWAP:ENJWETH_E56C60","d":[]},{"s":"BINANCE:ZRXUSDT","d":[]},{"s":"UNISWAP:FEETWETH_30A7F5","d":[]},{"s":"UNISWAP:RIZZWETH_F61F82.USD","d":[]},{"s":"UNISWAP:RESETWETH_86DEB4.USD","d":[]},{"s":"UNISWAP:ASKOWETH_63804D","d":[]},{"s":"HITBTC:YFIUSDT","d":[]},{"s":"UNISWAP:CULTWETH_5281E3.USD","d":[]},{"s":"TRADERJOE:TECHWAVAX_E1D895.USD","d":[]},{"s":"HITBTC:ETPUSDT","d":[]},{"s":"UNISWAP:CHARTWETH_D0638B","d":[]},{"s":"UNISWAP:DOGSWETH_898FCB.USD","d":[]},{"s":"KRAKEN:STORJUSD.PM","d":[]},{"s":"UNISWAP:PAIWETH_C45F24.USD","d":[]},{"s":"UNISWAP:BADGERWBTC_CD7989","d":[]},{"s":"UNISWAP3ETH:TIMEWETH_CE5BAC.USD","d":[]},{"s":"COINEX:VLXBTC","d":[]},{"s":"UNISWAP:DINEROWETH_605684","d":[]},{"s":"POLONIEX:BNBUSDC","d":[]},{"s":"MEXC:O3USDT","d":[]},{"s":"UNISWAP3OPTIMISM:MAIUSDC_0640A5.USD","d":[]},{"s":"UNISWAP:GFXWETH_23B45E.USD","d":[]},{"s":"UNISWAP3ETH:WETHUSDT_C5AF84.USD","d":[]},{"s":"UNISWAP:TRENDGURUWETH_816E54.USD","d":[]},{"s":"HITBTC:THETAUSDT","d":[]},{"s":"BISWAP:IGUBUSD_55CEEF","d":[]},{"s":"UNISWAP:GLQWETH_7D9C8D.USD","d":[]},{"s":"WHITEBIT:BCHUAH","d":[]},{"s":"GATEIO:MAGICUSDT","d":[]},{"s":"KRAKEN:BADGEREUR","d":[]},{"s":"WAGYUSWAP:SHIBILWVLX_9457A0.USD","d":[]},{"s":"OKX:STORJUSDT.P","d":[]},{"s":"COINBASE:INVUSD","d":[]},{"s":"UNISWAP3ETH:SXUSDC","d":[]},{"s":"KRAKEN:ZECUSD.PM","d":[]},{"s":"UNISWAP3ETH:SAVMWETH","d":[]},{"s":"SPOOKYSWAP:BPEPEWFTM_5EA336","d":[]},{"s":"UNISWAP3ETH:USDTSMTX","d":[]},{"s":"MEXC:TYPEUSDT","d":[]},{"s":"GATEIO:ORDIUSDT.3S","d":[]},{"s":"UNISWAP:SUPERWETH_EF9A55.USD","d":[]},{"s":"UNISWAP:DIGGWBTC_E86204","d":[]},{"s":"BITFINEX:USTMXNT","d":[]},{"s":"GATEIO:CULTUSDT","d":[]},{"s":"HITBTC:OPUSD","d":[]},{"s":"UNISWAP3ETH:USDTOLAS","d":[]},{"s":"UNISWAP3ETH:UTUWETH_098E0B.USD","d":[]},{"s":"BYBIT:AUCTIONUSDT.P","d":[]},{"s":"SPOOKYSWAP:PLDWFTM_D19D10","d":[]},{"s":"UNISWAP3ARBITRUM:GETHWETH_2F020E.USD","d":[]},{"s":"SPOOKYSWAP:SPAWFTM_1FECC6","d":[]},{"s":"UNISWAP:MOETAWETH_9A9153.USD","d":[]},{"s":"UNISWAP:MODAIUSDC_42A160","d":[]},{"s":"UNISWAP3ETH:WETHXRT","d":[]},{"s":"BINANCE:AVAXUSD.P","d":[]},{"s":"UNISWAP:JIZZWETH_05946A.USD","d":[]},{"s":"SPOOKYSWAP:USDCDAI_484237","d":[]},{"s":"COINEX:ALCXUSDT","d":[]},{"s":"PANGOLIN:SFIWAVAX_C56788.USD","d":[]},{"s":"UNISWAP3ETH:JOEWETH_CEB63A.USD","d":[]},{"s":"UNISWAP3ETH:BONERNG_09AB6B.USD","d":[]},{"s":"COINBASE:EOSEUR","d":[]},{"s":"UNISWAP3POLYGON:EUROEUSDC_2213C4.USD","d":[]},{"s":"PANGOLIN:WBTCPNG_F372CE","d":[]},{"s":"BITRUE:XDCXRP","d":[]},{"s":"GATEIO:AXSUSDT.5L","d":[]},{"s":"UNISWAP:KDOEWETH_DD8F50.USD","d":[]},{"s":"UNISWAP3ETH:PIKAUSDT","d":[]},{"s":"UNISWAP:XXWETH_944B3B.USD","d":[]},{"s":"UNISWAP:OTSEAWETH_D46934","d":[]},{"s":"UPBIT:MLKKRW","d":[]},{"s":"UNISWAP:PEPEWETH_3C5F0C","d":[]},{"s":"SPOOKYSWAP:MEGAMANWFTM_8D6D02.USD","d":[]},{"s":"BITFINEX:USTUSD","d":[]},{"s":"UNISWAP3OPTIMISM:MOOBIFIWETH_2005B3.USD","d":[]},{"s":"UNISWAP3ETH:SSVWETH_0A5588.USD","d":[]},{"s":"UNISWAP3ETH:USDTIUSD","d":[]},{"s":"WHITEBIT:ARBBTC","d":[]},{"s":"MEXC:INUSDT","d":[]},{"s":"HITBTC:RAYUSD","d":[]},{"s":"MEXC:DYDXUSDT.P","d":[]},{"s":"UNISWAP3ETH:EXNTWETH","d":[]},{"s":"XEXCHANGE:LAUNCHUSDC","d":[]},{"s":"BISWAP:GMTUSDT_EC6158","d":[]},{"s":"UNISWAP:SHILLWETH_85DA6D.USD","d":[]},{"s":"BITGET:1000RATSUSDT.P","d":[]},{"s":"UNISWAP:CTRLWETH_E4CD22","d":[]},{"s":"BYBIT:PROMUSDT.P","d":[]},{"s":"UNISWAP:DAOWETH_7DD3F5.USD","d":[]},{"s":"BYBIT:QTUMUSDT.P","d":[]},{"s":"UNISWAP:LNDRYWETH_8D6249.USD","d":[]},{"s":"UNISWAP:BENDWETH_336EF4","d":[]},{"s":"MEXC:OPPUSDT","d":[]},{"s":"QUICKSWAP:USDTUSDC_2CF725","d":[]},{"s":"ZOOMEX:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:GHOUSDT_383E7A.USD","d":[]},{"s":"BYBIT:ATAUSDT.P","d":[]},{"s":"WHITEBIT:DASHUSDT","d":[]},{"s":"UNISWAP3ETH:GRAIUSDC_5DB3D3.USD","d":[]},{"s":"MEXC:CSIXUSDT","d":[]},{"s":"UNISWAP3ETH:USDTFLUX","d":[]},{"s":"BITRUE:CHRUSDT","d":[]},{"s":"BITGET:NYMUSDT","d":[]},{"s":"POLONIEX:XRPUSD","d":[]},{"s":"BINANCEUS:RADUSDT","d":[]},{"s":"SPOOKYSWAP:RISEWFTM_DE62A6.USD","d":[]},{"s":"HITBTC:BDGUSD","d":[]},{"s":"UNISWAP3ETH:WETHPSYCHO","d":[]},{"s":"GATEIO:RADUSDT","d":[]},{"s":"HITBTC:ENJBTC","d":[]},{"s":"HITBTC:PLIUSDT","d":[]},{"s":"COINBASE:DOGEUSDT","d":[]},{"s":"QUICKSWAP:MARTWETH_C9BC08","d":[]},{"s":"BITRUE:XTZUSDC","d":[]},{"s":"GATEIO:PSBUSDT","d":[]},{"s":"UNISWAP3ETH:THOLWETH","d":[]},{"s":"BITRUE:BLZUSDT","d":[]},{"s":"UNISWAP:REKTWETH_2E8A93.USD","d":[]},{"s":"BINANCE:NKNBTC","d":[]},{"s":"UNISWAP3POLYGON:AGIXWMATIC_1AEC01.USD","d":[]},{"s":"HITBTC:VTHOUSD","d":[]},{"s":"UNISWAP3ETH:ORANGEPEPEWETH_FA30D8.USD","d":[]},{"s":"MEXC:WEFIUSDT","d":[]},{"s":"UNISWAP3ETH:USDCBLND","d":[]},{"s":"BITHUMB:ANKRKRW","d":[]},{"s":"UNISWAP3ETH:BLIDWETH","d":[]},{"s":"COINEX:SSVUSDT","d":[]},{"s":"KRAKEN:QNTUSD.PM","d":[]},{"s":"UNISWAP:GRKWETH_C71D4E.USD","d":[]},{"s":"QUICKSWAP:TECHUSDC_D72A06","d":[]},{"s":"BINANCE:STRAXUSDT","d":[]},{"s":"QUICKSWAP:SCAWETH_2922E1","d":[]},{"s":"EXMO:DOGEUSD","d":[]},{"s":"UNISWAP:NEOWETH_477862","d":[]},{"s":"UNISWAP:COBRAMONG_D4867B.USD","d":[]},{"s":"UNISWAP3ETH:USDTRMV","d":[]},{"s":"COINEX:PAWUSDT","d":[]},{"s":"WOONETWORK:SAROSUSDT","d":[]},{"s":"BYBIT:SUIUSDT.P","d":[]},{"s":"MEXC:ATRUSDT","d":[]},{"s":"UNISWAP:RATWETH_1CACE5","d":[]},{"s":"UNISWAP3ETH:CODEWETH","d":[]},{"s":"POLONIEX:SNXBTC","d":[]},{"s":"BITHUMB:USDCKRW","d":[]},{"s":"BINANCE:PIVXBTC","d":[]},{"s":"BITFINEX:ALT2612USD","d":[]},{"s":"MEXC:MOGUSDT","d":[]},{"s":"BITGET:AGLDUSDT","d":[]},{"s":"GATEIO:IPUNKSUSDT","d":[]},{"s":"BINANCE:MATICUSD.P","d":[]},{"s":"UNISWAP3POLYGON:KONGUSDT_444C29.USD","d":[]},{"s":"GATEIO:SCCPUSDT","d":[]},{"s":"UNISWAP:VERSEWETH_1BB1D4.USD","d":[]},{"s":"UNISWAP:LOOTWETH_520152","d":[]},{"s":"TRADERJOE:CRAWAVAX_140CAC","d":[]},{"s":"UNISWAP3ARBITRUM:POSTWETH_42352F.USD","d":[]},{"s":"UNISWAP:PEPIWETH_751088","d":[]},{"s":"UNISWAP:RVSTWETH_649082.USD","d":[]},{"s":"GATEIO:ROCOUSDT","d":[]},{"s":"BITFINEX:JASMYBTC","d":[]},{"s":"UNISWAP3ETH:ZRXWETH","d":[]},{"s":"HITBTC:DACXIUSDT","d":[]},{"s":"BYBIT:GENEUSDT","d":[]},{"s":"KRAKEN:GLMREUR","d":[]},{"s":"UNISWAP:BONESWETH_520889.USD","d":[]},{"s":"GATEIO:SNUSDT","d":[]},{"s":"KRAKEN:RAREUSD","d":[]},{"s":"UNISWAP:BWLWETH_6CADD6","d":[]},{"s":"XEXCHANGE:PLATAWEGLD","d":[]},{"s":"MEXC:CTCUSDT.P","d":[]},{"s":"MEXC:STGUSDT.P","d":[]},{"s":"MEXC:OSMOUSDT","d":[]},{"s":"UNISWAP3ETH:THEWETH","d":[]},{"s":"PHEMEX:JOEUSDT","d":[]},{"s":"UNISWAP:OTCBOTWETH_E272CB.USD","d":[]},{"s":"EXMO:BTCUSDT","d":[]},{"s":"UNISWAP:DXTWETH_800460","d":[]},{"s":"UNISWAP3ETH:WEETHWETH_7A415B.USD","d":[]},{"s":"KRAKEN:JUNOUSD","d":[]},{"s":"UNISWAP:HOUSEWETH_A62D78.USD","d":[]},{"s":"COINEX:DECHATUSDT","d":[]},{"s":"GATEIO:REIGNUSDT","d":[]},{"s":"COINEX:JPGUSDT","d":[]},{"s":"UNISWAP3ETH:GFIWETH","d":[]},{"s":"MEXC:COMBOUSDT.P","d":[]},{"s":"UNISWAP3ETH:DOLLARPAPERWETH","d":[]},{"s":"UNISWAP3POLYGON:BALWMATIC_64B6CD.USD","d":[]},{"s":"BYBIT:WWYUSDT","d":[]},{"s":"UNISWAP3ETH:NETHWETH","d":[]},{"s":"QUICKSWAP:USTWETH_D9150C.USD","d":[]},{"s":"WHITEBIT:SKLUSDT","d":[]},{"s":"PIONEX:RONUSDT.P","d":[]},{"s":"UNISWAP3ETH:WHRHWETH","d":[]},{"s":"BTSE:ZILUSD.P","d":[]},{"s":"BINANCE:ASTBTC","d":[]},{"s":"BINANCE:ENJUSDT","d":[]},{"s":"MEXC:XAI2USDT","d":[]},{"s":"POLONIEX:BONKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRAI","d":[]},{"s":"UNISWAP:SECTWETH_15842C.USD","d":[]},{"s":"UNISWAP3ETH:BIGTIMEWETH_32121E.USD","d":[]},{"s":"GATEIO:DOGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWRLD","d":[]},{"s":"BINANCE:ADABRL","d":[]},{"s":"PHEMEX:GALAUSDT.P","d":[]},{"s":"UNISWAP3ETH:BLENDRWETH","d":[]},{"s":"BINANCE:MASKBNB","d":[]},{"s":"UNISWAP3ETH:USDCREN","d":[]},{"s":"GATEIO:ZLWUSDT","d":[]},{"s":"BINANCE:TLMBTC","d":[]},{"s":"POLONIEX:SRMBTC","d":[]},{"s":"BITRUE:THETAADA","d":[]},{"s":"HITBTC:DGTXUSDT","d":[]},{"s":"UNISWAP:RPGMAIWETH_841D74","d":[]},{"s":"UNISWAP3ETH:RLTDWETH","d":[]},{"s":"UNISWAP:OPSECWETH_515D45","d":[]},{"s":"UNISWAP:ALCHEMISTWETH_CD6BCC.USD","d":[]},{"s":"WHITEBIT:APEUSDT.P","d":[]},{"s":"ZOOMEX:PHBUSDT.P","d":[]},{"s":"BITGET:DARUSDT","d":[]},{"s":"UNISWAP3ETH:XSGDUSDC","d":[]},{"s":"PHEMEX:DOGEUSDT.P","d":[]},{"s":"GATEIO:PERIUSDT","d":[]},{"s":"BITGET:SKLUSDT.P","d":[]},{"s":"BYBIT:CAPOUSDT","d":[]},{"s":"SPOOKYSWAP:LINKWFTM_89D9BC.USD","d":[]},{"s":"UNISWAP:YESWETH_08CA99","d":[]},{"s":"WAGYUSWAP:ADAOWVLX_6AD24D","d":[]},{"s":"BINANCE:CELOBTC","d":[]},{"s":"DELTA:XRPUSDT","d":[]},{"s":"BINGX:FTMUSDT.P","d":[]},{"s":"QUICKSWAP:XEDWETH_8A98D8","d":[]},{"s":"UNISWAP:BOBOWETH_E94568","d":[]},{"s":"GATEIO:BAGSUSDT","d":[]},{"s":"MEXC:TROVEUSDT","d":[]},{"s":"KRAKEN:BCHJPY","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDT_4CCD01.USD","d":[]},{"s":"UNISWAP:AAGWETH_1AFB66","d":[]},{"s":"UNISWAP3ARBITRUM:ARCHIWETH_4C94FE.USD","d":[]},{"s":"WOONETWORK:QIUSDT","d":[]},{"s":"OKX:IMXUSDT.P","d":[]},{"s":"PIONEX:NFPUSDT.P","d":[]},{"s":"BITGET:SAKAIUSDT","d":[]},{"s":"GATEIO:SFPUSDT","d":[]},{"s":"UNISWAP3POLYGON:AAVESDEX_0B11CC.USD","d":[]},{"s":"GATEIO:SAFEMARSUSDT","d":[]},{"s":"UNISWAP3ETH:OCEANUSDC_47D025.USD","d":[]},{"s":"GATEIO:JUVUSDT","d":[]},{"s":"GATEIO:INSURUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCB3","d":[]},{"s":"MEXC:LQDXUSDT","d":[]},{"s":"BITRUE:IDEXUSDT","d":[]},{"s":"BITGET:ZILUSDT.P","d":[]},{"s":"ZOOMEX:VGXUSDT.P","d":[]},{"s":"UNISWAP:WFAIWETH_EB56FF","d":[]},{"s":"KRAKEN:ADAUSDT","d":[]},{"s":"UNISWAP:AVGWETH_FA5562","d":[]},{"s":"HITBTC:ARDRUSDT","d":[]},{"s":"BITGET:FAVRUSDT","d":[]},{"s":"UNISWAP3ETH:USDTFORTH","d":[]},{"s":"UNISWAP3ETH:USDTYFLOW","d":[]},{"s":"BITKUB:ONDOTHB","d":[]},{"s":"QUICKSWAP:UBUUSDC_19ED90.USD","d":[]},{"s":"UNISWAP3ETH:WETHVAI","d":[]},{"s":"UNISWAP3ETH:WETHIDLE","d":[]},{"s":"POLONIEX:SNTUSD","d":[]},{"s":"MEXC:BALETH","d":[]},{"s":"UNISWAP3ARBITRUM:FOOMWETH_8F637F.USD","d":[]},{"s":"PHEMEX:YFIUSDT.P","d":[]},{"s":"UNISWAP:MONKEYSWETH_A67CEE","d":[]},{"s":"MEXC:XETUSDT","d":[]},{"s":"UNISWAP:FINUWETH_478DC5","d":[]},{"s":"BYBIT:MANTAUSDT","d":[]},{"s":"GATEIO:DRGNUSDT","d":[]},{"s":"UNISWAP:NMLWETH_934244.USD","d":[]},{"s":"UNISWAP3ETH:EWTBWETH_B1608E.USD","d":[]},{"s":"TRADERJOE:KACYWAVAX_C45893.USD","d":[]},{"s":"COINEX:RSRUSDT","d":[]},{"s":"BISWAP:BSCEPKWBNB_0CD339.USD","d":[]},{"s":"UNISWAP3ETH:WETHMKR","d":[]},{"s":"GATEIO:AGILITYUSDT","d":[]},{"s":"HITBTC:FETUSDT","d":[]},{"s":"UNISWAP3ETH:CETHWETH_833998.USD","d":[]},{"s":"COINEX:NRGUSDT","d":[]},{"s":"MEXC:LOTTUSDT","d":[]},{"s":"TRADERJOE:AVATUSDC_070F23","d":[]},{"s":"GATEIO:ANAVIUSDT","d":[]},{"s":"SPOOKYSWAP:SFTMXWFTM_E67980","d":[]},{"s":"GATEIO:COREUMUSDT","d":[]},{"s":"UNISWAP3ETH:WCOMAIUSDT_4CED7F.USD","d":[]},{"s":"UPBIT:BTCKRW","d":[]},{"s":"UNISWAP3ETH:BERRYWETH","d":[]},{"s":"SPOOKYSWAP:PREMIAETH_7B4E78","d":[]},{"s":"GATEIO:CELLUSDT","d":[]},{"s":"MEXC:OPAIGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCOMP","d":[]},{"s":"TRADERJOE:TUSCRA_218890","d":[]},{"s":"UNISWAP3POLYGON:RNDRWMATIC_C4C06C.USD","d":[]},{"s":"UNISWAP3ETH:WBRGEWETH_9B1956.USD","d":[]},{"s":"BINANCE:LEVERTRY","d":[]},{"s":"UNISWAP:PEPLWETH_1BFD93.USD","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCWETH_99DFC0.USD","d":[]},{"s":"MEXC:PAINTUSDT","d":[]},{"s":"HITBTC:CHATUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHARRYPOOTER","d":[]},{"s":"SPOOKYSWAP:WOOWFTM_A7010B","d":[]},{"s":"UNISWAP:BRUCEWETH_A89FFE.USD","d":[]},{"s":"UNISWAP:VANRYWETH_F4ACDA","d":[]},{"s":"KRAKEN:RAREEUR","d":[]},{"s":"COINEX:HOPRUSDT","d":[]},{"s":"HITBTC:SCUSD","d":[]},{"s":"GATEIO:DUSKUSDT","d":[]},{"s":"XEXCHANGE:XAPESUSDC","d":[]},{"s":"UNISWAP3ETH:CLONEXFLC_FC35D4.USD","d":[]},{"s":"BYBIT:RADUSDT.P","d":[]},{"s":"UNISWAP:DGNSWETH_79D49C.USD","d":[]},{"s":"POLONIEX:JESUSUSDT","d":[]},{"s":"MEXC:BABYFLOKIUSDT","d":[]},{"s":"UNISWAP:QRXWETH_F227E9.USD","d":[]},{"s":"UNISWAP3ETH:JPYCWETH","d":[]},{"s":"BITGET:PEPEUSDT.P","d":[]},{"s":"UNISWAP:BLXWETH_BCFF37","d":[]},{"s":"UNISWAP3ETH:USDEUSDT_435664.USD","d":[]},{"s":"BITSTAMP:INJUSD","d":[]},{"s":"UNISWAP:VMINTUSDT_4ED897","d":[]},{"s":"UNISWAP3ETH:DYDXWETH_D8DE6A.USD","d":[]},{"s":"BITHUMB:MNTKRW","d":[]},{"s":"UNISWAP3ETH:USDCRAI","d":[]},{"s":"BITRUE:PORTOUSDT","d":[]},{"s":"WOONETWORK:VETUSDT","d":[]},{"s":"BLOFIN:BIGTIMEUSDT.P","d":[]},{"s":"BITGET:LOOKSUSDT","d":[]},{"s":"BLOFIN:GLMUSDT.P","d":[]},{"s":"XEXCHANGE:BSKUSDC","d":[]},{"s":"UNISWAP3ETH:GRAIWETH","d":[]},{"s":"MEXC:NSCUSDT","d":[]},{"s":"UNISWAP3ETH:NFDWETH_AE91B3.USD","d":[]},{"s":"UPBIT:PUNDIXKRW","d":[]},{"s":"KRAKEN:MINABTC","d":[]},{"s":"BITFINEX:VETUSD","d":[]},{"s":"MEXC:MXUSDC","d":[]},{"s":"GATEIO:CYBERUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHCNFI","d":[]},{"s":"BITGET:WLDUSDT","d":[]},{"s":"HITBTC:1INCHUSDT","d":[]},{"s":"GATEIO:XRPUSDT.5S","d":[]},{"s":"MEXC:ZLWUSDT","d":[]},{"s":"UNISWAP3ETH:WETHVMPX","d":[]},{"s":"MEXC:HTMUSDT","d":[]},{"s":"BYBIT:DOTUSDT.3L","d":[]},{"s":"UNISWAP3ETH:XCHFWETH_485841.USD","d":[]},{"s":"BITRUE:PEOPLEUSDC","d":[]},{"s":"MEXC:ULTIMAUSDT","d":[]},{"s":"UNISWAP:CTASKWETH_8D82B6","d":[]},{"s":"POLONIEX:MUBIUSDT","d":[]},{"s":"BITGET:AAVEUSDT","d":[]},{"s":"MEXC:CASUSDT","d":[]},{"s":"UNISWAP3ETH:XONEXEN_239620.USD","d":[]},{"s":"UNISWAP:JNGLWETH_CD02A8","d":[]},{"s":"UNISWAP3ETH:USDTZEON","d":[]},{"s":"MEXC:BEAMXUSDT.P","d":[]},{"s":"UNISWAP:MEMESWETH_939B4A.USD","d":[]},{"s":"MEXC:SWIMUSDT","d":[]},{"s":"SPOOKYSWAP:JEFEWFTM_D7F1DD","d":[]},{"s":"BYBIT:AEVOUSDT.P","d":[]},{"s":"UNISWAP:NEOBOTWETH_513C94.USD","d":[]},{"s":"BYBIT:XETAUSDT","d":[]},{"s":"HITBTC:OMUSDT","d":[]},{"s":"BINGX:SFPUSDT.P","d":[]},{"s":"QUICKSWAP:PBIRBWMATIC_1316E0","d":[]},{"s":"GATEIO:SHILLUSDT","d":[]},{"s":"GATEIO:METFIUSDT","d":[]},{"s":"BINANCE:FLUXUSDT","d":[]},{"s":"TRADERJOE:COCAWAVAX_3EADA8","d":[]},{"s":"GATEIO:OGNUSDT","d":[]},{"s":"BINANCE:TKOBTC","d":[]},{"s":"KRAKEN:CQTEUR","d":[]},{"s":"BINANCE:AVAUSDT","d":[]},{"s":"MEXC:SFLUSDT","d":[]},{"s":"ZOOMEX:DGBUSDT.P","d":[]},{"s":"TRADERJOE:CORKWAVAX_D998AB","d":[]},{"s":"BITHUMB:KAVAKRW","d":[]},{"s":"MEXC:BDP1USDT","d":[]},{"s":"UNISWAP:APUWETH_8CFA4C.USD","d":[]},{"s":"HITBTC:SWMBTC","d":[]},{"s":"POLONIEX:WRXTRX","d":[]},{"s":"MEXC:FWWUSDT","d":[]},{"s":"HITBTC:SENTUSD","d":[]},{"s":"UNISWAP:KMNWETH_94FC2C.USD","d":[]},{"s":"UNISWAP3ETH:ABONDWETH","d":[]},{"s":"BTSE:ALICEUSD.P","d":[]},{"s":"MEXC:USDNUSDT","d":[]},{"s":"MEXC:DOTUSDT.P","d":[]},{"s":"KRAKEN:POLUSD","d":[]},{"s":"UNISWAP3ARBITRUM:XAIUSDT_A6958B.USD","d":[]},{"s":"GATEIO:TFUELUSDT","d":[]},{"s":"UNISWAP:PARTYWETH_2C8C79.USD","d":[]},{"s":"COINBASE:NMRUSD","d":[]},{"s":"UNISWAP:AIWETH_CDE8D6","d":[]},{"s":"UNISWAP:GYOZAWETH_5A5562","d":[]},{"s":"BINANCE:GMTBTC","d":[]},{"s":"UNISWAP:SANWETH_430BA8","d":[]},{"s":"GATEIO:ECLIPUSDT","d":[]},{"s":"UNISWAP:CHZWETH_FF5871","d":[]},{"s":"UNISWAP:BAIWETH_D4A863","d":[]},{"s":"BITGET:LOOMUSDT.P","d":[]},{"s":"QUICKSWAP:GMWMATIC_F98458","d":[]},{"s":"UNISWAP3ETH:AVTWETH_CDFF6D.USD","d":[]},{"s":"UNISWAP:STAKWETH_EFF2DB","d":[]},{"s":"WHITEBIT:ZENUSDT","d":[]},{"s":"UNISWAP:VLABSWETH_6A4D1F.USD","d":[]},{"s":"UNISWAP:ARTWETH_ACEC5C.USD","d":[]},{"s":"GATEIO:BLYUSDT","d":[]},{"s":"QUICKSWAP:TRADEWMATIC_41744F.USD","d":[]},{"s":"MEXC:BURGERUSDT","d":[]},{"s":"UNISWAP3ETH:ENZFWETH_B9BCAC.USD","d":[]},{"s":"UNISWAP3ETH:VSPWETH_D2CC51.USD","d":[]},{"s":"UPBIT:GLMKRW","d":[]},{"s":"UNISWAP3POLYGON:404LICLIC_F60656.USD","d":[]},{"s":"GATEIO:STMXUSDT","d":[]},{"s":"UNISWAP3ETH:NFTLWETH","d":[]},{"s":"UNISWAP3ETH:SYNKWETH_20A5F5.USD","d":[]},{"s":"EXMO:ETCBTC","d":[]},{"s":"MEXC:VTSUSDT","d":[]},{"s":"UNISWAP:REALMWETH_0612F7","d":[]},{"s":"HITBTC:GSTBTC","d":[]},{"s":"MEXC:BAKEUSDT.P","d":[]},{"s":"WHITEBIT:XRPEUR","d":[]},{"s":"UNISWAP3ARBITRUM:HOLDWETH_299B37.USD","d":[]},{"s":"HITBTC:KINETH","d":[]},{"s":"UNISWAP:FRIENDWETH_D89015.USD","d":[]},{"s":"UNISWAP3ETH:WETHNKN","d":[]},{"s":"TIMEX:ETHUSD","d":[]},{"s":"UNISWAP:CIRUSUSDC_25BA1C","d":[]},{"s":"UNISWAP:TUPELOWETH_7CE819.USD","d":[]},{"s":"UNISWAP3POLYGON:VCNTDAI_853E44.USD","d":[]},{"s":"UNISWAP3ETH:CNDUSDC_498113.USD","d":[]},{"s":"WHITEBIT:DYDXUSDT","d":[]},{"s":"HITBTC:MDTUSDT","d":[]},{"s":"KRAKEN:POLSUSD","d":[]},{"s":"PHEMEX:ARPAUSDT.P","d":[]},{"s":"COINEX:BAKEUSDT","d":[]},{"s":"WHITEBIT:RDNTUSDT","d":[]},{"s":"BITGET:MBOXUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:2192WETH_796462.USD","d":[]},{"s":"BITRUE:TFUELUSDT","d":[]},{"s":"MEXC:DODUSDT","d":[]},{"s":"UNISWAP:FAIWETH_4D7324","d":[]},{"s":"SPOOKYSWAP:MULTIANY_A21E0B.USD","d":[]},{"s":"UNISWAP:MLNWETH_15AB03","d":[]},{"s":"HITBTC:FUNBTC","d":[]},{"s":"UNISWAP3ETH:LUCHOWWETH_D74D79.USD","d":[]},{"s":"UNISWAP3ETH:ULXUSDT","d":[]},{"s":"COINEX:ACEUSDT","d":[]},{"s":"ZOOMEX:ARKUSDT.P","d":[]},{"s":"BITFINEX:SHIBBTC","d":[]},{"s":"UNISWAP3ETH:HEARTUSDC","d":[]},{"s":"UNISWAP:MANEWETH_401347.USD","d":[]},{"s":"UNISWAP3POLYGON:MIMATICUSDC_7F567C.USD","d":[]},{"s":"QUICKSWAP:PS1WMATIC_AB4B9F.USD","d":[]},{"s":"UNISWAP:GIGAWETH_0936FF","d":[]},{"s":"HITBTC:AGIUSDT","d":[]},{"s":"UNISWAP:XCNWETH_859F70","d":[]},{"s":"UNISWAP:CTASKWETH_8D82B6.USD","d":[]},{"s":"UNISWAP:LSDWETH_3322F4","d":[]},{"s":"UNISWAP:FEETWETH_30A7F5.USD","d":[]},{"s":"UNISWAP3ETH:WETHFOXY","d":[]},{"s":"PHEMEX:ONEUSDT.P","d":[]},{"s":"OKX:AUCTIONUSDT.P","d":[]},{"s":"KRAKEN:ANKREUR","d":[]},{"s":"TRADERJOE:CHAMWAVAX_DE7E5F","d":[]},{"s":"MEXC:CELUSDT","d":[]},{"s":"KRAKEN:MLNUSD","d":[]},{"s":"PHEMEX:ONTUSDC","d":[]},{"s":"QUICKSWAP:DGWMATIC_71BD15.USD","d":[]},{"s":"ZOOMEX:MDTUSDT.P","d":[]},{"s":"POLONIEX:SWFTCUSDT","d":[]},{"s":"BITGET:OORTUSDT","d":[]},{"s":"COINEX:DATAUSDT","d":[]},{"s":"UNISWAP:WENNUT_D813E7","d":[]},{"s":"POLONIEX:SCUSD","d":[]},{"s":"BITHUMB:HIFIKRW","d":[]},{"s":"BYBIT:XLMUSDT","d":[]},{"s":"ZOOMEX:AGLDUSDT.P","d":[]},{"s":"UNISWAP3ETH:CHEQUSDT","d":[]},{"s":"UNISWAP3POLYGON:SOLWMATIC_F95AB4.USD","d":[]},{"s":"BINANCE:UNIETH","d":[]},{"s":"UNISWAP3ETH:WETHIDEX","d":[]},{"s":"UNISWAP3ETH:TOYBOXWETH","d":[]},{"s":"BITGET:WAXLUSDT","d":[]},{"s":"UNISWAP3ETH:PINEOWLWETH_3E6E6E.USD","d":[]},{"s":"UNISWAP:UNIWETH_D3D2E2","d":[]},{"s":"BITSTAMP:LMWREUR","d":[]},{"s":"KRAKEN:XRTEUR","d":[]},{"s":"HITBTC:VIBUSDT","d":[]},{"s":"UNISWAP:FXIWETH_8B07F7","d":[]},{"s":"BITGET:GRAPEUSDT","d":[]},{"s":"BYBIT:FLRUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHCPU","d":[]},{"s":"HITBTC:XEMUSDT","d":[]},{"s":"QUICKSWAP:CBOMBERWMATIC_1E03BE","d":[]},{"s":"WHITEBIT:ETHEUR","d":[]},{"s":"UNISWAP3ETH:QANXWETH_09117B.USD","d":[]},{"s":"UNISWAP3ETH:ALVAWETH","d":[]},{"s":"UNISWAP:BELWETH_9E98DE.USD","d":[]},{"s":"UNISWAP3ETH:ELONWETH","d":[]},{"s":"GATEIO:SWEATUSDT","d":[]},{"s":"UNISWAP:KIBSHIWETH_F22FDD","d":[]},{"s":"UNISWAP:DATAWETH_862879.USD","d":[]},{"s":"UNISWAP3ETH:HOTWETH","d":[]},{"s":"UNISWAP3ETH:BDXDRAGONX_142F44.USD","d":[]},{"s":"POLONIEX:SUNTRX","d":[]},{"s":"POLONIEX:OPOSUSDT","d":[]},{"s":"MEXC:KZENUSDT","d":[]},{"s":"UNISWAP3ETH:SIWETH_BE13B6.USD","d":[]},{"s":"BISWAP:APEWBNB_C2619B.USD","d":[]},{"s":"UNISWAP:URUSWETH_EBD54A.USD","d":[]},{"s":"BINANCE:BETAUSDT","d":[]},{"s":"ZOOMEX:BATUSDT.P","d":[]},{"s":"MEXC:PASGUSDT","d":[]},{"s":"HITBTC:GNXETH","d":[]},{"s":"BITHUMB:XRPKRW","d":[]},{"s":"UNISWAP3POLYGON:TEGRIDYWMATIC_F4A137.USD","d":[]},{"s":"COINBASE:RAREUSD","d":[]},{"s":"KRAKEN:ENJUSD","d":[]},{"s":"KRAKEN:GMXUSD","d":[]},{"s":"MEXC:ZURRUSDT","d":[]},{"s":"PIONEX:MBLUSDT.P","d":[]},{"s":"UNISWAP:VROOMWETH_32E1A0.USD","d":[]},{"s":"BYBIT:RENUSDT.P","d":[]},{"s":"GATEIO:FLYUSDT","d":[]},{"s":"POLONIEX:DOGEUSDC","d":[]},{"s":"UNISWAP3ETH:WOOFWETH","d":[]},{"s":"WHITEBIT:DOGETRY","d":[]},{"s":"UNISWAP:XRPWETH_B49159.USD","d":[]},{"s":"UNISWAP3ETH:SPONGEWETH","d":[]},{"s":"UNISWAP3ARBITRUM:UNDWETH_0D6C10.USD","d":[]},{"s":"GATEIO:QIUSDT","d":[]},{"s":"BINANCEUS:LSKUSDT","d":[]},{"s":"SPOOKYSWAP:TCSWFTM_ECDE1F.USD","d":[]},{"s":"QUICKSWAP:YENJPYC_9CC4F1.USD","d":[]},{"s":"UNISWAP3ETH:LINKZENIQ","d":[]},{"s":"MEXC:NAKAUSDT","d":[]},{"s":"COINEX:PROMUSDT","d":[]},{"s":"GATEIO:CLIPSUSDT","d":[]},{"s":"POLONIEX:CSASUSDT","d":[]},{"s":"UNISWAP3ETH:XCHFWETH","d":[]},{"s":"QUICKSWAP:SSGTXUSDT_997A59","d":[]},{"s":"BINGX:CRVUSDT.PS","d":[]},{"s":"PHEMEX:RPLUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:LDOUSDT_657B6D.USD","d":[]},{"s":"UNISWAP:DOGE1WETH_8EED19.USD","d":[]},{"s":"UNISWAP3ETH:ZOOAMUBI_3AE709.USD","d":[]},{"s":"UNISWAP3ETH:WETHETHM","d":[]},{"s":"UNISWAP:ROYAWETH_6D9D24.USD","d":[]},{"s":"TRADERJOE:JEWELWAVAX_E90E8B","d":[]},{"s":"TRADERJOE:HOOFWAVAX_BC7073.USD","d":[]},{"s":"MEXC:OCEANUSDT.P","d":[]},{"s":"MEXC:LOOKSUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEPEUSDT","d":[]},{"s":"WHITEBIT:POLSUSDT","d":[]},{"s":"UNISWAP:IMWETH_A62376.USD","d":[]},{"s":"UNISWAP:PAIWETH_C45F24","d":[]},{"s":"BINANCE:IOTAUSDT","d":[]},{"s":"PIONEX:LUNA2USDT.P","d":[]},{"s":"POLONIEX:WINRUSDT","d":[]},{"s":"SPOOKYSWAP:SUSHIWFTM_F84E31","d":[]},{"s":"GATEIO:ARTYUSDT","d":[]},{"s":"GATEIO:VELODROMEUSDT","d":[]},{"s":"GATEIO:FRAXUSDT","d":[]},{"s":"TRADERJOE:MAIWAVAX_23DDCA.USD","d":[]},{"s":"ZOOMEX:CFXUSDT.P","d":[]},{"s":"MEXC:UNBUSDT","d":[]},{"s":"UNISWAP3ETH:PRISMAUSDT_5B9C30.USD","d":[]},{"s":"BINANCEUS:ASTRUSDT","d":[]},{"s":"BYBIT:CVXUSDT.P","d":[]},{"s":"GATEIO:IOENUSDT","d":[]},{"s":"WHITEBIT:RNDRUSDT.P","d":[]},{"s":"BITRUE:MATICUSDT","d":[]},{"s":"UNISWAP:KEXWETH_1BFFFB.USD","d":[]},{"s":"BYBIT:ATOMUSDT.2S","d":[]},{"s":"BTSE:EGLDUSD.P","d":[]},{"s":"UNISWAP3POLYGON:AAVEWBTC_141688.USD","d":[]},{"s":"SPOOKYSWAP:MCRTUSDC_8B1F44","d":[]},{"s":"BYBIT:WEMIXUSDT","d":[]},{"s":"UNISWAP3ETH:SPELLWETH_FEBF38.USD","d":[]},{"s":"BLOFIN:CHZUSDT.P","d":[]},{"s":"HITBTC:RENUSD","d":[]},{"s":"UNISWAP:XRP2WETH_DE55EC.USD","d":[]},{"s":"BITHUMB:BNBKRW","d":[]},{"s":"COINEX:DIOUSDT","d":[]},{"s":"UNISWAP:MCCWETH_9C2B19","d":[]},{"s":"QUICKSWAP:CONEWETH_C3266F.USD","d":[]},{"s":"BITGET:3ULLUSDT","d":[]},{"s":"BITGET:XRPEUR","d":[]},{"s":"PHEMEX:ETHUSD.P","d":[]},{"s":"QUICKSWAP:FOOTIEWMATIC_084B18","d":[]},{"s":"UNISWAP3ETH:EPEPEWETH","d":[]},{"s":"UNISWAP:SPICEWETH_1A7363.USD","d":[]},{"s":"UNISWAP3ETH:PRIMEUSDC","d":[]},{"s":"UNISWAP:FTXWETH_3B6EA8","d":[]},{"s":"HITBTC:PANBTC","d":[]},{"s":"MEXC:STITCHUSDT","d":[]},{"s":"MEXC:EMPUSDT","d":[]},{"s":"UNISWAP:SONICBOTWETH_46E442.USD","d":[]},{"s":"SPOOKYSWAP:RIPWFTM_EDDB9F.USD","d":[]},{"s":"BITGET:STRKUSDT","d":[]},{"s":"HITBTC:WAXPUSDT","d":[]},{"s":"UNISWAP:LVMWETH_5A713B","d":[]},{"s":"BINGX:CTCUSDT.P","d":[]},{"s":"UNISWAP3ETH:OOFPWETH","d":[]},{"s":"UNISWAP:CWEBUSDT_689D2E","d":[]},{"s":"UNISWAP:CELWETH_A5E79B","d":[]},{"s":"UNISWAP3ETH:LINKGRT","d":[]},{"s":"GATEIO:NVIRUSDT","d":[]},{"s":"BITFINEX:LINKBTC","d":[]},{"s":"UNISWAP3ETH:NYMWETH_968510.USD","d":[]},{"s":"UNISWAP3ETH:CO2AUSDT","d":[]},{"s":"BYBIT:ETHUSDU2024","d":[]},{"s":"HITBTC:ETHBTC","d":[]},{"s":"HITBTC:LITUSDT","d":[]},{"s":"UNISWAP3POLYGON:MATICXSTMATIC_C63123.USD","d":[]},{"s":"TRADERJOE:NEWOWAVAX_393158.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCWETH_73B14A.USD","d":[]},{"s":"QUICKSWAP:WLDUSDC_9FB518","d":[]},{"s":"HITBTC:ZENETH","d":[]},{"s":"UNISWAP3ETH:DDUSDT_888B5F.USD","d":[]},{"s":"GATEIO:LOVELYUSDT","d":[]},{"s":"UNISWAP3ETH:GODSWETH_162CEC.USD","d":[]},{"s":"BISWAP:BMVLWBNB_E01EDA.USD","d":[]},{"s":"UNISWAP3ETH:USDTUBX","d":[]},{"s":"UNISWAP:MESSIWETH_7754BA","d":[]},{"s":"UNISWAP3ETH:WETHAAI","d":[]},{"s":"PIONEX:JOEUSDT.P","d":[]},{"s":"UNISWAP:PVPWETH_F38A1E.USD","d":[]},{"s":"GATEIO:GLQUSDT","d":[]},{"s":"UNISWAP:BSLWETH_EC5409","d":[]},{"s":"GATEIO:VOLTUSDT","d":[]},{"s":"BINANCE:ALGOFDUSD","d":[]},{"s":"COINEX:RSCUSDT","d":[]},{"s":"GATEIO:GAYPEPEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPLT","d":[]},{"s":"MEXC:TOKEUSDT","d":[]},{"s":"POLONIEX:TRBUSDT","d":[]},{"s":"MEXC:SFARMUSDT","d":[]},{"s":"UNISWAP3ETH:MEMECAPTAINZ_7DA14D.USD","d":[]},{"s":"COINEX:COWUSDT","d":[]},{"s":"COINBASE:CGLDGBP","d":[]},{"s":"QUICKSWAP:NEARWMATIC_35140E","d":[]},{"s":"TRADERJOE:BABYCOQWAVAX_50E5B8.USD","d":[]},{"s":"BITFINEX:ADAUST","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTUSDC_32B89D.USD","d":[]},{"s":"BYBIT:DSRUNUSDT","d":[]},{"s":"UNISWAP3ETH:SHIWETH_959C7D.USD","d":[]},{"s":"HITBTC:ATOMUSDT","d":[]},{"s":"BINANCE:TWTUSDT","d":[]},{"s":"UNISWAP3ETH:IAIWETH","d":[]},{"s":"TRADERJOE:BOOWAVAX_EBF50B.USD","d":[]},{"s":"BITKUB:NEARTHB","d":[]},{"s":"GATEIO:OCCUSDT","d":[]},{"s":"UNISWAP:KISHIMOTOWETH_A3BDE9.USD","d":[]},{"s":"MEXC:FIBOUSDT","d":[]},{"s":"BITHUMB:ORBSKRW","d":[]},{"s":"OKX:CROUSDT.P","d":[]},{"s":"UNISWAP:REVVWETH_724D5C","d":[]},{"s":"UNISWAP:DOPEWETH_F73976.USD","d":[]},{"s":"MEXC:SUSHIUSDT.P","d":[]},{"s":"KRAKEN:CHRUSD","d":[]},{"s":"GEMINI:BTCGBP","d":[]},{"s":"COINEX:TSUKAUSDT","d":[]},{"s":"HITBTC:GALAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GNSUSDC_267FCF.USD","d":[]},{"s":"UNISWAP:TIMEWETH_5D7FE3.USD","d":[]},{"s":"BITHUMB:TTKRW","d":[]},{"s":"BINANCE:STPTBTC","d":[]},{"s":"UNISWAP3POLYGON:BOMWETH_D9847D.USD","d":[]},{"s":"COINEX:WAXLUSDT","d":[]},{"s":"UNISWAP3POLYGON:AEGUSDC_8CD850.USD","d":[]},{"s":"GATEIO:SEROUSDT","d":[]},{"s":"MEXC:TRU1USDT","d":[]},{"s":"UNISWAP:PEEPOWETH_251CE6","d":[]},{"s":"UNISWAP3ETH:PENDLEWETH","d":[]},{"s":"GATEIO:XWGUSDT","d":[]},{"s":"HITBTC:BALBTC","d":[]},{"s":"UNISWAP3ETH:DEFIWETH_BA0C05.USD","d":[]},{"s":"BINANCE:MBOXTRY","d":[]},{"s":"COINEX:NOMUSDT","d":[]},{"s":"BITMEX:P_FTXZ2026","d":[]},{"s":"UNISWAP:ROYAWETH_6D9D24","d":[]},{"s":"UNISWAP:BLEPEWETH_2547BC.USD","d":[]},{"s":"TRADERJOE:STACKWAVAX_516C0B.USD","d":[]},{"s":"BITGET:ETHUSDT.P","d":[]},{"s":"POLONIEX:ETCETH","d":[]},{"s":"BITGET:COQUSDT","d":[]},{"s":"UNISWAP3POLYGON:SUREWETH_511F84.USD","d":[]},{"s":"BINANCE:WINGBTC","d":[]},{"s":"BITSTAMP:BCHBTC","d":[]},{"s":"UNISWAP:USDTUSDC_3041CB","d":[]},{"s":"UNISWAP3ETH:JCDWETH","d":[]},{"s":"BLOFIN:MOBILEUSDT.P","d":[]},{"s":"QUICKSWAP:GHSTQUICK_8B1FD7","d":[]},{"s":"BINGX:OMGUSDT.P","d":[]},{"s":"UNISWAP:TIGGERWETH_9AC29A.USD","d":[]},{"s":"UNISWAP3ETH:WETHWOOO","d":[]},{"s":"BYBIT:BIGTIMEUSDT.P","d":[]},{"s":"OKX:PYTHUSDT.P","d":[]},{"s":"BINANCE:ETHUSD.P","d":[]},{"s":"UNISWAP:OILWETH_7ACE17","d":[]},{"s":"UNISWAP3ETH:WETHBEAM","d":[]},{"s":"GATEIO:GMTUSDT.3S","d":[]},{"s":"TRADERJOE:CHIHUAWAVAX_04463A.USD","d":[]},{"s":"UNISWAP:XPERPWETH_F57B9D","d":[]},{"s":"BYBIT:INJUSDT","d":[]},{"s":"GATEIO:DOMEUSDT","d":[]},{"s":"BINGX:ADAUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:AAVEWMATIC_89F485.USD","d":[]},{"s":"MEXC:SOLPEPEUSDT","d":[]},{"s":"POLONIEX:KWENTAUSDT","d":[]},{"s":"SPOOKYSWAP:KNGFUUWFTM_F704F5.USD","d":[]},{"s":"HITBTC:BRDBTC","d":[]},{"s":"WHITEBIT:ETHUSDT","d":[]},{"s":"HITBTC:PHBUSD","d":[]},{"s":"COINBASE:JASMYUSDT","d":[]},{"s":"BINANCEUS:DARUSDT","d":[]},{"s":"MEXC:FTTUSDT.P","d":[]},{"s":"POLONIEX:WINTRX","d":[]},{"s":"UNISWAP:UNLEASHWETH_F64E49.USD","d":[]},{"s":"MEXC:WATTUSDT","d":[]},{"s":"GEMINI:ELONUSD","d":[]},{"s":"BITGET:OGUSDT","d":[]},{"s":"GATEIO:OOEUSDT","d":[]},{"s":"MEXC:WJXNUSDT","d":[]},{"s":"BYBIT:PENDLEUSDT","d":[]},{"s":"MEXC:METAFIUSDT","d":[]},{"s":"COINBASE:CROEUR","d":[]},{"s":"UNISWAP:FANXWETH_4742E4.USD","d":[]},{"s":"MEXC:HUTUSDT","d":[]},{"s":"UNISWAP:DOG1WETH_D8963D","d":[]},{"s":"UNISWAP3ETH:IQTUSDT_8F9C6A.USD","d":[]},{"s":"PANGOLIN:BCASHWAVAX_07280F.USD","d":[]},{"s":"GATEIO:EQUSDT","d":[]},{"s":"BITGET:ZZZUSDT","d":[]},{"s":"BYBIT:BBLUSDT","d":[]},{"s":"BTSE:SHIBUSD","d":[]},{"s":"BITRUE:SUSHIUSDT","d":[]},{"s":"HITBTC:ALGOETH","d":[]},{"s":"PHEMEX:HOTUSDT.P","d":[]},{"s":"MEXC:KISHUUSDT","d":[]},{"s":"HITBTC:ICPBTC","d":[]},{"s":"UNISWAP3ARBITRUM:LUAUSDUSDT_00C8E9.USD","d":[]},{"s":"UNISWAP3ETH:GOLDWETH_17C37A.USD","d":[]},{"s":"UNISWAP:LOCAIWETH_7B7D82.USD","d":[]},{"s":"POLONIEX:BONDUSDT","d":[]},{"s":"BTSE:XMRUSD","d":[]},{"s":"UNISWAP3ETH:SOLWETH","d":[]},{"s":"PIONEX:INJUSDT.P","d":[]},{"s":"POLONIEX:BTTUSDT","d":[]},{"s":"BLOFIN:ACHUSDT.P","d":[]},{"s":"UNISWAP3ETH:ZENWETH_1DCAF5.USD","d":[]},{"s":"MEXC:RADUSDT.P","d":[]},{"s":"COINBASE:SANDUSDT","d":[]},{"s":"COINEX:GAMMAUSDT","d":[]},{"s":"GATEIO:FDTUSDT","d":[]},{"s":"MEXC:SUDOUSDT","d":[]},{"s":"UNISWAP3ETH:DACATWETH_E6C977.USD","d":[]},{"s":"UNISWAP3ETH:WETHBEEF","d":[]},{"s":"QUICKSWAP:XGEMWMATIC_BFB158.USD","d":[]},{"s":"KRAKEN:OCEANGBP","d":[]},{"s":"COINEX:ONTUSDC","d":[]},{"s":"HITBTC:MATICETH","d":[]},{"s":"UNISWAP3ETH:MILADYWETH_BE6A94.USD","d":[]},{"s":"UNISWAP3ETH:YUMYUMWETH_9E216F.USD","d":[]},{"s":"MEXC:TFBXUSDT","d":[]},{"s":"MEXC:ARKUSDT","d":[]},{"s":"BYBIT:PEOPLEUSDT","d":[]},{"s":"MEXC:OPULUSDT","d":[]},{"s":"KRAKEN:LSKETH","d":[]},{"s":"POLONIEX:SUSHIUSDT","d":[]},{"s":"BYBIT:ROSEUSDT.P","d":[]},{"s":"UNISWAP:JESUS20WETH_404677.USD","d":[]},{"s":"QUICKSWAP:UNIWETH_F71352.USD","d":[]},{"s":"MEXC:CANTOUSDT","d":[]},{"s":"TRADERJOE:CINUWAVAX_4A24F7.USD","d":[]},{"s":"BTSE:DOGEUSD.P","d":[]},{"s":"BITGET:BMTCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARADS","d":[]},{"s":"UNISWAP3ETH:WETHJPEG","d":[]},{"s":"UNISWAP3ETH:BAHAMASWETH_A44BBE.USD","d":[]},{"s":"UNISWAP3ETH:XDOGEWETH","d":[]},{"s":"BITHUMB:YFIKRW","d":[]},{"s":"SPOOKYSWAP:SUPAUSDC_EF8354","d":[]},{"s":"MEXC:TGTUSDT","d":[]},{"s":"PHEMEX:LUNCUSDT.P","d":[]},{"s":"UNISWAP3ETH:XAIUSDC_73DB82.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_AEBDCA.USD","d":[]},{"s":"DYDX:LTCUSD.P","d":[]},{"s":"XEXCHANGE:BSKWEGLD","d":[]},{"s":"GATEIO:NUMUSDT","d":[]},{"s":"KRAKEN:KINEUR","d":[]},{"s":"UNISWAP:REKTWETH_2E8A93","d":[]},{"s":"UNISWAP3ETH:WETHOJEE","d":[]},{"s":"UNISWAP:OPMNDWETH_19823F","d":[]},{"s":"BITHUMB:ILVKRW","d":[]},{"s":"POLONIEX:LSKUSDT","d":[]},{"s":"GATEIO:ORBUSDT","d":[]},{"s":"MEXC:BHOUSDT","d":[]},{"s":"BYBIT:ETCUSDT","d":[]},{"s":"MEXC:MXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGTROK","d":[]},{"s":"GATEIO:PSTAKEUSDT","d":[]},{"s":"HITBTC:XRPHIT","d":[]},{"s":"UNISWAP3ETH:STARLWETH","d":[]},{"s":"UNISWAP:LARRYWETH_C174F3","d":[]},{"s":"QUICKSWAP:PYRWMATIC_6FC336","d":[]},{"s":"BINANCE:EURUSDT","d":[]},{"s":"BINANCE:ARBETH","d":[]},{"s":"UNISWAP3ETH:WETHCOC","d":[]},{"s":"UNISWAP3ETH:MAVIAWETH_302C1E.USD","d":[]},{"s":"MEXC:RSRUSDT","d":[]},{"s":"BITGET:RDNTUSDT.P","d":[]},{"s":"MEXC:ARIXUSDT","d":[]},{"s":"BITGET:ACAUSDT","d":[]},{"s":"UNISWAP:CIVWETH_ED2474","d":[]},{"s":"POLONIEX:CAPOUSDT","d":[]},{"s":"MEXC:MYROUSDT","d":[]},{"s":"DERIBIT:MATICUSDC.P","d":[]},{"s":"UNISWAP3ETH:VEMPWETH_E0E526.USD","d":[]},{"s":"KRAKEN:DASHBTC","d":[]},{"s":"UNISWAP:BGPTWETH_A00100","d":[]},{"s":"PANGOLIN:TSDWAVAX_67E395","d":[]},{"s":"BYBIT:AGIXUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WETHUSDT_DD0C6B.USD","d":[]},{"s":"UNISWAP3POLYGON:SNXWMATIC_5CD1C9.USD","d":[]},{"s":"HITBTC:POEUSD","d":[]},{"s":"COINEX:ALPHUSDT","d":[]},{"s":"BITSTAMP:UMAEUR","d":[]},{"s":"GATEIO:OSKYUSDT","d":[]},{"s":"BITGET:WITCHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSETH2","d":[]},{"s":"QUICKSWAP:TIMEWETH_86FD28","d":[]},{"s":"HITBTC:CTKUSD","d":[]},{"s":"POLONIEX:NMRUSD","d":[]},{"s":"UNISWAP3POLYGON:LDOUSDT_F339B9.USD","d":[]},{"s":"GATEIO:YFDAIUSDT","d":[]},{"s":"BYBIT:VRTXUSDT","d":[]},{"s":"MEXC:REUNIUSDT","d":[]},{"s":"TRADERJOE:BLIZZWAVAX_401FDD.USD","d":[]},{"s":"WAGYUSWAP:WAGSCAR_2D2DFB","d":[]},{"s":"COINEX:COMPUSDT","d":[]},{"s":"UNISWAP:DAWNUSDT_E506A8","d":[]},{"s":"MEXC:IDEXUSDT.P","d":[]},{"s":"BYBIT:MAVIAUSDT.P","d":[]},{"s":"BTSE:DYDXUSD","d":[]},{"s":"QUICKSWAP:GAMERWETH_1DF661.USD","d":[]},{"s":"MEXC:PENDLEUSDT.P","d":[]},{"s":"BINGX:NMRUSDT.PS","d":[]},{"s":"UNISWAP3ETH:VEEWETH_8EA483.USD","d":[]},{"s":"UNISWAP3ETH:AGRSWETH","d":[]},{"s":"UNISWAP3ETH:EGGXWETH_26BEBB.USD","d":[]},{"s":"UNISWAP3ETH:USDCQRDO","d":[]},{"s":"UNISWAP:RINWETH_DB030E.USD","d":[]},{"s":"UNISWAP3ETH:MICKEYWETH_5EE0FD.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SVETHFRXETH_6A2835.USD","d":[]},{"s":"UNISWAP:SAUDIRAPTORWETH_B57B00.USD","d":[]},{"s":"UNISWAP:ARCAIWETH_94CE5A.USD","d":[]},{"s":"UNISWAP:OSHIBWETH_F0451A.USD","d":[]},{"s":"UNISWAP3ETH:JNEWETH_08E7B7.USD","d":[]},{"s":"BITKUB:CYBERTHB","d":[]},{"s":"TRADERJOE:PERAWAVAX_75BEBD","d":[]},{"s":"MEXC:MDIUSDT","d":[]},{"s":"GATEIO:MISTUSDT","d":[]},{"s":"MEXC:HACUSDT","d":[]},{"s":"UNISWAP3ETH:HUNDREDWETH","d":[]},{"s":"COINEX:AIPGUSDT","d":[]},{"s":"UNISWAP:TENWETH_FD3F91.USD","d":[]},{"s":"GATEIO:FERCUSDT","d":[]},{"s":"GATEIO:ONEUSDT","d":[]},{"s":"QUICKSWAP:FIBOWMATIC_CD7593.USD","d":[]},{"s":"UNISWAP3POLYGON:RNDRUSDC_DE83F8.USD","d":[]},{"s":"UNISWAP:USHIBAWETH_979A6E.USD","d":[]},{"s":"BINGX:JASMYUSDT.P","d":[]},{"s":"BTSE:ENJUSD.P","d":[]},{"s":"UNISWAP:SPGBBWETH_BE2F4E","d":[]},{"s":"UNISWAP:QOMWETH_8EF79D.USD","d":[]},{"s":"MEXC:NVXUSDT","d":[]},{"s":"BITGET:DONSUSDT","d":[]},{"s":"KRAKEN:DOTETH","d":[]},{"s":"EXMO:NEOUSD","d":[]},{"s":"UNISWAP:VADERWETH_452C60","d":[]},{"s":"UNISWAP3ETH:RAINWETH","d":[]},{"s":"HITBTC:NEARBTC","d":[]},{"s":"BLOFIN:AIDOGEUSDT.P","d":[]},{"s":"TRADERJOE:SMRTRWAVAX_7B7617","d":[]},{"s":"UNISWAP3ETH:SEEDSWETH_5F78A7.USD","d":[]},{"s":"ZOOMEX:PIXELUSDT.P","d":[]},{"s":"UNISWAP:EEYORWETH_E8B8DB","d":[]},{"s":"UNISWAP3ETH:WETHCVXCRV","d":[]},{"s":"BINANCE:MATICETH","d":[]},{"s":"MEXC:VANRYUSDT","d":[]},{"s":"TRADERJOE:BLANCMIM_9B4E1C","d":[]},{"s":"MEXC:AVGUSDT","d":[]},{"s":"XEXCHANGE:OUROUSDC","d":[]},{"s":"TRADERJOE:AVXLWAVAX_02D6BE","d":[]},{"s":"UNISWAP:DIAWETH_4DC02E","d":[]},{"s":"POLONIEX:PAPIUSDT","d":[]},{"s":"UNISWAP:ITWETH_F03371","d":[]},{"s":"UNISWAP3ETH:WETHERRDB","d":[]},{"s":"UNISWAP3ETH:MOBYWETH_0F2E5E.USD","d":[]},{"s":"BINANCE:TIATUSD","d":[]},{"s":"PHEMEX:IOTXUSDT","d":[]},{"s":"QUICKSWAP:UPMATICWMATIC_928ED5","d":[]},{"s":"PANGOLIN:LOSTWAVAX_846168","d":[]},{"s":"GATEIO:RAZEUSDT","d":[]},{"s":"BINGX:MDTUSDT.PS","d":[]},{"s":"BINANCE:ARTRY","d":[]},{"s":"HITBTC:AEUSD","d":[]},{"s":"UNISWAP3ETH:SPLYWETH","d":[]},{"s":"BITGET:HOLDUSDT","d":[]},{"s":"BLOFIN:YFIUSDT.P","d":[]},{"s":"MEXC:DUSKUSDT.P","d":[]},{"s":"BISWAP:XRPWBNB_5DC30B","d":[]},{"s":"HITBTC:LUNCUSDC","d":[]},{"s":"TRADERJOE:BALLWAVAX_05A9AE","d":[]},{"s":"BYBIT:TRUUSDT.P","d":[]},{"s":"BINANCEUS:LTOUSDT","d":[]},{"s":"BINANCE:BNBEUR","d":[]},{"s":"MEXC:TROLLINUUSDT","d":[]},{"s":"UNISWAP:WHATWETH_0AC9BF","d":[]},{"s":"BINANCE:YGGUSDT","d":[]},{"s":"MEXC:UBSNUSDT","d":[]},{"s":"COINEX:IRONUSDT","d":[]},{"s":"HITBTC:DYDXUSDC","d":[]},{"s":"POLONIEX:RUGUSDT","d":[]},{"s":"MEXC:AMEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSU","d":[]},{"s":"UNISWAP3ETH:EXRDUSDT","d":[]},{"s":"GATEIO:DKAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GOHMUSDC_71124A.USD","d":[]},{"s":"UNISWAP:SMOKEWETH_98DBA9.USD","d":[]},{"s":"MEXC:HNTUSDT.P","d":[]},{"s":"UNISWAP:DGPUWETH_E988FF","d":[]},{"s":"BITFINEX:INJUSD","d":[]},{"s":"BITFINEX:ZETAUSD","d":[]},{"s":"HITBTC:BANUSDT","d":[]},{"s":"BISWAP:1MTWBNB_D0222E.USD","d":[]},{"s":"BITGET:DOGEUSDC","d":[]},{"s":"UNISWAP:XRP2WETH_DE55EC","d":[]},{"s":"BINANCEUS:BNBBTC","d":[]},{"s":"SPOOKYSWAP:BANDWFTM_91B39D","d":[]},{"s":"KRAKEN:LSKEUR","d":[]},{"s":"UNISWAP3ETH:SLNWETH","d":[]},{"s":"BITFINEX:SOLUST.P","d":[]},{"s":"UNISWAP3ETH:SNEKWETH_A54D98.USD","d":[]},{"s":"UNISWAP:ROBOWETH_155C11","d":[]},{"s":"UNISWAP:SNOWWETH_E94EAB.USD","d":[]},{"s":"QUICKSWAP:SANDWMATIC_369582","d":[]},{"s":"TRADERJOE:PIEWAVAX_2B0E98.USD","d":[]},{"s":"PHEMEX:BNBUSDC","d":[]},{"s":"QUICKSWAP:JPYCORBS_D01C07","d":[]},{"s":"PHEMEX:APEUSDC","d":[]},{"s":"UNISWAP3ETH:WETHBADGER","d":[]},{"s":"XEXCHANGE:TTGWEGLD","d":[]},{"s":"SPOOKYSWAP:WBANWFTM_1406E4.USD","d":[]},{"s":"QUICKSWAP:ELONWMATIC_29B646","d":[]},{"s":"BINGX:AUDIOUSDT.P","d":[]},{"s":"BYBIT:BALUSDT.P","d":[]},{"s":"COINEX:ERGBTC","d":[]},{"s":"BITGET:LTCUSDC","d":[]},{"s":"UNISWAP3ETH:XENUSDC","d":[]},{"s":"UNISWAP3ETH:WETHWFIO","d":[]},{"s":"GATEIO:TAOUSDT","d":[]},{"s":"UNISWAP:PAXUWETH_A9C00D","d":[]},{"s":"GATEIO:10SETUSDT","d":[]},{"s":"UNISWAP:TRUMPWETH_7F91A7.USD","d":[]},{"s":"UNISWAP3ETH:GOVIWETH","d":[]},{"s":"UNISWAP:PEPEWETH_8616B4.USD","d":[]},{"s":"QUICKSWAP:POLYSHIBAWMATIC_F934AD","d":[]},{"s":"BINANCEUS:BLURUSDT","d":[]},{"s":"COINBASE:CVCUSD","d":[]},{"s":"COINEX:XNOBTC","d":[]},{"s":"BITFINEX:EUTMXNT","d":[]},{"s":"BITRUE:IDEXUSDC","d":[]},{"s":"GATEIO:4TOKENUSDT","d":[]},{"s":"HITBTC:AKROBTC","d":[]},{"s":"GATEIO:ICPUSDT.3S","d":[]},{"s":"BYBIT:XRPBTC","d":[]},{"s":"UNISWAP3ETH:WETHPRTC","d":[]},{"s":"QUICKSWAP:ATKWETH_59213D.USD","d":[]},{"s":"UNISWAP3OPTIMISM:SNXOP_0193E6.USD","d":[]},{"s":"GATEIO:NEARUSDT.3L","d":[]},{"s":"GATEIO:ASTRAUSDT","d":[]},{"s":"BITRUE:LINKBTC","d":[]},{"s":"HITBTC:EUNOUSD","d":[]},{"s":"TRADERJOE:MINDWAVAX_F62679","d":[]},{"s":"BITRUE:OCEANUSDT","d":[]},{"s":"GATEIO:OGVUSDT","d":[]},{"s":"BYBIT:BELUSDT.P","d":[]},{"s":"POLONIEX:RIBBITUSDT","d":[]},{"s":"COINEX:CHEEMSUSDT","d":[]},{"s":"UNISWAP3ETH:WOOWETH_122E55.USD","d":[]},{"s":"MEXC:SYNUSDT","d":[]},{"s":"POLONIEX:FARTUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:USDCUSDT_A73C62.USD","d":[]},{"s":"BITGET:ATOMUSDT.P","d":[]},{"s":"UNISWAP:WISEWETH_21B806.USD","d":[]},{"s":"UNISWAP3ETH:WETHMOCA","d":[]},{"s":"UNISWAP:PINCEPTIONDAI_0C3088","d":[]},{"s":"UNISWAP:CFYWETH_A46FF4","d":[]},{"s":"MEXC:EJSUSDT","d":[]},{"s":"WOONETWORK:ZIGUSDT","d":[]},{"s":"BITFINEX:WIFUST","d":[]},{"s":"BITRUE:LUCUSDT","d":[]},{"s":"UNISWAP3ETH:UNIAAVE","d":[]},{"s":"POLONIEX:PSIUSDT","d":[]},{"s":"SPOOKYSWAP:FOOWFTM_157F91.USD","d":[]},{"s":"UNISWAP:CMOSWETH_5B8AEF","d":[]},{"s":"GATEIO:DOGIUSDT","d":[]},{"s":"POLONIEX:CUDOSUSDT","d":[]},{"s":"MEXC:BSTUSDT","d":[]},{"s":"UNISWAP3POLYGON:LINKWMATIC_98B916.USD","d":[]},{"s":"MEXC:LAVEUSDT","d":[]},{"s":"BINANCE:SEIUSDC","d":[]},{"s":"TRADERJOE:EMUNWAVAX_5CA330.USD","d":[]},{"s":"UNISWAP3ETH:WETHTOKA","d":[]},{"s":"UNISWAP3ARBITRUM:MBOXWETH_4B5B62.USD","d":[]},{"s":"POLONIEX:SGUSDT","d":[]},{"s":"BINANCE:BTCRON","d":[]},{"s":"BITKUB:QNTTHB","d":[]},{"s":"UNISWAP3ETH:WETHTMNT","d":[]},{"s":"BINANCE:ETHBIDR","d":[]},{"s":"COINBASE:ICPBTC","d":[]},{"s":"UNISWAP3ETH:XSGDUSDC_627965.USD","d":[]},{"s":"BITHUMB:STRKKRW","d":[]},{"s":"UNISWAP3ETH:WETHACH","d":[]},{"s":"UNISWAP3ETH:CRVWETH","d":[]},{"s":"UNISWAP3ETH:LYRAWETH","d":[]},{"s":"DYDX:ALGOUSD.P","d":[]},{"s":"TRADERJOE:AVBWAVAX_28065B","d":[]},{"s":"MEXC:TRIASUSDT","d":[]},{"s":"COINEX:DCRUSDT","d":[]},{"s":"WHITEBIT:NFPUSDT","d":[]},{"s":"HITBTC:XDCUSDT","d":[]},{"s":"MEXC:AZYUSDT","d":[]},{"s":"UNISWAP3ETH:IPXWETH","d":[]},{"s":"UNISWAP:GNXWETH_133533","d":[]},{"s":"MEXC:PEPESONUSDT","d":[]},{"s":"QUICKSWAP:SUREWETH_F9008F","d":[]},{"s":"UNISWAP3ETH:WETHSWETH","d":[]},{"s":"POLONIEX:BIGUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WSTETHWETH_4A5A2A.USD","d":[]},{"s":"KRAKEN:DOGEUSD.PM","d":[]},{"s":"OKX:FITFIUSDT.P","d":[]},{"s":"TRADERJOE:SMRTWAVAX_F07084","d":[]},{"s":"UNISWAP:CHARSTARAIWETH_848EF7","d":[]},{"s":"KRAKEN:WOOUSD.PM","d":[]},{"s":"QUICKSWAP:DOGIRAWMATIC_38FE05","d":[]},{"s":"TRADERJOE:COCAWAVAX_3EADA8.USD","d":[]},{"s":"UNISWAP3POLYGON:PORYWMATIC_9D5CFC.USD","d":[]},{"s":"KRAKEN:OCEANEUR","d":[]},{"s":"UNISWAP:NUTWETH_36708B","d":[]},{"s":"BINGX:APTUSDT.PS","d":[]},{"s":"QUICKSWAP:BUNDWMATIC_EFBE61.USD","d":[]},{"s":"KRAKEN:XRPJPY","d":[]},{"s":"COINEX:LORDSUSDT","d":[]},{"s":"COINEX:PRQUSDT","d":[]},{"s":"UNISWAP:AW3WETH_060CF8.USD","d":[]},{"s":"BITSTAMP:EURTUSD","d":[]},{"s":"SPOOKYSWAP:ELITEWFTM_EA035A.USD","d":[]},{"s":"COINEX:GMTUSDT","d":[]},{"s":"MEXC:ALGOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBLOOD","d":[]},{"s":"WOONETWORK:PROPCUSDT","d":[]},{"s":"HITBTC:XVSUSD","d":[]},{"s":"UNISWAP:PEARWETH_7B8AC3","d":[]},{"s":"UNISWAP:LANDSWETH_AB62C6","d":[]},{"s":"TRADERJOE:DUAUSDT_C1E466","d":[]},{"s":"BINGX:VETUSDT.P","d":[]},{"s":"POLONIEX:BFTUSDT","d":[]},{"s":"UNISWAP3POLYGON:SAVEUSDC_92B945.USD","d":[]},{"s":"UNISWAP3ETH:DBCUSDT_95A29E.USD","d":[]},{"s":"UNISWAP:TODWETH_3DF44D","d":[]},{"s":"XEXCHANGE:JEXUSDC","d":[]},{"s":"WHITEBIT:KLAYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBAO","d":[]},{"s":"UNISWAP3ETH:USDTDUSK","d":[]},{"s":"UNISWAP3ETH:BUCCWETH","d":[]},{"s":"MEXC:MATICUSDC","d":[]},{"s":"MEXC:MBLUSDT.P","d":[]},{"s":"COINEX:FUDUSDT","d":[]},{"s":"UNISWAP3ETH:EZETHWETH","d":[]},{"s":"MEXC:SATSUSDT.P","d":[]},{"s":"WHITEBIT:OPUSDT","d":[]},{"s":"HITBTC:IPXUSDT","d":[]},{"s":"BITGET:NTRNUSDT","d":[]},{"s":"BINANCE:ZENETH","d":[]},{"s":"OKX:SANDUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHOOKI","d":[]},{"s":"UNISWAP:HOKKWETH_F0510F.USD","d":[]},{"s":"UNISWAP:SARCOWETH_8D3C9F.USD","d":[]},{"s":"UNISWAP:LOWBUSDT_1A3E63","d":[]},{"s":"UNISWAP:LMIWETH_C715A9","d":[]},{"s":"COINBASE:BCHUSD","d":[]},{"s":"MEXC:ZBUUSDT","d":[]},{"s":"PHEMEX:GTCUSDT.P","d":[]},{"s":"MEXC:BENQIUSDT","d":[]},{"s":"UNISWAP:MYCWETH_F6E140","d":[]},{"s":"POLONIEX:OPUSDT","d":[]},{"s":"QUICKSWAP:KOMQUICK_082B58","d":[]},{"s":"KRAKEN:SANDGBP","d":[]},{"s":"QUICKSWAP:USTWETH_D9150C","d":[]},{"s":"WHITEBIT:OMGUSDT","d":[]},{"s":"TRADERJOE:RISEWAVAX_5472E9.USD","d":[]},{"s":"UNISWAP:USAWETH_7AADB0","d":[]},{"s":"COINBASE:LTCEUR","d":[]},{"s":"UNISWAP:PAIDWETH_73A864","d":[]},{"s":"HITBTC:FUNUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPHA","d":[]},{"s":"BYBIT:DOGEUSDT","d":[]},{"s":"BLOFIN:XCHUSDT.P","d":[]},{"s":"ZOOMEX:MKRUSDT.P","d":[]},{"s":"COINBASE:BADGERUSD","d":[]},{"s":"GEMINI:ENSUSD","d":[]},{"s":"HITBTC:MKRBTC","d":[]},{"s":"MEXC:WINGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSENATE","d":[]},{"s":"UNISWAP3ETH:WETHAMUX","d":[]},{"s":"MEXC:CUDOSUSDT","d":[]},{"s":"GATEIO:OSHIUSDT","d":[]},{"s":"HITBTC:FTTBTC","d":[]},{"s":"UNISWAP:DGNWETH_B88267","d":[]},{"s":"POLONIEX:KINGUSDT","d":[]},{"s":"XEXCHANGE:ASHUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:CNFIWETH_D392B1.USD","d":[]},{"s":"GATEIO:SAUBERUSDT","d":[]},{"s":"UNISWAP:MOLLYWETH_0B1899.USD","d":[]},{"s":"UNISWAP:ORACLEWETH_A4D6E4.USD","d":[]},{"s":"UNISWAP3ETH:WETHBBL","d":[]},{"s":"KRAKEN:UMAEUR","d":[]},{"s":"MEXC:DHPUSDT","d":[]},{"s":"UNISWAP:UNOWETH_90F1BD.USD","d":[]},{"s":"BINANCEUS:WAXPUSDT","d":[]},{"s":"SPOOKYSWAP:3OMBWFTM_83A52E.USD","d":[]},{"s":"WHITEBIT:DOGEEUR","d":[]},{"s":"ZOOMEX:NMRUSDT.P","d":[]},{"s":"COINBASE:USDCGBP","d":[]},{"s":"MEXC:ZILUSDT","d":[]},{"s":"UNISWAP:GOOCHWETH_F2CB72","d":[]},{"s":"UNISWAP3ETH:WETHRARI","d":[]},{"s":"UNISWAP:GAIWETH_8328C8","d":[]},{"s":"UNISWAP:BSWETH_7B2F8F","d":[]},{"s":"QUICKSWAP:QUIDDREVV_CA2801","d":[]},{"s":"MEXC:DASHUSDT.P","d":[]},{"s":"GATEIO:BSCSUSDT","d":[]},{"s":"POLONIEX:DHTUSDT","d":[]},{"s":"PHEMEX:AVAXUSDT","d":[]},{"s":"SPOOKYSWAP:STGUSDC_0A80C5","d":[]},{"s":"GEMINI:YFIUSD","d":[]},{"s":"BINANCEUS:CTSIUSDT","d":[]},{"s":"UNISWAP3ETH:TBTCWETH","d":[]},{"s":"UNISWAP3ETH:WETHWEB3","d":[]},{"s":"UNISWAP3POLYGON:SMTWETH_131AB9.USD","d":[]},{"s":"COINEX:PTPUSDT","d":[]},{"s":"UNISWAP3ETH:SHIMAWETH","d":[]},{"s":"UNISWAP:LEASHWETH_874376.USD","d":[]},{"s":"UNISWAP3ETH:AMPUSDC","d":[]},{"s":"HITBTC:BNTBTC","d":[]},{"s":"UNISWAP:TOWERREVV_FE7444","d":[]},{"s":"SPOOKYSWAP:BAGWFTM_A1A868.USD","d":[]},{"s":"GEMINI:BTCGUSD.P","d":[]},{"s":"POLONIEX:FXSUSDT","d":[]},{"s":"KRAKEN:XMREUR","d":[]},{"s":"UNISWAP3POLYGON:SOLWMATIC_0F4389.USD","d":[]},{"s":"POLONIEX:FCT2BTC","d":[]},{"s":"BITSTAMP:UNIEUR","d":[]},{"s":"UNISWAP:MILFINWETH_7AF9C1","d":[]},{"s":"MEXC:KOINONUSDC","d":[]},{"s":"UNISWAP:CAIWETH_3D5F3B.USD","d":[]},{"s":"UNISWAP3ETH:PAWWETH_BCC489.USD","d":[]},{"s":"UNISWAP3POLYGON:APEWMATIC_66FE0B.USD","d":[]},{"s":"BITHUMB:EOSKRW","d":[]},{"s":"BITFINEX:APTUST.P","d":[]},{"s":"COINEX:ETHBTC","d":[]},{"s":"GATEIO:POLYXUSDT","d":[]},{"s":"GATEIO:PUSHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHIPP","d":[]},{"s":"UNISWAP:DOGEPWETH_4C581F","d":[]},{"s":"GATEIO:HAOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHXYO","d":[]},{"s":"PIONEX:PYTHUSDT.P","d":[]},{"s":"GATEIO:MICEUSDT","d":[]},{"s":"UNISWAP:MASK20WETH_AA617C.USD","d":[]},{"s":"BITGET:GHSTUSDT","d":[]},{"s":"UNISWAP:M2WPE_9816F2","d":[]},{"s":"UNISWAP:GEKKOWETH_DA2D09.USD","d":[]},{"s":"UNISWAP:SOCKSWETH_0DACB4.USD","d":[]},{"s":"UNISWAP3ETH:BTRFLYWETH","d":[]},{"s":"PHEMEX:FILUSDT","d":[]},{"s":"BINANCE:SUIBNB","d":[]},{"s":"POLONIEX:VGXUSDD","d":[]},{"s":"GATEIO:CROWNUSDT","d":[]},{"s":"UNISWAP:LSSUSDT_62E3C2","d":[]},{"s":"BINANCEUS:ZILUSDT","d":[]},{"s":"PHEMEX:PAXGUSDT.P","d":[]},{"s":"MEXC:CODAIUSDT","d":[]},{"s":"POLONIEX:AVAXBTC","d":[]},{"s":"UNISWAP3ETH:ABTCWETH","d":[]},{"s":"OKX:BCHUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHVIRTUAL","d":[]},{"s":"BTSE:LTCUSD.P","d":[]},{"s":"BINANCE:ORDIFDUSD","d":[]},{"s":"UNISWAP3ETH:WETHACRIA","d":[]},{"s":"UNISWAP:TPSWETH_6E96D0","d":[]},{"s":"UNISWAP:CIELWETH_650004","d":[]},{"s":"COINEX:KSMUSDC","d":[]},{"s":"BYBIT:ONTUSDT.P","d":[]},{"s":"UNISWAP:GWETH_0245A2.USD","d":[]},{"s":"QUICKSWAP:SXWETH_3FF616","d":[]},{"s":"GATEIO:IDUSDT","d":[]},{"s":"UNISWAP3ETH:EUROCUSDC_95DBB3.USD","d":[]},{"s":"UNISWAP:PEPEINUWETH_FC06EA.USD","d":[]},{"s":"BITMEX:LUNCUSDT.P","d":[]},{"s":"MEXC:ALPHUSDT","d":[]},{"s":"UNISWAP3ETH:FORTHWETH_BC9B75.USD","d":[]},{"s":"HITBTC:EDGUSD","d":[]},{"s":"MEXC:VRLUSDT","d":[]},{"s":"UNISWAP3ETH:AUTOWCELL_97CC21.USD","d":[]},{"s":"PHEMEX:GMTUSDT.P","d":[]},{"s":"WAGYUSWAP:ADAOWVLX_6AD24D.USD","d":[]},{"s":"UNISWAP:AI1WETH_F88C81.USD","d":[]},{"s":"COINBASE:NCTUSD","d":[]},{"s":"UNISWAP:JIZZWETH_05946A","d":[]},{"s":"UNISWAP:0XLWETH_0AE8D7","d":[]},{"s":"MEXC:ICPUSDT","d":[]},{"s":"PHEMEX:RONUSDT","d":[]},{"s":"POLONIEX:KLVBTC","d":[]},{"s":"HITBTC:MINAUSDT","d":[]},{"s":"BITHUMB:WAXPKRW","d":[]},{"s":"UNISWAP3ETH:KOIWETH_C84C33.USD","d":[]},{"s":"BINANCE:BEAMXTRY","d":[]},{"s":"BINANCE:VIBUSDT","d":[]},{"s":"HITBTC:VLXUSDT","d":[]},{"s":"BITFINEX:AVAXUST","d":[]},{"s":"QUICKSWAP:MAWETHMAUSDC_95E6C3","d":[]},{"s":"BITGET:MXUSDT","d":[]},{"s":"UNISWAP3ETH:ERRDBWETH","d":[]},{"s":"BITHUMB:GRNDKRW","d":[]},{"s":"UNISWAP3ETH:RSCWETH_14C603.USD","d":[]},{"s":"COINEX:LEVERUSDT","d":[]},{"s":"UNISWAP3ETH:USDTDOLZ","d":[]},{"s":"UNISWAP3ETH:USDTMTO","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_B0F6CA.USD","d":[]},{"s":"UNISWAP3OPTIMISM:OPXENWETH_FDF64C.USD","d":[]},{"s":"TRADERJOE:SNOWSHAREWAVAX_CA6EA4","d":[]},{"s":"BINANCEUS:ADAETH","d":[]},{"s":"SPOOKYSWAP:POWERWFTM_8EAE6A","d":[]},{"s":"UNISWAP:TATEWETH_D7452B.USD","d":[]},{"s":"UNISWAP3ETH:WETHEZETH","d":[]},{"s":"KRAKEN:BTCCAD","d":[]},{"s":"SPOOKYSWAP:BNBWFTM_956DE1.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBWETH_92FD14.USD","d":[]},{"s":"UNISWAP:XALPHAWETH_8EF598","d":[]},{"s":"OKX:GMXUSDT.P","d":[]},{"s":"COINEX:GNSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARPAAL","d":[]},{"s":"GATEIO:ONGUSDT","d":[]},{"s":"BITGET:BANANAUSDT","d":[]},{"s":"UNISWAP:DGNXWETH_202409","d":[]},{"s":"POLONIEX:AVAXUSDT","d":[]},{"s":"SPOOKYSWAP:ZSHAREUSDC_4B8969","d":[]},{"s":"UNISWAP:JBOTWETH_F48621.USD","d":[]},{"s":"UNISWAP:ZIONWETH_FA919D.USD","d":[]},{"s":"BITGET:GLMRUSDT","d":[]},{"s":"UNISWAP:ORDIBOTWETH_5A80A3","d":[]},{"s":"SPOOKYSWAP:KAEWFTM_E6C2DB","d":[]},{"s":"UNISWAP3POLYGON:KASTAUSDC_56FCB9.USD","d":[]},{"s":"UNISWAP:YAEWETH_53048E.USD","d":[]},{"s":"EXMO:USDTUAH","d":[]},{"s":"UNISWAP3ETH:DZHVWETH","d":[]},{"s":"UNISWAP:ALBTWETH_E5C522.USD","d":[]},{"s":"UNISWAP:STONKSWETH_074201.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LUSDWETH_4B4F82.USD","d":[]},{"s":"QUICKSWAP:UFTWETH_AEF2B4.USD","d":[]},{"s":"UNISWAP3ETH:WETHMANA","d":[]},{"s":"BINANCEUS:ORBSUSDT","d":[]},{"s":"MEXC:CELOUSDT","d":[]},{"s":"UNISWAP:PEPPWETH_EB0F5F.USD","d":[]},{"s":"COINEX:MTLUSDT","d":[]},{"s":"BINGX:DYDXUSDT.PS","d":[]},{"s":"UNISWAP3OPTIMISM:PREMIAWETH_30FAF2.USD","d":[]},{"s":"UNISWAP:NAOSWETH_9B577E.USD","d":[]},{"s":"GATEIO:GANUSDT","d":[]},{"s":"COINEX:PORTALUSDT","d":[]},{"s":"UNISWAP:MRWETH_B5D7E3","d":[]},{"s":"GATEIO:GTAIUSDT","d":[]},{"s":"HITBTC:VRAUSDT","d":[]},{"s":"UNISWAP3ETH:OETHWETH_522994.USD","d":[]},{"s":"UNISWAP:CHADINDEXWETH_2DB071.USD","d":[]},{"s":"MEXC:SANTOSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:CMUMAMIUMAMI_B3B7C0.USD","d":[]},{"s":"UNISWAP3ETH:WETHL2","d":[]},{"s":"UNISWAP:CPTINUWETH_30266F.USD","d":[]},{"s":"BITGET:USDTEUR","d":[]},{"s":"BITGET:PIPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRSWETH","d":[]},{"s":"WOONETWORK:BTCUSDT","d":[]},{"s":"COINBASE:CBETHUSD","d":[]},{"s":"HITBTC:IOSTUSDT","d":[]},{"s":"BITGET:HMTTUSDT","d":[]},{"s":"COINEX:XMRUSDT","d":[]},{"s":"UNISWAP:ICWETH_EAABB2","d":[]},{"s":"BITFINEX:DYMUST","d":[]},{"s":"UNISWAP3ETH:WETHIZE","d":[]},{"s":"UNISWAP3ETH:SGTWETH_9C9B94.USD","d":[]},{"s":"UNISWAP3ETH:USDTSILO","d":[]},{"s":"PANGOLIN:MIMUSDCE_E75ED6","d":[]},{"s":"MEXC:MOBXUSDT","d":[]},{"s":"GATEIO:MRCHUSDT","d":[]},{"s":"GATEIO:KUBUSDT","d":[]},{"s":"UNISWAP:HOKKWETH_12B3DE.USD","d":[]},{"s":"QUICKSWAP:CNTRWMATIC_06482D","d":[]},{"s":"PHEMEX:BATUSDT.P","d":[]},{"s":"UNISWAP3ETH:BRETWETH","d":[]},{"s":"MEXC:CANDYUSDT","d":[]},{"s":"MEXC:SPOOLUSDT","d":[]},{"s":"GATEIO:THEUSDT","d":[]},{"s":"UNISWAP3ETH:ROCKWETH","d":[]},{"s":"UNISWAP3ETH:RENQWETH_294215.USD","d":[]},{"s":"PHEMEX:ATOMUSDT.P","d":[]},{"s":"HITBTC:ADXNUSD","d":[]},{"s":"QUICKSWAP:TCGCWETH_734E63","d":[]},{"s":"MEXC:LITHUSDT","d":[]},{"s":"BYBIT:LDOUSDC","d":[]},{"s":"SPOOKYSWAP:STATICUSDC_340114","d":[]},{"s":"HITBTC:GLMETH","d":[]},{"s":"MEXC:XENUSDC","d":[]},{"s":"SPOOKYSWAP:BOMBWFTM_11F023.USD","d":[]},{"s":"PHEMEX:ZRXUSDT","d":[]},{"s":"UNISWAP:BOOMERWETH_C68A4D","d":[]},{"s":"MEXC:KLAYUSDT","d":[]},{"s":"GATEIO:FILUSDT","d":[]},{"s":"BINGX:LQTYUSDT.P","d":[]},{"s":"GATEIO:MURATIAIUSDT","d":[]},{"s":"HITBTC:OCEANUSDT","d":[]},{"s":"UNISWAP:BRATWETH_C4A933.USD","d":[]},{"s":"UNISWAP:KAIJUWETH_DA8F06","d":[]},{"s":"UNISWAP3ETH:HMXWETH","d":[]},{"s":"GATEIO:STRAXUSDT","d":[]},{"s":"UNISWAP3POLYGON:FYNWETH_76FA08.USD","d":[]},{"s":"WOONETWORK:TRXUSDT","d":[]},{"s":"POLONIEX:BOBAUSDT","d":[]},{"s":"UNISWAP:HONGWETH_CE7C2B.USD","d":[]},{"s":"PANGOLIN:GOHMWAVAX_B68F4E","d":[]},{"s":"GATEIO:AGRSUSDT","d":[]},{"s":"MEXC:METOUSDT","d":[]},{"s":"UNISWAP3ETH:DOPWETH","d":[]},{"s":"BITFINEX:UOSUSD","d":[]},{"s":"GATEIO:TAMAUSDT","d":[]},{"s":"PANGOLIN:PNGWAVAX_D7538C","d":[]},{"s":"WOONETWORK:ACEUSDT","d":[]},{"s":"POLONIEX:SNTBTC","d":[]},{"s":"UNISWAP3ETH:WETHB3","d":[]},{"s":"GATEIO:SPOUSDT","d":[]},{"s":"BITGET:XDCUSDT","d":[]},{"s":"HITBTC:DUSKUSD","d":[]},{"s":"UNISWAP:FLORKYWETH_384949","d":[]},{"s":"HITBTC:PAYETH","d":[]},{"s":"UNISWAP:UNNWETH_7F1DA3","d":[]},{"s":"UNISWAP3ETH:WETHERROR404","d":[]},{"s":"KRAKEN:COMPBTC","d":[]},{"s":"UNISWAP3ETH:SHIBWETH_2F62F2.USD","d":[]},{"s":"UNISWAP:HDWYWETH_9C8959","d":[]},{"s":"UNISWAP3ETH:WETHNUT","d":[]},{"s":"MEXC:MOVEUSDT","d":[]},{"s":"COINEX:INVUSDT","d":[]},{"s":"UNISWAP:PGENZWETH_A423CB.USD","d":[]},{"s":"UNISWAP:FETCHWETH_149D20","d":[]},{"s":"PANGOLIN:DYPWAVAX_497070","d":[]},{"s":"UNISWAP:LOOTWETH_520152.USD","d":[]},{"s":"UNISWAP:XWETH_60A8EA","d":[]},{"s":"HITBTC:WINUSD","d":[]},{"s":"UNISWAP:TRIBEWETH_35EC40.USD","d":[]},{"s":"KRAKEN:KSMDOT","d":[]},{"s":"UNISWAP3ETH:WETHVADER","d":[]},{"s":"GATEIO:EVOUSDT","d":[]},{"s":"ZOOMEX:API3USDT.P","d":[]},{"s":"WHITEBIT:NEARBTC","d":[]},{"s":"BITGET:BATUSDT","d":[]},{"s":"UNISWAP3ETH:GALEONWETH_7EF34E.USD","d":[]},{"s":"UNISWAP3ETH:QNTWETH_24EE2C.USD","d":[]},{"s":"TRADERJOE:SNOWAVAXWAVAX_705432","d":[]},{"s":"BINANCE:BNBUAH","d":[]},{"s":"MEXC:ECHUSDT","d":[]},{"s":"BISWAP:ETHWBNB_5BF694","d":[]},{"s":"DYDX:ENJUSD.P","d":[]},{"s":"GATEIO:ASTRUSDT.3S","d":[]},{"s":"GATEIO:GUMUSDT","d":[]},{"s":"BINANCE:TRXBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ZLST3METHWETH_79CDE2.USD","d":[]},{"s":"MEXC:MAFUSDT","d":[]},{"s":"PANGOLIN:GAJWAVAX_278F24.USD","d":[]},{"s":"MEXC:NWCUSDT","d":[]},{"s":"DELTA:JTOUSDT.P","d":[]},{"s":"COINEX:CULTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ARCWETH_C0F057.USD","d":[]},{"s":"UNISWAP3ETH:DOVAWETH","d":[]},{"s":"BINANCE:FETBNB","d":[]},{"s":"UNISWAP:CMONMONG_C1966B","d":[]},{"s":"UNISWAP:BLZEWETH_6BFCDA.USD","d":[]},{"s":"MEXC:LOSTUSDT","d":[]},{"s":"HITBTC:GRAPEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHKNINE","d":[]},{"s":"BINANCE:INJTRY","d":[]},{"s":"UNISWAP3ETH:HUNTWETH","d":[]},{"s":"MEXC:XCNUSDT","d":[]},{"s":"MEXC:MNBUSDT","d":[]},{"s":"SPOOKYSWAP:ARCHAWFTM_71DF70.USD","d":[]},{"s":"UNISWAP3ETH:WETHANS","d":[]},{"s":"WHITEBIT:METISUSDT","d":[]},{"s":"BITHUMB:RPLKRW","d":[]},{"s":"BINGX:EOSUSDT.PS","d":[]},{"s":"ZOOMEX:KEYUSDT.P","d":[]},{"s":"COINEX:AXSUSDC","d":[]},{"s":"MEXC:FLOWUSDT.P","d":[]},{"s":"UNISWAP3ETH:SESWETH_0188C2.USD","d":[]},{"s":"UNISWAP:WIGGERWETH_DA6590","d":[]},{"s":"MEXC:BETUSDT","d":[]},{"s":"COINBASE:FETUSDT","d":[]},{"s":"POLONIEX:MATICUSD","d":[]},{"s":"MEXC:PNKUSDT","d":[]},{"s":"COINBASE:ORNUSD","d":[]},{"s":"BINGX:TIAUSDT.P","d":[]},{"s":"BYBIT:MYRIAUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ICHIWETH_44C40A.USD","d":[]},{"s":"UNISWAP3ETH:MZEROWETH_704E0D.USD","d":[]},{"s":"MEXC:ABELUSDT","d":[]},{"s":"MEXC:ZIGUSDT","d":[]},{"s":"COINEX:DAGUSDT","d":[]},{"s":"UNISWAP3ETH:USDCRAZOR","d":[]},{"s":"UNISWAP:EVILWETH_C0E00A.USD","d":[]},{"s":"PANGOLIN:BUSDWAVAX_4DD92A.USD","d":[]},{"s":"UNISWAP:MICWETH_B961E9","d":[]},{"s":"UNISWAP3ETH:PNDCWETH_A06591.USD","d":[]},{"s":"COINEX:CROWNUSDT","d":[]},{"s":"OKX:ONEUSDT.P","d":[]},{"s":"BITHUMB:ETCKRW","d":[]},{"s":"BITMEX:PYTHUSDT.P","d":[]},{"s":"BYBIT:BATUSDT.P","d":[]},{"s":"UNISWAP3ETH:AISORAWETH","d":[]},{"s":"UNISWAP3ETH:OCEANWETH","d":[]},{"s":"GATEIO:PROSUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WETHDAI_95D9D2.USD","d":[]},{"s":"UNISWAP3ETH:GLQWETH","d":[]},{"s":"BITFINEX:ETH2XETH","d":[]},{"s":"GATEIO:MUBIUSDT","d":[]},{"s":"UNISWAP:XPBWETH_906951.USD","d":[]},{"s":"GATEIO:WSBUSDT","d":[]},{"s":"BISWAP:SANDUSDT_69F60C","d":[]},{"s":"UNISWAP3ETH:WETHSLN","d":[]},{"s":"MEXC:CSPRUSDT","d":[]},{"s":"HITBTC:FLRUSDT","d":[]},{"s":"PIONEX:MTLUSDT.P","d":[]},{"s":"UNISWAP:HIDWETH_0F225F","d":[]},{"s":"UNISWAP3ETH:ALEPHWETH_B38CC8.USD","d":[]},{"s":"UNISWAP3ETH:AVTWETH","d":[]},{"s":"UNISWAP:VECWETH_B6B0C6","d":[]},{"s":"KRAKEN:GLMRUSD.PM","d":[]},{"s":"UNISWAP:ORDINALAIWETH_6379A7.USD","d":[]},{"s":"UNISWAP:0X9F284EWETH_2D9775.USD","d":[]},{"s":"TRADERJOE:CRAFTWAVAX_86D1B1","d":[]},{"s":"UNISWAP:LAYER4WETH_BD37AF.USD","d":[]},{"s":"UNISWAP:DUDUWETH_C42D9C.USD","d":[]},{"s":"UNISWAP:RICHPEPEWETH_03E6F3.USD","d":[]},{"s":"PHEMEX:1000EBPTCUSDT","d":[]},{"s":"MEXC:BITBULLUSDT","d":[]},{"s":"POLONIEX:GASBTC","d":[]},{"s":"UNISWAP3ARBITRUM:GSWIFTWETH_16C134.USD","d":[]},{"s":"KRAKEN:SCUSD.PM","d":[]},{"s":"UPBIT:PDAKRW","d":[]},{"s":"BITFINEX:SUSHIUST","d":[]},{"s":"UNISWAP3ETH:WETHTRUD","d":[]},{"s":"BYBIT:HFTUSDT","d":[]},{"s":"UNISWAP:KERMITWETH_4B882B.USD","d":[]},{"s":"BITMEX:SHIBUSD.P","d":[]},{"s":"QUICKSWAP:PERIWMATIC_98F675","d":[]},{"s":"KRAKEN:AGLDUSD","d":[]},{"s":"UNISWAP:JESTWETH_985552","d":[]},{"s":"UNISWAP3ETH:WETHLAKE","d":[]},{"s":"GATEIO:WASUSDT","d":[]},{"s":"UNISWAP:PRFWETH_DE5522","d":[]},{"s":"UNISWAP:GROKGPTWETH_A26F08.USD","d":[]},{"s":"UNISWAP3ETH:PRNTWETH_D1D8DF.USD","d":[]},{"s":"UNISWAP:BENDWETH_336EF4.USD","d":[]},{"s":"COINEX:SHIBUSDT","d":[]},{"s":"BITHUMB:XPLAKRW","d":[]},{"s":"UNISWAP3ARBITRUM:VELAWETH_CE0C90.USD","d":[]},{"s":"PHEMEX:VGXUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTCRE","d":[]},{"s":"UNISWAP3ETH:KARATEWETH","d":[]},{"s":"TRADERJOE:WEAPONWAVAX_39D437","d":[]},{"s":"UNISWAP3ETH:CTRLWETH","d":[]},{"s":"BITSTAMP:AAVEEUR","d":[]},{"s":"UNISWAP3ETH:FORTWETH","d":[]},{"s":"WAGYUSWAP:JUNGLEETH_CA0012","d":[]},{"s":"TRADERJOE:3ULLWAVAX_4B5BC8.USD","d":[]},{"s":"SPOOKYSWAP:BEETSWFTM_648A74.USD","d":[]},{"s":"UNISWAP3ETH:GNOWETH_F56D08.USD","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTUSDT_A3C015.USD","d":[]},{"s":"GATEIO:FXSUSDT","d":[]},{"s":"UNISWAP3ETH:SISCWETH","d":[]},{"s":"MEXC:TTTUSDT","d":[]},{"s":"PHEMEX:FXSUSDT.P","d":[]},{"s":"UNISWAP3ETH:ALCAWETH","d":[]},{"s":"BITMEX:XBTUSD.P","d":[]},{"s":"KRAKEN:CSMUSD","d":[]},{"s":"UNISWAP3ETH:USXDF_C7C5F1.USD","d":[]},{"s":"UNISWAP3ETH:WETHARB","d":[]},{"s":"GATEIO:BABYBONKUSDT","d":[]},{"s":"UNISWAP3ETH:STFXWETH_2D6FCF.USD","d":[]},{"s":"UNISWAP3ETH:XDWETH","d":[]},{"s":"BITGET:GROKUSDT","d":[]},{"s":"MEXC:BORINGUSDT","d":[]},{"s":"BINGX:ETHUSDT.PS","d":[]},{"s":"BINANCEUS:FETUSDT","d":[]},{"s":"BITRUE:CELOUSDT","d":[]},{"s":"KRAKEN:SEIUSD","d":[]},{"s":"UNISWAP:A4MWETH_91C8DB","d":[]},{"s":"OKX:FXSUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHOLAS","d":[]},{"s":"KRAKEN:KAVAUSD.PM","d":[]},{"s":"UNISWAP:HOSHITSUKA_28F77A.USD","d":[]},{"s":"WHITEBIT:AGLDUSDT","d":[]},{"s":"MEXC:CRUSDT","d":[]},{"s":"UNISWAP:WOLFYWETH_75C83C","d":[]},{"s":"UNISWAP:ORBKWETH_2E73FF","d":[]},{"s":"UNISWAP:REACHWETH_6577EC","d":[]},{"s":"UNISWAP3ETH:XNLWETH","d":[]},{"s":"BITFINEX:SWEATBTC","d":[]},{"s":"KRAKEN:USDCAUD","d":[]},{"s":"UNISWAP:SUPERWETH_EF9A55","d":[]},{"s":"WHITEBIT:SUSHIUSDT","d":[]},{"s":"UNISWAP3ETH:VOLTAUSDT_BBCF4E.USD","d":[]},{"s":"UNISWAP:SOLVEWETH_DACF0D","d":[]},{"s":"UNISWAP3POLYGON:AAVELINK_FAE91E.USD","d":[]},{"s":"PIONEX:BELUSDT.P","d":[]},{"s":"BINGX:SKLUSDT.PS","d":[]},{"s":"UNISWAP:UPAIWETH_AA9009","d":[]},{"s":"GATEIO:PORTOUSDT","d":[]},{"s":"MEXC:NACUSDT","d":[]},{"s":"UNISWAP:USDTDAI_B20BD5","d":[]},{"s":"UNISWAP:MITXWETH_51FE8E","d":[]},{"s":"HITBTC:SBTCUSD","d":[]},{"s":"GATEIO:BEPROUSDT","d":[]},{"s":"UNISWAP:POPWETH_4357EA","d":[]},{"s":"MEXC:KASUSDT.P","d":[]},{"s":"COINEX:INSPUSDT","d":[]},{"s":"SPOOKYSWAP:DMDWFTM_F10F0E.USD","d":[]},{"s":"UNISWAP3ETH:CRVWETH_4C83A7.USD","d":[]},{"s":"COINEX:CLOREUSDT","d":[]},{"s":"MEXC:ZEPHUSDT","d":[]},{"s":"BITFINEX:STRKUST","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCDAI_C22662.USD","d":[]},{"s":"GATEIO:DVPUSDT","d":[]},{"s":"BYBIT:GASUSDT.P","d":[]},{"s":"COINEX:XAIUSDT","d":[]},{"s":"BITSTAMP:SHIBEUR","d":[]},{"s":"GATEIO:XPETUSDT","d":[]},{"s":"BITGET:KAVAUSDT","d":[]},{"s":"TRADERJOE:MUUSDTE_594CAA.USD","d":[]},{"s":"QUICKSWAP:WCROWMATIC_FD1687.USD","d":[]},{"s":"TRADERJOE:USVDAIE_FE64B9","d":[]},{"s":"UNISWAP3ETH:UNIONWETH","d":[]},{"s":"WHITEBIT:MKRUSDT","d":[]},{"s":"BINGX:CRVUSDT.P","d":[]},{"s":"COINBASE:MPLUSD","d":[]},{"s":"GATEIO:SQRUSDT","d":[]},{"s":"BYBIT:CAKEUSDT.P","d":[]},{"s":"BYBIT:YGGUSDT.P","d":[]},{"s":"TIMEX:BTCUSD","d":[]},{"s":"BINANCE:LPTTRY","d":[]},{"s":"UNISWAP3ETH:RAIWETH_0DC987.USD","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDC_1D751B.USD","d":[]},{"s":"GATEIO:CRUUSDT","d":[]},{"s":"UNISWAP:VADERWETH_452C60.USD","d":[]},{"s":"MEXC:XEMUSDT.P","d":[]},{"s":"GATEIO:KALMUSDT","d":[]},{"s":"UNISWAP:RBTWETH_AAECB2","d":[]},{"s":"GATEIO:PORT3USDT","d":[]},{"s":"UNISWAP3ETH:FTRWETH_DB3327.USD","d":[]},{"s":"UNISWAP:AITEKWETH_197166","d":[]},{"s":"KRAKEN:BANDUSD","d":[]},{"s":"UNISWAP:XWETH_8E83DE","d":[]},{"s":"MEXC:MTVTUSDT","d":[]},{"s":"UNISWAP:PEPECWETH_3AFD96.USD","d":[]},{"s":"UNISWAP:CHINAWETH_5548F2.USD","d":[]},{"s":"GATEIO:XPRESSUSDT","d":[]},{"s":"BINANCEUS:TUSDUSDT","d":[]},{"s":"HITBTC:NMRUSD","d":[]},{"s":"HITBTC:BADGERUSD","d":[]},{"s":"UNISWAP:1000XWETH_838945","d":[]},{"s":"UNISWAP:ACWETH_666055.USD","d":[]},{"s":"UNISWAP3ETH:PLAYWETH","d":[]},{"s":"COINBASE:GHSTUSD","d":[]},{"s":"BITSTAMP:HBARUSD","d":[]},{"s":"BITRUE:ENSUSDT","d":[]},{"s":"BITRUE:TKOUSDT","d":[]},{"s":"UNISWAP:FLASHWETH_A84C1F.USD","d":[]},{"s":"BITGET:OFNUSDT","d":[]},{"s":"UNISWAP3ETH:HAIRWETH","d":[]},{"s":"HITBTC:CTSIUSD","d":[]},{"s":"KRAKEN:INTREUR","d":[]},{"s":"BINGX:LSKUSDT.P","d":[]},{"s":"MEXC:SPCUSDT","d":[]},{"s":"GATEIO:PYMEUSDT","d":[]},{"s":"TRADERJOE:KONGWAVAX_C48D93","d":[]},{"s":"MEXC:RDNTUSDT","d":[]},{"s":"GATEIO:EVADOREUSDT","d":[]},{"s":"KRAKEN:TRXBTC","d":[]},{"s":"HITBTC:COTIUSD","d":[]},{"s":"UNISWAP3ETH:LOOKSWETH","d":[]},{"s":"UNISWAP3POLYGON:HUSDT_576192.USD","d":[]},{"s":"UNISWAP3ETH:SOVWETH","d":[]},{"s":"MEXC:NTRNUSDT.P","d":[]},{"s":"MEXC:BNXNEWUSDT.P","d":[]},{"s":"MEXC:PRTUSDT","d":[]},{"s":"XEXCHANGE:ESTARUSDC","d":[]},{"s":"PHEMEX:JTOUSDT.P","d":[]},{"s":"MEXC:AERGOUSDT.P","d":[]},{"s":"BITRUE:ARUSDT","d":[]},{"s":"KRAKEN:REPV2USD","d":[]},{"s":"MEXC:RIDEUSDT","d":[]},{"s":"WHITEBIT:ETHTUSD","d":[]},{"s":"UNISWAP:MEOWWETH_985907","d":[]},{"s":"MEXC:INJUSDT.P","d":[]},{"s":"COINEX:PORT3USDT","d":[]},{"s":"BITKUB:ZRXTHB","d":[]},{"s":"DELTA:APTUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:YOUWETH_7D2B4A.USD","d":[]},{"s":"BITMEX:ARKUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:BFRWETH_475E0E.USD","d":[]},{"s":"GATEIO:VOXELUSDT","d":[]},{"s":"GATEIO:KNCUSDT","d":[]},{"s":"HITBTC:CNDETH","d":[]},{"s":"BYBIT:SANDUSDT.P","d":[]},{"s":"MEXC:1CATUSDT","d":[]},{"s":"TRADERJOE:CATWAVAX_2D9A57.USD","d":[]},{"s":"UNISWAP3ETH:SOMMWETH_F79C68.USD","d":[]},{"s":"BITGET:TYPEUSDT","d":[]},{"s":"UNISWAP3ETH:DIUSDC_66E21B.USD","d":[]},{"s":"KRAKEN:EURUSD","d":[]},{"s":"BINANCE:BNBTUSD","d":[]},{"s":"UNISWAP3POLYGON:WBTCWMATIC_56FF3A.USD","d":[]},{"s":"BINANCE:UNIUSD.P","d":[]},{"s":"MEXC:STNDUSDT","d":[]},{"s":"GATEIO:BEEFIUSDT","d":[]},{"s":"WHITEBIT:SHIBUSD","d":[]},{"s":"MEXC:BTC2USDT","d":[]},{"s":"UNISWAP3ETH:WCOMAIWETH_8AA8C6.USD","d":[]},{"s":"BINANCE:GALBTC","d":[]},{"s":"GATEIO:INTRUSDT","d":[]},{"s":"KRAKEN:JASMYEUR","d":[]},{"s":"GATEIO:AICODEUSDT","d":[]},{"s":"BTSE:LEVERUSD","d":[]},{"s":"UNISWAP:211800WETH_E06F13.USD","d":[]},{"s":"UNISWAP:VECWETH_B6B0C6.USD","d":[]},{"s":"UNISWAP:MIKAWETH_709332","d":[]},{"s":"MEXC:GXUSDT","d":[]},{"s":"UNISWAP:MZRUSDT_8D57D1","d":[]},{"s":"BINGX:BNXUSDT.P","d":[]},{"s":"UNISWAP:YDFWETH_153F20.USD","d":[]},{"s":"UNISWAP3ETH:TAMAWETH","d":[]},{"s":"BITKUB:GTTHB","d":[]},{"s":"BITFINEX:MKRBTC","d":[]},{"s":"UNISWAP3ETH:WETHPEBBLE","d":[]},{"s":"DYDX:SUSHIUSD.P","d":[]},{"s":"UNISWAP3ETH:HILOUSDC","d":[]},{"s":"UNISWAP3POLYGON:DAIUSDC_257D36.USD","d":[]},{"s":"UNISWAP3ETH:SWAPWETH_76D893.USD","d":[]},{"s":"TRADERJOE:COSMICMAGIC_974B02.USD","d":[]},{"s":"UNISWAP:DONPEPEWETH_9D5DC8","d":[]},{"s":"QUICKSWAP:BOOKWMATIC_E66725.USD","d":[]},{"s":"UNISWAP3ETH:MNTUSDC","d":[]},{"s":"SPOOKYSWAP:KTNAWFTM_85D561.USD","d":[]},{"s":"TRADERJOE:DCAUDCAR_5EB784.USD","d":[]},{"s":"HITBTC:GALABTC","d":[]},{"s":"BITKUB:UMATHB","d":[]},{"s":"BINANCE:XLMTRY","d":[]},{"s":"BINANCE:1000SATSFDUSD","d":[]},{"s":"PHEMEX:QUICKUSDT","d":[]},{"s":"POLONIEX:INJBTC","d":[]},{"s":"BITRUE:WTKUSDT","d":[]},{"s":"UNISWAP:NEXWETH_1475EC.USD","d":[]},{"s":"BITHUMB:STGKRW","d":[]},{"s":"UNISWAP3ETH:OLASUSDC_795A8C.USD","d":[]},{"s":"BITFINEX:GOMININGUSD","d":[]},{"s":"TRADERJOE:ROYWAVAX_86783A.USD","d":[]},{"s":"QUICKSWAP:STSSTS_AA49D5","d":[]},{"s":"BINANCE:GRTEUR","d":[]},{"s":"PHEMEX:C98USDT.P","d":[]},{"s":"BITGET:FILUSDT","d":[]},{"s":"SPOOKYSWAP:MGGUSDC_60F5D8","d":[]},{"s":"MEXC:BABYDOGE2USDT","d":[]},{"s":"UNISWAP:POGEXWETH_D3F072.USD","d":[]},{"s":"UNISWAP3ETH:ZRXWETH_14424E.USD","d":[]},{"s":"COINEX:RARIUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:LINKUSDC_BA9BBD.USD","d":[]},{"s":"WOONETWORK:BANDUSDT","d":[]},{"s":"BYBIT:BTTUSDT","d":[]},{"s":"UNISWAP:MGWETH_2E5A4C.USD","d":[]},{"s":"POLONIEX:XYMBTC","d":[]},{"s":"UNISWAP3ETH:WETHWHITE","d":[]},{"s":"UNISWAP:SPARKOWETH_A2D563","d":[]},{"s":"COINEX:VOYAUSDT","d":[]},{"s":"UNISWAP3ETH:PLOTWETH_E13CF2.USD","d":[]},{"s":"GATEIO:SRKUSDT","d":[]},{"s":"UNISWAP:PERLWETH_9B8D28","d":[]},{"s":"UNISWAP:MARVINWETH_5B7DAA.USD","d":[]},{"s":"QUICKSWAP:RAINWMATIC_EA0FB6.USD","d":[]},{"s":"UNISWAP3ETH:WPLSWETH","d":[]},{"s":"BITGET:EFILUSDT","d":[]},{"s":"KRAKEN:BNTBTC","d":[]},{"s":"BINANCE:ETHPLN","d":[]},{"s":"KRAKEN:ENJGBP","d":[]},{"s":"POLONIEX:MDTBTC","d":[]},{"s":"QUICKSWAP:BRUHLIC_0513E3.USD","d":[]},{"s":"SPOOKYSWAP:WSTAETH_47DCD7","d":[]},{"s":"UNISWAP3ETH:FNTWETH","d":[]},{"s":"GATEIO:OLEUSDT","d":[]},{"s":"KRAKEN:JUPUSD.PM","d":[]},{"s":"UNISWAP:BLAZEXWETH_6C110C.USD","d":[]},{"s":"PHEMEX:STGUSDT","d":[]},{"s":"KRAKEN:ALICEUSD","d":[]},{"s":"BITRUE:SANDUSDT","d":[]},{"s":"OKX:WAXPUSDT.P","d":[]},{"s":"UNISWAP:OTTOWETH_04CEC6","d":[]},{"s":"UNISWAP3ETH:BKNUSDT_C3B4AC.USD","d":[]},{"s":"POLONIEX:DUMMYUSDT","d":[]},{"s":"UNISWAP3ETH:CAPYBARAWETH_903D82.USD","d":[]},{"s":"BITSTAMP:ZRXEUR","d":[]},{"s":"UNISWAP:ASTROWETH_441828.USD","d":[]},{"s":"COINEX:CRVUSDC","d":[]},{"s":"BITGET:GLMRUSDT.P","d":[]},{"s":"WHITEBIT:NEOBTC","d":[]},{"s":"SPOOKYSWAP:REVAWFTM_56D268.USD","d":[]},{"s":"QUICKSWAP:ERNWMATIC_124DE7","d":[]},{"s":"UNISWAP:SARATOSHIWETH_2D247F.USD","d":[]},{"s":"HITBTC:ETHEURST","d":[]},{"s":"TRADERJOE:CDTWAVAX_A1F5D7","d":[]},{"s":"UNISWAP3ETH:WETHWBTC","d":[]},{"s":"BINANCE:COTIUSDT","d":[]},{"s":"BYBIT:SFPUSDT.P","d":[]},{"s":"GATEIO:KASUSDT","d":[]},{"s":"UNISWAP3ETH:USDTSPAY","d":[]},{"s":"UNISWAP:1001WETH_F8C297.USD","d":[]},{"s":"GATEIO:TPTUSDT","d":[]},{"s":"COINEX:MKRBTC","d":[]},{"s":"UNISWAP:OTWETH_8A303A","d":[]},{"s":"UNISWAP3ARBITRUM:FFMWETH_87E641.USD","d":[]},{"s":"UNISWAP3ETH:TOPIAWETH","d":[]},{"s":"MEXC:HMTUSDT","d":[]},{"s":"UNISWAP:DUCKWETH_D7F2EA.USD","d":[]},{"s":"BISWAP:BAKEWBNB_4C3726.USD","d":[]},{"s":"UNISWAP:HAOWETH_0B0BF9","d":[]},{"s":"BITFINEX:DAIBTC","d":[]},{"s":"WHITEBIT:ETHBTC","d":[]},{"s":"BINGX:MOVRUSDT.PS","d":[]},{"s":"BITGET:MAPOUSDT","d":[]},{"s":"TRADERJOE:BETAWAVAX_2CFF4E","d":[]},{"s":"MEXC:ALGBUSDT","d":[]},{"s":"POLONIEX:POOLXUSDT","d":[]},{"s":"UNISWAP3ETH:USDTPLSX","d":[]},{"s":"UNISWAP:BOOBYWETH_942C0C.USD","d":[]},{"s":"POLONIEX:BNTUSD","d":[]},{"s":"BITGET:IOTAUSDT.P","d":[]},{"s":"COINBASE:ATOMEUR","d":[]},{"s":"COINEX:RONUSDT","d":[]},{"s":"UNISWAP:SHOPXWETH_37AC54.USD","d":[]},{"s":"MEXC:LOOMUSDT","d":[]},{"s":"BINANCE:APEETH","d":[]},{"s":"GATEIO:GNXUSDT","d":[]},{"s":"UNISWAP:OPENAIWETH_670B68.USD","d":[]},{"s":"UNISWAP:MOFIWETH_2CEA67.USD","d":[]},{"s":"QUICKSWAP:TECHWETH_204A7A.USD","d":[]},{"s":"HITBTC:BEAMXBTC","d":[]},{"s":"UNISWAP:HELGAWETH_548409","d":[]},{"s":"UNISWAP:COMBOWETH_040BEF.USD","d":[]},{"s":"TRADERJOE:AVATWAVAX_CC502D.USD","d":[]},{"s":"UNISWAP:DEFITWETH_0216B5.USD","d":[]},{"s":"BYBIT:BOBAUSDT.P","d":[]},{"s":"TRADERJOE:ANTGWAVAX_59A2DB.USD","d":[]},{"s":"HITBTC:ARVUSDT","d":[]},{"s":"MEXC:HSTUSDT","d":[]},{"s":"HITBTC:DCRUSD","d":[]},{"s":"BLOFIN:RONUSDT.P","d":[]},{"s":"SPOOKYSWAP:2OMBWFTM_BDC7DF","d":[]},{"s":"UNISWAP:GTRWETH_287F4D.USD","d":[]},{"s":"COINBASE:QIUSD","d":[]},{"s":"COINEX:NEONUSDT","d":[]},{"s":"GATEIO:PZPUSDT","d":[]},{"s":"UNISWAP:CIPHERWETH_6A81D9.USD","d":[]},{"s":"SPOOKYSWAP:MOTNAFWFTM_BA0B8C.USD","d":[]},{"s":"UNISWAP:LBRWETH_061883","d":[]},{"s":"UNISWAP3ETH:NOIAWETH","d":[]},{"s":"UNISWAP3ETH:USDTHUNT","d":[]},{"s":"GATEIO:POSIUSDT","d":[]},{"s":"TRADERJOE:EVBWAVAX_E06D4F.USD","d":[]},{"s":"UNISWAP:SHIBA20WETH_018C55.USD","d":[]},{"s":"UNISWAP:SPURDOWETH_2606A6.USD","d":[]},{"s":"BITGET:ICPUSDT.P","d":[]},{"s":"WAGYUSWAP:WAGWVLX_33F879","d":[]},{"s":"UNISWAP3POLYGON:MATICXSTMATIC_853400.USD","d":[]},{"s":"PANGOLIN:AVEWAVAX_62A2F2.USD","d":[]},{"s":"GATEIO:IOTXUSDT","d":[]},{"s":"BINGX:JUPUSDT.PS","d":[]},{"s":"HITBTC:PEAKBTC","d":[]},{"s":"UNISWAP3ETH:KNINEWETH_F00856.USD","d":[]},{"s":"TRADERJOE:NOBELWAVAX_26F3F0","d":[]},{"s":"TRADERJOE:WBTCEWAVAX_D5A37D.USD","d":[]},{"s":"GATEIO:RENAUSDT","d":[]},{"s":"BITKUB:PERPTHB","d":[]},{"s":"MEXC:METISUSDT","d":[]},{"s":"MEXC:GUILDUSDT","d":[]},{"s":"BINANCE:ASRTRY","d":[]},{"s":"BITGET:SUIUSDT","d":[]},{"s":"HITBTC:AMPUSDT","d":[]},{"s":"BYBIT:DUELUSDT","d":[]},{"s":"HITBTC:HEDGBTC","d":[]},{"s":"UNISWAP:WTAOWETH_ED1C7B","d":[]},{"s":"TRADERJOE:CROCWAVAX_6A73C3.USD","d":[]},{"s":"SPOOKYSWAP:AUSDWFTM_CC2738","d":[]},{"s":"SPOOKYSWAP:QTMETH_2B6765.USD","d":[]},{"s":"BINGX:SANDUSDT.P","d":[]},{"s":"UNISWAP:JONESWETH_9284A1.USD","d":[]},{"s":"UNISWAP:GROUSDC_21C591","d":[]},{"s":"MEXC:GSCUSDT","d":[]},{"s":"UNISWAP:BOLTWETH_A5AE09.USD","d":[]},{"s":"MEXC:IUSUSDT","d":[]},{"s":"UNISWAP:AUTWETH_DF1745.USD","d":[]},{"s":"HITBTC:PONDBTC","d":[]},{"s":"MEXC:ASVAUSDT","d":[]},{"s":"KRAKEN:YGGEUR","d":[]},{"s":"BINANCE:VICUSDT","d":[]},{"s":"BINGX:SOLUSDT.PS","d":[]},{"s":"UNISWAP:DFYNWETH_CAB335","d":[]},{"s":"ZOOMEX:XVSUSDT.P","d":[]},{"s":"ZOOMEX:MANTAUSDT.P","d":[]},{"s":"UNISWAP3ETH:SWEENEYWETH","d":[]},{"s":"MEXC:BDXUSDT","d":[]},{"s":"UNISWAP3POLYGON:FXADDYUSDC_359478.USD","d":[]},{"s":"BITGET:WIFUSDT.P","d":[]},{"s":"GATEIO:WRTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWBAI","d":[]},{"s":"HITBTC:ONEUSDC","d":[]},{"s":"UNISWAP3ETH:WETHITX","d":[]},{"s":"OKX:BSVUSDT.P","d":[]},{"s":"GATEIO:MGAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHO404","d":[]},{"s":"HITBTC:TRUEBTC","d":[]},{"s":"BITGET:LTCETH","d":[]},{"s":"BINANCE:ACMTRY","d":[]},{"s":"UNISWAP:HELLOWETH_F3DCE0","d":[]},{"s":"POLONIEX:PEPEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_A8328B.USD","d":[]},{"s":"UNISWAP3ETH:SPARKUSDC","d":[]},{"s":"UNISWAP3ETH:WETHTITANX","d":[]},{"s":"BITGET:LUFFYUSDT","d":[]},{"s":"GATEIO:WZRDUSDT","d":[]},{"s":"BINANCE:AGLDUSDT","d":[]},{"s":"UNISWAP3ETH:AMKTWETH_BDA5CF.USD","d":[]},{"s":"GATEIO:GAIAUSDT","d":[]},{"s":"TRADERJOE:HATCHYWAVAX_127322","d":[]},{"s":"UNISWAP3ETH:HOPRDAI","d":[]},{"s":"UNISWAP3OPTIMISM:WATTEJOE_610A4F.USD","d":[]},{"s":"DERIBIT:ETHUSD27Z2024","d":[]},{"s":"HITBTC:BASEPTLUSDT","d":[]},{"s":"GATEIO:NASUSDT","d":[]},{"s":"UNISWAP:JINPOOHWETH_FEF9A8","d":[]},{"s":"UNISWAP:GMEEMYTH_65D012","d":[]},{"s":"GATEIO:WILDUSDT","d":[]},{"s":"UNISWAP:NEOWWETH_3117D2","d":[]},{"s":"BINANCE:ORDIBTC","d":[]},{"s":"GATEIO:FTMUSDT.3L","d":[]},{"s":"TRADERJOE:COSMICMAGIC_974B02","d":[]},{"s":"POLONIEX:GROKUSDT","d":[]},{"s":"UNISWAP:GALIWETH_00D210.USD","d":[]},{"s":"UNISWAP:PEEPOWETH_251CE6.USD","d":[]},{"s":"BINANCE:BLURFDUSD","d":[]},{"s":"BTSE:EOSUSD.P","d":[]},{"s":"SPOOKYSWAP:BLOODWFTM_EE02AF","d":[]},{"s":"GATEIO:LDOUSDT.3L","d":[]},{"s":"COINBASE:FILUSD","d":[]},{"s":"UNISWAP:NOVAWETH_9468E2.USD","d":[]},{"s":"UNISWAP:RPEPEWETH_FF496E","d":[]},{"s":"UNISWAP:RFUELWETH_05F21E","d":[]},{"s":"GATEIO:SHIB2USDT","d":[]},{"s":"TRADERJOE:HUSKYWAVAX_91B62F.USD","d":[]},{"s":"GATEIO:BLZUSDT","d":[]},{"s":"UNISWAP:PENGUWETH_D76D3B.USD","d":[]},{"s":"HITBTC:ONEBTC","d":[]},{"s":"PHEMEX:VIBUSDT","d":[]},{"s":"UNISWAP:KAIWETH_9DDED5","d":[]},{"s":"UNISWAP:TOADWETH_F2498C.USD","d":[]},{"s":"BINANCE:USDTBRL","d":[]},{"s":"COINEX:BATUSDC","d":[]},{"s":"BYBIT:COMPUSDT.P","d":[]},{"s":"PHEMEX:API3USDT","d":[]},{"s":"GATEIO:MANTAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHASTX","d":[]},{"s":"UNISWAP3ETH:OCEANUSDC","d":[]},{"s":"UNISWAP3ETH:MONKGGWETH_137845.USD","d":[]},{"s":"UNISWAP3ETH:MATICWETH_E3BAA9.USD","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICUSDC_375162.USD","d":[]},{"s":"QUICKSWAP:VOLTWMATIC_EBB29B","d":[]},{"s":"UNISWAP:MVERSEWETH_EBD057","d":[]},{"s":"UNISWAP:BLANKWETH_D8A07E","d":[]},{"s":"UNISWAP:POHMDAI_B8166A","d":[]},{"s":"TRADERJOE:NEMOWAVAX_48AA4B.USD","d":[]},{"s":"PHEMEX:TLMUSDT.P","d":[]},{"s":"GATEIO:KONOUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ZPCWETH_34343C.USD","d":[]},{"s":"BYBIT:KASTAUSDT","d":[]},{"s":"BITGET:RADUSDT.P","d":[]},{"s":"MEXC:TONCOINUSDT.P","d":[]},{"s":"HITBTC:CAKEUSD","d":[]},{"s":"BINANCE:AGIXUSDT","d":[]},{"s":"UNISWAP:THEWETH_F29450","d":[]},{"s":"UNISWAP:CATWETH_781CE9","d":[]},{"s":"UNISWAP3ETH:WETHABOND","d":[]},{"s":"UNISWAP:REALSMURFCATWETH_977C5F.USD","d":[]},{"s":"KRAKEN:ADABTC","d":[]},{"s":"UNISWAP:BBWETH_C19A07","d":[]},{"s":"UNISWAP3ETH:BPXUSDC","d":[]},{"s":"MEXC:GOLDENUSDT","d":[]},{"s":"TRADERJOE:SUBNETSWAVAX_D68693.USD","d":[]},{"s":"QUICKSWAP:AUSDCUSDC_9FBEF1","d":[]},{"s":"UNISWAP:RIDGEWETH_234942.USD","d":[]},{"s":"UNISWAP3ETH:GAPEWETH_63D288.USD","d":[]},{"s":"UNISWAP3ETH:WETHBOLT","d":[]},{"s":"GATEIO:GDAOUSDT","d":[]},{"s":"COINBASE:AVTUSD","d":[]},{"s":"MEXC:ANTUSDT.P","d":[]},{"s":"WHITEBIT:YGGUSDT","d":[]},{"s":"BINANCE:VTHOUSDT","d":[]},{"s":"UNISWAP:TOADSWETH_2B3DC1","d":[]},{"s":"UNISWAP3ETH:USDTABDS","d":[]},{"s":"SPOOKYSWAP:MATICWFTM_7051C6.USD","d":[]},{"s":"UNISWAP:MONEYWETH_9DBFEA.USD","d":[]},{"s":"GATEIO:CIRUSDT","d":[]},{"s":"HITBTC:ETCUSD","d":[]},{"s":"UNISWAP3ETH:WETHTRESTLE","d":[]},{"s":"BINANCE:SHIBFDUSD","d":[]},{"s":"GATEIO:YFIUSDT","d":[]},{"s":"BITGET:LATUSDT","d":[]},{"s":"UNISWAP3ETH:RARIDAI","d":[]},{"s":"UNISWAP:ROGANWETH_A09B37","d":[]},{"s":"GATEIO:BLINUSDT","d":[]},{"s":"UNISWAP:FARMWETH_56FEAC","d":[]},{"s":"UNISWAP:BIGFWETH_A843E0","d":[]},{"s":"TRADERJOE:SBMIM_425C45","d":[]},{"s":"HITBTC:HFTUSD","d":[]},{"s":"UNISWAP3ETH:DOLLARHACHIWETH","d":[]},{"s":"BITFINEX:ETCUST","d":[]},{"s":"POLONIEX:SPYROUSDT","d":[]},{"s":"ZOOMEX:COMPUSDT.P","d":[]},{"s":"UNISWAP:HOBBESWETH_617808.USD","d":[]},{"s":"UNISWAP3ETH:MMVGWETH_855FA1.USD","d":[]},{"s":"SPOOKYSWAP:OKIWFTM_ED1329","d":[]},{"s":"QUICKSWAP:WIXSWMATIC_F87B83","d":[]},{"s":"BLOFIN:IOTXUSDT.P","d":[]},{"s":"ZOOMEX:MASKUSDT.P","d":[]},{"s":"HITBTC:ETHUSDP","d":[]},{"s":"BINANCE:IRISUSDT","d":[]},{"s":"MEXC:PIGCOINUSDT","d":[]},{"s":"PHEMEX:FETUSDT.P","d":[]},{"s":"BINANCE:ASTRBTC","d":[]},{"s":"UNISWAP3ETH:DRAKHEX_1D5D25.USD","d":[]},{"s":"HITBTC:ILVUSD","d":[]},{"s":"UNISWAP:YUKKYWETH_F0AB40.USD","d":[]},{"s":"KRAKEN:YFIBTC","d":[]},{"s":"MEXC:ISKUSDT","d":[]},{"s":"HITBTC:XTZUSDC","d":[]},{"s":"KRAKEN:BANDEUR","d":[]},{"s":"ZOOMEX:GMXUSDT.P","d":[]},{"s":"MEXC:REBUSUSDT","d":[]},{"s":"OKX:ARUSDT.P","d":[]},{"s":"BISWAP:CGPTBUSD_262C1D","d":[]},{"s":"UNISWAP:TYPEWETH_26577F","d":[]},{"s":"BINGX:STPTUSDT.PS","d":[]},{"s":"UNISWAP3ETH:RLBWETH","d":[]},{"s":"POLONIEX:XENUSDD","d":[]},{"s":"UNISWAP3ETH:METUSDC","d":[]},{"s":"MEXC:PRQUSDT","d":[]},{"s":"POLONIEX:LOOMUSDT","d":[]},{"s":"UNISWAP3ETH:GPTWETH_A28C4C.USD","d":[]},{"s":"BYBIT:ONDOUSDT","d":[]},{"s":"GATEIO:CRVUSDT.3S","d":[]},{"s":"BINANCE:GASTRY","d":[]},{"s":"UNISWAP:PANDAWETH_110CD2.USD","d":[]},{"s":"UNISWAP3ETH:WETHNHUB","d":[]},{"s":"HITBTC:CRVUSD","d":[]},{"s":"POLONIEX:ZLOTUSDT","d":[]},{"s":"KRAKEN:THETAUSD.PM","d":[]},{"s":"BITRUE:EOSXRP","d":[]},{"s":"MEXC:MEMRSATSUSDT","d":[]},{"s":"UNISWAP:VIZWETH_8E1C87","d":[]},{"s":"BINANCEUS:HBARUSDT","d":[]},{"s":"UNISWAP:CHATWETH_45FEEB","d":[]},{"s":"UNISWAP:ERRORWETH_D2ACF6.USD","d":[]},{"s":"UNISWAP:CBKWETH_3F1597","d":[]},{"s":"HITBTC:WINUSDT","d":[]},{"s":"UNISWAP:XGPTWETH_7734AC.USD","d":[]},{"s":"GATEIO:DYMUSDT","d":[]},{"s":"UNISWAP:RFKWETH_C74888","d":[]},{"s":"POLONIEX:IDUSDT","d":[]},{"s":"BITGET:BLUEUSDT","d":[]},{"s":"MEXC:MOCKJUPUSDT","d":[]},{"s":"BITRUE:ENJBTC","d":[]},{"s":"UNISWAP3ETH:WETHLQTY","d":[]},{"s":"UNISWAP3POLYGON:GNSWMATIC_47AFE6.USD","d":[]},{"s":"COINEX:OPSECUSDT","d":[]},{"s":"UNISWAP:X7105WETH_6D9D1B.USD","d":[]},{"s":"BITGET:ARKMUSDT.P","d":[]},{"s":"COINEX:BTCUSDC","d":[]},{"s":"COINEX:MATICUSDT","d":[]},{"s":"UNISWAP3ETH:WPLSHEX_CD0878.USD","d":[]},{"s":"GATEIO:IONXUSDT","d":[]},{"s":"COINEX:BCHUSDC","d":[]},{"s":"DELTA:VETUSDT.P","d":[]},{"s":"TRADERJOE:PENGUINWAVAX_6917E7.USD","d":[]},{"s":"UNISWAP3ETH:USDMUSDT","d":[]},{"s":"ZOOMEX:MYROUSDT.P","d":[]},{"s":"PANGOLIN:USTWAVAX_DEABB6","d":[]},{"s":"TRADERJOE:GECWAVAX_2ADE4F.USD","d":[]},{"s":"HITBTC:GMXUSDT","d":[]},{"s":"UNISWAP:PEEPEEWETH_9ECDAE.USD","d":[]},{"s":"ZOOMEX:NEARUSDT.P","d":[]},{"s":"BITSTAMP:BTCUSDT","d":[]},{"s":"UNISWAP:FIDOWETH_C908B3","d":[]},{"s":"UNISWAP3ETH:RNDRWETH_E936F0.USD","d":[]},{"s":"TRADERJOE:YAKWAVAX_B5C9E8.USD","d":[]},{"s":"UNISWAP3ETH:DAIKEL","d":[]},{"s":"BINANCEUS:CLVUSDT","d":[]},{"s":"MEXC:WINRUSDT","d":[]},{"s":"UNISWAP:TENSHIWETH_879DB9","d":[]},{"s":"BYBIT:ZENDUSDT","d":[]},{"s":"BINANCE:EOSTRY","d":[]},{"s":"TRADERJOE:LIQRWAVAX_DE1971","d":[]},{"s":"UNISWAP:EVEAIWETH_908D60.USD","d":[]},{"s":"PANGOLIN:AXLATOMWAVAX_8A998B","d":[]},{"s":"SPOOKYSWAP:BABYBOOWFTM_24A5D3","d":[]},{"s":"UNISWAP3ETH:STMATICMATIC","d":[]},{"s":"BITFINEX:LYMBTC","d":[]},{"s":"UPBIT:TRXKRW","d":[]},{"s":"UNISWAP:SISWETH_33D39E","d":[]},{"s":"UNISWAP3ARBITRUM:LADYSWETH_1371E3.USD","d":[]},{"s":"GATEIO:ARCHUSDT","d":[]},{"s":"QUICKSWAP:BARCWMATIC_1BF943.USD","d":[]},{"s":"UNISWAP:ASCWETH_E8F2BC.USD","d":[]},{"s":"COINEX:ELFBTC","d":[]},{"s":"MEXC:YFIIUSDT.P","d":[]},{"s":"UNISWAP3ETH:MTOUSDT","d":[]},{"s":"COINBASE:ZRXUSD","d":[]},{"s":"MEXC:LSDUSDT","d":[]},{"s":"GATEIO:OXUSDT","d":[]},{"s":"UNISWAP:GOVIWETH_1EE312.USD","d":[]},{"s":"UNISWAP3ETH:SYNWETH_D8857E.USD","d":[]},{"s":"PHEMEX:UNIUSDT","d":[]},{"s":"UNISWAP:DLTAUSDC_77D5E2","d":[]},{"s":"BINANCE:PIXELUSDT","d":[]},{"s":"MEXC:KAVAUSDT.P","d":[]},{"s":"HITBTC:HITBTC","d":[]},{"s":"PHEMEX:SNXUSDT.P","d":[]},{"s":"HITBTC:GSTUSDT","d":[]},{"s":"BYBIT:RAREUSDT.P","d":[]},{"s":"QUICKSWAP:CHSUSDC_1BF4CC","d":[]},{"s":"BITRUE:DOGESOL","d":[]},{"s":"QUICKSWAP:PYRWMATIC_CC55B4","d":[]},{"s":"UNISWAP3OPTIMISM:COLLABWETH_9364FE.USD","d":[]},{"s":"UNISWAP3ETH:BANANAWETH","d":[]},{"s":"XEXCHANGE:ONEWEGLD","d":[]},{"s":"UNISWAP:DGNAIWETH_CFAC51","d":[]},{"s":"COINBASE:MANABTC","d":[]},{"s":"QUICKSWAP:BICOWETH_7E02A8.USD","d":[]},{"s":"HITBTC:EURSDAI","d":[]},{"s":"QUICKSWAP:CROWDUSDT_C34F68","d":[]},{"s":"HITBTC:REIBTC","d":[]},{"s":"UNISWAP3ETH:WETHKXA","d":[]},{"s":"BINANCE:ORNBTC","d":[]},{"s":"MEXC:SFINUSDT","d":[]},{"s":"COINBASE:OCEANUSD","d":[]},{"s":"UNISWAP3ETH:WETHSAIL","d":[]},{"s":"BYBIT:GNSUSDT","d":[]},{"s":"SPOOKYSWAP:CHDFIUSDC_50D3DE","d":[]},{"s":"BITHUMB:C98KRW","d":[]},{"s":"KRAKEN:EOSEUR","d":[]},{"s":"BITHUMB:DYDXKRW","d":[]},{"s":"UNISWAP3ETH:LUNAWETH_33F6E9.USD","d":[]},{"s":"MEXC:BERRYUSDT","d":[]},{"s":"PIONEX:RIFUSDT.P","d":[]},{"s":"UNISWAP:DUMMYWETH_F827FA.USD","d":[]},{"s":"MEXC:SYLUSDT","d":[]},{"s":"PHEMEX:FLUXUSDT","d":[]},{"s":"UNISWAP:ROPEWETH_61C91A","d":[]},{"s":"BINANCE:BADGERBTC","d":[]},{"s":"PIONEX:MDTUSDT.P","d":[]},{"s":"MEXC:SAVMUSDT","d":[]},{"s":"UNISWAP:ZAPEXWETH_A3DEC6.USD","d":[]},{"s":"BISWAP:FATCATWBNB_8BDF24.USD","d":[]},{"s":"GATEIO:ZEUMUSDT","d":[]},{"s":"UNISWAP:HYPRWETH_EEFAA1","d":[]},{"s":"GATEIO:SNMUSDT","d":[]},{"s":"XEXCHANGE:SFITWEGLD","d":[]},{"s":"BYBIT:API3USDT.P","d":[]},{"s":"BINANCE:REQUSDT","d":[]},{"s":"BITRUE:TFUELXRP","d":[]},{"s":"UNISWAP:AGRSWETH_D89F1E.USD","d":[]},{"s":"UNISWAP3ETH:WTAOUSDT_FEB6A9.USD","d":[]},{"s":"UNISWAP3POLYGON:BLOSPUSDT_5199A9.USD","d":[]},{"s":"POLONIEX:PONKUSDT","d":[]},{"s":"COINEX:TFUELBTC","d":[]},{"s":"GATEIO:HEGICUSDT","d":[]},{"s":"UNISWAP3ETH:DNWETH_07EF23.USD","d":[]},{"s":"COINEX:KRLUSDT","d":[]},{"s":"BITGET:ACMUSDT","d":[]},{"s":"UNISWAP3ETH:AMPWETH_4E57F8.USD","d":[]},{"s":"OKX:ETHUSD.P","d":[]},{"s":"GATEIO:HAIUSDT","d":[]},{"s":"UNISWAP:VIRALWETH_C7F635.USD","d":[]},{"s":"HITBTC:AIUSDT","d":[]},{"s":"QUICKSWAP:GLMWETH_7CAAC6.USD","d":[]},{"s":"COINEX:FLMUSDT","d":[]},{"s":"BTSE:TRXUSD","d":[]},{"s":"QUICKSWAP:TRADEWMATIC_41744F","d":[]},{"s":"MEXC:BLPUSDT","d":[]},{"s":"OKX:ICXUSDT.P","d":[]},{"s":"MEXC:SOPUSDT","d":[]},{"s":"KRAKEN:SDNEUR","d":[]},{"s":"BITGET:SCPTUSDT","d":[]},{"s":"UNISWAP:TRENDAIWETH_9CEB11","d":[]},{"s":"UNISWAP:BULLWETH_723AB6","d":[]},{"s":"QUICKSWAP:QUICKWETH_60E707","d":[]},{"s":"PHEMEX:WIFUSDT.P","d":[]},{"s":"BYBIT:MDAOUSDT","d":[]},{"s":"UNISWAP:CADWETH_434E46","d":[]},{"s":"UNISWAP3ETH:ONEICHIUSDC_F836A9.USD","d":[]},{"s":"GATEIO:F2CUSDT","d":[]},{"s":"BINGX:OXTUSDT.PS","d":[]},{"s":"BLOFIN:ATOMUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:SDEXUSDC_3E3AC5.USD","d":[]},{"s":"MEXC:TIDALUSDT","d":[]},{"s":"UNISWAP:GFARM2WETH_3F759C","d":[]},{"s":"UNISWAP3ETH:BTRSTUSDC","d":[]},{"s":"UNISWAP:VSTWETH_83E74A.USD","d":[]},{"s":"BINANCEUS:BNBUSDT","d":[]},{"s":"HITBTC:NULSUSD","d":[]},{"s":"KRAKEN:HFTEUR","d":[]},{"s":"DYDX:SOLUSD.P","d":[]},{"s":"MEXC:MARSUSDT","d":[]},{"s":"PHEMEX:NEARUSDT","d":[]},{"s":"BINANCE:STMXUSDT","d":[]},{"s":"POLONIEX:CULTUSDT","d":[]},{"s":"MEXC:PNGUSDT","d":[]},{"s":"TRADERJOE:MNEAVWAVAX_E35C94","d":[]},{"s":"HITBTC:PPCBTC","d":[]},{"s":"BINANCEUS:BTCUSDT","d":[]},{"s":"MEXC:MAROUSDT","d":[]},{"s":"COINEX:WAVESUSDC","d":[]},{"s":"UNISWAP3ETH:ATHWETH","d":[]},{"s":"UNISWAP3POLYGON:UNIWETH_B5BF6B.USD","d":[]},{"s":"UNISWAP3ETH:0XBTCUSDC","d":[]},{"s":"GATEIO:CHERUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWOOL","d":[]},{"s":"MEXC:SWCHUSDT","d":[]},{"s":"SPOOKYSWAP:SHADEWFTM_20AA39.USD","d":[]},{"s":"HITBTC:XDCBTC","d":[]},{"s":"UNISWAP:HOSHIWETH_DD5C89","d":[]},{"s":"TRADERJOE:MUUSDCE_FACB38","d":[]},{"s":"BITFINEX:YFIUSD","d":[]},{"s":"GATEIO:UPCUSDT","d":[]},{"s":"UNISWAP3ETH:SUSDWETH","d":[]},{"s":"MEXC:NCXUSDT","d":[]},{"s":"PANGOLIN:TERRAUSDTE_C74B55","d":[]},{"s":"UNISWAP3ETH:LOCKWETH_7D45A2.USD","d":[]},{"s":"TRADERJOE:BVICWBTCE_176624","d":[]},{"s":"BYBIT:UNIUSDT.P","d":[]},{"s":"UNISWAP:SSBWETH_97540D.USD","d":[]},{"s":"UNISWAP:WOOFMEWETH_9C7CE3.USD","d":[]},{"s":"UNISWAP3ETH:APEMAYC_E46CAE.USD","d":[]},{"s":"UNISWAP:XPWETH_353A70","d":[]},{"s":"POLONIEX:CHRUSDT","d":[]},{"s":"GATEIO:DGUSDT","d":[]},{"s":"BITHUMB:TFUELKRW","d":[]},{"s":"TRADERJOE:H2OWAVAX_9615A1.USD","d":[]},{"s":"QUICKSWAP:MNFTWMATIC_046330.USD","d":[]},{"s":"BINANCE:BTCPLN","d":[]},{"s":"UNISWAP3ETH:SOCKSWETH_C75A99.USD","d":[]},{"s":"BINGX:UMAUSDT.P","d":[]},{"s":"UNISWAP3ETH:MICKEYWETH_32550F.USD","d":[]},{"s":"COINEX:LOKAUSDT","d":[]},{"s":"UNISWAP3ETH:GPUWETH","d":[]},{"s":"UNISWAP:STARSHIPWETH_E195D9","d":[]},{"s":"UNISWAP3ETH:WETHNRG","d":[]},{"s":"UNISWAP3ETH:WBTCLK99","d":[]},{"s":"XEXCHANGE:UNITYXWEGLD","d":[]},{"s":"SPOOKYSWAP:FRAXHEC_0F8D69.USD","d":[]},{"s":"BISWAP:1RTWBNB_67B07E.USD","d":[]},{"s":"UNISWAP3ETH:WOOWETH","d":[]},{"s":"TRADERJOE:DUAWAVAX_794AAE.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SUSHIWETH_44CB63.USD","d":[]},{"s":"UNISWAP:XERSWETH_39D7A3.USD","d":[]},{"s":"UPBIT:AQTKRW","d":[]},{"s":"UNISWAP:KOTOWETH_47287D.USD","d":[]},{"s":"TRADERJOE:SNOBWAVAX_8FB5BD.USD","d":[]},{"s":"KRAKEN:COMPUSD.PM","d":[]},{"s":"HITBTC:PONDUSD","d":[]},{"s":"BINANCEUS:FLUXUSDT","d":[]},{"s":"UNISWAP3ETH:VIRTUALWETH_95A45A.USD","d":[]},{"s":"HITBTC:YFIIUSD","d":[]},{"s":"UNISWAP:MTWTRUST_34856B","d":[]},{"s":"KRAKEN:QNTEUR","d":[]},{"s":"GATEIO:LYMUSDT","d":[]},{"s":"GATEIO:CAREUSDT","d":[]},{"s":"HITBTC:UTKBTC","d":[]},{"s":"BINGX:KASUSDT.P","d":[]},{"s":"UNISWAP:USXDF_DAE6E5.USD","d":[]},{"s":"UNISWAP3ETH:WSTETHWETH_D340B5.USD","d":[]},{"s":"PANGOLIN:VEEWAVAX_D69DE4","d":[]},{"s":"BINGX:HBARUSDT.P","d":[]},{"s":"UNISWAP:SLICEWETH_A21ECE.USD","d":[]},{"s":"MEXC:ICDAUSDT","d":[]},{"s":"PHEMEX:DAIUSDT","d":[]},{"s":"BITKUB:BCHTHB","d":[]},{"s":"HITBTC:PREBTC","d":[]},{"s":"UNISWAP3ETH:SEGAWETH","d":[]},{"s":"DERIBIT:BCHUSDC.P","d":[]},{"s":"BYBIT:GSTUSDT","d":[]},{"s":"UNISWAP:MINDWETH_A3A0F6","d":[]},{"s":"MEXC:QTUMUSDT.P","d":[]},{"s":"COINEX:JONESUSDT","d":[]},{"s":"BYBIT:MIXUSDT","d":[]},{"s":"UNISWAP:ADULTWETH_FFD6E0.USD","d":[]},{"s":"MEXC:STRMBTC","d":[]},{"s":"UNISWAP3ETH:ARTMUSDT","d":[]},{"s":"PHEMEX:SHIBUSDT","d":[]},{"s":"GATEIO:RBCUSDT","d":[]},{"s":"PHEMEX:1INCHUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:USDDUSDC_5151C8.USD","d":[]},{"s":"PIONEX:PERPUSDT.P","d":[]},{"s":"UNISWAP:EGGWETH_9064DF.USD","d":[]},{"s":"UNISWAP:TOADWETH_5618E1.USD","d":[]},{"s":"UNISWAP:POGEXWETH_D3F072","d":[]},{"s":"ZOOMEX:MAGICUSDT.P","d":[]},{"s":"BITMEX:XRPBTCM2024","d":[]},{"s":"UNISWAP3ETH:USDCAGEUR","d":[]},{"s":"GEMINI:CTXUSD","d":[]},{"s":"UNISWAP:JEWWETH_6FC794","d":[]},{"s":"HITBTC:ARPABTC","d":[]},{"s":"UNISWAP3ETH:RNGWETH_9437AD.USD","d":[]},{"s":"COINEX:STEEMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDAWGS","d":[]},{"s":"QUICKSWAP:JUGNIWMATIC_330C4E","d":[]},{"s":"BINANCE:XRPFDUSD","d":[]},{"s":"BITGET:LMWRUSDT","d":[]},{"s":"ZOOMEX:AGIXUSDT.P","d":[]},{"s":"UNISWAP:MPSUSDC_CD6F65","d":[]},{"s":"UNISWAP3ETH:GALAWETH","d":[]},{"s":"POLONIEX:BTCUSDD","d":[]},{"s":"UNISWAP3ETH:SORAWETH_C588DA.USD","d":[]},{"s":"UNISWAP:GROK20WETH_DFC620.USD","d":[]},{"s":"UNISWAP3ETH:SMTXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:UMAMIWETH_2B734E.USD","d":[]},{"s":"UNISWAP:UEFNWETH_0F083A.USD","d":[]},{"s":"UNISWAP3ETH:RBLZWETH_552B1E.USD","d":[]},{"s":"UNISWAP:HANEPUSDC_E1D6AD","d":[]},{"s":"BITGET:RONUSDT","d":[]},{"s":"COINEX:OSMOUSDT","d":[]},{"s":"UNISWAP3POLYGON:BRZUSDT_AA3525.USD","d":[]},{"s":"BITHUMB:MLKKRW","d":[]},{"s":"WOONETWORK:ICPUSDT","d":[]},{"s":"COINBASE:CGLDBTC","d":[]},{"s":"UNISWAP3ETH:DOLAUSDC","d":[]},{"s":"UNISWAP3ETH:DAIUNI","d":[]},{"s":"TRADERJOE:DLCUSDCE_1A8F2F","d":[]},{"s":"MEXC:DFYNUSDT","d":[]},{"s":"UNISWAP3ETH:CELLUSDT_08866A.USD","d":[]},{"s":"GATEIO:C98USDT.3S","d":[]},{"s":"UNISWAP:AIPADWETH_C1F4EC.USD","d":[]},{"s":"QUICKSWAP:PLOTUSDC_78FD83","d":[]},{"s":"UNISWAP:ZINUWETH_E5EA0E.USD","d":[]},{"s":"PHEMEX:AGLDUSDT.P","d":[]},{"s":"UNISWAP:AXEWETH_E2710F.USD","d":[]},{"s":"PANGOLIN:PEFILINKE_3968C1.USD","d":[]},{"s":"EXMO:XRPETH","d":[]},{"s":"GATEIO:MATUSDT","d":[]},{"s":"UNISWAP3ETH:SODOWETH_7A1C63.USD","d":[]},{"s":"MEXC:REAPUSDT","d":[]},{"s":"TRADERJOE:GOATWAVAX_D4B2C6","d":[]},{"s":"PANGOLIN:JOEWAVAX_134AD6.USD","d":[]},{"s":"POLONIEX:SCAUSDT","d":[]},{"s":"UNISWAP3ETH:OCHWETH_AFC9EF.USD","d":[]},{"s":"HITBTC:TWTBTC","d":[]},{"s":"GATEIO:ARRRUSDT","d":[]},{"s":"UNISWAP:NONEWETH_E8A70A.USD","d":[]},{"s":"SPOOKYSWAP:RAINIUSDC_FEA157","d":[]},{"s":"UNISWAP3ETH:WETHMELD","d":[]},{"s":"UNISWAP3ETH:WETHBZZ","d":[]},{"s":"UNISWAP:WTSWETH_4D6E9D","d":[]},{"s":"UNISWAP3POLYGON:TBTCWBTC_30BCAD.USD","d":[]},{"s":"UNISWAP3ETH:USDTMIX","d":[]},{"s":"ZOOMEX:MATICUSDT.P","d":[]},{"s":"COINEX:NSBTUSDT","d":[]},{"s":"HITBTC:GHSTBTC","d":[]},{"s":"MEXC:AMPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSWK","d":[]},{"s":"MEXC:DTRUSDT","d":[]},{"s":"UNISWAP3ETH:SKYNETUSDC","d":[]},{"s":"KRAKEN:FILGBP","d":[]},{"s":"UNISWAP3ETH:WETHPLU","d":[]},{"s":"BINANCE:THETAUSDT","d":[]},{"s":"UNISWAP:0NEWETH_6C406D.USD","d":[]},{"s":"BITFINEX:ZECBTC","d":[]},{"s":"BYBIT:ETHUSDT.3S","d":[]},{"s":"KRAKEN:ETHWUSD","d":[]},{"s":"BYBIT:XVSUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:LINKWETH_3E31AB.USD","d":[]},{"s":"UNISWAP:DOGGYWETH_68FD08","d":[]},{"s":"MEXC:IGSUSDT","d":[]},{"s":"HITBTC:VSYSUSDT","d":[]},{"s":"MEXC:NFTUSDT","d":[]},{"s":"MEXC:DXGMUSDT","d":[]},{"s":"SPOOKYSWAP:SCREAMWFTM_30872E","d":[]},{"s":"UNISWAP:404AWETH_42EA91","d":[]},{"s":"UNISWAP:KRTEKWETH_2E8861","d":[]},{"s":"OKX:LPTUSDT.P","d":[]},{"s":"UNISWAP:PPDEXWETH_6B1455.USD","d":[]},{"s":"BITGET:FITFIUSDT","d":[]},{"s":"BITGET:TAOUSDT","d":[]},{"s":"UNISWAP:GBEWETH_21CEF3","d":[]},{"s":"BYBIT:LEVERUSDT.P","d":[]},{"s":"UNISWAP3ETH:IMXGODS_0A290F.USD","d":[]},{"s":"QUICKSWAP:AMATICCWMATIC_E7D85C.USD","d":[]},{"s":"XEXCHANGE:SUPERUSDC","d":[]},{"s":"TRADERJOE:ALPHAEWAVAX_F723FE.USD","d":[]},{"s":"SPOOKYSWAP:BTCMIDAS_7F98C0","d":[]},{"s":"BITRUE:CHRUSDC","d":[]},{"s":"BITHUMB:ADPKRW","d":[]},{"s":"BITRUE:MATICSOL","d":[]},{"s":"UNISWAP:HOODWETH_C1700C","d":[]},{"s":"COINEX:DEGENUSDT","d":[]},{"s":"GATEIO:AVAXUSDT.3S","d":[]},{"s":"COINEX:CFXUSDT","d":[]},{"s":"BITHUMB:LBLKRW","d":[]},{"s":"BINANCE:EGLDETH","d":[]},{"s":"UNISWAP:QWNWETH_4EBDF5","d":[]},{"s":"KRAKEN:MANAEUR","d":[]},{"s":"HITBTC:GMTUSDT","d":[]},{"s":"MEXC:FINAUSDT","d":[]},{"s":"UNISWAP3ETH:BANDWETH","d":[]},{"s":"UNISWAP3ETH:ATHWETH_8BFD85.USD","d":[]},{"s":"COINEX:ACHUSDT","d":[]},{"s":"COINEX:CHIUSDT","d":[]},{"s":"QUICKSWAP:WOOWETH_70294D","d":[]},{"s":"TIMEX:RSIUSDT","d":[]},{"s":"UNISWAP:HANDZWETH_9BAA12","d":[]},{"s":"POLONIEX:TBANKUSDT","d":[]},{"s":"UNISWAP3POLYGON:PAXGWBTC_E9CB1E.USD","d":[]},{"s":"UNISWAP3ETH:XPRWETH","d":[]},{"s":"COINEX:DUELUSDT","d":[]},{"s":"TRADERJOE:KOVINKIMBO_19C17C","d":[]},{"s":"PANGOLIN:STORMWAVAX_9613AC","d":[]},{"s":"KRAKEN:XMRBTC","d":[]},{"s":"COINEX:SCRTBTC","d":[]},{"s":"UNISWAP:CATGPTWETH_A8BC3B.USD","d":[]},{"s":"COINEX:AINNUSDT","d":[]},{"s":"COINEX:BLOKUSDT","d":[]},{"s":"COINEX:REVVUSDT","d":[]},{"s":"UNISWAP:TWTCWETH_667B70.USD","d":[]},{"s":"UNISWAP3ARBITRUM:FRXETHFRAX_239DEA.USD","d":[]},{"s":"QUICKSWAP:KAMPAYWMATIC_85374E","d":[]},{"s":"PHEMEX:GNSUSDT","d":[]},{"s":"SPOOKYSWAP:FOLIVEWFTM_F1D412.USD","d":[]},{"s":"UNISWAP3ETH:USDTEXRD","d":[]},{"s":"MEXC:DRAGONSUSDT","d":[]},{"s":"HITBTC:ETHBNTUSD","d":[]},{"s":"TRADERJOE:GOHMWAVAX_B674F9.USD","d":[]},{"s":"COINEX:TAMAUSDT","d":[]},{"s":"PANGOLIN:ISAWAVAX_FBA309.USD","d":[]},{"s":"POLONIEX:XYMUSD","d":[]},{"s":"MEXC:BRCSTUSDT","d":[]},{"s":"BITHUMB:IOTXKRW","d":[]},{"s":"UNISWAP:MURATIAIWETH_BF49D1","d":[]},{"s":"UNISWAP:ZKHIVEWETH_6FE467.USD","d":[]},{"s":"UNISWAP:PGNOMEDAI_FF9A47","d":[]},{"s":"OKX:ETHUSDT.P","d":[]},{"s":"UNISWAP:LOANIFYWETH_F77F7B.USD","d":[]},{"s":"COINBASE:KSMUSD","d":[]},{"s":"UNISWAP3ETH:DSETHWETH_DA7ADC.USD","d":[]},{"s":"EXMO:USDTEUR","d":[]},{"s":"MEXC:PIBUSDT","d":[]},{"s":"UNISWAP3ETH:AAVEUSDC","d":[]},{"s":"SPOOKYSWAP:TARTWFTM_09EB3A","d":[]},{"s":"UNISWAP:FOXWETH_470E8D","d":[]},{"s":"MEXC:KENKAUSDT","d":[]},{"s":"GEMINI:ETHSGD","d":[]},{"s":"BYBIT:SOLBTC","d":[]},{"s":"UNISWAP:DOGWSTETH_801C86.USD","d":[]},{"s":"UNISWAP:TOPIAWETH_C91EF7.USD","d":[]},{"s":"UNISWAP:JOKERWETH_38A917.USD","d":[]},{"s":"UNISWAP3ETH:CRVUSDC","d":[]},{"s":"MEXC:NESTUSDT","d":[]},{"s":"MEXC:NETZUSDT","d":[]},{"s":"UNISWAP3ETH:LAKEWETH_EFD69F.USD","d":[]},{"s":"UNISWAP3ETH:BKNUSDT","d":[]},{"s":"GATEIO:SHAREUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHYPE","d":[]},{"s":"WHITEBIT:IDUSDT","d":[]},{"s":"BINANCE:ALGOETH","d":[]},{"s":"BITGET:DAIUSDT","d":[]},{"s":"GATEIO:LEMNUSDT","d":[]},{"s":"MEXC:LYUMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSKEL","d":[]},{"s":"SPOOKYSWAP:DUOWFTM_5C2AA2","d":[]},{"s":"BYBIT:1000PEPEUSDT.P","d":[]},{"s":"UNISWAP3ETH:HUMANSWETH","d":[]},{"s":"COINBASE:POWRUSD","d":[]},{"s":"MEXC:GMTUSDT","d":[]},{"s":"BITGET:HNTUSDT","d":[]},{"s":"UNISWAP3ETH:LK99MKR","d":[]},{"s":"BISWAP:ADAWBNB_886092.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LINKUSDC_DD092F.USD","d":[]},{"s":"COINEX:BSVUSDC","d":[]},{"s":"BINANCE:LRCUSDT","d":[]},{"s":"UNISWAP:BPTLWETH_B73901.USD","d":[]},{"s":"COINEX:OASUSDT","d":[]},{"s":"PIONEX:QTUMUSDT.P","d":[]},{"s":"HITBTC:ETHEOSDT","d":[]},{"s":"BITRUE:FRONTUSDT","d":[]},{"s":"UNISWAP3ETH:CALWETH","d":[]},{"s":"QUICKSWAP:PMATICWMATIC_532822","d":[]},{"s":"UNISWAP:RAKEWETH_4C6F01","d":[]},{"s":"GATEIO:XCADUSDT","d":[]},{"s":"GATEIO:GSEUSDT","d":[]},{"s":"BITGET:AVAXUSDT","d":[]},{"s":"BITRUE:BURGERUSDT","d":[]},{"s":"UNISWAP3POLYGON:CCDAOAAVE_C87062.USD","d":[]},{"s":"HITBTC:BTBBTC","d":[]},{"s":"UNISWAP3POLYGON:STMATICWMATIC_6065E6.USD","d":[]},{"s":"BINANCE:ACHTRY","d":[]},{"s":"UNISWAP:DOGE30WETH_DD6359.USD","d":[]},{"s":"BINANCE:ETHBRL","d":[]},{"s":"WOONETWORK:IMXUSDT","d":[]},{"s":"UNISWAP3ETH:ROCKWETH_1C3E5C.USD","d":[]},{"s":"COINEX:PENGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHOP","d":[]},{"s":"COINEX:API3USDT","d":[]},{"s":"UNISWAP3ETH:VOLTDAI","d":[]},{"s":"GATEIO:QTUMUSDT","d":[]},{"s":"BITRUE:OMGXRP","d":[]},{"s":"GATEIO:FRAUSDT","d":[]},{"s":"POLONIEX:XMRUSDC","d":[]},{"s":"TRADERJOE:KALMWAVAX_D86FF5","d":[]},{"s":"QUICKSWAP:RAMPWETH_E55739.USD","d":[]},{"s":"UNISWAP3ETH:KEPWETH","d":[]},{"s":"UNISWAP:FMONWETH_DD59B0.USD","d":[]},{"s":"UNISWAP3ETH:WETHKEP","d":[]},{"s":"COINBASE:ENJBTC","d":[]},{"s":"PHEMEX:GLMUSDT.P","d":[]},{"s":"GATEIO:DVUSDT","d":[]},{"s":"UNISWAP:IBITWETH_5899BE","d":[]},{"s":"UNISWAP:BIBWETH_92DF9C","d":[]},{"s":"UNISWAP3ETH:HGPWETH","d":[]},{"s":"BINANCE:TRBTRY","d":[]},{"s":"UNISWAP:ROULETTEBOTWETH_3CBF02.USD","d":[]},{"s":"UNISWAP3ETH:UNVWETH","d":[]},{"s":"BITFINEX:WMINIMAUST","d":[]},{"s":"UNISWAP:SHANGWETH_F0D417.USD","d":[]},{"s":"UNISWAP3ETH:CHESSWETH","d":[]},{"s":"MEXC:BNBUSDT.P","d":[]},{"s":"WHITEBIT:STRKUSDT","d":[]},{"s":"BITFINEX:XLMBTC","d":[]},{"s":"SPOOKYSWAP:DOGGOWFTM_E56CD7.USD","d":[]},{"s":"MEXC:MOONFTUSDT","d":[]},{"s":"BLOFIN:CHRUSDT.P","d":[]},{"s":"UNISWAP:XRPWETH_B49159","d":[]},{"s":"UNISWAP3ETH:BRIGHTWETH_615D40.USD","d":[]},{"s":"QUICKSWAP:GHSTKEK_BFAD16.USD","d":[]},{"s":"POLONIEX:TSUKAUSDT","d":[]},{"s":"UNISWAP3ETH:NFTXWETH_930B2C.USD","d":[]},{"s":"BYBIT:DEVTUSDT","d":[]},{"s":"UNISWAP:AIWETH_A9A88A.USD","d":[]},{"s":"UNISWAP:PEPEBFWETH_DB9DF6","d":[]},{"s":"KRAKEN:LINKGBP","d":[]},{"s":"MEXC:VESUSDT","d":[]},{"s":"MEXC:SCBUSDT","d":[]},{"s":"UNISWAP3ETH:FWBWETH_9AB090.USD","d":[]},{"s":"MEXC:YFIIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSLP","d":[]},{"s":"GATEIO:KIFUSDT","d":[]},{"s":"UNISWAP3ETH:SKELWETH_0F8281.USD","d":[]},{"s":"UNISWAP:KONOWETH_974BFC.USD","d":[]},{"s":"BTSE:RENUSD","d":[]},{"s":"UNISWAP3ETH:VALWETH_54A4B8.USD","d":[]},{"s":"KRAKEN:WAVESETH","d":[]},{"s":"BTSE:KNCUSD","d":[]},{"s":"MEXC:WAXPUSDT.P","d":[]},{"s":"UNISWAP:ENIGMAWETH_AD7849","d":[]},{"s":"SPOOKYSWAP:1ARTWFTM_671225","d":[]},{"s":"BINANCE:STRAXTRY","d":[]},{"s":"ZOOMEX:RVNUSDT.P","d":[]},{"s":"COINEX:CLVBTC","d":[]},{"s":"UNISWAP:NIBIWETH_1D644A.USD","d":[]},{"s":"COINBASE:CHZGBP","d":[]},{"s":"MEXC:SWPUSDT","d":[]},{"s":"GATEIO:DOSEUSDT","d":[]},{"s":"QUICKSWAP:STNUSDT_2EE7B1","d":[]},{"s":"TRADERJOE:RIBTWAVAX_391E47.USD","d":[]},{"s":"UNISWAP3ETH:JBXWETH","d":[]},{"s":"UNISWAP:PEEPWETH_FDD0F1.USD","d":[]},{"s":"PANGOLIN:CRAWAVAX_960FA2.USD","d":[]},{"s":"UNISWAP3POLYGON:FXBREEDUSDT_A8E0DD.USD","d":[]},{"s":"COINBASE:MASKGBP","d":[]},{"s":"UNISWAP3ETH:CAPTAINZWETH_B70EA5.USD","d":[]},{"s":"BITFINEX:SUIBTC","d":[]},{"s":"GATEIO:GOFUSDT","d":[]},{"s":"BYBIT:LINAUSDT.P","d":[]},{"s":"UNISWAP3ETH:CMPTWETH","d":[]},{"s":"UNISWAP3ETH:MOOXUSDT","d":[]},{"s":"UNISWAP:SAMAAIWETH_A49186","d":[]},{"s":"BINANCE:YFIBTC","d":[]},{"s":"UNISWAP3ARBITRUM:MAIUSDC_37A416.USD","d":[]},{"s":"UNISWAP:HANDZWETH_9BAA12.USD","d":[]},{"s":"PHEMEX:STXUSDT","d":[]},{"s":"OKX:FILUSDT.P","d":[]},{"s":"PANGOLIN:ACREUSDTE_B448A6.USD","d":[]},{"s":"UNISWAP:SHIDOWETH_419991","d":[]},{"s":"MEXC:SMARTUSDT","d":[]},{"s":"BINANCE:SFPBTC","d":[]},{"s":"UNISWAP3ETH:LDAOUSDT","d":[]},{"s":"UNISWAP3ETH:NKNUSDT_F743AC.USD","d":[]},{"s":"UNISWAP:PEPEBONKWETH_68CA1B.USD","d":[]},{"s":"UNISWAP:PAGWETH_B40687","d":[]},{"s":"UNISWAP3ETH:SHRAPWETH","d":[]},{"s":"UNISWAP:ANDYWETH_A1BF0E.USD","d":[]},{"s":"UNISWAP:LOOTERWETH_FDA70E","d":[]},{"s":"BLOFIN:ANTUSDT.P","d":[]},{"s":"MEXC:NEARUSDT","d":[]},{"s":"UNISWAP3ETH:ETFWETH","d":[]},{"s":"MEXC:AESUSDT","d":[]},{"s":"BLOFIN:NMRUSDT.P","d":[]},{"s":"PHEMEX:ERNUSDT","d":[]},{"s":"MEXC:PARMAUSDT","d":[]},{"s":"BITFINEX:ETHUST.P","d":[]},{"s":"BINANCE:ETHTUSD","d":[]},{"s":"COINEX:VITAUSDT","d":[]},{"s":"UPBIT:GASKRW","d":[]},{"s":"BITFINEX:ZECUSD","d":[]},{"s":"UNISWAP3ARBITRUM:ANKRETHWSTETH_456E7E.USD","d":[]},{"s":"UNISWAP3POLYGON:SBCUSDC_59843A.USD","d":[]},{"s":"MEXC:KAKAUSDT","d":[]},{"s":"BITGET:PYTHUSDT.P","d":[]},{"s":"UNISWAP:MATCHWETH_8A7E8C.USD","d":[]},{"s":"UNISWAP3ETH:WETHUSDC_E0554A.USD","d":[]},{"s":"UNISWAP3ETH:FUMOWETH_78D4E8.USD","d":[]},{"s":"UNISWAP:NASHWETH_1B7C2F.USD","d":[]},{"s":"MEXC:IDUSDT","d":[]},{"s":"UNISWAP:O1WETH_3A7D23","d":[]},{"s":"GATEIO:INVUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:CAHUSDT_C17810.USD","d":[]},{"s":"COINEX:MATICBTC","d":[]},{"s":"SPOOKYSWAP:DEVILBTC_A5369D.USD","d":[]},{"s":"UNISWAP3ETH:FORMWETH","d":[]},{"s":"UNISWAP3ETH:PNPCWETH","d":[]},{"s":"WHITEBIT:ARPAUSDT","d":[]},{"s":"UNISWAP:LRCWETH_8878DF","d":[]},{"s":"UNISWAP3ETH:EMAIDUSDC","d":[]},{"s":"KRAKEN:RUNEEUR","d":[]},{"s":"COINEX:STRKUSDT","d":[]},{"s":"HITBTC:XPRBTC","d":[]},{"s":"UNISWAP:QUIDDMYTH_9042F4.USD","d":[]},{"s":"UNISWAP:SMARTCREDITWETH_6061A3.USD","d":[]},{"s":"UNISWAP3ETH:NOTEUSDT","d":[]},{"s":"UNISWAP:0XDEVWETH_5229E6.USD","d":[]},{"s":"UNISWAP:ANDYWETH_DA5DC4","d":[]},{"s":"COINEX:GOALUSDT","d":[]},{"s":"UNISWAP:ARBOTWETH_4CB363","d":[]},{"s":"PANGOLIN:DIAMONDTOKENWORLDWAVAX_886118","d":[]},{"s":"MEXC:SSWPUSDT","d":[]},{"s":"UNISWAP3ETH:RAZORUSDC","d":[]},{"s":"UNISWAP3ETH:WETHVINCE","d":[]},{"s":"UNISWAP3ETH:SYNWETH_2DD35B.USD","d":[]},{"s":"BINANCE:IOTXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:MSTUSDT_0A5A02.USD","d":[]},{"s":"PHEMEX:IQUSDT","d":[]},{"s":"UNISWAP:QUESTWETH_AC9373.USD","d":[]},{"s":"UNISWAP3ETH:METISUSDC","d":[]},{"s":"BINANCE:BCHFDUSD","d":[]},{"s":"BITGET:SOLUSDT.P","d":[]},{"s":"HITBTC:ICPUSD","d":[]},{"s":"BTSE:ONEUSD","d":[]},{"s":"COINEX:PHBUSDT","d":[]},{"s":"UNISWAP:BEBEWETH_E6DA0C.USD","d":[]},{"s":"COINEX:DIAUSDT","d":[]},{"s":"MEXC:TRVUSDT","d":[]},{"s":"COINEX:HTXUSDT","d":[]},{"s":"PHEMEX:CYBERUSDT.P","d":[]},{"s":"COINEX:BNTUSDT","d":[]},{"s":"BITGET:WILDUSDT","d":[]},{"s":"UNISWAP3ETH:TINHATWETH","d":[]},{"s":"BITGET:USDCUSDT.P","d":[]},{"s":"WHITEBIT:RVNUSDT","d":[]},{"s":"POLONIEX:ZRXUSDT","d":[]},{"s":"UNISWAP:TOKEWETH_5FA464.USD","d":[]},{"s":"BITGET:FTTUSDT","d":[]},{"s":"ZOOMEX:FUNUSDT.P","d":[]},{"s":"UNISWAP3ETH:DONWETH","d":[]},{"s":"UNISWAP:PPORKPOHM_F5298C.USD","d":[]},{"s":"PIONEX:AUCTIONUSDT.P","d":[]},{"s":"BINANCE:DIABTC","d":[]},{"s":"HITBTC:SUIUSDT","d":[]},{"s":"POLONIEX:SANTOSUSDD","d":[]},{"s":"BITGET:DEGUSDT","d":[]},{"s":"UNISWAP3POLYGON:OMIUSDC_FD42C2.USD","d":[]},{"s":"COINBASE:AGLDUSD","d":[]},{"s":"UNISWAP:BTTWETH_2D0BA9","d":[]},{"s":"GATEIO:SXPUSDT.3S","d":[]},{"s":"UNISWAP3ETH:BRISEWETH","d":[]},{"s":"UPBIT:MEDKRW","d":[]},{"s":"POLONIEX:CELUSDT","d":[]},{"s":"GATEIO:SWAPUSDT","d":[]},{"s":"PHEMEX:TRUUSDT","d":[]},{"s":"POLONIEX:DOTUSD","d":[]},{"s":"BINANCE:LPTBNB","d":[]},{"s":"MEXC:EURTUSDT","d":[]},{"s":"UNISWAP:MCWETH_CCB632.USD","d":[]},{"s":"KRAKEN:REPBTC","d":[]},{"s":"UNISWAP3ETH:BBTCWBTC_83B486.USD","d":[]},{"s":"QUICKSWAP:WOOWETH_70294D.USD","d":[]},{"s":"UNISWAP:GMEWETH_CE0719","d":[]},{"s":"KRAKEN:MANAUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:RETHWSTETH_415C01.USD","d":[]},{"s":"PIONEX:FTTUSDT.P","d":[]},{"s":"BINANCE:WAVESBTC","d":[]},{"s":"PHEMEX:AUCTIONUSDT.P","d":[]},{"s":"UNISWAP:OGGYWETH_39A34C.USD","d":[]},{"s":"UNISWAP:BONDLYWETH_4D3138.USD","d":[]},{"s":"BITRUE:BCHETH","d":[]},{"s":"UNISWAP3ETH:PPAYUSDC","d":[]},{"s":"UNISWAP3ETH:WETHTADPOLE","d":[]},{"s":"ZOOMEX:1CATUSDT.P","d":[]},{"s":"HITBTC:SMTUSDT","d":[]},{"s":"POLONIEX:PONKEUSDT","d":[]},{"s":"GATEIO:POLIUSDT","d":[]},{"s":"UNISWAP:KODACHIWETH_7F72BF","d":[]},{"s":"HITBTC:ENJETH","d":[]},{"s":"COINBASE:CRVBTC","d":[]},{"s":"HITBTC:XCHBTC","d":[]},{"s":"BINANCE:DYDXFDUSD","d":[]},{"s":"UNISWAP3ETH:GALWETH_8DD34E.USD","d":[]},{"s":"BYBIT:MBOXUSDT.P","d":[]},{"s":"BITRUE:XLMXRP","d":[]},{"s":"GATEIO:HECHUSDT","d":[]},{"s":"KRAKEN:QTUMBTC","d":[]},{"s":"UNISWAP3ETH:DARWETH_A9C6B6.USD","d":[]},{"s":"UNISWAP3ARBITRUM:DEAGLEWETH_EEC253.USD","d":[]},{"s":"BINANCE:PORTALFDUSD","d":[]},{"s":"WHITEBIT:BCHUSDT","d":[]},{"s":"TRADERJOE:HPTWAVAX_12A91D.USD","d":[]},{"s":"ZOOMEX:EGLDUSDT.P","d":[]},{"s":"BITHUMB:STXKRW","d":[]},{"s":"UNISWAP3ETH:ELONUSDC_A7B3BC.USD","d":[]},{"s":"UNISWAP:ARCWETH_47082A.USD","d":[]},{"s":"GATEIO:EEGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSODO","d":[]},{"s":"UNISWAP3ETH:CIOTXIOTX_DF1ACD.USD","d":[]},{"s":"UNISWAP3ETH:USDCOCEAN","d":[]},{"s":"UNISWAP3ETH:ASIUSDT_18E3D5.USD","d":[]},{"s":"COINEX:ETHWUSDT","d":[]},{"s":"GATEIO:ACEUSDT","d":[]},{"s":"POLONIEX:CREUSDT","d":[]},{"s":"GATEIO:RNDRUSDT","d":[]},{"s":"PHEMEX:AMBUSDT.P","d":[]},{"s":"UNISWAP3ETH:XDOGEXEN_DDB9C6.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GDTUSDC_0ACB08.USD","d":[]},{"s":"QUICKSWAP:USTWMATIC_9B7E96","d":[]},{"s":"HITBTC:MASKBTC","d":[]},{"s":"GEMINI:SOLUSD","d":[]},{"s":"QUICKSWAP:SHIBWMATIC_5FB641.USD","d":[]},{"s":"UPBIT:KNCKRW","d":[]},{"s":"UNISWAP3ETH:IDRTUSDT","d":[]},{"s":"COINBASE:MANAEUR","d":[]},{"s":"UNISWAP3ETH:CTSIWETH_019497.USD","d":[]},{"s":"HITBTC:LPTBTC","d":[]},{"s":"UNISWAP3ETH:WETHGRAI","d":[]},{"s":"UNISWAP:COINBTWETH_41A121.USD","d":[]},{"s":"UNISWAP:SCANWETH_2E4769.USD","d":[]},{"s":"UNISWAP:SENDEXWETH_619A6B","d":[]},{"s":"ZOOMEX:DENTUSDT.P","d":[]},{"s":"HITBTC:BALUSD","d":[]},{"s":"UNISWAP3POLYGON:OSAKWMATIC_4D93E2.USD","d":[]},{"s":"BTSE:IOTXUSD.P","d":[]},{"s":"BITGET:NKNUSDT.P","d":[]},{"s":"UNISWAP3ETH:AJNAWETH","d":[]},{"s":"HITBTC:AKROUSD","d":[]},{"s":"KRAKEN:TVKEUR","d":[]},{"s":"MEXC:KMAUSDT","d":[]},{"s":"UNISWAP:CCWETH_6CD7E3.USD","d":[]},{"s":"KRAKEN:STRKEUR","d":[]},{"s":"UNISWAP3ETH:WTKUSDT_ECEA5B.USD","d":[]},{"s":"UNISWAP:STRAYWETH_6ECBFB.USD","d":[]},{"s":"UNISWAP3ETH:DHTUSDC","d":[]},{"s":"UNISWAP:SRMWETH_1637D0","d":[]},{"s":"BITRUE:XMRXRP","d":[]},{"s":"UNISWAP3ETH:WETHERC20","d":[]},{"s":"BITGET:UNIUSDC","d":[]},{"s":"UNISWAP:MONKEWETH_23610E","d":[]},{"s":"UNISWAP3ETH:OCHWETH","d":[]},{"s":"PHEMEX:XTZUSDT.P","d":[]},{"s":"OKX:XRPUSD.P","d":[]},{"s":"HITBTC:GRTUSDT","d":[]},{"s":"OKX:KSMUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:LDOWETH_DA908C.USD","d":[]},{"s":"GATEIO:KARUSDT","d":[]},{"s":"GATEIO:NOSUSDT","d":[]},{"s":"UNISWAP:KNCWETH_F49C43","d":[]},{"s":"UNISWAP:GEORGEWETH_9D378C.USD","d":[]},{"s":"MEXC:VETUSDT.P","d":[]},{"s":"UNISWAP3ETH:PANDORARNG_69511E.USD","d":[]},{"s":"UNISWAP3ETH:STETHWETH","d":[]},{"s":"UNISWAP3ETH:USDTGEAR","d":[]},{"s":"BTSE:CHZUSD.P","d":[]},{"s":"UNISWAP3ETH:RPILLWETH","d":[]},{"s":"HITBTC:XVGBTC","d":[]},{"s":"UNISWAP:STRAWBERRYELEPHANTWETH_7D8272.USD","d":[]},{"s":"UNISWAP3POLYGON:USDRUSDC_35CCB6.USD","d":[]},{"s":"UNISWAP3ETH:USDTDCK","d":[]},{"s":"UNISWAP3ETH:WETHNABOX","d":[]},{"s":"POLONIEX:CAKEUSDT","d":[]},{"s":"BINANCE:EGLDBNB","d":[]},{"s":"UNISWAP3ETH:WETHSTG","d":[]},{"s":"UNISWAP:SPSWETH_1E6BA8","d":[]},{"s":"BINANCE:ARKMTRY","d":[]},{"s":"PIONEX:ASTRUSDT.P","d":[]},{"s":"BITFINEX:FETUST","d":[]},{"s":"UNISWAP3ETH:WTAOUSDT","d":[]},{"s":"BITKUB:YFITHB","d":[]},{"s":"TRADERJOE:GMXUSDT_C2FC17","d":[]},{"s":"BTSE:ATOMUSD","d":[]},{"s":"KRAKEN:JASMYUSD","d":[]},{"s":"MEXC:PONKEUSDT","d":[]},{"s":"COINEX:FITFIUSDT","d":[]},{"s":"POLONIEX:BTSUSD","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDC_0E44CE.USD","d":[]},{"s":"UNISWAP3ARBITRUM:STGUSDC_D3EB92.USD","d":[]},{"s":"UNISWAP:NITROWETH_3716AF.USD","d":[]},{"s":"UNISWAP3ETH:1CATWETH","d":[]},{"s":"QUICKSWAP:SPORTTOWER_F84EAB.USD","d":[]},{"s":"UNISWAP:SMUDGEWETH_91A0BA.USD","d":[]},{"s":"UNISWAP:YOBASEWETH_42210E","d":[]},{"s":"QUICKSWAP:KNIGHTWETH_7F7C12.USD","d":[]},{"s":"BYBIT:BICOUSDT","d":[]},{"s":"COINBASE:LINKETH","d":[]},{"s":"BITRUE:USDCUSDT","d":[]},{"s":"PANGOLIN:AVEWAVAX_62A2F2","d":[]},{"s":"ZOOMEX:CELRUSDT.P","d":[]},{"s":"BITGET:AKROUSDT","d":[]},{"s":"PIONEX:COMPUSDT.P","d":[]},{"s":"COINEX:TRXUSDT","d":[]},{"s":"BITSTAMP:INJEUR","d":[]},{"s":"UNISWAP3ETH:WETHPAINT","d":[]},{"s":"UNISWAP3ETH:AMMXWETH","d":[]},{"s":"UNISWAP3ETH:ULXUSDT_9ADF46.USD","d":[]},{"s":"TRADERJOE:BABYCOQWAVAX_02C7D2.USD","d":[]},{"s":"QUICKSWAP:WETHUSDC_853EE4","d":[]},{"s":"MEXC:AIEPKUSDT","d":[]},{"s":"BITGET:PZPUSDT","d":[]},{"s":"BITMEX:JSTUSDT.P","d":[]},{"s":"POLONIEX:PORKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSKRIMP","d":[]},{"s":"UNISWAP:WAITTWETH_F9E4E6.USD","d":[]},{"s":"UNISWAP3ETH:LWETH","d":[]},{"s":"BYBIT:CROUSDT.P","d":[]},{"s":"GATEIO:DAGUSDT","d":[]},{"s":"UNISWAP:TRXWETH_7C8699","d":[]},{"s":"QUICKSWAP:LEPAWMATIC_B93027.USD","d":[]},{"s":"UNISWAP3ETH:NYMUSDT_DD1F66.USD","d":[]},{"s":"BLOFIN:COTIUSDT.P","d":[]},{"s":"POLONIEX:SYNCUSDT","d":[]},{"s":"GATEIO:LAMBUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_E75484.USD","d":[]},{"s":"UNISWAP:TRUWETH_80B4D4","d":[]},{"s":"BTSE:XTZUSD.P","d":[]},{"s":"GATEIO:AUCTIONUSDT","d":[]},{"s":"MEXC:CGPTUSDC","d":[]},{"s":"UNISWAP3ETH:WETHZARP","d":[]},{"s":"UNISWAP3ETH:MAZZEWETH_AA683F.USD","d":[]},{"s":"MEXC:BSCSUSDT","d":[]},{"s":"SPOOKYSWAP:WBANUSDC_6BADCF","d":[]},{"s":"WHITEBIT:SANDBTC","d":[]},{"s":"UNISWAP3ETH:INUWETH_72A4E0.USD","d":[]},{"s":"UNISWAP:MIRLUSDT_541B58","d":[]},{"s":"UNISWAP:BBLWETH_74E7B2.USD","d":[]},{"s":"UNISWAP:MEOWWETH_B8AEF6","d":[]},{"s":"UNISWAP:PREUSDT_5F0941","d":[]},{"s":"WOONETWORK:FEDNOCUTUSDT","d":[]},{"s":"QUICKSWAP:XPNDUSDC_83DE9A","d":[]},{"s":"TRADERJOE:STGWAVAX_2F5499","d":[]},{"s":"WHITEBIT:ATOMBTC","d":[]},{"s":"MEXC:FCT2USDT","d":[]},{"s":"MEXC:TLMUSDT","d":[]},{"s":"HITBTC:CELBTC","d":[]},{"s":"UNISWAP3ETH:WETHFLUX","d":[]},{"s":"UNISWAP3ETH:SETH2SWISE_992F53.USD","d":[]},{"s":"UNISWAP:TAONETWETH_30ED4D","d":[]},{"s":"UNISWAP:VRUSDT_4085CA","d":[]},{"s":"GATEIO:XRPUSDT.3S","d":[]},{"s":"UNISWAP:0XGASWETH_FBD802","d":[]},{"s":"UNISWAP:BANKWETH_EBE359.USD","d":[]},{"s":"UNISWAP3ETH:KONWETH_D5AA74.USD","d":[]},{"s":"GATEIO:SBRUSDT","d":[]},{"s":"UNISWAP:SPOTWETH_C0E1CB","d":[]},{"s":"TRADERJOE:KIKIWAVAX_6C77E9","d":[]},{"s":"UNISWAP3ARBITRUM:KTCWETH_C725F3.USD","d":[]},{"s":"KRAKEN:MASKUSD","d":[]},{"s":"UNISWAP3ETH:SWITCHWETH","d":[]},{"s":"UNISWAP:TPUWETH_927689.USD","d":[]},{"s":"BITRUE:BCHUSDC","d":[]},{"s":"UNISWAP:BWSMWETH_AEFF67","d":[]},{"s":"QUICKSWAP:ENDWMATIC_7AAD02","d":[]},{"s":"COINEX:IDEXUSDT","d":[]},{"s":"KRAKEN:STGEUR","d":[]},{"s":"UNISWAP3ETH:WETHSHPING","d":[]},{"s":"WHITEBIT:GRTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHBLENDR","d":[]},{"s":"HITBTC:FTMETH","d":[]},{"s":"BITGET:REACHUSDT","d":[]},{"s":"BYBIT:MTKUSDT","d":[]},{"s":"KRAKEN:USDTAUD","d":[]},{"s":"DERIBIT:ETHUSD26J2024","d":[]},{"s":"BINANCEUS:STORJUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNFTL","d":[]},{"s":"DELTA:SNXUSDT.P","d":[]},{"s":"BINANCE:LAZIOTRY","d":[]},{"s":"GATEIO:TIFIUSDT","d":[]},{"s":"GATEIO:ICXUSDT","d":[]},{"s":"BITFINEX:ETHEUT.P","d":[]},{"s":"GATEIO:XMRUSDT.3L","d":[]},{"s":"GATEIO:MEANUSDT","d":[]},{"s":"UNISWAP:KERMITWETH_43A372.USD","d":[]},{"s":"TRADERJOE:AMPLWAVAX_230C4A","d":[]},{"s":"BINANCE:LRCTRY","d":[]},{"s":"UNISWAP:BLKWETH_B050DD.USD","d":[]},{"s":"UNISWAP:ASGWETH_E79BAC","d":[]},{"s":"UNISWAP:BUDDHAWETH_28D509.USD","d":[]},{"s":"KRAKEN:PONDEUR","d":[]},{"s":"PANGOLIN:FITFIWAVAX_1BB665","d":[]},{"s":"BITGET:DUSKUSDT","d":[]},{"s":"KRAKEN:ASTRUSD","d":[]},{"s":"HITBTC:CUREBTC","d":[]},{"s":"UNISWAP:SNAILWETH_C6A45E.USD","d":[]},{"s":"GATEIO:KLAPUSDT","d":[]},{"s":"UNISWAP:ALCAZARWETH_F1DC48","d":[]},{"s":"WOONETWORK:COMPUSDT","d":[]},{"s":"BITGET:GFTUSDT","d":[]},{"s":"UNISWAP:SDTWETH_C465C0","d":[]},{"s":"BINANCE:ADXETH","d":[]},{"s":"KRAKEN:MULTIUSD","d":[]},{"s":"QUICKSWAP:HAKKAWETH_4C53FE.USD","d":[]},{"s":"MEXC:APEDUSDT","d":[]},{"s":"TRADERJOE:LFMIM_D7CDC2","d":[]},{"s":"UNISWAP:OPCWETH_C046B2","d":[]},{"s":"PIONEX:STGUSDT.P","d":[]},{"s":"UNISWAP:CRVWETH_3DA131.USD","d":[]},{"s":"UNISWAP:WIGGERWETH_DA6590.USD","d":[]},{"s":"MEXC:NCDTUSDT","d":[]},{"s":"BINANCE:DOTBNB","d":[]},{"s":"GATEIO:FEIUSDT","d":[]},{"s":"BLOFIN:POLYXUSDT.P","d":[]},{"s":"BITGET:WINUSDT","d":[]},{"s":"BINANCE:TRXUSD.P","d":[]},{"s":"OKX:CTCUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:AGEURWBTC_B2FC79.USD","d":[]},{"s":"UNISWAP3ETH:ICEWETH_40DECA.USD","d":[]},{"s":"MEXC:INGUSDT","d":[]},{"s":"POLONIEX:ENSUSDT","d":[]},{"s":"WOONETWORK:KSMUSDT","d":[]},{"s":"HITBTC:LRCUSD","d":[]},{"s":"UNISWAP3ETH:WETHBULLFI","d":[]},{"s":"UNISWAP:FAKEAIWETH_783595.USD","d":[]},{"s":"MEXC:ACRIAUSDT","d":[]},{"s":"GATEIO:ULUUSDT","d":[]},{"s":"UNISWAP3ETH:TXLWETH","d":[]},{"s":"POLONIEX:PENDLEUSDT","d":[]},{"s":"GATEIO:MPHUSDT","d":[]},{"s":"GATEIO:MONGUSDT","d":[]},{"s":"BITFINEX:XLMUSD","d":[]},{"s":"UNISWAP:COREWETH_02F95D.USD","d":[]},{"s":"UNISWAP3ETH:WRLDWETH","d":[]},{"s":"BINGX:OXTUSDT.P","d":[]},{"s":"BINANCE:ALICETRY","d":[]},{"s":"COINEX:GSTUSDT","d":[]},{"s":"UNISWAP3POLYGON:BOBUSDT_AB4B63.USD","d":[]},{"s":"BYBIT:PENDLEUSDT.P","d":[]},{"s":"UNISWAP:AMPWETH_08650B.USD","d":[]},{"s":"BITGET:RATSUSDT","d":[]},{"s":"UNISWAP3ETH:ROKOWETH_4A0CC8.USD","d":[]},{"s":"COINEX:NEATUSDT","d":[]},{"s":"UNISWAP:DTOUQC_4EA960.USD","d":[]},{"s":"UNISWAP3ETH:DIVERWETH","d":[]},{"s":"UNISWAP3ETH:BRWLUSDT","d":[]},{"s":"UNISWAP3ETH:GLQWETH_C3881F.USD","d":[]},{"s":"UNISWAP:FOURWETH_D10182.USD","d":[]},{"s":"UNISWAP:PIERWETH_B5B76E","d":[]},{"s":"BITMEX:XAIUSDT.P","d":[]},{"s":"BITGET:OPTIMUSUSDT","d":[]},{"s":"TRADERJOE:GURSWAVAX_964809.USD","d":[]},{"s":"BINANCEUS:ZRXUSDT","d":[]},{"s":"WOONETWORK:INJUSDT","d":[]},{"s":"TRADERJOE:BRIGWAVAX_3D04DB","d":[]},{"s":"SPOOKYSWAP:CRVWFTM_B471AC.USD","d":[]},{"s":"UNISWAP:0XBETWETH_859B6B","d":[]},{"s":"MEXC:GOLDFINCHUSDT","d":[]},{"s":"MEXC:KASTAUSDT","d":[]},{"s":"HITBTC:ALGOBTC","d":[]},{"s":"BITHUMB:ARKKRW","d":[]},{"s":"UNISWAP:ZKITTYWETH_CF4451.USD","d":[]},{"s":"UNISWAP3ETH:SHOPWETH_546D46.USD","d":[]},{"s":"UNISWAP:CHAMPZWETH_C43DCA","d":[]},{"s":"UNISWAP:GIACWETH_A2BBBE.USD","d":[]},{"s":"UNISWAP3ETH:LQTYWETH","d":[]},{"s":"UNISWAP:GDOGGETH_BAEA27.USD","d":[]},{"s":"UNISWAP:STORJWETH_AEF169.USD","d":[]},{"s":"HITBTC:PMAUSD","d":[]},{"s":"MEXC:GEMINIAIUSDT","d":[]},{"s":"UNISWAP3ETH:SPCWETH","d":[]},{"s":"DERIBIT:UNIUSDC.P","d":[]},{"s":"UNISWAP:TRXUSDC_9A84A1","d":[]},{"s":"PANGOLIN:AMPLWAVAX_E36AE3","d":[]},{"s":"MEXC:JOLTUSDT","d":[]},{"s":"BINANCE:BLURTRY","d":[]},{"s":"POLONIEX:PLAUSDT","d":[]},{"s":"POLONIEX:NONEUSDT","d":[]},{"s":"UNISWAP3ETH:CFDWETH","d":[]},{"s":"COINEX:GALABTC","d":[]},{"s":"SPOOKYSWAP:AVAXWFTM_5DF809.USD","d":[]},{"s":"GATEIO:VEMPUSDT","d":[]},{"s":"UNISWAP:XPBWETH_906951","d":[]},{"s":"UNISWAP3ARBITRUM:F50WETH_530461.USD","d":[]},{"s":"MEXC:HIGHUSDT","d":[]},{"s":"UNISWAP3POLYGON:MPTUSDT_71C5CE.USD","d":[]},{"s":"GATEIO:GOLCUSDT","d":[]},{"s":"PHEMEX:1000FLOKIUSDT.P","d":[]},{"s":"TRADERJOE:EGSWAVAX_D7A4FC","d":[]},{"s":"HITBTC:HBARETH","d":[]},{"s":"UNISWAP3ETH:USDCRAE","d":[]},{"s":"BYBIT:BOMEUSDT","d":[]},{"s":"POLONIEX:XRP8USDT","d":[]},{"s":"UNISWAP3ETH:FOLDWETH_5ECEF3.USD","d":[]},{"s":"ZOOMEX:COMBOUSDT.P","d":[]},{"s":"MEXC:PHBUSDT","d":[]},{"s":"UNISWAP3ETH:1INCHICHI","d":[]},{"s":"BYBIT:SANDUSDT","d":[]},{"s":"UNISWAP:LOLAWETH_8BF1AC","d":[]},{"s":"UNISWAP3ETH:CELRWETH_AFF102.USD","d":[]},{"s":"GATEIO:CREDITUSDT","d":[]},{"s":"UNISWAP:BILLYWETH_1B9FD5","d":[]},{"s":"UNISWAP:FLIPITWETH_1E8C7B.USD","d":[]},{"s":"COINBASE:RPLUSD","d":[]},{"s":"BYBIT:NGLUSDT","d":[]},{"s":"UNISWAP:SHEPEWETH_99A656.USD","d":[]},{"s":"SPOOKYSWAP:CLEVERWFTM_6A7381","d":[]},{"s":"UNISWAP:APUWETH_9B7E69.USD","d":[]},{"s":"UNISWAP:NERFWETH_8DC4B5.USD","d":[]},{"s":"UNISWAP:XRPWETH_07E3FA","d":[]},{"s":"GATEIO:TOMIUSDT","d":[]},{"s":"XEXCHANGE:WETHWEGLD","d":[]},{"s":"WHITEBIT:DOTUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:LNDXWETH_563678.USD","d":[]},{"s":"DELTA:BNBUSDT.P","d":[]},{"s":"GEMINI:CRVUSD","d":[]},{"s":"QUICKSWAP:IXTWMATIC_8FCB93","d":[]},{"s":"POLONIEX:OPSECUSDT","d":[]},{"s":"KRAKEN:UNIUSD","d":[]},{"s":"UNISWAP:21E8WETH_D9E0CE","d":[]},{"s":"POLONIEX:GMEEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSEN","d":[]},{"s":"UNISWAP:ITXWETH_3B7CA4","d":[]},{"s":"UNISWAP3ETH:CMPWETH_3267C1.USD","d":[]},{"s":"UNISWAP3ETH:BONEUSDC","d":[]},{"s":"GATEIO:SKLUSDT.3L","d":[]},{"s":"UNISWAP:WPEWETH_75F89F.USD","d":[]},{"s":"UNISWAP:SRKWETH_162CB3.USD","d":[]},{"s":"UNISWAP3POLYGON:GENEUSDC_403BA0.USD","d":[]},{"s":"UNISWAP:SHIBWETH_811BEE","d":[]},{"s":"MEXC:VITEUSDT","d":[]},{"s":"BITMEX:WOOUSDT.P","d":[]},{"s":"UNISWAP3ETH:GSWIFTWETH_715A3C.USD","d":[]},{"s":"UNISWAP3ETH:MMXUSDT","d":[]},{"s":"UNISWAP:SILKROADWETH_3785CA.USD","d":[]},{"s":"QUICKSWAP:PBIRBWMATIC_1316E0.USD","d":[]},{"s":"UNISWAP3ETH:SNEKWETH","d":[]},{"s":"UNISWAP:VSGWETH_844A5C","d":[]},{"s":"UNISWAP3ETH:FORKWETH_8287C4.USD","d":[]},{"s":"MEXC:GRTUSDT.P","d":[]},{"s":"KRAKEN:KINUSD","d":[]},{"s":"UNISWAP:HEROWETH_A19D6A.USD","d":[]},{"s":"UNISWAP3ETH:MIMUSDC_298B7C.USD","d":[]},{"s":"HITBTC:FETUSD","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_C473E2.USD","d":[]},{"s":"BITGET:RBWUSDT","d":[]},{"s":"ZOOMEX:LDOUSDT.P","d":[]},{"s":"POLONIEX:TURBOUSDT","d":[]},{"s":"BINANCE:MEMETRY","d":[]},{"s":"UNISWAP3ETH:PIXLWETH_31C0BA.USD","d":[]},{"s":"COINEX:BATBTC","d":[]},{"s":"PANGOLIN:NFSGWAVAX_A1653F.USD","d":[]},{"s":"UNISWAP3ETH:WETHOG404","d":[]},{"s":"UNISWAP:SHEESHWETH_A9E900.USD","d":[]},{"s":"BITHUMB:EVZKRW","d":[]},{"s":"BITKUB:MOVRTHB","d":[]},{"s":"BLOFIN:MKRUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:SWAPUSDC_635FD6.USD","d":[]},{"s":"UNISWAP3ETH:WETHSOON","d":[]},{"s":"BITGET:STRKUSDT.P","d":[]},{"s":"BITSTAMP:WECANUSD","d":[]},{"s":"UNISWAP3ETH:FMBUSDT_765A56.USD","d":[]},{"s":"BITRUE:PEOPLEUSDT","d":[]},{"s":"UNISWAP:ORBSWETH_C98B3B","d":[]},{"s":"HITBTC:BSVUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:XNFWETH_205422.USD","d":[]},{"s":"WHITEBIT:ADAUSDT","d":[]},{"s":"MEXC:NMRETH","d":[]},{"s":"POLONIEX:NEARUSDD","d":[]},{"s":"PHEMEX:MASKUSDT.P","d":[]},{"s":"UNISWAP:HYPERWETH_ACD3C9","d":[]},{"s":"BINANCE:BNBTRY","d":[]},{"s":"HITBTC:MOUSD","d":[]},{"s":"MEXC:BFRUSDT","d":[]},{"s":"UNISWAP3ETH:LLMWETH_50700A.USD","d":[]},{"s":"UPBIT:IQKRW","d":[]},{"s":"COINEX:SGBUSDT","d":[]},{"s":"BITGET:OMIUSDT","d":[]},{"s":"QUICKSWAP:TELWMATIC_9B5C71","d":[]},{"s":"GATEIO:GMXUSDT","d":[]},{"s":"OKX:BNTUSDT.P","d":[]},{"s":"BITMEX:BLASTUSDTZ2024","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDT_3840D6.USD","d":[]},{"s":"BITFINEX:XCADBTC","d":[]},{"s":"XEXCHANGE:TROWEGLD","d":[]},{"s":"UNISWAP3ETH:WETHETH2.0","d":[]},{"s":"BITGET:COMUSDT","d":[]},{"s":"GATEIO:DERPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNTX","d":[]},{"s":"UNISWAP3ETH:WETHMMVG","d":[]},{"s":"OKX:MAGICUSDT.P","d":[]},{"s":"PHEMEX:ZETAUSDT.P","d":[]},{"s":"UNISWAP:JEDIWETH_252BA9.USD","d":[]},{"s":"UNISWAP3ETH:LRCWETH_E1D92F.USD","d":[]},{"s":"UNISWAP:DIAWETH_FE1FDC.USD","d":[]},{"s":"GATEIO:AQDCUSDT","d":[]},{"s":"BITFINEX:ALGUST.P","d":[]},{"s":"UNISWAP:PEDEWETH_EFF365.USD","d":[]},{"s":"QUICKSWAP:QUICKWMATIC_F3EB2F.USD","d":[]},{"s":"GATEIO:MESAUSDT","d":[]},{"s":"OKX:LINKUSDT.P","d":[]},{"s":"UNISWAP:AEGISWETH_FE73C7","d":[]},{"s":"BITGET:SYNUSDT","d":[]},{"s":"XEXCHANGE:INSTANTUSDC","d":[]},{"s":"MEXC:LBTCUSDT","d":[]},{"s":"KRAKEN:BCHUSD.PM","d":[]},{"s":"BITFINEX:BNBUST.P","d":[]},{"s":"UNISWAP:VLTWETH_966053.USD","d":[]},{"s":"BINANCE:XVSTRY","d":[]},{"s":"UNISWAP3ETH:WETHTRXC","d":[]},{"s":"GEMINI:BTCGUSD","d":[]},{"s":"KRAKEN:MASKEUR","d":[]},{"s":"BYBIT:LEVERUSDT","d":[]},{"s":"BINGX:DOGEUSDT.PS","d":[]},{"s":"BITGET:FXSUSDT.P","d":[]},{"s":"UNISWAP:GAINSWETH_D3719A","d":[]},{"s":"UNISWAP3ETH:WETHBOXFEE","d":[]},{"s":"UNISWAP:SAITAMAWETH_995135.USD","d":[]},{"s":"BITFINEX:QTMUSD","d":[]},{"s":"QUICKSWAP:N1WMATIC_EEC02A","d":[]},{"s":"UNISWAP3ETH:USDCBLUR","d":[]},{"s":"BINGX:NFPUSDT.PS","d":[]},{"s":"BTSE:STXUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHCRAZYPEPE","d":[]},{"s":"KRAKEN:TBTCBTC","d":[]},{"s":"UNISWAP3ETH:DAIFEI","d":[]},{"s":"HITBTC:HTMLBTC","d":[]},{"s":"BITGET:TIPUSDT","d":[]},{"s":"WHITEBIT:LRCUSDT","d":[]},{"s":"COINEX:OPULUSDT","d":[]},{"s":"BITRUE:KAVAUSDC","d":[]},{"s":"COINEX:PREUSDT","d":[]},{"s":"BITHUMB:GMTKRW","d":[]},{"s":"GATEIO:GOMININGUSDT","d":[]},{"s":"UNISWAP:OCCUSDC_EDF1FA","d":[]},{"s":"GATEIO:TOKEUSDT","d":[]},{"s":"UNISWAP:SCHRODINGERWETH_5EB219","d":[]},{"s":"GATEIO:NYMUSDT","d":[]},{"s":"BITGET:LOOKSUSDT.P","d":[]},{"s":"MEXC:UBXSUSDT","d":[]},{"s":"UNISWAP:HDRNHEX_035A39.USD","d":[]},{"s":"MEXC:RATSUSDT","d":[]},{"s":"UNISWAP:BARKWETH_4ADD88.USD","d":[]},{"s":"BITRUE:TORNUSDT","d":[]},{"s":"TRADERJOE:DEGWAVAX_465460.USD","d":[]},{"s":"COINBASE:ADABTC","d":[]},{"s":"MEXC:LUMIUSDT","d":[]},{"s":"UNISWAP:OLASWETH_09D1D7.USD","d":[]},{"s":"HITBTC:KCSUSDT","d":[]},{"s":"UNISWAP:ALCAZARWETH_F1DC48.USD","d":[]},{"s":"POLONIEX:SNTUSDT","d":[]},{"s":"UNISWAP:MYTHUSDC_4620BE","d":[]},{"s":"TRADERJOE:GGPWAVAX_AE671E.USD","d":[]},{"s":"MEXC:MTUSDT","d":[]},{"s":"GATEIO:UNNUSDT","d":[]},{"s":"UNISWAP3ETH:BIOTWETH","d":[]},{"s":"OKX:XCHUSDT.P","d":[]},{"s":"UNISWAP3ETH:CLONEXWETH_B51B8A.USD","d":[]},{"s":"UNISWAP3ETH:VEXTUSDT_DD5C39.USD","d":[]},{"s":"VERSEETH:WBTCUSDC_F3F82B.USD","d":[]},{"s":"UNISWAP3ETH:CQTWETH_C1409A.USD","d":[]},{"s":"UNISWAP3ETH:WETHWGRLC","d":[]},{"s":"HITBTC:AGLDBTC","d":[]},{"s":"UNISWAP:PARTYWETH_34B6F3","d":[]},{"s":"COINBASE:DOGEBTC","d":[]},{"s":"GATEIO:ACSUSDT","d":[]},{"s":"QUICKSWAP:LINKWETH_5CA6CA","d":[]},{"s":"UNISWAP:MKUSDPRISMA_FABDA4","d":[]},{"s":"UNISWAP:ORNWETH_6C8B0D","d":[]},{"s":"BINANCEUS:VITEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAGRS","d":[]},{"s":"MEXC:AURORAUSDT","d":[]},{"s":"KRAKEN:XMRUSD.PM","d":[]},{"s":"QUICKSWAP:QUIDDSPORT_ADF652.USD","d":[]},{"s":"BITKUB:GALATHB","d":[]},{"s":"UNISWAP3ETH:USDCDAMM","d":[]},{"s":"COINEX:ONDOUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSKYNET","d":[]},{"s":"GATEIO:HAPIUSDT","d":[]},{"s":"UNISWAP:SAUDIBONKWETH_BA2B73","d":[]},{"s":"QUICKSWAP:ADDYWETH_A5BF14.USD","d":[]},{"s":"GATEIO:ETHUSDT.5L","d":[]},{"s":"GATEIO:XRDUSDT","d":[]},{"s":"GATEIO:APEUSDT.3S","d":[]},{"s":"UNISWAP:0XDEVWETH_5229E6","d":[]},{"s":"UNISWAP3POLYGON:GETWETH_7814D9.USD","d":[]},{"s":"TRADERJOE:CANSKIMBO_B442D1.USD","d":[]},{"s":"UNISWAP:RSRVWETH_96D472.USD","d":[]},{"s":"MEXC:GRANDUSDT","d":[]},{"s":"BITGET:ZTXUSDT","d":[]},{"s":"UNISWAP:LESLIEWETH_C2A560","d":[]},{"s":"BTSE:SOLUSD","d":[]},{"s":"QUICKSWAP:MOONWMATIC_9EC602","d":[]},{"s":"POLONIEX:DAWNUSDT","d":[]},{"s":"QUICKSWAP:PENG4815WMATIC_0F7529","d":[]},{"s":"SPOOKYSWAP:2SHARESWFTM_6398AC","d":[]},{"s":"BITGET:CYCLUBUSDT","d":[]},{"s":"UNISWAP3POLYGON:CPLEUSDT_16E7CA.USD","d":[]},{"s":"MEXC:TERRAUSDT","d":[]},{"s":"POLONIEX:HTXUSDT","d":[]},{"s":"UNISWAP3ETH:TOWERUSDT","d":[]},{"s":"UNISWAP:ICGWETH_0F445B.USD","d":[]},{"s":"GATEIO:TXTUSDT","d":[]},{"s":"XEXCHANGE:BEEUSDC","d":[]},{"s":"HITBTC:NIMUSD","d":[]},{"s":"WHITEBIT:SOLUSD","d":[]},{"s":"BLOFIN:CELOUSDT.P","d":[]},{"s":"BITHUMB:SPURSKRW","d":[]},{"s":"BITGET:ELAUSDT","d":[]},{"s":"BINGX:ARBUSDT.P","d":[]},{"s":"MEXC:DELUSDT","d":[]},{"s":"BINANCE:BSWTRY","d":[]},{"s":"UNISWAP:SAIWETH_00BEFC.USD","d":[]},{"s":"BYBIT:CRVUSDT.P","d":[]},{"s":"BLOFIN:MYROUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:FXSWETH_FEAA13.USD","d":[]},{"s":"BYBIT:COQUSDT","d":[]},{"s":"PHEMEX:ARKMUSDT","d":[]},{"s":"UNISWAP:TRUMPINUWETH_A20379.USD","d":[]},{"s":"BINANCEUS:CELRUSDT","d":[]},{"s":"BITGET:PORKUSDT","d":[]},{"s":"UNISWAP:HYPEWETH_D66278","d":[]},{"s":"GEMINI:BATUSD","d":[]},{"s":"UNISWAP:UBWETH_DA3D83.USD","d":[]},{"s":"MEXC:ZIXUSDT","d":[]},{"s":"MEXC:SUBUSDT","d":[]},{"s":"UNISWAP3ETH:WTFWETH","d":[]},{"s":"BINANCE:AIBTC","d":[]},{"s":"DELTA:XTZUSDT.P","d":[]},{"s":"UNISWAP:VRAWETH_600318.USD","d":[]},{"s":"UNISWAP3ETH:BEDWETH_779DFF.USD","d":[]},{"s":"UNISWAP:TRUMPJRWETH_12A539.USD","d":[]},{"s":"QUICKSWAP:GONEWMATIC_BB1934.USD","d":[]},{"s":"UNISWAP3ETH:WETHTURBO","d":[]},{"s":"BITHUMB:QTCONKRW","d":[]},{"s":"UNISWAP3ETH:TRADEUSDT_FC71C7.USD","d":[]},{"s":"GATEIO:LSDUSDT","d":[]},{"s":"BINANCE:FILUSDC","d":[]},{"s":"BINANCE:DREPUSDT","d":[]},{"s":"UNISWAP3ETH:EWNSWETH","d":[]},{"s":"UNISWAP3ETH:ELEMFLC_547DBA.USD","d":[]},{"s":"UNISWAP:LOCAIWETH_7B7D82","d":[]},{"s":"GATEIO:SONARUSDT","d":[]},{"s":"MEXC:FIOUSDT","d":[]},{"s":"UNISWAP3POLYGON:OKBWETH_C24C45.USD","d":[]},{"s":"UNISWAP:XPROWETH_22BEE1","d":[]},{"s":"GATEIO:VIAUSDT","d":[]},{"s":"MEXC:SGEUSDT","d":[]},{"s":"UNISWAP:COREWETH_32CE7E","d":[]},{"s":"UNISWAP3ARBITRUM:ANKRETHWETH_22DA1F.USD","d":[]},{"s":"COINEX:C98USDT","d":[]},{"s":"UNISWAP:MMSFTUST_EAFAD3","d":[]},{"s":"BINANCE:SPELLTRY","d":[]},{"s":"HITBTC:JULDUSD","d":[]},{"s":"UNISWAP3ETH:IUSDUSDT","d":[]},{"s":"UNISWAP3ETH:DAIT","d":[]},{"s":"UNISWAP3POLYGON:BOMWBTC_4603FB.USD","d":[]},{"s":"UNISWAP:COINWETH_7D2E87.USD","d":[]},{"s":"COINEX:CAPSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMCB","d":[]},{"s":"UNISWAP:EARNWETH_32558F","d":[]},{"s":"UNISWAP3ETH:PACTUSDC","d":[]},{"s":"BLOFIN:MBLUSDT.P","d":[]},{"s":"GEMINI:DAIUSD","d":[]},{"s":"POLONIEX:ETHWUSDT","d":[]},{"s":"PIONEX:CELOUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPRNT","d":[]},{"s":"UNISWAP:CHSBWETH_8D9B9E.USD","d":[]},{"s":"UNISWAP:LKTWETH_2B08A6","d":[]},{"s":"MEXC:FLOKIUSDT.P","d":[]},{"s":"UNISWAP:AVATLYWETH_B694D6","d":[]},{"s":"BITRUE:BTRBTC","d":[]},{"s":"UNISWAP3ETH:USDTREPAY","d":[]},{"s":"UNISWAP:SHIAWETH_81A460.USD","d":[]},{"s":"UNISWAP:SFUNDWETH_8FB8E9.USD","d":[]},{"s":"UNISWAP3POLYGON:EUREUSDT_3FF3EA.USD","d":[]},{"s":"COINEX:TIMEUSDT","d":[]},{"s":"MEXC:PALMAIUSDT","d":[]},{"s":"COINBASE:SOLGBP","d":[]},{"s":"HITBTC:IMXUSDC","d":[]},{"s":"COINEX:XEMUSDC","d":[]},{"s":"UNISWAP3ETH:DPIWETH_9359C8.USD","d":[]},{"s":"UNISWAP3ETH:OMWETH","d":[]},{"s":"XEXCHANGE:XBITUSDC","d":[]},{"s":"COINEX:CHRUSDT","d":[]},{"s":"UNISWAP:WECANUSDC_E40F64","d":[]},{"s":"HITBTC:FDZBTC","d":[]},{"s":"UNISWAP:DEDWETH_4E4CC5.USD","d":[]},{"s":"UNISWAP3ETH:WETHEURT","d":[]},{"s":"MEXC:MVXUSDT","d":[]},{"s":"MEXC:BRSUSDT","d":[]},{"s":"PIONEX:BNTUSDT.P","d":[]},{"s":"BITGET:NEOUSDT.P","d":[]},{"s":"UNISWAP:SHIB05SHIB_914E57.USD","d":[]},{"s":"MEXC:OKTUSDT","d":[]},{"s":"GATEIO:PEARLUSDT","d":[]},{"s":"POLONIEX:DOTUSDT","d":[]},{"s":"UNISWAP:PAYWETH_4941AE","d":[]},{"s":"BITGET:ABTUSDT","d":[]},{"s":"UNISWAP3ETH:USDCOLAS","d":[]},{"s":"TRADERJOE:VTXWAVAX_15CBCF.USD","d":[]},{"s":"UNISWAP3ETH:DUSKWETH","d":[]},{"s":"SPOOKYSWAP:SFTMXWFTM_E67980.USD","d":[]},{"s":"HITBTC:NGCUSD","d":[]},{"s":"UNISWAP:BRIGHTWETH_F4835A.USD","d":[]},{"s":"UNISWAP3ETH:WSTETHUSDC","d":[]},{"s":"MEXC:AKROUSDT","d":[]},{"s":"UNISWAP:MONKEYSWETH_FC1734.USD","d":[]},{"s":"UNISWAP:MINDSWETH_8FF2FD.USD","d":[]},{"s":"BITMEX:DOTUSDT.P","d":[]},{"s":"BINGX:HIFIUSDT.P","d":[]},{"s":"POLONIEX:SOVUSDT","d":[]},{"s":"UNISWAP:AVIWETH_460B1C.USD","d":[]},{"s":"COINEX:UNIBOTUSDT","d":[]},{"s":"UNISWAP:BUZZWETH_655B02.USD","d":[]},{"s":"GATEIO:TRRUSDT","d":[]},{"s":"BITGET:ETHUSD.P","d":[]},{"s":"MEXC:SUNUSDT","d":[]},{"s":"UNISWAP:RAILWETH_AC8690","d":[]},{"s":"HITBTC:TRACUSDT","d":[]},{"s":"GATEIO:PICKLEUSDT","d":[]},{"s":"UNISWAP3ETH:CROWETH","d":[]},{"s":"BITGET:BONDUSDT","d":[]},{"s":"GATEIO:UNQUSDT","d":[]},{"s":"UNISWAP3POLYGON:GEODWMATIC_1CC4E0.USD","d":[]},{"s":"COINEX:GASUSDT","d":[]},{"s":"UNISWAP:SFOXWETH_9FF035.USD","d":[]},{"s":"BINGX:GLMRUSDT.P","d":[]},{"s":"BITFINEX:BTCDOMUST.P","d":[]},{"s":"GATEIO:VIDYUSDT","d":[]},{"s":"HITBTC:MINAUSD","d":[]},{"s":"MEXC:SOCUSDT","d":[]},{"s":"UNISWAP:LPAWWETH_471448.USD","d":[]},{"s":"TRADERJOE:CREAMWAVAX_00C87C","d":[]},{"s":"OKX:BLURUSDT.P","d":[]},{"s":"MEXC:PAYUSDT","d":[]},{"s":"WHITEBIT:TRXUSDT.P","d":[]},{"s":"UNISWAP:EJSWETH_0BC139","d":[]},{"s":"QUICKSWAP:MANAWMATIC_6B0CE3.USD","d":[]},{"s":"UPBIT:ICXKRW","d":[]},{"s":"HITBTC:ORMEUSBTC","d":[]},{"s":"UNISWAP3ETH:IOTXWETH","d":[]},{"s":"GATEIO:RSRUSDT","d":[]},{"s":"BYBIT:GALUSDT.P","d":[]},{"s":"HITBTC:TRXHIT","d":[]},{"s":"UNISWAP:TOKENWETH_C7E6B6.USD","d":[]},{"s":"COINBASE:SNXGBP","d":[]},{"s":"UNISWAP:ERC20EPKUSDT_66E32D","d":[]},{"s":"UNISWAP:FRAPPEWETH_A0FB74","d":[]},{"s":"TRADERJOE:ALPHAWAVAX_889F58","d":[]},{"s":"PIONEX:BNXUSDT.P","d":[]},{"s":"UNISWAP:DKWONWETH_AD096A","d":[]},{"s":"UNISWAP:PMONWETH_BF4FF0.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GRTWETH_74D0AE.USD","d":[]},{"s":"MEXC:ACNUSDT","d":[]},{"s":"UNISWAP:ELEVWETH_493DA4.USD","d":[]},{"s":"UNISWAP3OPTIMISM:AXLUSDCUSDC_A8A535.USD","d":[]},{"s":"BITMEX:ALTUSDT.P","d":[]},{"s":"UNISWAP:BEASTWETH_E98D3F.USD","d":[]},{"s":"KRAKEN:CQTUSD","d":[]},{"s":"GATEIO:WINGUSDT","d":[]},{"s":"MEXC:MBLKUSDT","d":[]},{"s":"UNISWAP3POLYGON:USDCRETRO_3836F6.USD","d":[]},{"s":"UNISWAP3ETH:WETHAAVE","d":[]},{"s":"UNISWAP:GTCWETH_A3509A","d":[]},{"s":"BISWAP:ADAWBNB_886092","d":[]},{"s":"UNISWAP:GRASSWETH_D05C85.USD","d":[]},{"s":"UNISWAP3ETH:POLYWETH","d":[]},{"s":"KRAKEN:RUNEUSD.PM","d":[]},{"s":"UNISWAP:EBETWETH_2F46DD","d":[]},{"s":"MEXC:AXDTUSDT","d":[]},{"s":"UNISWAP3ETH:ZKMLWETH","d":[]},{"s":"BITGET:HAMUSDT","d":[]},{"s":"BYBIT:RAINUSDT","d":[]},{"s":"UNISWAP:NGSWETH_FAE60B","d":[]},{"s":"UNISWAP3ETH:SEXYWETH_5ACA4B.USD","d":[]},{"s":"UNISWAP3ARBITRUM:TUSDUSDC_AD397A.USD","d":[]},{"s":"UNISWAP3ETH:AMKTWBTC_E901EB.USD","d":[]},{"s":"BYBIT:SLGUSDC","d":[]},{"s":"UNISWAP:WPTWETH_638996.USD","d":[]},{"s":"BITGET:KEYUSDT.P","d":[]},{"s":"UNISWAP3ETH:EARNWETH_FD4E39.USD","d":[]},{"s":"MEXC:PROPCUSDT","d":[]},{"s":"MEXC:SNTBTC","d":[]},{"s":"MEXC:DOGEUSDC","d":[]},{"s":"UNISWAP:GRVWETH_0CAE04.USD","d":[]},{"s":"HITBTC:CULTUSDT","d":[]},{"s":"GEMINI:ZECETH","d":[]},{"s":"GATEIO:IGUUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:MATICWETH_37AF2C.USD","d":[]},{"s":"HITBTC:CVCUSD","d":[]},{"s":"MEXC:WINUSDT","d":[]},{"s":"ZOOMEX:ATOMUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSHIBARIUM","d":[]},{"s":"MEXC:PIXELPANICUSDT","d":[]},{"s":"COINEX:IOTXUSDC","d":[]},{"s":"TRADERJOE:WOODWAVAX_B8A539.USD","d":[]},{"s":"BITRUE:SOLOUSDT","d":[]},{"s":"COINEX:CHATUSDT","d":[]},{"s":"UNISWAP:PEPEDOGEWETH_991069","d":[]},{"s":"GATEIO:GZONEUSDT","d":[]},{"s":"UNISWAP:GDAOWETH_4D184B","d":[]},{"s":"PIONEX:AVAXUSDT.P","d":[]},{"s":"UNISWAP:ERSDLWETH_7BA9B9","d":[]},{"s":"UNISWAP3ETH:USDCCPOOL","d":[]},{"s":"GATEIO:SOSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTKING","d":[]},{"s":"UNISWAP3ETH:DAIUSDT_6F48EC.USD","d":[]},{"s":"GATEIO:ATPUSDT","d":[]},{"s":"BINANCE:PAXGTRY","d":[]},{"s":"TRADERJOE:KIKIWAVAX_6C77E9.USD","d":[]},{"s":"UNISWAP3ETH:PYUSDWETH","d":[]},{"s":"COINEX:NFTUSDC","d":[]},{"s":"BINANCE:COSTRY","d":[]},{"s":"UNISWAP3ARBITRUM:ENOUSDT_E5BA76.USD","d":[]},{"s":"POLONIEX:SILLYUSDT","d":[]},{"s":"UNISWAP3ETH:MONAIWETH_ED4A34.USD","d":[]},{"s":"POLONIEX:GNSUSDT","d":[]},{"s":"UNISWAP:RONALDOWETH_5B0ED9","d":[]},{"s":"BINANCE:BNBUSDT","d":[]},{"s":"BYBIT:FLOWUSDT","d":[]},{"s":"GATEIO:FOURUSDT","d":[]},{"s":"BINANCE:XVSUSDT","d":[]},{"s":"HITBTC:STEEMBTC","d":[]},{"s":"UNISWAP3ETH:NKNWETH","d":[]},{"s":"UNISWAP3ETH:NOIAUSDC","d":[]},{"s":"COINBASE:NEARUSD","d":[]},{"s":"UNISWAP3ETH:ERROR404WETH","d":[]},{"s":"GATEIO:FITFIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPIXE","d":[]},{"s":"BINANCE:LSKBTC","d":[]},{"s":"BITRUE:HBARUSDC","d":[]},{"s":"UNISWAP:OZKWETH_BF1B57.USD","d":[]},{"s":"UNISWAP:BPEPEWETH_B15200.USD","d":[]},{"s":"BITGET:1000XECUSDT.P","d":[]},{"s":"ZOOMEX:SLPUSDT.P","d":[]},{"s":"HITBTC:CAPSUSDT","d":[]},{"s":"UNISWAP3ETH:USDTSIFU","d":[]},{"s":"UNISWAP:THRYUSDC_5F558B","d":[]},{"s":"UNISWAP:POGEWETH_F4D098","d":[]},{"s":"COINEX:DGBUSDC","d":[]},{"s":"BITHUMB:AXSKRW","d":[]},{"s":"UNISWAP3ETH:USDTLDO","d":[]},{"s":"TRADERJOE:420USDC_6E4D3E","d":[]},{"s":"BINANCE:STXTRY","d":[]},{"s":"UNISWAP:SHEESHAWETH_602414.USD","d":[]},{"s":"UNISWAP3ETH:WOOLWETH","d":[]},{"s":"COINBASE:ETCGBP","d":[]},{"s":"UNISWAP3POLYGON:ADFUSDT_74171A.USD","d":[]},{"s":"POLONIEX:MOZUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSPARK","d":[]},{"s":"UNISWAP:SATASHIWETH_0FFCD5","d":[]},{"s":"WHITEBIT:WINUSDT","d":[]},{"s":"TIMEX:LTCUSDT","d":[]},{"s":"HITBTC:RADUSDT","d":[]},{"s":"UNISWAP3ETH:FASTUSDC_96C927.USD","d":[]},{"s":"BINGX:JTOUSDT.P","d":[]},{"s":"BINGX:MATICUSDT.P","d":[]},{"s":"BYBIT:SNTUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCUSDC_0E4831.USD","d":[]},{"s":"WOONETWORK:RDNTUSDT","d":[]},{"s":"UNISWAP:ORAOWETH_78D186","d":[]},{"s":"UNISWAP3OPTIMISM:WETHUSDC_9595ED.USD","d":[]},{"s":"WHITEBIT:BATUSDT","d":[]},{"s":"BITKUB:C98THB","d":[]},{"s":"UNISWAP3ETH:ANKRETHWSTETH_D9B200.USD","d":[]},{"s":"BITFINEX:DOTUSD","d":[]},{"s":"HITBTC:XDCUSD","d":[]},{"s":"BLOFIN:SLPUSDT.P","d":[]},{"s":"BINGX:REEFUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:GIVDAI_969E1D.USD","d":[]},{"s":"UNISWAP:PRQWETH_64CAC8.USD","d":[]},{"s":"UNISWAP:JUSDCWETH_893BE9.USD","d":[]},{"s":"UNISWAP3ETH:WETHSNT","d":[]},{"s":"UNISWAP:CIRCLEWETH_9C04AD","d":[]},{"s":"HITBTC:CVCBTC","d":[]},{"s":"GATEIO:LINKUSDT.3L","d":[]},{"s":"MEXC:SS20USDT","d":[]},{"s":"COINEX:MAVIAUSDT","d":[]},{"s":"GATEIO:HLNUSDT","d":[]},{"s":"GATEIO:MGGUSDT","d":[]},{"s":"WAGYUSWAP:BITORBBUSD_9EA5D3","d":[]},{"s":"UNISWAP:GPUBOTWETH_2F044D","d":[]},{"s":"UNISWAP3ETH:FLCDAI","d":[]},{"s":"UNISWAP:PPBLZWETH_9479B6","d":[]},{"s":"MEXC:ACXUSDT","d":[]},{"s":"UNISWAP3ETH:LUSHWETH_FB5DB4.USD","d":[]},{"s":"UNISWAP3ETH:RENWETH","d":[]},{"s":"BTSE:STORJUSD","d":[]},{"s":"HITBTC:CNSBTC","d":[]},{"s":"BINANCE:ETHUAH","d":[]},{"s":"BITFINEX:BTCEUT","d":[]},{"s":"UNISWAP3OPTIMISM:NBLUSDT_FAF037.USD","d":[]},{"s":"QUICKSWAP:COLLARWMATIC_D4C903.USD","d":[]},{"s":"UNISWAP3ETH:UNIUSDT_347044.USD","d":[]},{"s":"UNISWAP3ETH:GLMWETH_FE4EC8.USD","d":[]},{"s":"BYBIT:CHZUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBLINK_8B6149.USD","d":[]},{"s":"BITRUE:WOOUSDT","d":[]},{"s":"UNISWAP3ETH:KELUSDT","d":[]},{"s":"BINANCE:OOKIUSDT","d":[]},{"s":"UNISWAP:ASAPWETH_49AA60.USD","d":[]},{"s":"MEXC:ABCUSDT","d":[]},{"s":"UNISWAP:GOATWETH_AD3D18.USD","d":[]},{"s":"UPBIT:ATOMKRW","d":[]},{"s":"HITBTC:SFPUSD","d":[]},{"s":"BINGX:DYDXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSHIK","d":[]},{"s":"UNISWAP3ETH:AUDDWETH","d":[]},{"s":"UNISWAP:STRONGWETH_C0BF97","d":[]},{"s":"UNISWAP3ETH:QCADUSDC_6F6D91.USD","d":[]},{"s":"PANGOLIN:MAXIWAVAX_4716B5.USD","d":[]},{"s":"KRAKEN:KSMUSD","d":[]},{"s":"UNISWAP:WOJAKWETH_0F23D4.USD","d":[]},{"s":"TRADERJOE:ECDPTPPTP_C8898E.USD","d":[]},{"s":"GATEIO:XPLAUSDT","d":[]},{"s":"UNISWAP:TMNTWETH_916314.USD","d":[]},{"s":"BITFINEX:BANDBTC","d":[]},{"s":"BINGX:ORBSUSDT.P","d":[]},{"s":"GATEIO:SHIBUSDT","d":[]},{"s":"HITBTC:ARRRUSDT","d":[]},{"s":"COINEX:EOSUSDT","d":[]},{"s":"UNISWAP:RVFWETH_A66CDA","d":[]},{"s":"BINANCE:AVAXBTC","d":[]},{"s":"MEXC:TRMXUSDT","d":[]},{"s":"GATEIO:ILVUSDT","d":[]},{"s":"MEXC:MEMEUSDT.P","d":[]},{"s":"UNISWAP:ZINUWETH_E5EA0E","d":[]},{"s":"EXMO:EXMUSD","d":[]},{"s":"UNISWAP:BAZEDWETH_9EB51E","d":[]},{"s":"PHEMEX:NKNUSDT.P","d":[]},{"s":"MEXC:DONSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ROAM404WETH_75916C.USD","d":[]},{"s":"GATEIO:STRMUSDT","d":[]},{"s":"KRAKEN:MINAGBP","d":[]},{"s":"BINANCE:FRONTTUSD","d":[]},{"s":"BITFINEX:CHZUSD","d":[]},{"s":"COINEX:ASTUSDT","d":[]},{"s":"OKX:OPUSDT.P","d":[]},{"s":"GATEIO:ALTBUSDT","d":[]},{"s":"UNISWAP3ETH:MEOWWETH_A8EF44.USD","d":[]},{"s":"UNISWAP3ETH:DRGNWETH","d":[]},{"s":"UNISWAP3ETH:NURNG_3CE42E.USD","d":[]},{"s":"UNISWAP3POLYGON:SNXUSDT_3E2707.USD","d":[]},{"s":"UNISWAP3ETH:CGPTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:IBEXWETH_7334EA.USD","d":[]},{"s":"UNISWAP3ETH:SHIBWETH","d":[]},{"s":"WAGYUSWAP:SCARWVLX_9D4192","d":[]},{"s":"UNISWAP:SONIKWETH_77778A","d":[]},{"s":"BINGX:LSKUSDT.PS","d":[]},{"s":"XEXCHANGE:WAMUSDC","d":[]},{"s":"UNISWAP3POLYGON:LDOWMATIC_C94EEA.USD","d":[]},{"s":"BITGET:XENUSDT","d":[]},{"s":"UNISWAP3ETH:PORKWETH_B9ED55.USD","d":[]},{"s":"PHEMEX:1000SHIBUSDT.P","d":[]},{"s":"BITGET:MICEUSDT","d":[]},{"s":"BLOFIN:TOKENUSDT.P","d":[]},{"s":"UNISWAP3ETH:RSETHWETH_ED3396.USD","d":[]},{"s":"UNISWAP3ETH:USDTOUSD","d":[]},{"s":"COINEX:NINJAUSDT","d":[]},{"s":"UNISWAP3ETH:SANWETH","d":[]},{"s":"POLONIEX:AAVEUSD","d":[]},{"s":"COINEX:HOTBTC","d":[]},{"s":"TRADERJOE:BUSDWAVAX_F57971.USD","d":[]},{"s":"BISWAP:BCHWBNB_910DE0.USD","d":[]},{"s":"UNISWAP:DFIUSDT_9E251D","d":[]},{"s":"UNISWAP:FARMWETH_56FEAC.USD","d":[]},{"s":"UNISWAP:DEGENWETH_FAAD10.USD","d":[]},{"s":"WHITEBIT:CRVBTC","d":[]},{"s":"MEXC:LIFEUSDT","d":[]},{"s":"WOONETWORK:ENSUSDT","d":[]},{"s":"UNISWAP3ETH:DOLLARREKTWETH","d":[]},{"s":"GATEIO:PROPSUSDT","d":[]},{"s":"POLONIEX:PENGUSDT","d":[]},{"s":"UNISWAP3ETH:TBANKWETH","d":[]},{"s":"KRAKEN:RBCEUR","d":[]},{"s":"WHITEBIT:SXPUSDT","d":[]},{"s":"BITFINEX:QRDOUSD","d":[]},{"s":"COINEX:DGBUSDT","d":[]},{"s":"BITRUE:HBARUSDT","d":[]},{"s":"GATEIO:ICPUSDT","d":[]},{"s":"GATEIO:AMPLUSDT","d":[]},{"s":"KRAKEN:ALGOETH","d":[]},{"s":"GATEIO:BONEUSDT","d":[]},{"s":"QUICKSWAP:CTIWMATIC_9A5772","d":[]},{"s":"MEXC:MEEUSDT","d":[]},{"s":"GATEIO:VENTUSDT","d":[]},{"s":"UNISWAP:PEEFIDAI_3BB4F0","d":[]},{"s":"BITHUMB:SUNKRW","d":[]},{"s":"PANGOLIN:ODDZWAVAX_BAE8EE.USD","d":[]},{"s":"MEXC:KOAVAUSDT","d":[]},{"s":"HITBTC:UTKUSD","d":[]},{"s":"BYBIT:MAVIAUSDT","d":[]},{"s":"GATEIO:MANAUSDT.3S","d":[]},{"s":"KRAKEN:XRPCAD","d":[]},{"s":"GATEIO:NOAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDAM","d":[]},{"s":"UNISWAP:HAMBURGLARWETH_3DCA1C.USD","d":[]},{"s":"GATEIO:CATUSDT","d":[]},{"s":"BITHUMB:ZTXKRW","d":[]},{"s":"QUICKSWAP:AAVEWETH_90BC3E","d":[]},{"s":"QUICKSWAP:MIFARMQUICK_D76684","d":[]},{"s":"KRAKEN:FETUSD","d":[]},{"s":"SPOOKYSWAP:PEPEWFTM_CD1361","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARAI","d":[]},{"s":"POLONIEX:ENJUSDT","d":[]},{"s":"HITBTC:CTXCUSD","d":[]},{"s":"BITFINEX:DORABTC","d":[]},{"s":"COINBASE:XLMUSD","d":[]},{"s":"MEXC:PEPEEUSDT","d":[]},{"s":"UNISWAP3POLYGON:USDCWMATIC_2DB87C.USD","d":[]},{"s":"BINANCE:GALAUSDT","d":[]},{"s":"BINANCE:DASHETH","d":[]},{"s":"BITGET:BLURUSDT","d":[]},{"s":"MEXC:GTCOINUSDT","d":[]},{"s":"HITBTC:TUSDDAI","d":[]},{"s":"UNISWAP3ETH:DOLLARMECHAWETH","d":[]},{"s":"KRAKEN:BONKUSD","d":[]},{"s":"COINEX:STFXUSDT","d":[]},{"s":"HITBTC:BLZUSD","d":[]},{"s":"BYBIT:SISUSDT","d":[]},{"s":"UNISWAP3POLYGON:UERIIUSDC_A39DF4.USD","d":[]},{"s":"GATEIO:FLIPUSDT","d":[]},{"s":"UNISWAP3ETH:USDTENS","d":[]},{"s":"COINEX:XRPBTC","d":[]},{"s":"GATEIO:DOGEUSDT.5S","d":[]},{"s":"COINEX:SUNUSDT","d":[]},{"s":"GATEIO:ENSUSDT","d":[]},{"s":"TRADERJOE:LOSTWAVAX_9C396C.USD","d":[]},{"s":"UNISWAP3ETH:TIAWETH_2102CE.USD","d":[]},{"s":"HITBTC:RAISEUSD","d":[]},{"s":"MEXC:ICNXUSDT","d":[]},{"s":"UNISWAP:RFUELWETH_05F21E.USD","d":[]},{"s":"UNISWAP3ETH:WETHCOTI","d":[]},{"s":"BITFINEX:SGBUST","d":[]},{"s":"UNISWAP3ETH:WETHRPC","d":[]},{"s":"UNISWAP:SAITAMA20WETH_F2EE4B.USD","d":[]},{"s":"BITRUE:DEBTUSDT","d":[]},{"s":"POLONIEX:GASUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHI","d":[]},{"s":"GATEIO:HBARUSDT","d":[]},{"s":"UNISWAP:LDOWETH_454F11.USD","d":[]},{"s":"SPOOKYSWAP:DNAWFTM_692784","d":[]},{"s":"UNISWAP3ETH:ELFIDAI","d":[]},{"s":"UNISWAP:WILDWETH_CAA004","d":[]},{"s":"TRADERJOE:ROYWAVAX_86783A","d":[]},{"s":"BINANCE:OCEANUSDT","d":[]},{"s":"ZOOMEX:ANTUSDT.P","d":[]},{"s":"UNISWAP:SANWETH_430BA8.USD","d":[]},{"s":"TRADERJOE:RELAYWAVAX_41F309","d":[]},{"s":"BITSTAMP:EURCVEUR","d":[]},{"s":"HITBTC:LAMBBTC","d":[]},{"s":"BINANCE:SOLEUR","d":[]},{"s":"KRAKEN:SOLUSD","d":[]},{"s":"MEXC:FNZUSDT","d":[]},{"s":"BINGX:IMXUSDT.PS","d":[]},{"s":"GATEIO:NAXUSDT","d":[]},{"s":"BITRUE:THETAXRP","d":[]},{"s":"UNISWAP3POLYGON:FANXUSDC_98F2CC.USD","d":[]},{"s":"QUICKSWAP:MCASHWETH_1FEF1C","d":[]},{"s":"UNISWAP3ETH:STETHWETH_63818B.USD","d":[]},{"s":"OKX:AVAXUSDT.P","d":[]},{"s":"UNISWAP3ETH:AAVEUNI","d":[]},{"s":"UNISWAP:GUARDIANWETH_F8112C","d":[]},{"s":"QUICKSWAP:CHCUSDC_AD3302","d":[]},{"s":"BITHUMB:CTSIKRW","d":[]},{"s":"UNISWAP3ETH:USDTVOW","d":[]},{"s":"UNISWAP3POLYGON:DIMOWMATIC_41E64A.USD","d":[]},{"s":"BTSE:PEPEUSD","d":[]},{"s":"UNISWAP:USDEBTWETH_006FA2","d":[]},{"s":"SPOOKYSWAP:FMXENWFTM_AB3738","d":[]},{"s":"MEXC:SPIZUSDT","d":[]},{"s":"MEXC:RIFUSDT","d":[]},{"s":"HITBTC:VETHIT","d":[]},{"s":"UNISWAP:NSFWWETH_90C1B1.USD","d":[]},{"s":"BINGX:BAKEUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCPASG","d":[]},{"s":"UNISWAP3POLYGON:WBTCUSDC_847B64.USD","d":[]},{"s":"UNISWAP:WORMWETH_EF32AE.USD","d":[]},{"s":"MEXC:CHAXUSDT","d":[]},{"s":"COINEX:VSYSUSDT","d":[]},{"s":"PHEMEX:PORTALUSDT","d":[]},{"s":"UNISWAP3POLYGON:SUREWETH_1CEDFB.USD","d":[]},{"s":"UNISWAP:DFNDRWETH_432941.USD","d":[]},{"s":"UNISWAP:PAPAWETH_45D559.USD","d":[]},{"s":"KRAKEN:DAIUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGOHM","d":[]},{"s":"UNISWAP:MXHWETH_D65754.USD","d":[]},{"s":"BTSE:MANAUSD","d":[]},{"s":"UNISWAP3ETH:SWAPWETH","d":[]},{"s":"MEXC:KEEPUSDT","d":[]},{"s":"UNISWAP:BDTUSDT_0E2064","d":[]},{"s":"GATEIO:OMGUSDT.3S","d":[]},{"s":"BINANCE:BONDUSDT","d":[]},{"s":"COINEX:ZENUSDC","d":[]},{"s":"COINEX:CRUUSDT","d":[]},{"s":"BINANCEUS:NMRUSDT","d":[]},{"s":"UNISWAP:DIPWETH_391F7B.USD","d":[]},{"s":"UNISWAP:KNDXWETH_79DD15.USD","d":[]},{"s":"GATEIO:ARGUSDT","d":[]},{"s":"UNISWAP:XMAILWETH_75A1BB.USD","d":[]},{"s":"UNISWAP:OCPWETH_935A1D","d":[]},{"s":"UNISWAP3ETH:STARWETH_AEADC6.USD","d":[]},{"s":"HITBTC:XPNTUSDT","d":[]},{"s":"MEXC:ASMATCHUSDT","d":[]},{"s":"WOONETWORK:SUSHIUSDT","d":[]},{"s":"UNISWAP3POLYGON:WETHWMATIC_86F1D8.USD","d":[]},{"s":"UNISWAP:SWFTCWETH_D417F1","d":[]},{"s":"UNISWAP3ETH:TLOSWETH_27DD7B.USD","d":[]},{"s":"UNISWAP3ETH:SCLMUSDC","d":[]},{"s":"UNISWAP:CXWETH_2906BB","d":[]},{"s":"PHEMEX:MTLUSDT.P","d":[]},{"s":"MEXC:GACUSDT","d":[]},{"s":"HITBTC:LRCUSDC","d":[]},{"s":"UNISWAP:DETFUSDC_EF5EDB","d":[]},{"s":"COINBASE:BATUSD","d":[]},{"s":"MEXC:DYDXUSDT","d":[]},{"s":"UNISWAP:BLKWETH_B050DD","d":[]},{"s":"KRAKEN:BTCUSD","d":[]},{"s":"KRAKEN:POWRUSD","d":[]},{"s":"TRADERJOE:DCAUMIM_BD9415","d":[]},{"s":"UNISWAP3ETH:UNDERWETH","d":[]},{"s":"MEXC:FSNUSDT","d":[]},{"s":"COINEX:KARBTC","d":[]},{"s":"UNISWAP:0XLPWETH_3B9ABE","d":[]},{"s":"UNISWAP:IBITWETH_5899BE.USD","d":[]},{"s":"QUICKSWAP:JRTOWMATIC_A9E4AC.USD","d":[]},{"s":"TRADERJOE:YETIWAVAX_BDC7EF.USD","d":[]},{"s":"UNISWAP3ETH:COCUSDC","d":[]},{"s":"XEXCHANGE:PADAWANWEGLD","d":[]},{"s":"UNISWAP:FXIWETH_8B07F7.USD","d":[]},{"s":"POLONIEX:ROOKUSDT","d":[]},{"s":"MEXC:VELODROMEUSDT","d":[]},{"s":"UNISWAP3POLYGON:WSTORWMATIC_50C412.USD","d":[]},{"s":"TIMEX:EOSAUDT","d":[]},{"s":"GATEIO:ASTROUSDT","d":[]},{"s":"BINANCE:NEARFDUSD","d":[]},{"s":"UNISWAP:ZAMAWETH_13CB90.USD","d":[]},{"s":"HITBTC:POLISUSDT","d":[]},{"s":"WHITEBIT:FETUSDT","d":[]},{"s":"QUICKSWAP:POLYSTARWMATIC_AF8DC1.USD","d":[]},{"s":"BITRUE:INJUSDT","d":[]},{"s":"BITSTAMP:ALPHAEUR","d":[]},{"s":"GATEIO:FIROUSDT","d":[]},{"s":"HITBTC:LUNAETH","d":[]},{"s":"UNISWAP3ETH:SAMAWETH","d":[]},{"s":"UNISWAP3ETH:WETHMOONEY","d":[]},{"s":"MEXC:TRXUSDT.P","d":[]},{"s":"BITGET:VELOUSDT","d":[]},{"s":"UNISWAP3ETH:SOULWETH_D6398A.USD","d":[]},{"s":"BITRUE:DOTUSDC","d":[]},{"s":"BINANCE:OAXBTC","d":[]},{"s":"UPBIT:VETKRW","d":[]},{"s":"UNISWAP:BCWETH_C9C9C0.USD","d":[]},{"s":"UNISWAP:UNIBOTWETH_811559.USD","d":[]},{"s":"BINANCE:CHRETH","d":[]},{"s":"UNISWAP:CITADELWETH_41A683","d":[]},{"s":"BINANCE:RIFUSDT","d":[]},{"s":"UPBIT:IOSTKRW","d":[]},{"s":"PHEMEX:ETHTRY","d":[]},{"s":"COINEX:RBXUSDT","d":[]},{"s":"PIONEX:ATOMUSDT.P","d":[]},{"s":"GATEIO:WKCUSDT","d":[]},{"s":"SPOOKYSWAP:BPEPEWFTM_7634B3.USD","d":[]},{"s":"UNISWAP3POLYGON:NAKAWMATIC_1AD30C.USD","d":[]},{"s":"UNISWAP3ETH:HERAUSDC","d":[]},{"s":"BLOFIN:ALPHAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHGENE","d":[]},{"s":"KRAKEN:BTCAUD","d":[]},{"s":"UNISWAP:GMEWETH_16BFD2","d":[]},{"s":"COINEX:SOBBUSDT","d":[]},{"s":"TRADERJOE:STEAKWAVAX_76A551.USD","d":[]},{"s":"GATEIO:PVUUSDT","d":[]},{"s":"UNISWAP3ETH:AEDYWETH","d":[]},{"s":"BITGET:CHRUSDT","d":[]},{"s":"KRAKEN:COMPUSD","d":[]},{"s":"UNISWAP:MAXIHEX_BF036D.USD","d":[]},{"s":"TRADERJOE:CRAFTWAVAX_86D1B1.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GDAIGMUSD_D35301.USD","d":[]},{"s":"BITGET:TSUKAUSDT","d":[]},{"s":"PHEMEX:HIFIUSDT.P","d":[]},{"s":"UNISWAP3ETH:MZMWETH","d":[]},{"s":"POLONIEX:ETCBTC","d":[]},{"s":"UNISWAP:MAIWETH_A333F2.USD","d":[]},{"s":"BYBIT:FLOKIUSDT","d":[]},{"s":"BITRUE:REEFUSDT","d":[]},{"s":"COINEX:OSMOBTC","d":[]},{"s":"MEXC:EOSUSDC","d":[]},{"s":"HITBTC:GSTUSD","d":[]},{"s":"GATEIO:GOALUSDT","d":[]},{"s":"HITBTC:JOEUSDT","d":[]},{"s":"UNISWAP:KABOSUINUWETH_35CA4D.USD","d":[]},{"s":"MEXC:COMBOUSDT","d":[]},{"s":"MEXC:PACOINUSDT","d":[]},{"s":"KRAKEN:GALAUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHHYVE","d":[]},{"s":"UNISWAP:AGFIWETH_070218.USD","d":[]},{"s":"UNISWAP:GROKAIWETH_ED330A","d":[]},{"s":"BITSTAMP:BANDEUR","d":[]},{"s":"UNISWAP3ETH:WETHQUIQ","d":[]},{"s":"COINEX:GMEUSDT","d":[]},{"s":"BYBIT:TAPUSDT","d":[]},{"s":"BINANCEUS:ILVUSDT","d":[]},{"s":"ZOOMEX:COTIUSDT.P","d":[]},{"s":"MEXC:HAOUSDT","d":[]},{"s":"UNISWAP:ONICWETH_54C6E8.USD","d":[]},{"s":"GATEIO:IDVUSDT","d":[]},{"s":"SPOOKYSWAP:DMDFUSDT_03DA3E.USD","d":[]},{"s":"POLONIEX:SWINGBYUSD","d":[]},{"s":"MEXC:ELFUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFLP","d":[]},{"s":"MEXC:AICODEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:FPIFRAX_53D1E8.USD","d":[]},{"s":"COINBASE:MINAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WSTETHWETH_62BC45.USD","d":[]},{"s":"UNISWAP:CNDWETH_6D3972","d":[]},{"s":"UNISWAP3ETH:HTUSDC_DC1046.USD","d":[]},{"s":"UNISWAP:ADULTWETH_FFD6E0","d":[]},{"s":"UNISWAP3ETH:BBWWETH","d":[]},{"s":"UNISWAP3POLYGON:INSTWETH_E30E4D.USD","d":[]},{"s":"BLOFIN:GALUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARKENUSDC_29E02C.USD","d":[]},{"s":"UNISWAP:DISWETH_4E37DC.USD","d":[]},{"s":"COINEX:REQUSDT","d":[]},{"s":"UNISWAP3POLYGON:DPIUSDT_12C369.USD","d":[]},{"s":"BITHUMB:AUDIOKRW","d":[]},{"s":"UNISWAP:MXCWETH_D9F910.USD","d":[]},{"s":"UNISWAP3ETH:DZHVWETH_B7A71C.USD","d":[]},{"s":"COINBASE:GUSDUSD","d":[]},{"s":"PANGOLIN:FEEDWAVAX_E8579E","d":[]},{"s":"DYDX:CRVUSD.P","d":[]},{"s":"KRAKEN:FILBTC","d":[]},{"s":"TRADERJOE:SBOTWAVAX_0F1913","d":[]},{"s":"OKX:SOLUSD.P","d":[]},{"s":"KRAKEN:LTCUSDT","d":[]},{"s":"BINANCE:DOCKUSDT","d":[]},{"s":"MEXC:AUCTIONUSDT","d":[]},{"s":"QUICKSWAP:MCO2KLIMA_64A3B8","d":[]},{"s":"HITBTC:ILVUSDC","d":[]},{"s":"UNISWAP:PLXWETH_5AEA97.USD","d":[]},{"s":"BINANCE:EDUTRY","d":[]},{"s":"UNISWAP:PONKWETH_3A0B62.USD","d":[]},{"s":"UNISWAP:SHIBWIFWETH_C273DD.USD","d":[]},{"s":"BINANCE:QUICKUSDT","d":[]},{"s":"SPOOKYSWAP:GTRTLWTRTL_BD1228","d":[]},{"s":"UNISWAP3ETH:1INCHWETH_D35EFA.USD","d":[]},{"s":"BITMEX:XBTUSDT","d":[]},{"s":"BYBIT:INJUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHHIFI","d":[]},{"s":"HITBTC:VETETH","d":[]},{"s":"BITGET:10SETUSDT","d":[]},{"s":"DYDX:AAVEUSD.P","d":[]},{"s":"WHITEBIT:SSVUSDT","d":[]},{"s":"UNISWAP:SYNRUSDC_D14782","d":[]},{"s":"BITFINEX:NEARBTC","d":[]},{"s":"UNISWAP:RISITAWETH_4C9955.USD","d":[]},{"s":"GATEIO:CHZUSDT.3S","d":[]},{"s":"UPBIT:XEMKRW","d":[]},{"s":"MEXC:AAGUSDT","d":[]},{"s":"HITBTC:DASHETH","d":[]},{"s":"BITGET:AXSUSDT","d":[]},{"s":"POLONIEX:FILUSDT","d":[]},{"s":"UNISWAP:PLRWETH_AE2D40.USD","d":[]},{"s":"MEXC:NOSUSDT","d":[]},{"s":"BINGX:AMBUSDT.P","d":[]},{"s":"UNISWAP:WEBWETH_839E2D","d":[]},{"s":"UNISWAP3POLYGON:BRLAUSDC_6BFA6E.USD","d":[]},{"s":"MEXC:GROKXUSDT","d":[]},{"s":"MEXC:STARUSDT","d":[]},{"s":"UNISWAP3ETH:GIVWETH","d":[]},{"s":"BITGET:ONDOUSDT","d":[]},{"s":"UNISWAP:PINTWETH_48EC41.USD","d":[]},{"s":"UNISWAP:YUNAWETH_0EAA2C","d":[]},{"s":"MEXC:SOLSUSDT.P","d":[]},{"s":"BLOFIN:DGBUSDT.P","d":[]},{"s":"HITBTC:KINBTC","d":[]},{"s":"GATEIO:CNNSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPRE","d":[]},{"s":"PHEMEX:1000BONKUSDT.P","d":[]},{"s":"PHEMEX:GALUSDT.P","d":[]},{"s":"TIMEX:SLPUSDT","d":[]},{"s":"BYBIT:FORTUSDT","d":[]},{"s":"BITGET:SSVUSDT.P","d":[]},{"s":"GATEIO:PSIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLICK","d":[]},{"s":"UNISWAP3ETH:PRIMEETHWETH_B6934F.USD","d":[]},{"s":"UNISWAP3ETH:MERCUSDC","d":[]},{"s":"BINANCEUS:NEOUSDT","d":[]},{"s":"UNISWAP:TUZKIWETH_6155C8","d":[]},{"s":"BITHUMB:RLYKRW","d":[]},{"s":"UNISWAP:DCARDWETH_A3DA4F.USD","d":[]},{"s":"GATEIO:REAPUSDT","d":[]},{"s":"UNISWAP3ETH:MMTWETH_619930.USD","d":[]},{"s":"UNISWAP3OPTIMISM:XZOOMERWETH_13C02B.USD","d":[]},{"s":"UNISWAP:FXSWETH_ECBA96","d":[]},{"s":"KRAKEN:GRTGBP","d":[]},{"s":"MEXC:SOLUSDC","d":[]},{"s":"COINEX:LPTUSDT","d":[]},{"s":"QUICKSWAP:WETHASTRAFER_DE4FEA","d":[]},{"s":"HITBTC:GASUSD","d":[]},{"s":"UNISWAP3ETH:CGTWETH","d":[]},{"s":"BYBIT:ERTHAUSDT","d":[]},{"s":"UNISWAP3ETH:FDUSDUSDT_CDFC3D.USD","d":[]},{"s":"COINEX:METALUSDT","d":[]},{"s":"BINGX:BADGERUSDT.PS","d":[]},{"s":"UNISWAP3ETH:SAVMUSDC_A7CDF0.USD","d":[]},{"s":"KRAKEN:WAVESBTC","d":[]},{"s":"BINANCE:REIUSDT","d":[]},{"s":"QUICKSWAP:VOLTWMATIC_EBB29B.USD","d":[]},{"s":"SPOOKYSWAP:LQDRWFTM_506DDC","d":[]},{"s":"BINGX:PHBUSDT.PS","d":[]},{"s":"KRAKEN:OMGBTC","d":[]},{"s":"UNISWAP:N1WETH_797CCC.USD","d":[]},{"s":"UNISWAP3POLYGON:TNGBLDAI_DC8A5C.USD","d":[]},{"s":"COINBASE:ATOMGBP","d":[]},{"s":"GATEIO:ALGOUSDT","d":[]},{"s":"UNISWAP3ETH:AEDYWETH_247027.USD","d":[]},{"s":"BITGET:HTXUSDT","d":[]},{"s":"HITBTC:ARUSD","d":[]},{"s":"BITGET:RADUSDT","d":[]},{"s":"HITBTC:MTLUSDT","d":[]},{"s":"BITRUE:ENSXRP","d":[]},{"s":"UNISWAP3ETH:WETHINS","d":[]},{"s":"UNISWAP:SIDEWETH_999321.USD","d":[]},{"s":"UNISWAP:NALIWETH_8F5467","d":[]},{"s":"BINANCE:GALABRL","d":[]},{"s":"POLONIEX:ALIUSDT","d":[]},{"s":"UNISWAP:PPDEXWETH_6B1455","d":[]},{"s":"XEXCHANGE:TADAUSDC","d":[]},{"s":"QUICKSWAP:STRATWMATIC_A2D08F.USD","d":[]},{"s":"HITBTC:REIUSD","d":[]},{"s":"UNISWAP3ETH:WETHBED","d":[]},{"s":"UNISWAP3ETH:CAHUSDC_4016DD.USD","d":[]},{"s":"UNISWAP:HEARTWETH_540B96.USD","d":[]},{"s":"BINANCE:ALPINETRY","d":[]},{"s":"SPOOKYSWAP:BABYBOOWFTM_24A5D3.USD","d":[]},{"s":"UNISWAP3ETH:SENWETH_9E658E.USD","d":[]},{"s":"UNISWAP3POLYGON:ICHIONEBTC_6980E5.USD","d":[]},{"s":"UNISWAP3ETH:USDTOLY","d":[]},{"s":"UNISWAP3POLYGON:CHAMPUSDC_9159A8.USD","d":[]},{"s":"UNISWAP3ETH:WETHRPL","d":[]},{"s":"UNISWAP:BOMIWETH_D0168C","d":[]},{"s":"UNISWAP:NAOSWETH_9B577E","d":[]},{"s":"KRAKEN:ETCETH","d":[]},{"s":"UNISWAP3ETH:GOHMUSDC","d":[]},{"s":"UNISWAP3ETH:HOODIEWETH","d":[]},{"s":"POLONIEX:GEEQUSDT","d":[]},{"s":"BINANCE:LSKETH","d":[]},{"s":"BINGX:AGLDUSDT.PS","d":[]},{"s":"BYBIT:XEMUSDT.P","d":[]},{"s":"QUICKSWAP:DAIWMATIC_EEF611.USD","d":[]},{"s":"UNISWAP3ETH:AETHWETH","d":[]},{"s":"KRAKEN:OGNUSD.PM","d":[]},{"s":"DYDX:DOGEUSD.P","d":[]},{"s":"MEXC:SLPUSDT.P","d":[]},{"s":"UNISWAP3ETH:AITWETH","d":[]},{"s":"UNISWAP3POLYGON:SDEXLINK_703AEC.USD","d":[]},{"s":"HITBTC:NULSBTC","d":[]},{"s":"COINEX:UNIBTC","d":[]},{"s":"UNISWAP3ETH:WETHRAIN","d":[]},{"s":"MEXC:RATUSDT","d":[]},{"s":"BYBIT:VPRUSDT","d":[]},{"s":"QUICKSWAP:ELONWMATIC_29B646.USD","d":[]},{"s":"XEXCHANGE:BTOUSDC","d":[]},{"s":"POLONIEX:XTZTRX","d":[]},{"s":"BLOFIN:STMXUSDT.P","d":[]},{"s":"BINANCEUS:JAMUSDT","d":[]},{"s":"BINANCE:SOLUSDT","d":[]},{"s":"UNISWAP3ETH:USDTBIPX","d":[]},{"s":"GATEIO:RONUSDT","d":[]},{"s":"MEXC:VEXUSDT","d":[]},{"s":"WHITEBIT:TRXBTC","d":[]},{"s":"MEXC:MLNETH","d":[]},{"s":"UNISWAP:AXSWETH_24B24A.USD","d":[]},{"s":"HITBTC:USDDUSDT","d":[]},{"s":"KRAKEN:GMXUSD.PM","d":[]},{"s":"BITRUE:FLUXADA","d":[]},{"s":"MEXC:IOTAUSDT.P","d":[]},{"s":"DELTA:LINKUSDT.P","d":[]},{"s":"GATEIO:INDIUSDT","d":[]},{"s":"UNISWAP:PICKLEWETH_DC9855","d":[]},{"s":"QUICKSWAP:BABYQUICKWMATIC_90EC67.USD","d":[]},{"s":"MEXC:CROUSDT","d":[]},{"s":"GATEIO:SPELLFIREUSDT","d":[]},{"s":"UNISWAP:DEFXWETH_BDEE9C.USD","d":[]},{"s":"HITBTC:PASSUSD","d":[]},{"s":"SPOOKYSWAP:DRCUSDC_8562E3","d":[]},{"s":"GATEIO:3KMUSDT","d":[]},{"s":"UNISWAP3ETH:TOKENWATCHWETH_AA36C2.USD","d":[]},{"s":"UNISWAP:DOGE69WETH_E4247D.USD","d":[]},{"s":"BINANCE:CTXCBTC","d":[]},{"s":"UNISWAP3POLYGON:SMTUSDC_58D33B.USD","d":[]},{"s":"OKX:GODSUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:OKLPWETH_4D7291.USD","d":[]},{"s":"UNISWAP3POLYGON:DFUSDC_D7838E.USD","d":[]},{"s":"BYBIT:DICEUSDT","d":[]},{"s":"MEXC:LAIUSDT","d":[]},{"s":"GATEIO:YFIIUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDC_17C14D.USD","d":[]},{"s":"UNISWAP3ETH:WETHTGC","d":[]},{"s":"HITBTC:PLIUSD","d":[]},{"s":"PIONEX:ALPHAUSDT.P","d":[]},{"s":"UNISWAP:ETH2XFLIWETH_F91C12.USD","d":[]},{"s":"ZOOMEX:MANAUSDT.P","d":[]},{"s":"POLONIEX:WIFUSDT","d":[]},{"s":"BITFINEX:GTXUST","d":[]},{"s":"UNISWAP3ETH:RETHWETH_A4E0FA.USD","d":[]},{"s":"UNISWAP:NFAIWETH_2BE069.USD","d":[]},{"s":"UNISWAP:BETROCKWETH_5B8E7D.USD","d":[]},{"s":"BYBIT:USDCUSDT","d":[]},{"s":"BITGET:GODSUSDT","d":[]},{"s":"KRAKEN:ETHDAI","d":[]},{"s":"MEXC:RCEUSDT","d":[]},{"s":"TRADERJOE:TACOSWAVAX_1EBB06.USD","d":[]},{"s":"BINANCE:ARPABTC","d":[]},{"s":"MEXC:ORNUSDT.P","d":[]},{"s":"HITBTC:NGCBTC","d":[]},{"s":"UNISWAP3ETH:USDCAPE","d":[]},{"s":"BINANCE:AEVOTRY","d":[]},{"s":"UNISWAP:REMITWETH_EEFC2A.USD","d":[]},{"s":"GATEIO:CTCUSDT","d":[]},{"s":"UNISWAP:HMKRWETH_0CDC1E","d":[]},{"s":"UNISWAP:NIZAWETH_6ACB42.USD","d":[]},{"s":"BITGET:IVPAYUSDT","d":[]},{"s":"UNISWAP:MTLXUSDT_1A57EC","d":[]},{"s":"ZOOMEX:SKLUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:DYDXWMATIC_FE6E72.USD","d":[]},{"s":"BITFINEX:MIMUSD","d":[]},{"s":"BINANCE:MLNUSDT","d":[]},{"s":"UNISWAP:CATBOYWETH_E6F65D","d":[]},{"s":"UNISWAP3ETH:PORTALWETH","d":[]},{"s":"HITBTC:ANTUSD","d":[]},{"s":"KRAKEN:SNXUSD","d":[]},{"s":"MEXC:DOVUUSDT","d":[]},{"s":"UNISWAP3ETH:PYUSDUSDC_133940.USD","d":[]},{"s":"UNISWAP3ETH:DCWETH","d":[]},{"s":"UNISWAP:SATSWETH_D99E9C","d":[]},{"s":"GATEIO:BCHUSDT.5S","d":[]},{"s":"BLOFIN:FXSUSDT.P","d":[]},{"s":"UNISWAP:RUSHAIWETH_185CEA.USD","d":[]},{"s":"KRAKEN:FIDAEUR","d":[]},{"s":"UNISWAP:CRMWETH_971CFF","d":[]},{"s":"UNISWAP:UFOWETH_97E1FC.USD","d":[]},{"s":"UNISWAP3ETH:AUSDUSDT","d":[]},{"s":"MEXC:GROKUSDT","d":[]},{"s":"BYBIT:XLMBTC","d":[]},{"s":"GATEIO:DARUSDT","d":[]},{"s":"BITFINEX:ETH2XUSD","d":[]},{"s":"UNISWAP3ETH:TREEWETH_DC75E9.USD","d":[]},{"s":"BTSE:CHRUSD.P","d":[]},{"s":"UNISWAP:TOWERMYTH_3E1FFD.USD","d":[]},{"s":"POLONIEX:GMXUSDT","d":[]},{"s":"UNISWAP:JESTWETH_985552.USD","d":[]},{"s":"BITFINEX:TONBTC","d":[]},{"s":"MEXC:CAWCEOUSDT","d":[]},{"s":"UNISWAP:WEBAIWETH_7862DC","d":[]},{"s":"UNISWAP3ETH:WETHPEAS","d":[]},{"s":"GATEIO:DAOUSDT","d":[]},{"s":"POLONIEX:FILBTC","d":[]},{"s":"POLONIEX:BCHSVUSDC","d":[]},{"s":"BINANCE:ADAUSDM2024","d":[]},{"s":"UNISWAP:DSLAWETH_D0FBB8.USD","d":[]},{"s":"COINEX:GAFIUSDT","d":[]},{"s":"MEXC:WWYUSDT","d":[]},{"s":"HITBTC:CROUSD","d":[]},{"s":"MEXC:PPAUSDT","d":[]},{"s":"MEXC:VMPXUSDT","d":[]},{"s":"ZOOMEX:SCRTUSDT.P","d":[]},{"s":"BINANCE:JTOTRY","d":[]},{"s":"UNISWAP:DERPWETH_21AA91.USD","d":[]},{"s":"SPOOKYSWAP:POOHBEER_9CFD40.USD","d":[]},{"s":"GATEIO:SEIUSDT","d":[]},{"s":"KRAKEN:PERPUSD","d":[]},{"s":"BITSTAMP:COMPEUR","d":[]},{"s":"MEXC:GALAUSDT","d":[]},{"s":"MEXC:LUNCUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHWIN","d":[]},{"s":"WOONETWORK:ZETAUSDT","d":[]},{"s":"UNISWAP:MAPWETH_3613E3.USD","d":[]},{"s":"QUICKSWAP:UMWETH_78413E","d":[]},{"s":"BITGET:ALUUSDT","d":[]},{"s":"BITFINEX:APTUSD","d":[]},{"s":"BLOFIN:API3USDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:POGAIUSDT_8DA66E.USD","d":[]},{"s":"TRADERJOE:MNEAVWAVAX_E35C94.USD","d":[]},{"s":"MEXC:ZRXUSDT","d":[]},{"s":"UNISWAP:DOVWETH_610382","d":[]},{"s":"MEXC:MEMEAIUSDT","d":[]},{"s":"UNISWAP:QUANTUMWETH_473DF3","d":[]},{"s":"UNISWAP:SPXWETH_52C77B","d":[]},{"s":"SPOOKYSWAP:WATERFALLWFTM_C4EC70","d":[]},{"s":"MEXC:SOLAMAUSDT","d":[]},{"s":"BITFINEX:PLUBTC","d":[]},{"s":"UNISWAP:BLOXWETH_B145BA","d":[]},{"s":"UNISWAP3ETH:WETHIMPT","d":[]},{"s":"UNISWAP:DPXWETH_F64AF0","d":[]},{"s":"OKX:LTCUSD.P","d":[]},{"s":"UNISWAP3ETH:MCWETH_E9E12D.USD","d":[]},{"s":"UNISWAP:HYDRAWETH_CAA894.USD","d":[]},{"s":"BINGX:LRCUSDT.PS","d":[]},{"s":"POLONIEX:SUIUSDT","d":[]},{"s":"MEXC:ORBKUSDT","d":[]},{"s":"WOONETWORK:ARBUSDT","d":[]},{"s":"QUICKSWAP:SKRTUSDC_CFC4CB","d":[]},{"s":"PANGOLIN:TRYBWAVAX_6B4167","d":[]},{"s":"QUICKSWAP:GEMGUSDC_4357FA","d":[]},{"s":"UNISWAP3ETH:WEETHWETH","d":[]},{"s":"UNISWAP3ETH:WETHRAEL","d":[]},{"s":"MEXC:RENUSDT.P","d":[]},{"s":"UNISWAP3ETH:MONKGGWETH","d":[]},{"s":"HITBTC:ALICEUSDT","d":[]},{"s":"BITGET:ZKBUSDT","d":[]},{"s":"MEXC:STRMUSDT","d":[]},{"s":"BITRUE:ANTUSDT","d":[]},{"s":"MEXC:APX1USDT","d":[]},{"s":"COINEX:MKRUSDC","d":[]},{"s":"TRADERJOE:TDWAVAX_7EF8E0","d":[]},{"s":"UNISWAP3ETH:WCFGUSDC_727023.USD","d":[]},{"s":"PANGOLIN:EDBITWAVAX_D8A638.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBIUSDC_E7A6C2.USD","d":[]},{"s":"MEXC:SCCPUSDT","d":[]},{"s":"MEXC:INSUSDT","d":[]},{"s":"BITRUE:ICPADA","d":[]},{"s":"BINANCEUS:BATUSDT","d":[]},{"s":"MEXC:SWINGBYUSDT","d":[]},{"s":"UNISWAP:MARVINWETH_F71998.USD","d":[]},{"s":"MEXC:RONUSDT.P","d":[]},{"s":"BITGET:SUPERUSDT","d":[]},{"s":"GATEIO:KAPUSDT","d":[]},{"s":"WAGYUSWAP:WAGBUSD_339977","d":[]},{"s":"GATEIO:SENCUSDT","d":[]},{"s":"KRAKEN:WBTCBTC","d":[]},{"s":"UNISWAP3POLYGON:MATICXWMATIC_FFFC98.USD","d":[]},{"s":"QUICKSWAP:BOLLYUSDC_ED4ED2","d":[]},{"s":"UNISWAP:AZUREWETH_61B7E2","d":[]},{"s":"UNISWAP:XSTUSDWETH_165AB5","d":[]},{"s":"UNISWAP3POLYGON:MYSTWMATIC_54B770.USD","d":[]},{"s":"POLONIEX:BABYDOGEUSDT","d":[]},{"s":"ZOOMEX:LITUSDT.P","d":[]},{"s":"HITBTC:FTTETH","d":[]},{"s":"UNISWAP:MPHWETH_E1DABC","d":[]},{"s":"UNISWAP:CUTEWETH_9895EC","d":[]},{"s":"COINBASE:FORTHUSD","d":[]},{"s":"UNISWAP:BYTEWETH_8FBD26","d":[]},{"s":"GATEIO:BCHUSDT.3L","d":[]},{"s":"BITGET:FILUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMYST","d":[]},{"s":"UNISWAP3ETH:SMTWETH","d":[]},{"s":"UNISWAP3ETH:YFLOWUSDT","d":[]},{"s":"SPOOKYSWAP:HECTOR_4339B4","d":[]},{"s":"GATEIO:AKROUSDT","d":[]},{"s":"UNISWAP3ETH:WETHJUSTICE","d":[]},{"s":"BINGX:LUNCUSDT.P","d":[]},{"s":"BITGET:USDVUSDT","d":[]},{"s":"TRADERJOE:XQIQI_592082.USD","d":[]},{"s":"UNISWAP:RUNEWETH_8D2A4C.USD","d":[]},{"s":"UNISWAP3POLYGON:PKTKUSDT_47E06F.USD","d":[]},{"s":"MEXC:SOULSUSDT","d":[]},{"s":"UNISWAP:ROOTWETH_01F898","d":[]},{"s":"BITSTAMP:BTCEUR","d":[]},{"s":"HITBTC:SENTUSDT","d":[]},{"s":"MEXC:FOMOUSDT","d":[]},{"s":"BITRUE:GODUSDT","d":[]},{"s":"HITBTC:TRXUSD","d":[]},{"s":"KRAKEN:1INCHEUR","d":[]},{"s":"BITFINEX:UDCBTC","d":[]},{"s":"HITBTC:STNDUSD","d":[]},{"s":"UNISWAP3ARBITRUM:VRTXUSDC_D32964.USD","d":[]},{"s":"POLONIEX:ZEROUSDT","d":[]},{"s":"MEXC:INJUSDT","d":[]},{"s":"UNISWAP:APEGPTWETH_7EB656","d":[]},{"s":"KRAKEN:JASMYUSD.PM","d":[]},{"s":"BITGET:SANDUSDT","d":[]},{"s":"UNISWAP3ETH:BCUTWETH_26FA8B.USD","d":[]},{"s":"BLOFIN:LTCUSDT.P","d":[]},{"s":"UNISWAP3ETH:EWITUSDC","d":[]},{"s":"BYBIT:BOBUSDT","d":[]},{"s":"KRAKEN:ICPEUR","d":[]},{"s":"COINEX:BENUSDT","d":[]},{"s":"UNISWAP:PIKAWETH_132BC4.USD","d":[]},{"s":"UNISWAP3ETH:USDCZARP","d":[]},{"s":"BINANCE:LTCBTC","d":[]},{"s":"BITGET:STETHUSDT","d":[]},{"s":"BITGET:KLAYUSDT","d":[]},{"s":"EXMO:ADAUSD","d":[]},{"s":"QUICKSWAP:PGENWMATIC_B6FBB5.USD","d":[]},{"s":"BITFINEX:IOTUST.P","d":[]},{"s":"UNISWAP:KISHIMOTOWETH_A3BDE9","d":[]},{"s":"GATEIO:INTERUSDT","d":[]},{"s":"QUICKSWAP:GNSDAI_6E53CB.USD","d":[]},{"s":"BYBIT:CKBUSDT.P","d":[]},{"s":"UNISWAP3ETH:MUSEWETH","d":[]},{"s":"BYBIT:KCSUSDT","d":[]},{"s":"GATEIO:PERLUSDT","d":[]},{"s":"UNISWAP:APEWETH_B011EE.USD","d":[]},{"s":"BITHUMB:DOTKRW","d":[]},{"s":"KRAKEN:EWTEUR","d":[]},{"s":"BYBIT:TRBUSDT.P","d":[]},{"s":"MEXC:ARBIUSDT","d":[]},{"s":"MEXC:KDAUSDT.P","d":[]},{"s":"QUICKSWAP:MAMAIWMATIC_71501F.USD","d":[]},{"s":"PHEMEX:BTCUSD.PI","d":[]},{"s":"UNISWAP:STARWETH_19FFC5.USD","d":[]},{"s":"UNISWAP3ETH:GGTKWETH","d":[]},{"s":"UNISWAP3POLYGON:USDCWETH_80CDAD.USD","d":[]},{"s":"MEXC:AVAXUSDT","d":[]},{"s":"UNISWAP:FACTORYWETH_074B73","d":[]},{"s":"UNISWAP3ETH:USDCHONO","d":[]},{"s":"UNISWAP3ETH:WETHECOTERRA","d":[]},{"s":"BITRUE:APEUSDT","d":[]},{"s":"UNISWAP3ETH:RNDRWETH_4628A0.USD","d":[]},{"s":"BITKUB:RDNTTHB","d":[]},{"s":"TRADERJOE:MCVWAVAX_1BDB43.USD","d":[]},{"s":"BYBIT:RUNEUSDT","d":[]},{"s":"UNISWAP3POLYGON:WRLDWMATIC_4FF09B.USD","d":[]},{"s":"UNISWAP:FOMOWETH_130072","d":[]},{"s":"GATEIO:SNTUSDT","d":[]},{"s":"SPOOKYSWAP:GHOSTSCREAM_A447AD.USD","d":[]},{"s":"UNISWAP:XAIGROKWETH_DB84AB.USD","d":[]},{"s":"PHEMEX:LQTYUSDT.P","d":[]},{"s":"UNISWAP3ETH:BTTWETH","d":[]},{"s":"UNISWAP3POLYGON:BIMUSDT_7C8D44.USD","d":[]},{"s":"QUICKSWAP:GSGWMATIC_AA6BA4.USD","d":[]},{"s":"GATEIO:BVTUSDT","d":[]},{"s":"HITBTC:APEBTC","d":[]},{"s":"COINEX:PENDLEUSDT","d":[]},{"s":"WAGYUSWAP:BAMBOOUSDT_96656B","d":[]},{"s":"BINANCE:ALTUSDC","d":[]},{"s":"QUICKSWAP:DEFITWETH_580DA9","d":[]},{"s":"UNISWAP3ETH:LINKRNG_EC14A9.USD","d":[]},{"s":"BITKUB:SANDTHB","d":[]},{"s":"KRAKEN:ACHUSD.PM","d":[]},{"s":"BITRUE:ENJUSDT","d":[]},{"s":"UNISWAP3ETH:BEARUSDT","d":[]},{"s":"COINBASE:ROSEUSD","d":[]},{"s":"BYBIT:MNTBTC","d":[]},{"s":"UNISWAP:TQUEENWETH_516AC3.USD","d":[]},{"s":"KRAKEN:RAYEUR","d":[]},{"s":"UNISWAP3ETH:DAITAI","d":[]},{"s":"BYBIT:BNTUSDT","d":[]},{"s":"XEXCHANGE:CRTUSDC","d":[]},{"s":"KRAKEN:GHSTEUR","d":[]},{"s":"UNISWAP3ETH:WETHPEPECOIN","d":[]},{"s":"UNISWAP3ETH:DOGPETWETH","d":[]},{"s":"UNISWAP:WALVWETH_BE1737.USD","d":[]},{"s":"UNISWAP3ETH:WETHLUNA","d":[]},{"s":"UNISWAP3OPTIMISM:WSTETHWETH_04F6C8.USD","d":[]},{"s":"COINEX:VANRYUSDT","d":[]},{"s":"UNISWAP:MVLWETH_3C8AD3.USD","d":[]},{"s":"COINBASE:MATICEUR","d":[]},{"s":"BITGET:MATICUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:FXSHIBWETH_193A51.USD","d":[]},{"s":"BITHUMB:DAIKRW","d":[]},{"s":"MEXC:SAUBERUSDT","d":[]},{"s":"BLOFIN:CELRUSDT.P","d":[]},{"s":"UNISWAP:BEANWETH_711867","d":[]},{"s":"KRAKEN:ETHUSD","d":[]},{"s":"UNISWAP3ETH:USDTLDAO","d":[]},{"s":"GATEIO:LAVAUSDT","d":[]},{"s":"BITGET:ALICEUSDT","d":[]},{"s":"XEXCHANGE:AEROUSDC","d":[]},{"s":"MEXC:OSHIUSDT","d":[]},{"s":"TRADERJOE:JOEUSDC_3BC40D.USD","d":[]},{"s":"BINGX:SUPERUSDT.PS","d":[]},{"s":"UNISWAP3POLYGON:AAVEWMATIC_A9077C.USD","d":[]},{"s":"COINEX:KISHUUSDT","d":[]},{"s":"BITGET:RUNEUSDT","d":[]},{"s":"UNISWAP3ETH:STKAAVEWETH","d":[]},{"s":"ZOOMEX:DODOUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTFLC","d":[]},{"s":"TRADERJOE:SSPELLSPELL_033C3F.USD","d":[]},{"s":"QUICKSWAP:TEADWETH_7896A4.USD","d":[]},{"s":"POLONIEX:YESUSDT","d":[]},{"s":"UNISWAP3ETH:KROMWETH","d":[]},{"s":"PANGOLIN:VEEUSDTE_E6069A.USD","d":[]},{"s":"UNISWAP:VIZWETH_A70715","d":[]},{"s":"UNISWAP3ETH:USDTTALK","d":[]},{"s":"UNISWAP:LUNAWETH_D42CCA","d":[]},{"s":"BINANCE:LAZIOUSDT","d":[]},{"s":"BYBIT:OXTUSDT.P","d":[]},{"s":"QUICKSWAP:CBOMBERWMATIC_1E03BE.USD","d":[]},{"s":"UNISWAP3ETH:BOXFEEWETH_4107A1.USD","d":[]},{"s":"BINANCE:AEVOBTC","d":[]},{"s":"DELTA:ORDIUSDT.P","d":[]},{"s":"PIONEX:XVSUSDT.P","d":[]},{"s":"UNISWAP:EVEDWETH_8448A5.USD","d":[]},{"s":"BITGET:OVRUSDT","d":[]},{"s":"UNISWAP3ETH:XAIUSDC","d":[]},{"s":"MEXC:GOODUSDT","d":[]},{"s":"COINEX:STGUSDT","d":[]},{"s":"QUICKSWAP:PENG4815WMATIC_0F7529.USD","d":[]},{"s":"COINEX:O3USDT","d":[]},{"s":"ZOOMEX:POWRUSDT.P","d":[]},{"s":"HITBTC:SCRTBTC","d":[]},{"s":"BITGET:ALVAUSDT","d":[]},{"s":"MEXC:MATHUSDT","d":[]},{"s":"COINEX:POOLXUSDT","d":[]},{"s":"COINBASE:OPUSD","d":[]},{"s":"PHEMEX:ZENUSDT.P","d":[]},{"s":"POLONIEX:BCHSVBTC","d":[]},{"s":"UNISWAP3ETH:NATIWETH","d":[]},{"s":"GATEIO:APPUSDT","d":[]},{"s":"PHEMEX:SOLUSDT.P","d":[]},{"s":"UNISWAP:M87WETH_230D77.USD","d":[]},{"s":"MEXC:AICREAUSDT","d":[]},{"s":"GEMINI:ANKRUSD","d":[]},{"s":"UNISWAP:NIBIWETH_1D644A","d":[]},{"s":"XEXCHANGE:WAMWEGLD","d":[]},{"s":"UNISWAP:DGWETH_3DF70E","d":[]},{"s":"GATEIO:PERCUSDT","d":[]},{"s":"BINANCEUS:DGBUSDT","d":[]},{"s":"GATEIO:MAROUSDT","d":[]},{"s":"BITFINEX:BANDUST","d":[]},{"s":"BYBIT:CGPTUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCUSDC_ADAB76.USD","d":[]},{"s":"BINGX:KAVAUSDT.PS","d":[]},{"s":"BYBIT:XAIUSDT","d":[]},{"s":"UNISWAP3ETH:XAUTUSDT","d":[]},{"s":"UNISWAP:GCCWETH_0D7E86","d":[]},{"s":"SPOOKYSWAP:USUCWFTM_B5EA37","d":[]},{"s":"UNISWAP3POLYGON:WBTCICHI_61F7D1.USD","d":[]},{"s":"OKX:ORDIUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHDOMO","d":[]},{"s":"PHEMEX:TONUSDT.P","d":[]},{"s":"BITMEX:OPUSDT","d":[]},{"s":"HITBTC:LTCDAI","d":[]},{"s":"UNISWAP:XTMWETH_C34DA1","d":[]},{"s":"UNISWAP:PEMPPOHM_C49671","d":[]},{"s":"UNISWAP3ETH:AIOZWETH_2A0330.USD","d":[]},{"s":"UNISWAP3ETH:WETHWBRGE","d":[]},{"s":"QUICKSWAP:TELQUICK_E88E24","d":[]},{"s":"UNISWAP:MUUWETH_21F149","d":[]},{"s":"UNISWAP3ETH:USDCFAST","d":[]},{"s":"UNISWAP3ETH:WETHDOMI","d":[]},{"s":"QUICKSWAP:FVTWMATIC_BDED75.USD","d":[]},{"s":"UNISWAP:CATWETH_8A8777.USD","d":[]},{"s":"UNISWAP:SNEKEWETH_A42386","d":[]},{"s":"WOONETWORK:STGUSDT","d":[]},{"s":"HITBTC:SPELLUSD","d":[]},{"s":"UNISWAP:BCBWETH_3BEEAB.USD","d":[]},{"s":"BITGET:ASTRUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPDT","d":[]},{"s":"GATEIO:MAJOUSDT","d":[]},{"s":"UNISWAP:FACWETH_A924E5.USD","d":[]},{"s":"UNISWAP:YEAPWETH_1EA4F3.USD","d":[]},{"s":"COINBASE:EOSUSD","d":[]},{"s":"UNISWAP:NFTYUSDT_4F7BE8","d":[]},{"s":"BITRUE:FLRXRP","d":[]},{"s":"QUICKSWAP:TITANWETH_A28ADE","d":[]},{"s":"MEXC:SOULUSDT","d":[]},{"s":"MEXC:YOOSHIUSDT","d":[]},{"s":"UNISWAP3ETH:USDCICHI","d":[]},{"s":"UNISWAP3ETH:EARNWETH","d":[]},{"s":"UNISWAP:MAIWETH_769505.USD","d":[]},{"s":"ZOOMEX:PORTALUSDT.P","d":[]},{"s":"UNISWAP:BONKWETH_08DDB0.USD","d":[]},{"s":"PIONEX:ICPUSDT.P","d":[]},{"s":"BYBIT:ALICEUSDT.P","d":[]},{"s":"UNISWAP:TZUWETH_013BA2.USD","d":[]},{"s":"COINEX:SIPHERUSDT","d":[]},{"s":"UNISWAP:NFAIWETH_4B05D6.USD","d":[]},{"s":"BINANCEUS:GALUSDT","d":[]},{"s":"UNISWAP3ETH:USDCCBX","d":[]},{"s":"UNISWAP:NERDWETH_38E997","d":[]},{"s":"UNISWAP:CSWAPWETH_21FFAA.USD","d":[]},{"s":"UNISWAP3ETH:WETHFLAME","d":[]},{"s":"UNISWAP:OCCWETH_14B615.USD","d":[]},{"s":"MEXC:XETAUSDT","d":[]},{"s":"PANGOLIN:DEPWAVAX_E2780D","d":[]},{"s":"GATEIO:MAPSUSDT","d":[]},{"s":"POLONIEX:OPUSDD","d":[]},{"s":"QUICKSWAP:BOMUSDC_9FF7EF","d":[]},{"s":"UNISWAP3ETH:WETHOBTC","d":[]},{"s":"UNISWAP3ETH:ARWUSDT","d":[]},{"s":"HITBTC:DAPPEOS","d":[]},{"s":"UNISWAP3ETH:CHRWETH","d":[]},{"s":"UNISWAP:TREMPWETH_A185D1","d":[]},{"s":"PHEMEX:QNTUSDT.P","d":[]},{"s":"BITGET:CMPUSDT","d":[]},{"s":"POLONIEX:DOGWIFFORKUSDT","d":[]},{"s":"SPOOKYSWAP:HECUSDC_0B9589","d":[]},{"s":"UNISWAP:PLSPADWETH_B8DB28","d":[]},{"s":"UNISWAP:MONONOKEINUWETH_5013B8.USD","d":[]},{"s":"BINANCE:BNBUSDH2024","d":[]},{"s":"COINEX:SOVUSDT","d":[]},{"s":"PHEMEX:BNTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:KEIWETH_B73633.USD","d":[]},{"s":"UNISWAP:FOOXWETH_614AC6.USD","d":[]},{"s":"MEXC:LVNUSDT","d":[]},{"s":"COINEX:RUNEUSDT","d":[]},{"s":"POLONIEX:GALUSDT","d":[]},{"s":"COINEX:INDIUSDT","d":[]},{"s":"UNISWAP:HODLWETH_AE771F","d":[]},{"s":"UNISWAP3OPTIMISM:WLDUSDC_DC6CB1.USD","d":[]},{"s":"HITBTC:WTCUSD","d":[]},{"s":"KRAKEN:ZRXUSD.PM","d":[]},{"s":"MEXC:FUNUSDT.P","d":[]},{"s":"BITSTAMP:RADUSD","d":[]},{"s":"UNISWAP3ETH:FRICWETH_69F4A2.USD","d":[]},{"s":"BITGET:ENJUSDT.P","d":[]},{"s":"HONEYSWAPPOLYGON:USDCMABBC","d":[]},{"s":"QUICKSWAP:BUNDWMATIC_EFBE61","d":[]},{"s":"GEMINI:RENUSD","d":[]},{"s":"BITHUMB:NFTKRW","d":[]},{"s":"BINGX:GMXUSDT.PS","d":[]},{"s":"BINANCE:BNBJPY","d":[]},{"s":"QUICKSWAP:MSTRMUSDC_CC35EB","d":[]},{"s":"WHITEBIT:XAUTUSDT","d":[]},{"s":"BITFINEX:FLOKIUST","d":[]},{"s":"BYBIT:VGXUSDT.P","d":[]},{"s":"BITMEX:XBTEUR.P","d":[]},{"s":"GATEIO:TENETUSDT","d":[]},{"s":"PHEMEX:UMAUSDT","d":[]},{"s":"UNISWAP:TRUSTWETH_403EED","d":[]},{"s":"BINANCE:AVAXBNB","d":[]},{"s":"GATEIO:SALTUSDT","d":[]},{"s":"PHEMEX:ATOMUSDC","d":[]},{"s":"UNISWAP:WAGWETH_2F4042","d":[]},{"s":"BTSE:YGGUSD","d":[]},{"s":"COINEX:ZILUSDT","d":[]},{"s":"UNISWAP:LEADWETH_B9ACB5.USD","d":[]},{"s":"PHEMEX:LUNAUSDT","d":[]},{"s":"GATEIO:XVGUSDT","d":[]},{"s":"UNISWAP:ZUCKWETH_54319D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:YFXUSDC_7D9D2B.USD","d":[]},{"s":"BINANCE:SLPTRY","d":[]},{"s":"GATEIO:TRUUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAMO","d":[]},{"s":"UNISWAP:GRVWETH_0CAE04","d":[]},{"s":"UNISWAP:UNLWETH_1D2694","d":[]},{"s":"BITGET:WALVUSDT","d":[]},{"s":"UNISWAP3ETH:PAIDWETH","d":[]},{"s":"WHITEBIT:AMPUSDT","d":[]},{"s":"BISWAP:ETCWBNB_1CBA97","d":[]},{"s":"PANGOLIN:CYCLEWAVAX_51486D","d":[]},{"s":"WAGYUSWAP:BMFWVLX_96B298","d":[]},{"s":"UNISWAP:SCALEWETH_CFB2E3","d":[]},{"s":"BINANCE:STRKUSDC","d":[]},{"s":"TRADERJOE:SPELLWAVAX_62CF16.USD","d":[]},{"s":"UNISWAP3ETH:WOJAKWETH","d":[]},{"s":"UNISWAP:EPIKWETH_0529BF.USD","d":[]},{"s":"POLONIEX:BCHUSDC","d":[]},{"s":"HITBTC:WLDUSDT","d":[]},{"s":"BITRUE:JSTUSDC","d":[]},{"s":"GEMINI:LINKUSD","d":[]},{"s":"UNISWAP:DEDEWETH_04F01D","d":[]},{"s":"POLONIEX:VOWUSDT","d":[]},{"s":"BITMEX:WLDUSD.P","d":[]},{"s":"HITBTC:ROOBEEUSD","d":[]},{"s":"HITBTC:IDEXBTC","d":[]},{"s":"UNISWAP3ETH:USDCCRVUSD","d":[]},{"s":"UNISWAP3ETH:WETHTOKE","d":[]},{"s":"MEXC:MWCCUSDT","d":[]},{"s":"COINBASE:AXLUSD","d":[]},{"s":"UNISWAP3ETH:ANGLEWETH_51C284.USD","d":[]},{"s":"PANGOLIN:STORMUSDTE_551D0B","d":[]},{"s":"XEXCHANGE:WDAIWEGLD","d":[]},{"s":"KRAKEN:GALAEUR","d":[]},{"s":"UNISWAP3ETH:FLCWBTC","d":[]},{"s":"UNISWAP:XFIWETH_AF9961","d":[]},{"s":"BITMEX:LINKUSD.P","d":[]},{"s":"UNISWAP:DKUMAWETH_B4EDFE","d":[]},{"s":"MEXC:CETUSUSDT","d":[]},{"s":"HITBTC:EOSHIT","d":[]},{"s":"UNISWAP:PAALWETH_2A6C34.USD","d":[]},{"s":"UNISWAP:ORACLEWETH_E7BC1E.USD","d":[]},{"s":"UNISWAP3ETH:TORNWETH","d":[]},{"s":"BTSE:MKRUSD","d":[]},{"s":"GEMINI:API3USD","d":[]},{"s":"UNISWAP:DIPWETH_DE68AD","d":[]},{"s":"UNISWAP3ETH:ENSRNG_543235.USD","d":[]},{"s":"UNISWAP3ETH:PIXLWETH","d":[]},{"s":"GATEIO:CWARUSDT","d":[]},{"s":"UNISWAP3ETH:MLUSDT","d":[]},{"s":"HITBTC:TFUELUSDT","d":[]},{"s":"POLONIEX:DOGEUSDD","d":[]},{"s":"UNISWAP:SOAIWETH_88A3A9","d":[]},{"s":"BITRUE:ARXRP","d":[]},{"s":"GATEIO:DASHUSDT.3L","d":[]},{"s":"BITGET:PYTHUSDT","d":[]},{"s":"QUICKSWAP:TRIXXWMATIC_489950.USD","d":[]},{"s":"POLONIEX:GALAUSDT","d":[]},{"s":"HITBTC:FTMBTC","d":[]},{"s":"MEXC:MITUSDT","d":[]},{"s":"MEXC:PEPECOMMUNITYUSDT","d":[]},{"s":"UNISWAP:SHIDOWETH_F6D109","d":[]},{"s":"GATEIO:STOXUSDT","d":[]},{"s":"GATEIO:AKITAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHALPH","d":[]},{"s":"SPOOKYSWAP:CEKKEWFTM_C5A18C","d":[]},{"s":"BITHUMB:CROKRW","d":[]},{"s":"GATEIO:BTLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWPLS","d":[]},{"s":"BITSTAMP:BTCGBP","d":[]},{"s":"MEXC:UPOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMOG","d":[]},{"s":"OKX:ATOMUSDT.P","d":[]},{"s":"UNISWAP3ETH:PRIMEETHWETH","d":[]},{"s":"UNISWAP3OPTIMISM:WSTETHUSDT_95D7D1.USD","d":[]},{"s":"UNISWAP3ETH:FRGWETH","d":[]},{"s":"UNISWAP:GMEWETH_CE0719.USD","d":[]},{"s":"GATEIO:EVMOSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCASTO","d":[]},{"s":"TRADERJOE:RUXUSDT_620AD7","d":[]},{"s":"ZOOMEX:PYTHUSDT.P","d":[]},{"s":"POLONIEX:NEOUSDT","d":[]},{"s":"COINEX:SOMMUSDT","d":[]},{"s":"BITRUE:LBTUSDT","d":[]},{"s":"BINGX:1000PEPEUSDT.P","d":[]},{"s":"KRAKEN:ARBUSD","d":[]},{"s":"UNISWAP:CAWETH_583C93","d":[]},{"s":"MEXC:AITECHUSDT","d":[]},{"s":"MEXC:DAIUSDT","d":[]},{"s":"COINBASE:OGNUSD","d":[]},{"s":"GATEIO:NFTDUSDT","d":[]},{"s":"UNISWAP3ETH:KP3RWETH","d":[]},{"s":"MEXC:ETHEREUMAIUSDT","d":[]},{"s":"GATEIO:BRTUSDT","d":[]},{"s":"UNISWAP:SAMAAIWETH_A49186.USD","d":[]},{"s":"MEXC:FORTHUSDT","d":[]},{"s":"UNISWAP:HRZNWETH_102CBC.USD","d":[]},{"s":"UNISWAP3ETH:WETHAPI3","d":[]},{"s":"MEXC:TAMAUSDT","d":[]},{"s":"MEXC:OGYUSDT","d":[]},{"s":"MEXC:NLCUSDT","d":[]},{"s":"GATEIO:DOTUSDT.3S","d":[]},{"s":"UNISWAP3ETH:LAIUSDC_77AC18.USD","d":[]},{"s":"POLONIEX:RPLUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:HANWETH_5B42A6.USD","d":[]},{"s":"UNISWAP3ETH:USDCDOLA","d":[]},{"s":"POLONIEX:WSBUSDT","d":[]},{"s":"UNISWAP:OASISWETH_97CE8C","d":[]},{"s":"OKX:WOOUSDT.P","d":[]},{"s":"BINANCE:RSRUSDT","d":[]},{"s":"MEXC:SHIBAUSDT","d":[]},{"s":"BISWAP:BUSDUSDT_DA8CEB","d":[]},{"s":"POLONIEX:REQUSDT","d":[]},{"s":"KRAKEN:ETCBTC","d":[]},{"s":"GATEIO:JGNUSDT","d":[]},{"s":"UNISWAP3ETH:DARWETH","d":[]},{"s":"UNISWAP3ETH:WETHHEMULE","d":[]},{"s":"UNISWAP:MEVFREEWETH_893E96.USD","d":[]},{"s":"QUICKSWAP:UBUUSDC_19ED90","d":[]},{"s":"KRAKEN:CTSIEUR","d":[]},{"s":"HITBTC:CPAYETH","d":[]},{"s":"UNISWAP:TRIBEWETH_35EC40","d":[]},{"s":"XEXCHANGE:WDAIUSDC","d":[]},{"s":"UNISWAP3ETH:TRDMWETH_A2C458.USD","d":[]},{"s":"ZOOMEX:BTCUSDT.P","d":[]},{"s":"POLONIEX:LRCBTC","d":[]},{"s":"UNISWAP:CRUWETH_469506.USD","d":[]},{"s":"UNISWAP:LUNAWETH_60A390.USD","d":[]},{"s":"BITRUE:KAVAXRP","d":[]},{"s":"XEXCHANGE:RIDEUSDC","d":[]},{"s":"WHITEBIT:FLOWUSDT","d":[]},{"s":"MEXC:SHIROUSDT","d":[]},{"s":"BINGX:FLOKIUSDT.PS","d":[]},{"s":"UNISWAP:SHIAWETH_81A460","d":[]},{"s":"UNISWAP3ETH:TINFUNFLC_B4F6F4.USD","d":[]},{"s":"GATEIO:VALUEUSDT","d":[]},{"s":"BINANCE:COMBOTRY","d":[]},{"s":"UNISWAP3ETH:AVAVWETH_FE663B.USD","d":[]},{"s":"UNISWAP3ETH:BCDTWETH","d":[]},{"s":"POLONIEX:APUUSDT","d":[]},{"s":"UNISWAP:HEHEWETH_59F7CB.USD","d":[]},{"s":"QUICKSWAP:SOLUSDC_8F8921","d":[]},{"s":"GATEIO:MATCHUSDT","d":[]},{"s":"UNISWAP:SFDWETH_B5D39F","d":[]},{"s":"UNISWAP:DNODEWETH_36386E","d":[]},{"s":"TRADERJOE:MPLUSDT_2C4904","d":[]},{"s":"KRAKEN:XLMEUR","d":[]},{"s":"GATEIO:VSPUSDT","d":[]},{"s":"MEXC:STARLUSDT","d":[]},{"s":"XEXCHANGE:MEXUSDC","d":[]},{"s":"UNISWAP3ETH:IMXWETH","d":[]},{"s":"UNISWAP:BLOBWETH_87D995.USD","d":[]},{"s":"UNISWAP:SHADOWCATSWETH_0A3618","d":[]},{"s":"GATEIO:DEVVEUSDT","d":[]},{"s":"UNISWAP3ETH:GFIUSDC","d":[]},{"s":"GATEIO:POLYDOGEUSDT","d":[]},{"s":"MEXC:DNGUSDT","d":[]},{"s":"UNISWAP3ETH:USDCFLP","d":[]},{"s":"BINANCE:CTKBTC","d":[]},{"s":"BINANCE:ADATRY","d":[]},{"s":"MEXC:NUTUSDT","d":[]},{"s":"COINEX:NEOUSDC","d":[]},{"s":"BITFINEX:OMNUSD","d":[]},{"s":"COINEX:BANBTC","d":[]},{"s":"COINEX:HELLOUSDT","d":[]},{"s":"BLOFIN:WAVESUSDT.P","d":[]},{"s":"GATEIO:TAPTUSDT","d":[]},{"s":"COINBASE:HFTUSD","d":[]},{"s":"UNISWAP:NEBOWETH_1657A2","d":[]},{"s":"UNISWAP3ARBITRUM:USDCUSDT_8C9D23.USD","d":[]},{"s":"GATEIO:KLAYUSDT","d":[]},{"s":"MEXC:FONCOINUSDT","d":[]},{"s":"KRAKEN:FORTHEUR","d":[]},{"s":"SPOOKYSWAP:SCAREWFTM_D6B312","d":[]},{"s":"BINGX:AXSUSDT.PS","d":[]},{"s":"BITFINEX:DOTUST.P","d":[]},{"s":"BYBIT:JOEUSDT.P","d":[]},{"s":"BITRUE:SUNUSDT","d":[]},{"s":"UNISWAP:GATEWETH_57E8B5","d":[]},{"s":"UNISWAP:PAIWETH_FBB4E3.USD","d":[]},{"s":"QUICKSWAP:SMTWMATIC_A38BEF","d":[]},{"s":"UNISWAP3ETH:WETHDENCUN","d":[]},{"s":"UNISWAP:MDAIWETH_F67041","d":[]},{"s":"UNISWAP:VALWETH_64C9CF","d":[]},{"s":"GEMINI:BCHBTC","d":[]},{"s":"UNISWAP3ETH:BLOODWETH","d":[]},{"s":"UNISWAP:ATORWETH_A7480A","d":[]},{"s":"UNISWAP3ETH:MEVETHWETH","d":[]},{"s":"BINANCE:AVAXBRL","d":[]},{"s":"WOONETWORK:ORDIUSDT","d":[]},{"s":"MEXC:NEOUSDT.P","d":[]},{"s":"UNISWAP:PINGWETH_DC96E9.USD","d":[]},{"s":"UNISWAP:MMAIWETH_27EB76","d":[]},{"s":"PHEMEX:ALPHAUSDT.P","d":[]},{"s":"BITGET:SLPUSDT.P","d":[]},{"s":"UNISWAP:LPOOLWETH_2F85E1","d":[]},{"s":"UNISWAP:MEMESWETH_73F743","d":[]},{"s":"UNISWAP3POLYGON:GEODUSDC_E13A78.USD","d":[]},{"s":"COINEX:FXSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCBTRST","d":[]},{"s":"KRAKEN:OMGEUR","d":[]},{"s":"UNISWAP:EACCWETH_5874C7.USD","d":[]},{"s":"DYDX:XMRUSD.P","d":[]},{"s":"BITGET:HOTUSDT.P","d":[]},{"s":"UNISWAP:VAULTWETH_4DAEAC","d":[]},{"s":"COINBASE:ETHEUR","d":[]},{"s":"UNISWAP3ETH:NFAIWNUNI_38F03F.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LNDXUSDC_032A61.USD","d":[]},{"s":"BYBIT:SLPUSDT.P","d":[]},{"s":"UNISWAP:SHEESHWETH_A9E900","d":[]},{"s":"BINANCE:BELTRY","d":[]},{"s":"UNISWAP3ETH:HDRNWETH_78D470.USD","d":[]},{"s":"MEXC:LMWRUSDT","d":[]},{"s":"COINEX:ACSUSDT","d":[]},{"s":"HITBTC:HBARUSDC","d":[]},{"s":"BYBIT:GALUSDT","d":[]},{"s":"UNISWAP3ETH:CNGWETH_FAB26C.USD","d":[]},{"s":"BINANCE:RDNTUSDT","d":[]},{"s":"HITBTC:UOSUSDT","d":[]},{"s":"UNISWAP:TETHERWETH_619931.USD","d":[]},{"s":"WHITEBIT:MTLUSDT","d":[]},{"s":"UNISWAP:TOOLSWETH_DAE6D9","d":[]},{"s":"UNISWAP:SWOTWETH_12031C.USD","d":[]},{"s":"UNISWAP:MUSKWETH_243198.USD","d":[]},{"s":"UNISWAP3ETH:MNWWETH_89646E.USD","d":[]},{"s":"UNISWAP3ETH:BHOMEUSDC","d":[]},{"s":"BITSTAMP:ADAUSD","d":[]},{"s":"SPOOKYSWAP:UNDEADWFTM_CBD6D5.USD","d":[]},{"s":"BINANCE:AXLUSDT","d":[]},{"s":"UNISWAP3POLYGON:GRTWETH_D8BD45.USD","d":[]},{"s":"QUICKSWAP:UPMATICWMATIC_928ED5.USD","d":[]},{"s":"GATEIO:GRVUSDT","d":[]},{"s":"COINBASE:SHIBUSDT","d":[]},{"s":"PHEMEX:APEUSDT.P","d":[]},{"s":"XEXCHANGE:TTGUSDC","d":[]},{"s":"SPOOKYSWAP:OATHWFTM_084F50","d":[]},{"s":"UNISWAP:PPPPDAI_3BB1BE","d":[]},{"s":"UNISWAP:ECTWETH_5B4900","d":[]},{"s":"BITHUMB:CHRKRW","d":[]},{"s":"UNISWAP3ARBITRUM:AAVEWETH_A72CD8.USD","d":[]},{"s":"HITBTC:TELBTC","d":[]},{"s":"UNISWAP:METANOWETH_B4FFF3","d":[]},{"s":"GATEIO:MSOLUSDT","d":[]},{"s":"UNISWAP3ETH:MEUWETH","d":[]},{"s":"TRADERJOE:GRAPEMIM_B38224","d":[]},{"s":"UNISWAP:VUSDVOW_97BE09.USD","d":[]},{"s":"BITGET:DOTUSDT.P","d":[]},{"s":"BINANCEUS:ICXUSDT","d":[]},{"s":"PANGOLIN:AXIALWAVAX_53D4BF","d":[]},{"s":"BITRUE:ONEUSDT","d":[]},{"s":"KRAKEN:ATLASUSD","d":[]},{"s":"BITGET:GTCUSDT.P","d":[]},{"s":"HITBTC:CRVBTC","d":[]},{"s":"UNISWAP3ETH:USDTSTBU","d":[]},{"s":"GATEIO:REMUSDT","d":[]},{"s":"UNISWAP:VNMWETH_044112","d":[]},{"s":"GATEIO:1CATUSDT","d":[]},{"s":"UNISWAP:SUHWETH_1D0F73.USD","d":[]},{"s":"BYBIT:SOSUSDT","d":[]},{"s":"UNISWAP:ROBOWETH_155C11.USD","d":[]},{"s":"COINEX:CRPTUSDT","d":[]},{"s":"HITBTC:PONDUSDT","d":[]},{"s":"WOONETWORK:FXSUSDT","d":[]},{"s":"PHEMEX:XLMUSDC","d":[]},{"s":"GATEIO:KNIGHTUSDT","d":[]},{"s":"BINANCE:MATICBTC","d":[]},{"s":"UNISWAP3ETH:SHIBA2WETH","d":[]},{"s":"POLONIEX:MATICUSDC","d":[]},{"s":"OKX:ENJUSDT.P","d":[]},{"s":"COINEX:USDVUSDT","d":[]},{"s":"PANGOLIN:PNGUSDT_E8ACF4","d":[]},{"s":"WOONETWORK:OPUSDT","d":[]},{"s":"BITFINEX:ZILUSD","d":[]},{"s":"HITBTC:ZECUSDT","d":[]},{"s":"BINGX:USTCUSDT.P","d":[]},{"s":"XEXCHANGE:ZPAYWEGLD","d":[]},{"s":"TRADERJOE:MIMUSDCE_50141C","d":[]},{"s":"KRAKEN:XRTUSD","d":[]},{"s":"BITGET:BABYGROKUSDT","d":[]},{"s":"UNISWAP3ETH:USDTSWASH","d":[]},{"s":"UNISWAP:GYENUSDC_C4FA9F","d":[]},{"s":"POLONIEX:CAWUSDT","d":[]},{"s":"COINEX:HMTUSDT","d":[]},{"s":"BYBIT:MAGICUSDT.P","d":[]},{"s":"COINEX:BENDUSDT","d":[]},{"s":"BITKUB:ETHTHB","d":[]},{"s":"TRADERJOE:USDTEDAIE_A6908C","d":[]},{"s":"BYBIT:BTCUSDT.P","d":[]},{"s":"PHEMEX:ZRXUSDT.P","d":[]},{"s":"MEXC:WOBUSDT","d":[]},{"s":"MEXC:EMOJIUSDT","d":[]},{"s":"GEMINI:ATOMUSD","d":[]},{"s":"UNISWAP3ETH:WETHWLD","d":[]},{"s":"GEMINI:BATBTC","d":[]},{"s":"BYBIT:WAXPUSDT","d":[]},{"s":"BITGET:TURTUSDT","d":[]},{"s":"KRAKEN:GLMRUSD","d":[]},{"s":"MEXC:FITFIUSDT","d":[]},{"s":"GATEIO:NFTXUSDT","d":[]},{"s":"COINBASE:CLVUSD","d":[]},{"s":"GATEIO:OMEUSDT","d":[]},{"s":"GATEIO:SLCUSDT","d":[]},{"s":"POLONIEX:NEOUSD","d":[]},{"s":"BINANCE:SHIBEUR","d":[]},{"s":"UNISWAP:MORRAWETH_C56EC3","d":[]},{"s":"PIONEX:NMRUSDT.P","d":[]},{"s":"QUICKSWAP:ASTRAFERWMATIC_B300F1","d":[]},{"s":"UNISWAP3ETH:WETHBONZAI","d":[]},{"s":"SPOOKYSWAP:USUCWFTM_B5EA37.USD","d":[]},{"s":"UNISWAP3POLYGON:MIMATICUSDC_DB0F14.USD","d":[]},{"s":"BITFINEX:SANDUST","d":[]},{"s":"MEXC:PROUSDT","d":[]},{"s":"UNISWAP3ETH:ENSDAI","d":[]},{"s":"UNISWAP3ETH:DNAWETH","d":[]},{"s":"PIONEX:CVCUSDT.P","d":[]},{"s":"BINANCE:UNIFDUSD","d":[]},{"s":"POLONIEX:MANAUSDC","d":[]},{"s":"BYBIT:TAVAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGIV","d":[]},{"s":"UNISWAP3ETH:WETHMAVIA","d":[]},{"s":"GATEIO:GALOUSDT","d":[]},{"s":"BITFINEX:JUPUST","d":[]},{"s":"MEXC:MNTLUSDT","d":[]},{"s":"GATEIO:LINKUSDT","d":[]},{"s":"SPOOKYSWAP:METTIWFTM_F1E037","d":[]},{"s":"PHEMEX:ETCUSDT.P","d":[]},{"s":"POLONIEX:DOVIUSDT","d":[]},{"s":"HITBTC:VETUSDT","d":[]},{"s":"WHITEBIT:GLMUSDT","d":[]},{"s":"BINANCE:RADUSDT","d":[]},{"s":"BISWAP:AVAXWBNB_2F3899","d":[]},{"s":"GATEIO:WIKENUSDT","d":[]},{"s":"BITHUMB:TDROPKRW","d":[]},{"s":"BITFINEX:EUTEUR","d":[]},{"s":"UNISWAP3ETH:ESOVWETH","d":[]},{"s":"UNISWAP3POLYGON:GCUSDT_C0C377.USD","d":[]},{"s":"UNISWAP:INVWETH_73E02E.USD","d":[]},{"s":"HITBTC:FXSBTC","d":[]},{"s":"COINEX:SHRAPUSDT","d":[]},{"s":"POLONIEX:TIPUSDT","d":[]},{"s":"BYBIT:XRPEUR","d":[]},{"s":"POLONIEX:ZELIXUSDT","d":[]},{"s":"BINANCE:FETBTC","d":[]},{"s":"MEXC:KOMUSDT","d":[]},{"s":"ZOOMEX:1000RATSUSDT.P","d":[]},{"s":"GATEIO:QTUMUSDT.3L","d":[]},{"s":"BTSE:ADAUSD","d":[]},{"s":"BINANCE:DOGEUSDT","d":[]},{"s":"BINANCE:QTUMETH","d":[]},{"s":"ZOOMEX:ASTRUSDT.P","d":[]},{"s":"MEXC:HBARUSDT","d":[]},{"s":"UNISWAP:SIDUSWETH_8C07E1","d":[]},{"s":"BYBIT:GPTUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTBADGER","d":[]},{"s":"UNISWAP:KAKUANWETH_D4B230.USD","d":[]},{"s":"UNISWAP:COCOWETH_EAE4C7.USD","d":[]},{"s":"UNISWAP3ETH:METISLINK","d":[]},{"s":"BINGX:POLYXUSDT.PS","d":[]},{"s":"GATEIO:SUPEUSDT","d":[]},{"s":"UNISWAP:COINWETH_7D2E87","d":[]},{"s":"UNISWAP3ARBITRUM:LODEWETH_DEB066.USD","d":[]},{"s":"PIONEX:ALTUSDT.P","d":[]},{"s":"UNISWAP:QWNWETH_4EBDF5.USD","d":[]},{"s":"GATEIO:VXTUSDT","d":[]},{"s":"GATEIO:HEROUSDT","d":[]},{"s":"UNISWAP3ETH:CHAXWETH_295CFB.USD","d":[]},{"s":"BINANCE:NEOUSDT","d":[]},{"s":"UNISWAP3POLYGON:GNSUSDC_683E31.USD","d":[]},{"s":"UNISWAP3ETH:GLMWETH_531B6A.USD","d":[]},{"s":"UNISWAP:VEMPWETH_05BE68.USD","d":[]},{"s":"UNISWAP3ETH:HGPWETH_386016.USD","d":[]},{"s":"COINBASE:SPAUSD","d":[]},{"s":"UNISWAP:POCHIWETH_A932DA","d":[]},{"s":"PHEMEX:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:FUNUSDT_1A349A.USD","d":[]},{"s":"UNISWAP:OOOORWETH_BF3D80","d":[]},{"s":"ZOOMEX:CVCUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHCHIB","d":[]},{"s":"UNISWAP3POLYGON:MKRDAI_2E1DD4.USD","d":[]},{"s":"UNISWAP3ARBITRUM:REUNIUSDT_C09254.USD","d":[]},{"s":"BINANCE:CTSIBTC","d":[]},{"s":"HITBTC:XMREURS","d":[]},{"s":"BYBIT:DGBUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:CCDAOSAND_414A38.USD","d":[]},{"s":"BITSTAMP:GALAUSD","d":[]},{"s":"UNISWAP3ETH:DYADUSDC_680B3E.USD","d":[]},{"s":"UNISWAP:SWAPWETH_D90A1B","d":[]},{"s":"UNISWAP:OPENSEAWETH_7A2A55","d":[]},{"s":"HITBTC:AMBUSD","d":[]},{"s":"GATEIO:STXUSDT","d":[]},{"s":"KRAKEN:INJUSD","d":[]},{"s":"MEXC:RAKEUSDT","d":[]},{"s":"BYBIT:GALFTUSDT","d":[]},{"s":"UNISWAP3ETH:GLMWETH","d":[]},{"s":"BINANCEUS:RENUSDT","d":[]},{"s":"GATEIO:PRIMEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUSDT_4E68CC.USD","d":[]},{"s":"UNISWAP:LOONGWETH_11E5CD","d":[]},{"s":"KRAKEN:KNCUSD","d":[]},{"s":"BITKUB:VELOTHB","d":[]},{"s":"UNISWAP:KELFTXTOKEN_BA75FB.USD","d":[]},{"s":"MEXC:HIGHUSDT.P","d":[]},{"s":"TRADERJOE:WAVAXUSDT_E4B986","d":[]},{"s":"POLONIEX:STRKUSDT","d":[]},{"s":"HITBTC:CGTUSDT","d":[]},{"s":"GATEIO:SANDUSDT.3S","d":[]},{"s":"SPOOKYSWAP:SYFWFTM_AF6477.USD","d":[]},{"s":"BITGET:COMPUSDT","d":[]},{"s":"UPBIT:STEEMKRW","d":[]},{"s":"BYBIT:SUIAUSDT","d":[]},{"s":"UNISWAP3ETH:LAKEWETH","d":[]},{"s":"GATEIO:IHCUSDT","d":[]},{"s":"GATEIO:WAVESUSDT.3S","d":[]},{"s":"UNISWAP:BAOWETH_3674AA","d":[]},{"s":"UNISWAP:STACKWETH_13D1B8","d":[]},{"s":"UNISWAP3ETH:USDCAMP","d":[]},{"s":"SPOOKYSWAP:MSTWFTM_1A88E4.USD","d":[]},{"s":"UNISWAP3ETH:WETHINDEX","d":[]},{"s":"SPOOKYSWAP:TREATUSDC_9CB99A","d":[]},{"s":"MEXC:HOPUSDC","d":[]},{"s":"HITBTC:TONCOINUSDT","d":[]},{"s":"UNISWAP:DOMIWETH_75D308","d":[]},{"s":"MEXC:BXXUSDT","d":[]},{"s":"UNISWAP3ETH:BABYDOGEWETH_9F2EBE.USD","d":[]},{"s":"POLONIEX:SUKUUSDT","d":[]},{"s":"COINEX:PANDORAUSDT","d":[]},{"s":"QUICKSWAP:BAKEDWMATIC_5C68FD.USD","d":[]},{"s":"MEXC:APEUSDC","d":[]},{"s":"QUICKSWAP:WOOLYWMATIC_71CED8","d":[]},{"s":"UNISWAP:CZWETH_A18D5E.USD","d":[]},{"s":"UNISWAP:BAIWETH_D4A863.USD","d":[]},{"s":"UNISWAP:PUSSYWETH_AC3369.USD","d":[]},{"s":"BTSE:GMTUSD","d":[]},{"s":"ZOOMEX:TOKENUSDT.P","d":[]},{"s":"UNISWAP:AIWETH_0B67A5","d":[]},{"s":"UNISWAP:SUDOWETH_1533F6","d":[]},{"s":"UNISWAP:LEETWETH_DAD6A6","d":[]},{"s":"BYBIT:TELUSDT","d":[]},{"s":"SPOOKYSWAP:BOUJEWFTM_91AF3C","d":[]},{"s":"SPOOKYSWAP:HECTOR_4339B4.USD","d":[]},{"s":"BINGX:STARLUSDT.P","d":[]},{"s":"MEXC:SERSHUSDT","d":[]},{"s":"HITBTC:XVGUSDT","d":[]},{"s":"UNISWAP3ETH:ACHWETH","d":[]},{"s":"UNISWAP:GROKWETH_3C8E12.USD","d":[]},{"s":"HONEYSWAPPOLYGON:WETHUSDT","d":[]},{"s":"BINANCE:AXSETH","d":[]},{"s":"GATEIO:FNCYUSDT","d":[]},{"s":"UNISWAP:CHADWETH_8CCBF3.USD","d":[]},{"s":"UNISWAP3ARBITRUM:VRTXWETH_1EE25A.USD","d":[]},{"s":"UNISWAP:NGMIWETH_3D1D05.USD","d":[]},{"s":"MEXC:MSBUSDT","d":[]},{"s":"PIONEX:AGLDUSDT.P","d":[]},{"s":"UNISWAP:ALBTOCEAN_18A5C0.USD","d":[]},{"s":"UNISWAP3ETH:DEGODSWETH_4A382E.USD","d":[]},{"s":"UNISWAP:ELONWETH_7B7364","d":[]},{"s":"POLONIEX:PSPUSDT","d":[]},{"s":"UNISWAP:TRUCKWETH_45F11F","d":[]},{"s":"UNISWAP:CLIPPYWETH_BBEF3A.USD","d":[]},{"s":"POLONIEX:CVCUSD","d":[]},{"s":"PHEMEX:NMRUSDT.P","d":[]},{"s":"BITGET:JNSUSDT","d":[]},{"s":"BITMEX:FILUSDT.P","d":[]},{"s":"BITKUB:ENJTHB","d":[]},{"s":"UNISWAP3ETH:WETHZYN","d":[]},{"s":"KRAKEN:FXSUSD","d":[]},{"s":"BINGX:RVNUSDT.P","d":[]},{"s":"BISWAP:BSWWBNB_46492B.USD","d":[]},{"s":"UNISWAP:HEALWETH_9CCD72","d":[]},{"s":"TRADERJOE:LOONGWAVAX_E5C12C.USD","d":[]},{"s":"UNISWAP3POLYGON:OETUSDT_1F30FB.USD","d":[]},{"s":"BINANCE:DARTRY","d":[]},{"s":"UNISWAP:DYMWETH_657761.USD","d":[]},{"s":"UNISWAP:AIDRAGONWETH_532AEB.USD","d":[]},{"s":"UNISWAP:OXYWETH_A03154","d":[]},{"s":"TRADERJOE:SICKOWAVAX_6DC5DD","d":[]},{"s":"PHEMEX:NEOUSDT.P","d":[]},{"s":"SPOOKYSWAP:RSHAREWFTM_CB2534","d":[]},{"s":"HITBTC:BIZZBTC","d":[]},{"s":"UNISWAP3ETH:USDCTSUKA","d":[]},{"s":"UNISWAP:LAIKAWETH_2E0ADB","d":[]},{"s":"UNISWAP3ETH:WETHWETH","d":[]},{"s":"OKX:CHZUSDT.P","d":[]},{"s":"UNISWAP:POMWETH_0CF353.USD","d":[]},{"s":"MEXC:ETHUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEBBLEWETH","d":[]},{"s":"UNISWAP:FOTTIEWETH_27920A","d":[]},{"s":"COINEX:NEXTUSDT","d":[]},{"s":"KRAKEN:POLSEUR","d":[]},{"s":"UNISWAP3ETH:DAWGSWETH_8C34B8.USD","d":[]},{"s":"MEXC:INFERIXUSDT","d":[]},{"s":"UNISWAP:INFRAUSDT_D89183","d":[]},{"s":"UNISWAP3ETH:PLSBUSDC_A5EF2A.USD","d":[]},{"s":"UNISWAP:SIMPSONWETH_794581.USD","d":[]},{"s":"MEXC:AERGOUSDT","d":[]},{"s":"PANGOLIN:XAVAWAVAX_42152B","d":[]},{"s":"UNISWAP3ETH:ABONDWETH_C2925E.USD","d":[]},{"s":"UNISWAP:XIOWETH_E0CC5A.USD","d":[]},{"s":"HITBTC:ETHTUSD","d":[]},{"s":"PHEMEX:AAVEUSDT","d":[]},{"s":"GATEIO:NEATUSDT","d":[]},{"s":"GATEIO:DOGNFTUSDT","d":[]},{"s":"COINBASE:BCHBTC","d":[]},{"s":"UNISWAP3ETH:WETHKET","d":[]},{"s":"PHEMEX:UMAUSDT.P","d":[]},{"s":"UNISWAP:CNDWETH_6D3972.USD","d":[]},{"s":"KRAKEN:BOBAUSD","d":[]},{"s":"MEXC:BBLUSDT","d":[]},{"s":"BLOFIN:ONDOUSDT.P","d":[]},{"s":"BITKUB:GNOTHB","d":[]},{"s":"PHEMEX:RDNTUSDT","d":[]},{"s":"POLONIEX:LQTYUSDT","d":[]},{"s":"COINEX:ZBCUSDT","d":[]},{"s":"MEXC:FLRUSDT","d":[]},{"s":"UNISWAP3ETH:PYUSDUSDC","d":[]},{"s":"UNISWAP:SHINWETH_1AF68E.USD","d":[]},{"s":"KRAKEN:ALICEUSD.PM","d":[]},{"s":"KRAKEN:TBTCEUR","d":[]},{"s":"SPOOKYSWAP:REVAWFTM_56D268","d":[]},{"s":"TRADERJOE:ROCKETWAVAX_1F89C5.USD","d":[]},{"s":"UNISWAP:CUBEWETH_F6C359.USD","d":[]},{"s":"UNISWAP3ETH:WETHNINJA","d":[]},{"s":"POLONIEX:PIXELUSDT","d":[]},{"s":"UNISWAP:HDWYWETH_9C8959.USD","d":[]},{"s":"UNISWAP3ARBITRUM:USDVUSDC_536F4B.USD","d":[]},{"s":"UNISWAP:MATCHWETH_8A7E8C","d":[]},{"s":"UNISWAP:SMUDWETH_CB8537.USD","d":[]},{"s":"MEXC:ALICEUSDT.P","d":[]},{"s":"UNISWAP:BUDDHAWETH_28D509","d":[]},{"s":"KRAKEN:API3EUR","d":[]},{"s":"PHEMEX:ANKRUSDT","d":[]},{"s":"UNISWAP3ETH:ZVTWETH_58FCD4.USD","d":[]},{"s":"GATEIO:BLOKUSDT","d":[]},{"s":"COINBASE:USDTGBP","d":[]},{"s":"UNISWAP3ETH:FRXETHWETH_8A15B2.USD","d":[]},{"s":"BITFINEX:XMRUSD","d":[]},{"s":"MEXC:ADSUSDT","d":[]},{"s":"HITBTC:BORGUSD","d":[]},{"s":"UNISWAP3ETH:USDTRENQ","d":[]},{"s":"UNISWAP:BIAOWETH_7B1C96.USD","d":[]},{"s":"UNISWAP3ETH:METWETH_CEB5C2.USD","d":[]},{"s":"UPBIT:ONGKRW","d":[]},{"s":"GATEIO:FYNUSDT","d":[]},{"s":"TRADERJOE:SBMIM_425C45.USD","d":[]},{"s":"MEXC:ZAMUSDT","d":[]},{"s":"HITBTC:KLAYUSD","d":[]},{"s":"MEXC:PRNTUSDT","d":[]},{"s":"BITFINEX:KNCUST.P","d":[]},{"s":"UNISWAP3ETH:PROMSDEX_5DAD0F.USD","d":[]},{"s":"GATEIO:TIAUSDT","d":[]},{"s":"UNISWAP3POLYGON:COMPWMATIC_495B35.USD","d":[]},{"s":"UNISWAP3ETH:COMPWETH_EA4BA4.USD","d":[]},{"s":"QUICKSWAP:PAXGUSDC_9C3E6D","d":[]},{"s":"SPOOKYSWAP:TADWFTM_7E52E2.USD","d":[]},{"s":"POLONIEX:BPDUSDT","d":[]},{"s":"GATEIO:ETHSUSDT","d":[]},{"s":"BITGET:LSKUSDT","d":[]},{"s":"UNISWAP3ETH:LOVEWETH_9CD1E0.USD","d":[]},{"s":"GATEIO:GAFIUSDT","d":[]},{"s":"UNISWAP:TAOFIWETH_074C7D","d":[]},{"s":"WHITEBIT:BADGERUSDT","d":[]},{"s":"OKX:FLOWUSDT.P","d":[]},{"s":"QUICKSWAP:SDOUSDC_6649F1","d":[]},{"s":"QUICKSWAP:EMONWMATIC_A408A7.USD","d":[]},{"s":"UNISWAP3ETH:WETHSOLID","d":[]},{"s":"UNISWAP3ETH:WETHXI","d":[]},{"s":"MEXC:MASKUSDT","d":[]},{"s":"UNISWAP3POLYGON:RNDRSDEX_560351.USD","d":[]},{"s":"COINEX:CLVUSDT","d":[]},{"s":"WHITEBIT:USDCUSDT","d":[]},{"s":"WAGYUSWAP:BITORBWAG_AD118B","d":[]},{"s":"BITRUE:ETHBTC","d":[]},{"s":"TRADERJOE:RUGUSDCE_F469B0","d":[]},{"s":"UNISWAP3ETH:SLUGWETH","d":[]},{"s":"HITBTC:DATABTC","d":[]},{"s":"HITBTC:SNXUSD","d":[]},{"s":"BINANCE:DOGEBRL","d":[]},{"s":"HITBTC:USGBTC","d":[]},{"s":"HITBTC:SKLBTC","d":[]},{"s":"OKX:TONUSDT.P","d":[]},{"s":"BYBIT:LTCUSDC","d":[]},{"s":"BITRUE:ORTUSDT","d":[]},{"s":"UNISWAP:HALALWETH_5F4B8C.USD","d":[]},{"s":"UNISWAP3ETH:PNDCWETH","d":[]},{"s":"QUICKSWAP:CHAINWMATIC_A54E44.USD","d":[]},{"s":"PHEMEX:NFPUSDT.P","d":[]},{"s":"MEXC:XRDUSDT","d":[]},{"s":"BITGET:F3USDT","d":[]},{"s":"GATEIO:SOVUSDT","d":[]},{"s":"BYBIT:OGNUSDT.P","d":[]},{"s":"UNISWAP:LIZAWETH_A81F04.USD","d":[]},{"s":"MEXC:THETAUSDT.P","d":[]},{"s":"BITMEX:INJUSDT.P","d":[]},{"s":"QUICKSWAP:RIOTWETH_E63943.USD","d":[]},{"s":"BINGX:OCEANUSDT.PS","d":[]},{"s":"UNISWAP3ETH:HDRNUSDC","d":[]},{"s":"UNISWAP:POVWETH_237A4F.USD","d":[]},{"s":"UNISWAP3ETH:XYOUSDT_D0AF19.USD","d":[]},{"s":"BINANCE:GMTTRY","d":[]},{"s":"PANGOLIN:KTEWAVAX_C013F5","d":[]},{"s":"MEXC:MGROKUSDT","d":[]},{"s":"UNISWAP3ETH:FRAXUSDC","d":[]},{"s":"HITBTC:BIGTIMEUSDT","d":[]},{"s":"BLOFIN:BONDUSDT.P","d":[]},{"s":"UNISWAP3ETH:WASUSDC_B5BC14.USD","d":[]},{"s":"HITBTC:APTUSDT","d":[]},{"s":"PANGOLIN:ORBSWAVAX_00D10D.USD","d":[]},{"s":"BINANCE:OPUSDT","d":[]},{"s":"BINANCE:SNTUSDT","d":[]},{"s":"GATEIO:BCHUSDT.3S","d":[]},{"s":"EXMO:QTUMUSD","d":[]},{"s":"GATEIO:LITUSDT.3L","d":[]},{"s":"UNISWAP:ERNWETH_570FEB","d":[]},{"s":"UNISWAP:WTFWETH_BAD5A4","d":[]},{"s":"UNISWAP3POLYGON:WSTETHWMATIC_D88FD4.USD","d":[]},{"s":"UNISWAP3ETH:MFERSWETH_BFA558.USD","d":[]},{"s":"UNISWAP3ETH:WETHDEVVE","d":[]},{"s":"UNISWAP:LITHWETH_2B68EA","d":[]},{"s":"UNISWAP3ETH:WETHWSB","d":[]},{"s":"BINANCEUS:GTCUSDT","d":[]},{"s":"UNISWAP:RBIFWETH_B49D78.USD","d":[]},{"s":"HITBTC:ETNETH","d":[]},{"s":"EXMO:USDTGBP","d":[]},{"s":"UNISWAP3POLYGON:SNXWETH_6FC7F7.USD","d":[]},{"s":"UNISWAP3ETH:ONDOUSDT_39F9FF.USD","d":[]},{"s":"UNISWAP:PCWETH_9426A0.USD","d":[]},{"s":"UNISWAP3ETH:WETHTAONU","d":[]},{"s":"MEXC:DUXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHOT","d":[]},{"s":"QUICKSWAP:GLTRGHST_B0E354.USD","d":[]},{"s":"BITGET:XORUSDT","d":[]},{"s":"UNISWAP3ETH:WILDUSDT","d":[]},{"s":"BITHUMB:CRVKRW","d":[]},{"s":"COINEX:HEROUSDT","d":[]},{"s":"BINANCE:BAKEBTC","d":[]},{"s":"UNISWAP:ALLINWETH_EE02F9.USD","d":[]},{"s":"MEXC:BTC2USDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:RNGWETH_AF5A29.USD","d":[]},{"s":"BINANCE:RUNEUSDT","d":[]},{"s":"UNISWAP:XNOVAWETH_ACED1E","d":[]},{"s":"QUICKSWAP:LICGODL_521DFD","d":[]},{"s":"ZOOMEX:DYDXUSDT.P","d":[]},{"s":"BINGX:DOTUSDT.P","d":[]},{"s":"BITGET:MOVRUSDT","d":[]},{"s":"GATEIO:DOGGOUSDT","d":[]},{"s":"GATEIO:DFYNUSDT","d":[]},{"s":"HITBTC:AMPBTC","d":[]},{"s":"HITBTC:GNOUSD","d":[]},{"s":"UNISWAP3ARBITRUM:BPETWETH_6CF5ED.USD","d":[]},{"s":"UNISWAP:SAITABITWBTC_0A8E80","d":[]},{"s":"BYBIT:NESSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAUDD","d":[]},{"s":"UNISWAP:CASINUWETH_1A0D2C","d":[]},{"s":"MEXC:MEMEMEUSDT","d":[]},{"s":"UNISWAP3ETH:AIMEMEUSDT","d":[]},{"s":"UNISWAP:MOCKWETH_54457A","d":[]},{"s":"UNISWAP3ETH:WETHMON","d":[]},{"s":"UNISWAP3ETH:WETHNEXO","d":[]},{"s":"QUICKSWAP:LINKWETH_5CA6CA.USD","d":[]},{"s":"BINANCE:AMBBTC","d":[]},{"s":"GATEIO:SFTYUSDT","d":[]},{"s":"BLOFIN:TONUSDT.P","d":[]},{"s":"UNISWAP3ETH:APEWETH_F79FC4.USD","d":[]},{"s":"UNISWAP3POLYGON:AMKTUSDC_0DAB5A.USD","d":[]},{"s":"HITBTC:XECBTC","d":[]},{"s":"BITGET:GLMUSDT","d":[]},{"s":"BITGET:JASMYETH","d":[]},{"s":"UNISWAP:RJVWETH_30E327.USD","d":[]},{"s":"HITBTC:CVPBTC","d":[]},{"s":"UNISWAP3ARBITRUM:STARUSDC_C9E2E2.USD","d":[]},{"s":"UNISWAP3ARBITRUM:ARBWETH_89A402.USD","d":[]},{"s":"UNISWAP:DOLAWETH_ECFBE9.USD","d":[]},{"s":"GATEIO:AGUSDT","d":[]},{"s":"XEXCHANGE:AEROWEGLD","d":[]},{"s":"OKX:OMGUSDT.P","d":[]},{"s":"BINANCE:WAVESUSDT","d":[]},{"s":"BINANCE:GRTTRY","d":[]},{"s":"UNISWAP:CNFRGWETH_174E3E","d":[]},{"s":"UNISWAP3ETH:AMPLUSDC","d":[]},{"s":"COINEX:COMPUSDC","d":[]},{"s":"UNISWAP:GUYWETH_15A91F","d":[]},{"s":"BINANCE:ALCXUSDT","d":[]},{"s":"ZOOMEX:WAVESUSDT.P","d":[]},{"s":"BINGX:DYMUSDT.P","d":[]},{"s":"UNISWAP:GNBWETH_F46F4E","d":[]},{"s":"GATEIO:DANAUSDT","d":[]},{"s":"HITBTC:DCRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHEFI","d":[]},{"s":"SPOOKYSWAP:CONKWFTM_449FED.USD","d":[]},{"s":"MEXC:FILUSDT","d":[]},{"s":"UNISWAP:SGPTWETH_06A83B","d":[]},{"s":"GATEIO:COOKUSDT","d":[]},{"s":"UNISWAP3POLYGON:USDCDAI_F36927.USD","d":[]},{"s":"UNISWAP:69420WETH_429ADB","d":[]},{"s":"UNISWAP:SECWETH_9A4DF4.USD","d":[]},{"s":"UNISWAP3ETH:ROYAUSDT_24D8E9.USD","d":[]},{"s":"BITHUMB:BIGTIMEKRW","d":[]},{"s":"MEXC:LOCKLABUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WLDUSDC_D1F1BA.USD","d":[]},{"s":"BINANCE:METISFDUSD","d":[]},{"s":"UNISWAP3ARBITRUM:SVYWETH_C3FCF0.USD","d":[]},{"s":"PANGOLIN:WAVAXUSDCE_BD918E","d":[]},{"s":"GATEIO:GCOINUSDT","d":[]},{"s":"GATEIO:DNXUSDT","d":[]},{"s":"BYBIT:ANTUSDT.P","d":[]},{"s":"UNISWAP:TATSUWETH_BAAFED.USD","d":[]},{"s":"UNISWAP:GFYWETH_0A24E4","d":[]},{"s":"BYBIT:PYTHUSDT.P","d":[]},{"s":"MEXC:ELUSDT","d":[]},{"s":"COINEX:BLZUSDT","d":[]},{"s":"UNISWAP:FEGWETH_60EF1E","d":[]},{"s":"BITGET:POGAIUSDT","d":[]},{"s":"UNISWAP3ETH:WHOWETH","d":[]},{"s":"GATEIO:RDEXUSDT","d":[]},{"s":"SPOOKYSWAP:2OMB2SHARES_D9B5F0.USD","d":[]},{"s":"DELTA:TIAUSDT.P","d":[]},{"s":"BITSTAMP:STORJUSD","d":[]},{"s":"ZOOMEX:CVXUSDT.P","d":[]},{"s":"BYBIT:JUPUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:POLYDOGEWMATIC_B1B383.USD","d":[]},{"s":"UNISWAP:TRNDWETH_427A59.USD","d":[]},{"s":"BITGET:CRVUSDT.P","d":[]},{"s":"UNISWAP:EVERMOONWETH_AA665A","d":[]},{"s":"UNISWAP:DAPWETH_142E44","d":[]},{"s":"UNISWAP:TRBNRWETH_107DDC.USD","d":[]},{"s":"UNISWAP:BIRDWETH_6D76F7.USD","d":[]},{"s":"GATEIO:ARPAUSDT.3S","d":[]},{"s":"UNISWAP:WOMIWETH_B767C2","d":[]},{"s":"UNISWAP3ETH:WETHECOX","d":[]},{"s":"UNISWAP:MAPSWETH_F06447.USD","d":[]},{"s":"BINGX:SOLUSDT.P","d":[]},{"s":"PIONEX:DODOUSDT.P","d":[]},{"s":"COINEX:VECUSDT","d":[]},{"s":"PHEMEX:SUPERUSDT.P","d":[]},{"s":"UNISWAP:ETHEREUMWETH_18EBA6","d":[]},{"s":"MEXC:KXAUSDT","d":[]},{"s":"TRADERJOE:BAMBOOWAVAX_F0645B","d":[]},{"s":"HITBTC:DEGUSDT","d":[]},{"s":"MEXC:LUNRUSDT","d":[]},{"s":"BITGET:EOSUSDC","d":[]},{"s":"QUICKSWAP:SWASHUSDT_A2907F","d":[]},{"s":"BINANCE:SANTOSBTC","d":[]},{"s":"SPOOKYSWAP:ZOMBUSDC_F8C1C9","d":[]},{"s":"KRAKEN:BTCJPY","d":[]},{"s":"UNISWAP3ETH:LYXEWETH_80C777.USD","d":[]},{"s":"KRAKEN:BCHETH","d":[]},{"s":"UNISWAP:ZAPIWETH_16B072","d":[]},{"s":"UNISWAP3POLYGON:DAIUSDC_5F69C2.USD","d":[]},{"s":"UNISWAP3ETH:WETHOX","d":[]},{"s":"BINANCE:WBTCETH","d":[]},{"s":"KRAKEN:MXCEUR","d":[]},{"s":"UNISWAP:LIFEWETH_AED171.USD","d":[]},{"s":"UNISWAP3ETH:CSCECWETH","d":[]},{"s":"UNISWAP:ZRXWETH_C6F348.USD","d":[]},{"s":"MEXC:LUNCHUSDT","d":[]},{"s":"POLONIEX:WPEPEUSDT","d":[]},{"s":"GATEIO:RFTUSDT","d":[]},{"s":"COINEX:SLNDUSDT","d":[]},{"s":"MEXC:XDCUSDT","d":[]},{"s":"UNISWAP:LINDAWETH_EBEEDE","d":[]},{"s":"UNISWAP3ETH:MAVSDEX_0F371E.USD","d":[]},{"s":"KRAKEN:MNGOUSD","d":[]},{"s":"UNISWAP3POLYGON:GOVIICHI_713A96.USD","d":[]},{"s":"UNISWAP3ETH:WETHIOTX","d":[]},{"s":"QUICKSWAP:PCTWMATIC_DF9549","d":[]},{"s":"UNISWAP3ETH:MYRIAWETH_BF85F9.USD","d":[]},{"s":"UNISWAP3ETH:RAITWETH","d":[]},{"s":"COINEX:CSPRUSDT","d":[]},{"s":"WHITEBIT:KAVAUSDT","d":[]},{"s":"BITFINEX:WAVESUST","d":[]},{"s":"GATEIO:ROAUSDT","d":[]},{"s":"COINEX:XECUSDC","d":[]},{"s":"UNISWAP:FLOKITAWETH_98ACE7.USD","d":[]},{"s":"MEXC:NWCBTC","d":[]},{"s":"UPBIT:TTKRW","d":[]},{"s":"UNISWAP:MONKEYSWETH_C364EC.USD","d":[]},{"s":"POLONIEX:BOZOUSDT","d":[]},{"s":"UNISWAP:WASSIEWETH_9FAF7A","d":[]},{"s":"POLONIEX:FUNDUSD","d":[]},{"s":"TRADERJOE:WETHEMIM_8EA6DD.USD","d":[]},{"s":"BINANCEUS:BNTUSDT","d":[]},{"s":"UNISWAP3ETH:FLIPWETH","d":[]},{"s":"UNISWAP:CREWETH_09D671","d":[]},{"s":"GATEIO:BRKLUSDT","d":[]},{"s":"MEXC:BSPTUSDT","d":[]},{"s":"KRAKEN:ETCUSD","d":[]},{"s":"KRAKEN:SAMOUSD","d":[]},{"s":"UNISWAP:TOWERREVV_FE7444.USD","d":[]},{"s":"BITGET:MOVEZUSDT","d":[]},{"s":"GATEIO:SCNSOLUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:WLDWETH_2AE3D6.USD","d":[]},{"s":"MEXC:PORKUSDT","d":[]},{"s":"BITGET:TIAUSDT.P","d":[]},{"s":"PHEMEX:AMPUSDT","d":[]},{"s":"COINEX:POKTUSDT","d":[]},{"s":"KRAKEN:HDXEUR","d":[]},{"s":"UNISWAP:ZKSUSDT_D3D8C7","d":[]},{"s":"UNISWAP3ETH:SNTWETH_084B51.USD","d":[]},{"s":"KRAKEN:ACHUSD","d":[]},{"s":"UNISWAP3ETH:ARIA20WETH_64B05A.USD","d":[]},{"s":"TIMEX:QMALLUSDT","d":[]},{"s":"UNISWAP3ETH:SUSHIUSDC","d":[]},{"s":"TRADERJOE:98A487USDC_E784AE","d":[]},{"s":"UNISWAP:TRUMPWETH_E4B858.USD","d":[]},{"s":"BLOFIN:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:LINKWETH_8531E4.USD","d":[]},{"s":"QUICKSWAP:DAIWMATIC_EEF611","d":[]},{"s":"UNISWAP:AIWETH_0B67A5.USD","d":[]},{"s":"COINBASE:COVALUSD","d":[]},{"s":"UNISWAP:FORTHWETH_F6048F.USD","d":[]},{"s":"HITBTC:ALPHABTC","d":[]},{"s":"MEXC:IDYPUSDT","d":[]},{"s":"UNISWAP:LOVEWETH_7FA5C7","d":[]},{"s":"TRADERJOE:EVOWAVAX_B99A92.USD","d":[]},{"s":"COINEX:XEMUSDT","d":[]},{"s":"TRADERJOE:MEOWWAVAX_BBF8E4.USD","d":[]},{"s":"UNISWAP:NOLOWETH_E511EE","d":[]},{"s":"BITRUE:KUNCIUSDT","d":[]},{"s":"UNISWAP3ETH:LUCKYWETH_82B991.USD","d":[]},{"s":"HITBTC:RENBTC","d":[]},{"s":"BITSTAMP:DOGEUSD","d":[]},{"s":"TRADERJOE:AXIALWAVAX_5305A6.USD","d":[]},{"s":"QUICKSWAP:MTHDQUICK_10A80A","d":[]},{"s":"UNISWAP3POLYGON:NSFWWMATIC_32AAFB.USD","d":[]},{"s":"UNISWAP3ETH:CVXCRVWETH","d":[]},{"s":"MEXC:FACTUSDT","d":[]},{"s":"KRAKEN:COTIEUR","d":[]},{"s":"QUICKSWAP:SFLWMATIC_6F9E92","d":[]},{"s":"UNISWAP3ARBITRUM:PNPWETH_BB7E7B.USD","d":[]},{"s":"UNISWAP3ETH:XMONWETH_59B4BB.USD","d":[]},{"s":"UNISWAP:HHGTTGWETH_2063BC","d":[]},{"s":"UNISWAP:FRENSWETH_4A8C88","d":[]},{"s":"GATEIO:TOMSUSDT","d":[]},{"s":"SPOOKYSWAP:WBONDWFTM_619832.USD","d":[]},{"s":"UNISWAP:ELYWETH_EED363","d":[]},{"s":"UNISWAP:CLDWETH_C70254","d":[]},{"s":"DELTA:AVAXUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:FOREUSDT_5980BB.USD","d":[]},{"s":"BITRUE:VETETH","d":[]},{"s":"PIONEX:IOTAUSDT.P","d":[]},{"s":"UNISWAP:ETHEREUMWETH_4BE346.USD","d":[]},{"s":"GATEIO:ZEEUSDT","d":[]},{"s":"GATEIO:88MPHUSDT","d":[]},{"s":"HITBTC:CELOUSDT","d":[]},{"s":"UNISWAP3ETH:USDCLINA","d":[]},{"s":"UNISWAP:SAITOKIWETH_A7AF82.USD","d":[]},{"s":"MEXC:BADGERUSDT.P","d":[]},{"s":"GATEIO:SNXUSDT","d":[]},{"s":"UNISWAP3ETH:CCDAOWETH","d":[]},{"s":"UNISWAP3ETH:ILVUSDC_C0C4A0.USD","d":[]},{"s":"UNISWAP:SHIDOWETH_F55C8C.USD","d":[]},{"s":"UNISWAP3ETH:WTAOUSDC","d":[]},{"s":"HITBTC:SFPUSDT","d":[]},{"s":"UNISWAP3ETH:PETWETH_B3F49C.USD","d":[]},{"s":"BITHUMB:PEPEKRW","d":[]},{"s":"UNISWAP:PEPEWETH_BC3126","d":[]},{"s":"UNISWAP3ETH:USDTXRA","d":[]},{"s":"MEXC:DAGUSDT","d":[]},{"s":"UNISWAP3ETH:DBLNWETH","d":[]},{"s":"COINEX:BADGERUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRST","d":[]},{"s":"MEXC:CDNUSDT","d":[]},{"s":"UNISWAP:TELEPATHYWETH_CC335B.USD","d":[]},{"s":"MEXC:OFUSDT","d":[]},{"s":"UNISWAP:CMWETH_D5C468.USD","d":[]},{"s":"COINEX:IQUSDT","d":[]},{"s":"MEXC:LOOKSUSDT","d":[]},{"s":"UNISWAP:OSAKWETH_05C024","d":[]},{"s":"UNISWAP3ETH:USDTELON","d":[]},{"s":"UNISWAP:DEGAIWETH_967C4D.USD","d":[]},{"s":"UNISWAP:EWTBWETH_DC7D8C","d":[]},{"s":"MEXC:BIDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHVRA","d":[]},{"s":"UNISWAP3ARBITRUM:MMYWETH_694D94.USD","d":[]},{"s":"GATEIO:PYTHUSDT","d":[]},{"s":"BISWAP:EOSWBNB_7683F8","d":[]},{"s":"BINGX:PHBUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDC_CDA53B.USD","d":[]},{"s":"PHEMEX:NMRUSDT","d":[]},{"s":"COINEX:SEAMUSDT","d":[]},{"s":"TRADERJOE:BIFIWAVAX_361221","d":[]},{"s":"UNISWAP:YAKWETH_ACFF0C.USD","d":[]},{"s":"OKX:VELOUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTGHO","d":[]},{"s":"GATEIO:ATEAMUSDT","d":[]},{"s":"TRADERJOE:ZEUSWAVAX_8D304A.USD","d":[]},{"s":"UNISWAP3ETH:USDCCLB","d":[]},{"s":"HITBTC:WTCBTC","d":[]},{"s":"MEXC:UBXUSDT","d":[]},{"s":"BINGX:IOSTUSDT.PS","d":[]},{"s":"GATEIO:CROUSDT.3L","d":[]},{"s":"WHITEBIT:APTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHKIZUNA","d":[]},{"s":"UNISWAP3ETH:FASTUSDC","d":[]},{"s":"UNISWAP:BLOBWETH_520BF6","d":[]},{"s":"HITBTC:APEUSDC","d":[]},{"s":"BYBIT:TAMAUSDT","d":[]},{"s":"UNISWAP:OGSMWETH_7BDB64.USD","d":[]},{"s":"UNISWAP:JACYWETH_EA3FA1.USD","d":[]},{"s":"PHEMEX:TIAUSDT.P","d":[]},{"s":"BITGET:LEASHUSDT","d":[]},{"s":"MEXC:10000COQUSDT.P","d":[]},{"s":"UNISWAP3ETH:PAINTWETH_A4BD20.USD","d":[]},{"s":"BINANCE:ENSTRY","d":[]},{"s":"UNISWAP:8A31A2WETH_46F29A.USD","d":[]},{"s":"WHITEBIT:BTCTRY","d":[]},{"s":"KRAKEN:SNXEUR","d":[]},{"s":"QUICKSWAP:MODAWETH_A19460","d":[]},{"s":"UNISWAP:KOOWETH_9AF0F3.USD","d":[]},{"s":"BINANCE:ONETRY","d":[]},{"s":"BINANCE:DASHBTC","d":[]},{"s":"POLONIEX:BFTUSDD","d":[]},{"s":"BITSTAMP:SHIBUSD","d":[]},{"s":"UNISWAP3ETH:WETHAAA","d":[]},{"s":"BINGX:BTCUSDT.PS","d":[]},{"s":"WHITEBIT:NKNUSDT","d":[]},{"s":"UNISWAP3ETH:SHXWETH","d":[]},{"s":"UNISWAP:ALCZWETH_627850","d":[]},{"s":"GATEIO:TIMECHRONOUSDT","d":[]},{"s":"UNISWAP3ETH:FWIFWETH_AB83AA.USD","d":[]},{"s":"SPOOKYSWAP:SANIKWFTM_AF8DFB.USD","d":[]},{"s":"UNISWAP3ETH:PIXELWETH","d":[]},{"s":"TRADERJOE:AAVAXCWAVAX_290927.USD","d":[]},{"s":"UNISWAP:AIWETH_90D7B2","d":[]},{"s":"UNISWAP3ETH:AIWETH_3C612E.USD","d":[]},{"s":"HITBTC:ARBTC","d":[]},{"s":"POLONIEX:AIMBOTUSDT","d":[]},{"s":"BINANCE:ORDITRY","d":[]},{"s":"BINGX:SUIUSDT.PS","d":[]},{"s":"UNISWAP:SBFWETH_C82A24.USD","d":[]},{"s":"HITBTC:BTCUSDC","d":[]},{"s":"HITBTC:OMGUSDC","d":[]},{"s":"TRADERJOE:WSOHMMIM_AA92C7","d":[]},{"s":"UNISWAP3ETH:AXGTWETH_7B3ED3.USD","d":[]},{"s":"WHITEBIT:RLCUSDT","d":[]},{"s":"HITBTC:JUVUSDT","d":[]},{"s":"XEXCHANGE:EFFORTUSDC","d":[]},{"s":"COINEX:LITUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMMA","d":[]},{"s":"BINANCE:RAYUSDT","d":[]},{"s":"UNISWAP:SAFEREUMWETH_3681A3","d":[]},{"s":"WHITEBIT:ARBUSDT.P","d":[]},{"s":"BISWAP:GALWBNB_B2BDC0","d":[]},{"s":"MEXC:XENUSDT","d":[]},{"s":"SPOOKYSWAP:BRUSHWFTM_4EE115","d":[]},{"s":"KRAKEN:MULTIEUR","d":[]},{"s":"UNISWAP:YEETWETH_457862.USD","d":[]},{"s":"UNISWAP3POLYGON:WBTCWETH_960FC6.USD","d":[]},{"s":"UNISWAP:SUZUMEWETH_8340A8.USD","d":[]},{"s":"BITGET:AFCUSDT","d":[]},{"s":"COINEX:COVALUSDT","d":[]},{"s":"HITBTC:METISUSDT","d":[]},{"s":"UNISWAP:MONKEYSWETH_A67CEE.USD","d":[]},{"s":"UNISWAP:AURORAWETH_629D22.USD","d":[]},{"s":"UPBIT:ONTKRW","d":[]},{"s":"MEXC:TKBUSDT","d":[]},{"s":"ZOOMEX:IOSTUSDT.P","d":[]},{"s":"UNISWAP3ETH:RAREWETH_7685CD.USD","d":[]},{"s":"UNISWAP3ETH:PNDCWETH_C64350.USD","d":[]},{"s":"QUICKSWAP:PPYWMATIC_76F53A.USD","d":[]},{"s":"UNISWAP3ETH:WETHDINO","d":[]},{"s":"BITFINEX:UNIUSD","d":[]},{"s":"PIONEX:DYMUSDT.P","d":[]},{"s":"PANGOLIN:MEMOWAVAX_47DD92.USD","d":[]},{"s":"BITGET:SEAMUSDT","d":[]},{"s":"COINEX:MOBUSDT","d":[]},{"s":"WAGYUSWAP:VLXPADWVLX_E0FCB9","d":[]},{"s":"GATEIO:XLMUSDT.3L","d":[]},{"s":"KRAKEN:FLRUSD","d":[]},{"s":"TRADERJOE:SUREWETHE_DF910F","d":[]},{"s":"BYBIT:SCUSDT","d":[]},{"s":"UNISWAP:AWCWETH_4A3FBA.USD","d":[]},{"s":"GATEIO:CETUSUSDT","d":[]},{"s":"UNISWAP3ETH:BONKWETH_403B1B.USD","d":[]},{"s":"TRADERJOE:FIEFWAVAX_939D6E","d":[]},{"s":"BITGET:CVXUSDT","d":[]},{"s":"COINEX:PNKUSDT","d":[]},{"s":"UNISWAP:GRAPEWETH_06F438.USD","d":[]},{"s":"BITRUE:VETXRP","d":[]},{"s":"UNISWAP:PBRWETH_CB37B0.USD","d":[]},{"s":"COINEX:CELOUSDT","d":[]},{"s":"COINEX:VTHOUSDT","d":[]},{"s":"UNISWAP:MSIWETH_6E48DB","d":[]},{"s":"SPOOKYSWAP:MIMUSDC_3C9AD6","d":[]},{"s":"UNISWAP3ETH:WETHRWS","d":[]},{"s":"UNISWAP:STRAWBERRYELEPHANTWETH_7D8272","d":[]},{"s":"KRAKEN:BTCUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:SDEXWETH_EDF3A0.USD","d":[]},{"s":"UNISWAP:NOWWETH_9730B0.USD","d":[]},{"s":"BINANCE:OMBTC","d":[]},{"s":"BITGET:SFPUSDT","d":[]},{"s":"WOONETWORK:FILUSDT","d":[]},{"s":"QUICKSWAP:IXTWMATIC_8FCB93.USD","d":[]},{"s":"WAGYUSWAP:JUNGLEWAG_8EFCD4","d":[]},{"s":"UNISWAP3ETH:WETHIXS","d":[]},{"s":"UNISWAP3ETH:WETHOCH","d":[]},{"s":"KRAKEN:LCXEUR","d":[]},{"s":"UNISWAP3ETH:WETHSTAR","d":[]},{"s":"UNISWAP:WIKWETH_2BD77C.USD","d":[]},{"s":"BINANCE:ETCFDUSD","d":[]},{"s":"MEXC:AAUSDT","d":[]},{"s":"MEXC:STARSUSDT","d":[]},{"s":"TRADERJOE:JOEWAVAX_454E67.USD","d":[]},{"s":"BITGET:EOSUSDT.P","d":[]},{"s":"BITGET:NAKAUSDT","d":[]},{"s":"COINEX:AGLDUSDT","d":[]},{"s":"QUICKSWAP:CKIEWMATIC_ED1D8D","d":[]},{"s":"UNISWAP3POLYGON:FARUSDT_6B488B.USD","d":[]},{"s":"BINANCE:EDUBTC","d":[]},{"s":"MEXC:HOPRUSDT","d":[]},{"s":"POLONIEX:NFTUSDT","d":[]},{"s":"MEXC:FMXENUSDT","d":[]},{"s":"MEXC:SGTUSDT","d":[]},{"s":"BINANCE:MAVTUSD","d":[]},{"s":"UNISWAP:GATSBYWETH_33D2AE","d":[]},{"s":"UNISWAP3ETH:JEFEWETH","d":[]},{"s":"UNISWAP3ETH:USDCCAH","d":[]},{"s":"QUICKSWAP:OOEQUICK_23E93C.USD","d":[]},{"s":"UNISWAP:HRZNWETH_102CBC","d":[]},{"s":"UNISWAP3ETH:KONGZBABYWETH_613E40.USD","d":[]},{"s":"TRADERJOE:VTXWAVAX_9EF0C1.USD","d":[]},{"s":"MEXC:TCTUSDT","d":[]},{"s":"UNISWAP:OBTCWETH_AF6050","d":[]},{"s":"MEXC:ALVAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICGMX_0B0A06.USD","d":[]},{"s":"BINANCE:BCHUSDT","d":[]},{"s":"BYBIT:SEORUSDT","d":[]},{"s":"UNISWAP:DIVAWETH_1FEEAD","d":[]},{"s":"BITGET:CHZUSDT","d":[]},{"s":"UNISWAP:GIGAWETH_0936FF.USD","d":[]},{"s":"UNISWAP3ETH:WETHMAZZE","d":[]},{"s":"UNISWAP3ARBITRUM:BUMPUSDT_A43F0D.USD","d":[]},{"s":"COINBASE:EGLDUSD","d":[]},{"s":"GATEIO:SDNUSDT","d":[]},{"s":"HITBTC:BEAMXUSD","d":[]},{"s":"COINEX:RLTMUSDT","d":[]},{"s":"PANGOLIN:ETHPNG_53B37B","d":[]},{"s":"UNISWAP3ETH:FLCDAI_2B2A82.USD","d":[]},{"s":"HITBTC:BNBUSD","d":[]},{"s":"MEXC:MINAUSDC","d":[]},{"s":"GATEIO:SPSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:FXSWETH_114B5D.USD","d":[]},{"s":"BITHUMB:ALEXKRW","d":[]},{"s":"UNISWAP3ETH:DVTWETH","d":[]},{"s":"MEXC:UNFIUSDT","d":[]},{"s":"GATEIO:PRISMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPLEB","d":[]},{"s":"BITHUMB:SOLKRW","d":[]},{"s":"UNISWAP3ETH:WETHNSFW","d":[]},{"s":"UNISWAP:YAMAWETH_760A04","d":[]},{"s":"UNISWAP3ETH:USDCMIM","d":[]},{"s":"QUICKSWAP:SXWETH_3FF616.USD","d":[]},{"s":"UNISWAP3ETH:WETHRNG","d":[]},{"s":"ZOOMEX:STGUSDT.P","d":[]},{"s":"BITRUE:BTRETH","d":[]},{"s":"BINANCE:UMABTC","d":[]},{"s":"BITSTAMP:FETEUR","d":[]},{"s":"GATEIO:NGLUSDT","d":[]},{"s":"GATEIO:ALAUSDT","d":[]},{"s":"MEXC:SBCCUSDT","d":[]},{"s":"UNISWAP:SUSHIWETH_CE8486","d":[]},{"s":"UNISWAP3ETH:FRAXUSDT","d":[]},{"s":"HITBTC:CROETH","d":[]},{"s":"HITBTC:UBTUSD","d":[]},{"s":"MEXC:HTTUSDT","d":[]},{"s":"BITFINEX:TSDBTC","d":[]},{"s":"UNISWAP3ETH:OCCWETH","d":[]},{"s":"UNISWAP:TRIBEFEI_9928E4","d":[]},{"s":"COINEX:APEBTC","d":[]},{"s":"UNISWAP:ADSWETH_F5E875","d":[]},{"s":"QUICKSWAP:QUICKWETH_60E707.USD","d":[]},{"s":"UNISWAP:FOMOWETH_130072.USD","d":[]},{"s":"COINEX:TLOSUSDT","d":[]},{"s":"MEXC:MINAUSDT","d":[]},{"s":"COINEX:APEUSDT","d":[]},{"s":"HITBTC:AMBETH","d":[]},{"s":"UNISWAP3ETH:LOONGWETH","d":[]},{"s":"GATEIO:OPNUSDT","d":[]},{"s":"UNISWAP:LOONGWETH_61FC71.USD","d":[]},{"s":"UNISWAP3ETH:WETHNAVI","d":[]},{"s":"UNISWAP3ETH:ASXWETH_E8DF8C.USD","d":[]},{"s":"BITGET:ETEUSDT","d":[]},{"s":"BLOFIN:XAIUSDT.P","d":[]},{"s":"UNISWAP:LCSWETH_0DC6CB","d":[]},{"s":"PIONEX:ANKRUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCTONCOIN","d":[]},{"s":"UNISWAP3ETH:WETHAUDIO","d":[]},{"s":"PHEMEX:ARKUSDT.P","d":[]},{"s":"COINEX:RATSUSDT","d":[]},{"s":"POLONIEX:AUDIOUSDT","d":[]},{"s":"UNISWAP3ETH:KOMPETEWETH","d":[]},{"s":"BITFINEX:STGUSD","d":[]},{"s":"GATEIO:MTSUSDT","d":[]},{"s":"UNISWAP3ETH:AVAWETH","d":[]},{"s":"UNISWAP3ETH:MEMAGXWETH","d":[]},{"s":"MEXC:CRTUSDT","d":[]},{"s":"KRAKEN:BNBUSD.PM","d":[]},{"s":"OKX:DMAILUSDT.P","d":[]},{"s":"BITRUE:TRBUSDT","d":[]},{"s":"POLONIEX:GODSUSDT","d":[]},{"s":"UNISWAP3ETH:PFPASIAWETH_646946.USD","d":[]},{"s":"MEXC:SNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:PEPESWETH_DF1938.USD","d":[]},{"s":"UNISWAP:CARTELWETH_A7F9F9.USD","d":[]},{"s":"TRADERJOE:FTOMBWAVAX_2C2123","d":[]},{"s":"QUICKSWAP:WBTCWETH_DC9232.USD","d":[]},{"s":"TRADERJOE:DSLAWAVAX_3108D8.USD","d":[]},{"s":"BINANCEUS:SOLUSDT","d":[]},{"s":"TRADERJOE:LOONGWAVAX_E5C12C","d":[]},{"s":"PHEMEX:LSKUSDT.P","d":[]},{"s":"POLONIEX:STORJUSDT","d":[]},{"s":"ZOOMEX:ALICEUSDT.P","d":[]},{"s":"UPBIT:ARDRKRW","d":[]},{"s":"UNISWAP:RINIAWETH_1B4255","d":[]},{"s":"BINGX:EOSUSDT.P","d":[]},{"s":"TRADERJOE:THORWAVAX_95189F.USD","d":[]},{"s":"BITGET:ACHUSDT.P","d":[]},{"s":"COINEX:XHVUSDT","d":[]},{"s":"UNISWAP3ETH:WRLDWETH_EB5C52.USD","d":[]},{"s":"BYBIT:AVAXUSDC","d":[]},{"s":"UNISWAP3ETH:WETHGMM","d":[]},{"s":"UNISWAP:SWAPPWETH_17EC16","d":[]},{"s":"MEXC:FNFUSDT","d":[]},{"s":"BISWAP:C98WBNB_38FD42.USD","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDC_052C9B.USD","d":[]},{"s":"UNISWAP:HOTDOGWETH_40A7FC","d":[]},{"s":"UNISWAP:FTTCWETH_7F44F5.USD","d":[]},{"s":"HITBTC:BORGETH","d":[]},{"s":"UNISWAP:X7104WETH_7D0D7C.USD","d":[]},{"s":"GATEIO:WOOPUSDT","d":[]},{"s":"HITBTC:POLSUSDT","d":[]},{"s":"UNISWAP3ETH:WETH404WHEELS","d":[]},{"s":"UNISWAP:KINGDOMWETH_7AC466","d":[]},{"s":"BITRUE:AUDIOUSDT","d":[]},{"s":"UNISWAP3ETH:POWWETH","d":[]},{"s":"BLOFIN:COVALUSDT.P","d":[]},{"s":"MEXC:NPTUSDT","d":[]},{"s":"UNISWAP3ETH:MAPWETH","d":[]},{"s":"UNISWAP3POLYGON:WBTCUSDC_4F78A9.USD","d":[]},{"s":"BINANCE:MBOXBTC","d":[]},{"s":"BITRUE:DASHUSDT","d":[]},{"s":"UNISWAP:946969WETH_C6562F.USD","d":[]},{"s":"UNISWAP3ETH:ARKMWETH","d":[]},{"s":"UNISWAP3ARBITRUM:EQUWETH_C0CF0F.USD","d":[]},{"s":"BLOFIN:AUDIOUSDT.P","d":[]},{"s":"HITBTC:CRPTUSDT","d":[]},{"s":"UNISWAP:LOONGWETH_61FC71","d":[]},{"s":"GATEIO:FANUSDT","d":[]},{"s":"UNISWAP3ETH:BONZAIWETH","d":[]},{"s":"PHEMEX:1000XECUSDT.P","d":[]},{"s":"UNISWAP:GOBIWETH_02FA6B.USD","d":[]},{"s":"COINBASE:MSOLUSD","d":[]},{"s":"UNISWAP:MYTHWETH_F7BB3C.USD","d":[]},{"s":"BISWAP:GQBUSD_B4C885","d":[]},{"s":"MEXC:BABYELONUSDT","d":[]},{"s":"BLOFIN:ATAUSDT.P","d":[]},{"s":"UNISWAP:PEPECOINWETH_DDD237.USD","d":[]},{"s":"UNISWAP3ETH:WETHXCHF","d":[]},{"s":"COINEX:ATOMBTC","d":[]},{"s":"BITKUB:SNTTHB","d":[]},{"s":"QUICKSWAP:GHSTFUD_FEC232","d":[]},{"s":"BYBIT:MTLUSDT.P","d":[]},{"s":"BINGX:JTOUSDT.PS","d":[]},{"s":"UNISWAP3ETH:NESSYWETH_71B6D4.USD","d":[]},{"s":"MEXC:SEIYANUSDT","d":[]},{"s":"POLONIEX:LAMBOSOLUSDT","d":[]},{"s":"BYBIT:EOSUSDC","d":[]},{"s":"TRADERJOE:MODWAVAX_8BE568.USD","d":[]},{"s":"UNISWAP3ETH:USDCSLR","d":[]},{"s":"UNISWAP:DEGENWETH_FAAD10","d":[]},{"s":"MEXC:HAIUSDT","d":[]},{"s":"UNISWAP3ETH:SOONWETH","d":[]},{"s":"MEXC:RIWAUSDT","d":[]},{"s":"MEXC:ONTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPUFETH","d":[]},{"s":"QUICKSWAP:GMWMATIC_F98458.USD","d":[]},{"s":"BINANCE:VOXELBTC","d":[]},{"s":"UNISWAP:IBITWETH_A51D59.USD","d":[]},{"s":"BITKUB:ALPHATHB","d":[]},{"s":"COINEX:XVGUSDC","d":[]},{"s":"BYBIT:AKIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRPK","d":[]},{"s":"UNISWAP3ETH:WETHSHIBAFORK","d":[]},{"s":"UNISWAP3ETH:PRISMAUSDT","d":[]},{"s":"SPOOKYSWAP:COUSDUSDC_0D5F08","d":[]},{"s":"UNISWAP:SOTUWETH_9E0F46.USD","d":[]},{"s":"TRADERJOE:DONWAVAX_5D4677","d":[]},{"s":"BYBIT:BLURUSDT","d":[]},{"s":"UNISWAP:HERAUSDC_52E2E6","d":[]},{"s":"UNISWAP:BURNWETH_F464DC","d":[]},{"s":"UNISWAP3ETH:WETHXIN","d":[]},{"s":"UNISWAP3ETH:WAXPUSDT_E61CED.USD","d":[]},{"s":"UNISWAP:FLOPWETH_9BB63A.USD","d":[]},{"s":"GATEIO:KZENUSDT","d":[]},{"s":"UNISWAP:SEXYWETH_CD0FD2.USD","d":[]},{"s":"BINANCE:AVAXFDUSD","d":[]},{"s":"TRADERJOE:USDTEUSDCE_2E0253","d":[]},{"s":"KRAKEN:FLOWUSD.PM","d":[]},{"s":"MEXC:NEOUSDT","d":[]},{"s":"BITFINEX:LIFIIIUST","d":[]},{"s":"UNISWAP:NATIWETH_33A93B","d":[]},{"s":"BITGET:MOONEYUSDT","d":[]},{"s":"UNISWAP3ETH:BAOWETH","d":[]},{"s":"UNISWAP:MUSKWETH_AB31DC.USD","d":[]},{"s":"UNISWAP:SHUEYWETH_8233F4","d":[]},{"s":"GATEIO:HAMUSDT","d":[]},{"s":"UNISWAP3ETH:OUSDUSDT_129360.USD","d":[]},{"s":"QUICKSWAP:PETWMATIC_3D19F9","d":[]},{"s":"UNISWAP3ETH:AAGWETH","d":[]},{"s":"MEXC:ALIUSDT","d":[]},{"s":"MEXC:AVALOXUSDT","d":[]},{"s":"UNISWAP:TOKENWETH_34F434","d":[]},{"s":"BITRUE:GRTXRP","d":[]},{"s":"QUICKSWAP:STSWMATIC_5FFC61.USD","d":[]},{"s":"MEXC:LOVELYUSDT","d":[]},{"s":"BITFINEX:VRAUST","d":[]},{"s":"UNISWAP:DACTWETH_256B4F","d":[]},{"s":"OKX:YGGUSDT.P","d":[]},{"s":"BITFINEX:FILUST","d":[]},{"s":"HITBTC:NEODAI","d":[]},{"s":"BINGX:PIXELUSDT.P","d":[]},{"s":"COINEX:LRCBTC","d":[]},{"s":"UNISWAP3ETH:GENIUSDC","d":[]},{"s":"BITFINEX:UDCUST","d":[]},{"s":"UNISWAP:OPTIGWETH_2A4269","d":[]},{"s":"UNISWAP3ETH:AGIXWETH_99132B.USD","d":[]},{"s":"QUICKSWAP:NEXOWETH_10062E.USD","d":[]},{"s":"BITMEX:XRPUSD.P","d":[]},{"s":"POLONIEX:MANABTC","d":[]},{"s":"BINANCE:BNXBTC","d":[]},{"s":"WHITEBIT:STGUSDT","d":[]},{"s":"BITFINEX:THETABTC","d":[]},{"s":"UNISWAP3ETH:WETHPIKA","d":[]},{"s":"UNISWAP:XWETH_A56B47","d":[]},{"s":"UNISWAP:MTLXFET_6C52B8","d":[]},{"s":"POLONIEX:MNDEUSDT","d":[]},{"s":"MEXC:TOMSUSDT","d":[]},{"s":"BLOFIN:WIFUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCCAD","d":[]},{"s":"UNISWAP3ETH:WETHREEF","d":[]},{"s":"TRADERJOE:ETHMWAVAX_C72EB6","d":[]},{"s":"BITHUMB:XTZKRW","d":[]},{"s":"SPOOKYSWAP:SUMMITWFTM_06300C.USD","d":[]},{"s":"BITRUE:GMTXRP","d":[]},{"s":"BINANCE:XRPBNB","d":[]},{"s":"KRAKEN:INJUSD.PM","d":[]},{"s":"BITSTAMP:GRTEUR","d":[]},{"s":"COINBASE:PYRUSD","d":[]},{"s":"BITGET:ORDIUSDT.P","d":[]},{"s":"GATEIO:BONKUSDT","d":[]},{"s":"UNISWAP:NODE0XWETH_6038F9","d":[]},{"s":"MEXC:GTCUSDT.P","d":[]},{"s":"BITRUE:BMAXUSDT","d":[]},{"s":"EXMO:BTCUSD","d":[]},{"s":"POLONIEX:ROUPUSDT","d":[]},{"s":"UNISWAP:ZKLABWETH_99797F.USD","d":[]},{"s":"MEXC:KTKUSDT","d":[]},{"s":"GEMINI:DOTUSD","d":[]},{"s":"UNISWAP:ELMOWETH_3AD26E.USD","d":[]},{"s":"HITBTC:DOGEUSDT","d":[]},{"s":"PHEMEX:XVGUSDT.P","d":[]},{"s":"WOONETWORK:MAGICUSDT","d":[]},{"s":"QUICKSWAP:JUGNIWMATIC_330C4E.USD","d":[]},{"s":"UNISWAP3ETH:WBNBWETH_12D92D.USD","d":[]},{"s":"UNISWAP3ETH:PEOPLEWETH","d":[]},{"s":"MEXC:ROCKETUSDT","d":[]},{"s":"UNISWAP3ETH:TRUUSDC_8B65F7.USD","d":[]},{"s":"UNISWAP:SYLOWETH_2A6639.USD","d":[]},{"s":"GATEIO:LBAUSDT","d":[]},{"s":"MEXC:MMVGUSDT","d":[]},{"s":"UNISWAP:SHIBUSDT_773DD3","d":[]},{"s":"BINANCE:BNBUSDM2024","d":[]},{"s":"POLONIEX:APTUSDD","d":[]},{"s":"COINEX:CHZBTC","d":[]},{"s":"PIONEX:DARUSDT.P","d":[]},{"s":"GATEIO:VRXUSDT","d":[]},{"s":"UNISWAP3ETH:WAMPLWETH","d":[]},{"s":"COINEX:ATLASUSDT","d":[]},{"s":"MEXC:MFETUSDT","d":[]},{"s":"UNISWAP3ETH:WETHZCN","d":[]},{"s":"UNISWAP3ETH:GMEEUSDC_0A6FC7.USD","d":[]},{"s":"BINANCE:AVAXTRY","d":[]},{"s":"UNISWAP:APXWETH_2DC905","d":[]},{"s":"ZOOMEX:10000SATSUSDT.P","d":[]},{"s":"UNISWAP3ETH:RINGWETH","d":[]},{"s":"UNISWAP3ETH:CARDWETH_32ECD4.USD","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCUSDC_A62AD7.USD","d":[]},{"s":"MEXC:RWXUSDT","d":[]},{"s":"HITBTC:DARUSDT","d":[]},{"s":"GATEIO:ALPACAUSDT","d":[]},{"s":"UNISWAP:PTAOPOHM_60240B.USD","d":[]},{"s":"UNISWAP3ETH:WETHETHX","d":[]},{"s":"GATEIO:WSIENNAUSDT","d":[]},{"s":"UNISWAP:VITALIKETHWETH_115DD2.USD","d":[]},{"s":"MEXC:ELMOUSDT","d":[]},{"s":"COINBASE:C98USD","d":[]},{"s":"UNISWAP:GOODWETH_9D3054","d":[]},{"s":"WHITEBIT:JUPUSDT.P","d":[]},{"s":"MEXC:DORAUSDT","d":[]},{"s":"UNISWAP:X7DAOWETH_75311E","d":[]},{"s":"GATEIO:LRCUSDT","d":[]},{"s":"TRADERJOE:BAWLSWAVAX_45BC68","d":[]},{"s":"UNISWAP3ETH:WETHSWOB","d":[]},{"s":"HITBTC:PMAUSDT","d":[]},{"s":"PANGOLIN:SHIBXWAVAX_82AB53.USD","d":[]},{"s":"UNISWAP3POLYGON:CXOWMATIC_FA250F.USD","d":[]},{"s":"HITBTC:HYDRAUSDT","d":[]},{"s":"UNISWAP3ETH:WLDWETH","d":[]},{"s":"GATEIO:CORALUSDT","d":[]},{"s":"UNISWAP:GROK15WETH_8A4008.USD","d":[]},{"s":"UNISWAP3ETH:WETHHOPR","d":[]},{"s":"PHEMEX:USDTTRY","d":[]},{"s":"UNISWAP3POLYGON:ALIWMATIC_960FDF.USD","d":[]},{"s":"PANGOLIN:WETWAVAX_B714D1","d":[]},{"s":"MEXC:PUMPITUSDT","d":[]},{"s":"UNISWAP:TUZKIWETH_6155C8.USD","d":[]},{"s":"MEXC:OMNUSDT","d":[]},{"s":"UNISWAP3POLYGON:RNDRWETH_95D248.USD","d":[]},{"s":"PANGOLIN:SPELLWAVAX_D4CBC9","d":[]},{"s":"COINEX:COLLABUSDT","d":[]},{"s":"BYBIT:USDDUSDT","d":[]},{"s":"UNISWAP3ETH:INSPWETH","d":[]},{"s":"GATEIO:UNIUSDT.5S","d":[]},{"s":"KRAKEN:USTUSDT","d":[]},{"s":"GATEIO:LRNUSDT","d":[]},{"s":"MEXC:SEATUSDT","d":[]},{"s":"OKX:APTUSDT.P","d":[]},{"s":"UNISWAP:MARVINWETH_5B7DAA","d":[]},{"s":"UNISWAP:BARKWETH_BBD8EC.USD","d":[]},{"s":"POLONIEX:WIFIUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:USDCUSDT_BE3AD6.USD","d":[]},{"s":"UNISWAP3ETH:SNXSUSD_A3CCAF.USD","d":[]},{"s":"UNISWAP3ETH:LINAUSDC_7EFD26.USD","d":[]},{"s":"MEXC:3KMUSDT","d":[]},{"s":"BLOFIN:CKBUSDT.P","d":[]},{"s":"COINEX:POLYXUSDT","d":[]},{"s":"HONEYSWAPPOLYGON:MABBCUSDC","d":[]},{"s":"BINANCE:ADAUSDH2024","d":[]},{"s":"SPOOKYSWAP:YOSHIWFTM_6BB685","d":[]},{"s":"HITBTC:MDTBTC","d":[]},{"s":"BINANCE:RNDRUSDT","d":[]},{"s":"BITFINEX:OPXBTC","d":[]},{"s":"BITKUB:MANATHB","d":[]},{"s":"UNISWAP3ETH:SDAIWETH_422A29.USD","d":[]},{"s":"ZOOMEX:IDEXUSDT.P","d":[]},{"s":"TRADERJOE:NODLWAVAX_3F9BA2.USD","d":[]},{"s":"UNISWAP:BIBWETH_92DF9C.USD","d":[]},{"s":"TRADERJOE:FOXWAVAX_3C10C5.USD","d":[]},{"s":"UNISWAP3ETH:AUCTIONWETH_2ECD02.USD","d":[]},{"s":"BINANCE:ETCUSDT","d":[]},{"s":"MEXC:GNOMEUSDT","d":[]},{"s":"BINANCE:MANTAFDUSD","d":[]},{"s":"BITGET:GFALUSDT","d":[]},{"s":"UNISWAP:EAGWETH_7F0099","d":[]},{"s":"WHITEBIT:FLOKIUSDT","d":[]},{"s":"UNISWAP:COTIWETH_A2B04F.USD","d":[]},{"s":"MEXC:CLUBUSDT","d":[]},{"s":"UNISWAP3ETH:USDTPOL","d":[]},{"s":"HITBTC:LEVLUSD","d":[]},{"s":"COINEX:CFXBTC","d":[]},{"s":"MEXC:MXBTC","d":[]},{"s":"UNISWAP3ETH:WETHSEXY","d":[]},{"s":"UNISWAP:DOG1WETH_D8963D.USD","d":[]},{"s":"BINANCE:ENSBTC","d":[]},{"s":"GATEIO:BLDUSDT","d":[]},{"s":"MEXC:MCHCUSDT","d":[]},{"s":"UNISWAP:CHIKUNWETH_D81833","d":[]},{"s":"UNISWAP:DANWETH_F6ADC7.USD","d":[]},{"s":"BINANCE:XVGTRY","d":[]},{"s":"UNISWAP:HLNKWETH_531C8A","d":[]},{"s":"UNISWAP3ETH:SLUGWETH_47D644.USD","d":[]},{"s":"BINANCE:BICOUSDT","d":[]},{"s":"UNISWAP:ETFWETH_3ADF72","d":[]},{"s":"UNISWAP:OPSECWETH_515D45.USD","d":[]},{"s":"BLOFIN:SUPERUSDT.P","d":[]},{"s":"COINBASE:MATICUSDT","d":[]},{"s":"QUICKSWAP:YENJPYC_9CC4F1","d":[]},{"s":"MEXC:MYROUSDT.P","d":[]},{"s":"UNISWAP:SEXYWETH_CD0FD2","d":[]},{"s":"SPOOKYSWAP:JOEWFTM_D51873","d":[]},{"s":"QUICKSWAP:QUICKWETH_1BD06B.USD","d":[]},{"s":"UNISWAP3POLYGON:POPWETH_16905A.USD","d":[]},{"s":"UNISWAP:WSMWETH_ACFC50.USD","d":[]},{"s":"HITBTC:NGCETH","d":[]},{"s":"BINANCE:STRKFDUSD","d":[]},{"s":"BLOFIN:XTZUSDT.P","d":[]},{"s":"MEXC:HALLOWEENUSDT","d":[]},{"s":"UNISWAP3ETH:VOLTAUSDT","d":[]},{"s":"MEXC:FINCUSDT","d":[]},{"s":"UNISWAP:MONGWETH_7054B0.USD","d":[]},{"s":"UNISWAP3ETH:CDTWETH","d":[]},{"s":"UNISWAP:DEJITARUSHIRUDOHOSHI_459AB5.USD","d":[]},{"s":"GATEIO:ZIXUSDT","d":[]},{"s":"UNISWAP:TKXWETH_DAB143","d":[]},{"s":"UNISWAP3ETH:UEFNWETH","d":[]},{"s":"BITHUMB:BTCKRW","d":[]},{"s":"BITHUMB:USDTKRW","d":[]},{"s":"OKX:ARBUSDT.P","d":[]},{"s":"UNISWAP3ETH:INSPUSDT_10358D.USD","d":[]},{"s":"BTSE:BANDUSD.P","d":[]},{"s":"MEXC:CVXUSDT.P","d":[]},{"s":"COINBASE:JTOUSD","d":[]},{"s":"GATEIO:SUIUSDT","d":[]},{"s":"MEXC:MINTIUSDT","d":[]},{"s":"SPOOKYSWAP:OGTOMBWFTM_35A283","d":[]},{"s":"KRAKEN:MANAUSD","d":[]},{"s":"GATEIO:APTUSDT.3S","d":[]},{"s":"QUICKSWAP:HIDWETH_0D3EAD.USD","d":[]},{"s":"UNISWAP3ETH:WETHINSP","d":[]},{"s":"UNISWAP3ETH:WETHMUSKERS","d":[]},{"s":"UNISWAP3ETH:DVFUSDT_7736B5.USD","d":[]},{"s":"UNISWAP3ETH:CGGWETH","d":[]},{"s":"UNISWAP:ECHOESWETH_A392A2.USD","d":[]},{"s":"BTSE:MANAUSD.P","d":[]},{"s":"UNISWAP:WHALEWETH_4FDA00.USD","d":[]},{"s":"UNISWAP:APEWETH_B011EE","d":[]},{"s":"MEXC:FOREUSDT","d":[]},{"s":"PANGOLIN:ARTWAVAX_B0009F.USD","d":[]},{"s":"POLONIEX:FUNDBTC","d":[]},{"s":"BITRUE:BICOUSDT","d":[]},{"s":"UNISWAP:TEARWETH_A29191.USD","d":[]},{"s":"GATEIO:GROKCEOUSDT","d":[]},{"s":"POLONIEX:RENUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDERP","d":[]},{"s":"UNISWAP3ETH:OOKSWETH","d":[]},{"s":"MEXC:GRIMACEUSDT","d":[]},{"s":"GATEIO:PIXELVERSEUSDT","d":[]},{"s":"KRAKEN:SPELLUSD","d":[]},{"s":"GATEIO:ACHUSDT.3S","d":[]},{"s":"UNISWAP3ETH:DUSTWETH","d":[]},{"s":"UNISWAP:ZONEWETH_953326.USD","d":[]},{"s":"BINANCE:C98USDT","d":[]},{"s":"POLONIEX:LRCUSDT","d":[]},{"s":"PHEMEX:1000BONKUSDT","d":[]},{"s":"MEXC:CVTUSDT","d":[]},{"s":"QUICKSWAP:KASTAUSDC_4DEB2D","d":[]},{"s":"UNISWAP:PPWETH_BDDFFC.USD","d":[]},{"s":"BITGET:ALPHAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHHAY","d":[]},{"s":"BISWAP:AVAXWBNB_2F3899.USD","d":[]},{"s":"HITBTC:XVGUSD","d":[]},{"s":"BINANCE:NFPTRY","d":[]},{"s":"QUICKSWAP:MASQWETH_4A853D","d":[]},{"s":"MEXC:SNXUSDT","d":[]},{"s":"COINEX:ACXUSDT","d":[]},{"s":"QUICKSWAP:WISEWETH_DF8139","d":[]},{"s":"UNISWAP3ETH:NOWWETH","d":[]},{"s":"UNISWAP:TIWETH_4EF72B","d":[]},{"s":"BYBIT:THNUSDT","d":[]},{"s":"POLONIEX:KASUSDT","d":[]},{"s":"UNISWAP:WEBAIWETH_2AD5BD","d":[]},{"s":"UNISWAP3ETH:WETHLLM","d":[]},{"s":"UNISWAP3ETH:OCEANWETH_283E2E.USD","d":[]},{"s":"QUICKSWAP:CFOUSDT_C41B82","d":[]},{"s":"POLONIEX:DEGOUSDT","d":[]},{"s":"HITBTC:GASETH","d":[]},{"s":"BINANCEUS:PORTOUSDT","d":[]},{"s":"UNISWAP:FADERWETH_1893F6","d":[]},{"s":"UNISWAP3ETH:USDTARTM","d":[]},{"s":"POLONIEX:CRVUSDT","d":[]},{"s":"GATEIO:PICAUSDT","d":[]},{"s":"COINBASE:ABTUSD","d":[]},{"s":"WHITEBIT:MASKUSDT","d":[]},{"s":"VERSEETH:WETHUSDT_362DDD.USD","d":[]},{"s":"UNISWAP:CRAMERWETH_397973.USD","d":[]},{"s":"UNISWAP3POLYGON:RETHWETH_07B039.USD","d":[]},{"s":"BINANCE:PDAUSDT","d":[]},{"s":"QUICKSWAP:PRYZWMATIC_348E52.USD","d":[]},{"s":"BINANCE:IDTRY","d":[]},{"s":"UNISWAP:TCARDWETH_E9594A","d":[]},{"s":"KRAKEN:RNDRUSD","d":[]},{"s":"UNISWAP3ETH:WETHCOVAL","d":[]},{"s":"COINEX:LONUSDT","d":[]},{"s":"POLONIEX:MONGUSDT","d":[]},{"s":"TRADERJOE:PAVAXWAVAX_1179E6.USD","d":[]},{"s":"UNISWAP:DGENWETH_B918C7.USD","d":[]},{"s":"UNISWAP3ETH:WETHWIFS","d":[]},{"s":"MEXC:UNIETH","d":[]},{"s":"BISWAP:BATWBNB_A099F0.USD","d":[]},{"s":"KRAKEN:KP3RUSD","d":[]},{"s":"UNISWAP3ETH:NCRUSDC","d":[]},{"s":"HITBTC:USDTDAI","d":[]},{"s":"BITGET:ZILUSDT","d":[]},{"s":"BITGET:XAIUSDT.P","d":[]},{"s":"UNISWAP:DAWGWETH_33D19C","d":[]},{"s":"SPOOKYSWAP:STGUSDC_AA5255","d":[]},{"s":"UNISWAP:SHRWETH_D04511.USD","d":[]},{"s":"SPOOKYSWAP:ANYWFTM_5C021D","d":[]},{"s":"GATEIO:BNBUSDT.3L","d":[]},{"s":"OKX:UNIUSDT.P","d":[]},{"s":"COINEX:ELFUSDT","d":[]},{"s":"BINANCE:PEPEFDUSD","d":[]},{"s":"UNISWAP3ETH:CHADWETH_AAEABF.USD","d":[]},{"s":"UNISWAP3ETH:DOGECOINWETH_35D1D1.USD","d":[]},{"s":"BISWAP:TENFIWBNB_F9FADB.USD","d":[]},{"s":"GEMINI:GUSDSGD","d":[]},{"s":"BITGET:DIMOUSDT","d":[]},{"s":"MEXC:BABYPEPEUSDT","d":[]},{"s":"UNISWAP:DOGE1WETH_8EED19","d":[]},{"s":"UNISWAP3ETH:MATICUSDT_68F73E.USD","d":[]},{"s":"COINEX:SEIUSDT","d":[]},{"s":"BINANCEUS:BTCUSDC","d":[]},{"s":"HITBTC:LNCUSD","d":[]},{"s":"UNISWAP3ETH:DINOWETH_19C10E.USD","d":[]},{"s":"UNISWAP:SONAWETH_147BEA","d":[]},{"s":"MEXC:TANKUSDT","d":[]},{"s":"UNISWAP:MAXXWETH_B61870","d":[]},{"s":"BYBIT:ARKUSDT.P","d":[]},{"s":"UNISWAP:ROCKWETH_5A36F2","d":[]},{"s":"UNISWAP:AZEEWETH_A927D0.USD","d":[]},{"s":"BITSTAMP:BTCUSDC","d":[]},{"s":"GATEIO:SMILEUSDT","d":[]},{"s":"UNISWAP3ETH:ELFIDAI_BDE484.USD","d":[]},{"s":"UNISWAP:LUNAWETH_60A390","d":[]},{"s":"UNISWAP3ETH:USDCSPC","d":[]},{"s":"KRAKEN:MANAUSD.PM","d":[]},{"s":"BITGET:LRCUSDT.P","d":[]},{"s":"UNISWAP:GDAGWETH_9C62A8","d":[]},{"s":"COINEX:MANTAUSDT","d":[]},{"s":"COINEX:DFIUSDT","d":[]},{"s":"UNISWAP3ETH:TURBOWETH","d":[]},{"s":"UNISWAP3ETH:CBXWETH","d":[]},{"s":"UNISWAP:JNGLWETH_CD02A8.USD","d":[]},{"s":"UNISWAP:CZWETH_A18D5E","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDC_67E708.USD","d":[]},{"s":"UNISWAP:DTOUQC_4EA960","d":[]},{"s":"HITBTC:USDTTRY","d":[]},{"s":"BITGET:LPTUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:NFDWETH_C12825.USD","d":[]},{"s":"UNISWAP3ETH:AGEURUSDC_735A26.USD","d":[]},{"s":"BITFINEX:NEOBTC","d":[]},{"s":"BITFINEX:AVAXUST.P","d":[]},{"s":"UNISWAP3ETH:USDTGBYTE","d":[]},{"s":"UNISWAP:PYREALDAI_7E89AB","d":[]},{"s":"UNISWAP3ETH:WETHJAY","d":[]},{"s":"BYBIT:SALDUSDT","d":[]},{"s":"POLONIEX:QUICKUSDT","d":[]},{"s":"TRADERJOE:WETWAVAX_EE2500.USD","d":[]},{"s":"COINBASE:ANKRGBP","d":[]},{"s":"SPOOKYSWAP:SINGUSDC_49710D","d":[]},{"s":"UNISWAP:ZYPTOWETH_1ECB46","d":[]},{"s":"VERSEETH:WETHUSDC_6E1FBE.USD","d":[]},{"s":"COINEX:NEOUSDT","d":[]},{"s":"GATEIO:WBTCUSDT","d":[]},{"s":"SPOOKYSWAP:FURYFUSDT_5B8CB8","d":[]},{"s":"UNISWAP3ETH:DNNERWETH","d":[]},{"s":"UNISWAP:ARCHWETH_48A918.USD","d":[]},{"s":"UNISWAP:TCATIWETH_0FD277.USD","d":[]},{"s":"BINANCE:CYBERBTC","d":[]},{"s":"COINBASE:RADUSD","d":[]},{"s":"MEXC:STAIKAUSDT","d":[]},{"s":"UNISWAP:YODAWETH_345F09.USD","d":[]},{"s":"BTSE:STORJUSD.P","d":[]},{"s":"MEXC:FITFIUSDC","d":[]},{"s":"BLOFIN:TRBUSDT.P","d":[]},{"s":"UNISWAP3ETH:MACKEUSDC","d":[]},{"s":"WHITEBIT:ETCUSDT.P","d":[]},{"s":"UNISWAP:SOVWETH_F126AC.USD","d":[]},{"s":"UNISWAP3ETH:KXAWETH","d":[]},{"s":"UNISWAP:FTNWETH_53E4EC","d":[]},{"s":"WOONETWORK:FEDNOCUTUSDC","d":[]},{"s":"UNISWAP:SBETWETH_8C56B4","d":[]},{"s":"BITMEX:DOGEUSD.P","d":[]},{"s":"HITBTC:HELIOSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTLOS","d":[]},{"s":"UNISWAP3ETH:WASWETH_E4EDB5.USD","d":[]},{"s":"UNISWAP:FEYWETH_B6E544.USD","d":[]},{"s":"GATEIO:LKRUSDT","d":[]},{"s":"UNISWAP3ETH:QKNTLWETH_04ECD3.USD","d":[]},{"s":"BITFINEX:DSHUSD","d":[]},{"s":"UNISWAP:WASSIEWETH_9FAF7A.USD","d":[]},{"s":"UNISWAP3ETH:WETHAGLD","d":[]},{"s":"UNISWAP3POLYGON:DEODUSDT_785CAE.USD","d":[]},{"s":"MEXC:AAAUSDT","d":[]},{"s":"GATEIO:ZTXUSDT","d":[]},{"s":"QUICKSWAP:PYRWMATIC_CC55B4.USD","d":[]},{"s":"BINANCEUS:COMPUSDT","d":[]},{"s":"GATEIO:XYOUSDT","d":[]},{"s":"UNISWAP:SHINWETH_1AF68E","d":[]},{"s":"HITBTC:INJBTC","d":[]},{"s":"GATEIO:AMSUSDT","d":[]},{"s":"UNISWAP:KEYSWETH_5BACB4.USD","d":[]},{"s":"BINGX:TONCOINUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSTRK","d":[]},{"s":"PHEMEX:BLURUSDT","d":[]},{"s":"UNISWAP3ETH:SUSHIWETH_73A6A7.USD","d":[]},{"s":"GATEIO:UNIUSDT.3L","d":[]},{"s":"GATEIO:FILUSDT.3L","d":[]},{"s":"UNISWAP:MATTERWETH_EC7A1A.USD","d":[]},{"s":"COINEX:RXDUSDT","d":[]},{"s":"BLOFIN:AGIUSDT.P","d":[]},{"s":"BLOFIN:MAVUSDT.P","d":[]},{"s":"BITFINEX:XAUTUST.P","d":[]},{"s":"BINANCE:FORTHUSDT","d":[]},{"s":"UNISWAP3POLYGON:BUSDUSDC_2C9706.USD","d":[]},{"s":"COINEX:DIONEUSDT","d":[]},{"s":"UNISWAP3ETH:ESFLC_92B5D1.USD","d":[]},{"s":"BYBIT:SHIBUSDC","d":[]},{"s":"PHEMEX:METISUSDT.P","d":[]},{"s":"BINANCE:QUICKBTC","d":[]},{"s":"BYBIT:DFIUSDT","d":[]},{"s":"MEXC:BCHBTC","d":[]},{"s":"GATEIO:GALAUSDT.3S","d":[]},{"s":"UNISWAP:BRUCEWETH_A89FFE","d":[]},{"s":"UNISWAP:NORMIEWETH_1DB24C","d":[]},{"s":"UNISWAP:XAIWETH_5F97E7.USD","d":[]},{"s":"WAGYUSWAP:VICIWAG_F99BAD.USD","d":[]},{"s":"HITBTC:CHATUSD","d":[]},{"s":"UNISWAP:GEOWETH_D10122.USD","d":[]},{"s":"HITBTC:LEVLUSDT","d":[]},{"s":"GATEIO:SPAUSDT","d":[]},{"s":"COINBASE:CGLDUSD","d":[]},{"s":"MEXC:VANAUSDT","d":[]},{"s":"WHITEBIT:INJUSDT","d":[]},{"s":"UNISWAP:POS32WETH_8A7F39.USD","d":[]},{"s":"UNISWAP3ETH:KIZUNAWETH","d":[]},{"s":"UNISWAP:FOOXWETH_614AC6","d":[]},{"s":"WOONETWORK:SANDUSDT","d":[]},{"s":"UNISWAP:RDDTWETH_283E00","d":[]},{"s":"MEXC:TRCLUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LEVIWETH_606BF2.USD","d":[]},{"s":"POLONIEX:METISUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBIOT","d":[]},{"s":"BITFINEX:RRTUSD","d":[]},{"s":"UNISWAP3ETH:BUSDUSDC_00CEF0.USD","d":[]},{"s":"UNISWAP:AEGISWETH_FE73C7.USD","d":[]},{"s":"BYBIT:LTCEUR","d":[]},{"s":"OKX:DOTUSD.P","d":[]},{"s":"UNISWAP3ETH:NFAIWETH_856180.USD","d":[]},{"s":"MEXC:CNTMUSDT","d":[]},{"s":"GATEIO:COMUSDT","d":[]},{"s":"KRAKEN:BONKUSD.PM","d":[]},{"s":"UNISWAP3ETH:RBXWETH","d":[]},{"s":"POLONIEX:CITYUSDT","d":[]},{"s":"BITGET:VIAUSDT","d":[]},{"s":"UNISWAP:METANOWETH_B4FFF3.USD","d":[]},{"s":"UNISWAP:BASEDAIWETH_8D58E2","d":[]},{"s":"POLONIEX:WLDUSDT","d":[]},{"s":"COINEX:ETCUSDC","d":[]},{"s":"BITRUE:ALGOXRP","d":[]},{"s":"BINANCE:ADAETH","d":[]},{"s":"BINGX:MAVIAUSDT.PS","d":[]},{"s":"UNISWAP:BENWETH_003783","d":[]},{"s":"UNISWAP:BTCWETH_8001D1","d":[]},{"s":"HITBTC:ADAUSD","d":[]},{"s":"TRADERJOE:LEOWAVAX_18F92C.USD","d":[]},{"s":"UNISWAP:ALIUSDC_5083B1","d":[]},{"s":"BTSE:MKRUSD.P","d":[]},{"s":"BINANCE:LQTYBTC","d":[]},{"s":"UNISWAP:MADWETH_049B44","d":[]},{"s":"MEXC:ETHWUSDT","d":[]},{"s":"UNISWAP3ETH:USDTDEXTF","d":[]},{"s":"UNISWAP3ETH:BANKWETH_1A80AF.USD","d":[]},{"s":"TRADERJOE:PAVAXWAVAX_1179E6","d":[]},{"s":"BITGET:BELUSDT.P","d":[]},{"s":"GEMINI:XTZUSD","d":[]},{"s":"UNISWAP:ULTCWETH_6C492E.USD","d":[]},{"s":"UNISWAP:WILDWETH_DA20DD.USD","d":[]},{"s":"UNISWAP:GROKAIWETH_ED330A.USD","d":[]},{"s":"UNISWAP:INUWETH_C51171.USD","d":[]},{"s":"COINBASE:AAVEGBP","d":[]},{"s":"BINANCE:AGIXFDUSD","d":[]},{"s":"WHITEBIT:WIFTRY","d":[]},{"s":"GATEIO:LSKUSDT","d":[]},{"s":"UNISWAP3ETH:CNDUSDT","d":[]},{"s":"COINEX:EGLDUSDT","d":[]},{"s":"WHITEBIT:SOLEUR","d":[]},{"s":"GATEIO:PROMUSDT","d":[]},{"s":"BISWAP:DOMEWBNB_BC8F17","d":[]},{"s":"UNISWAP3ETH:WETHO","d":[]},{"s":"BITHUMB:SWAPKRW","d":[]},{"s":"WHITEBIT:ATOMUSDT","d":[]},{"s":"HITBTC:ZILUSDT","d":[]},{"s":"UNISWAP3ETH:USDC0XBTC","d":[]},{"s":"POLONIEX:SWFTCBTC","d":[]},{"s":"BINGX:SATSUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHEGAME","d":[]},{"s":"UNISWAP3ETH:ARKMWETH_9CB91E.USD","d":[]},{"s":"PIONEX:EDUUSDT.P","d":[]},{"s":"WHITEBIT:GLMBTC","d":[]},{"s":"UNISWAP3ETH:RNDWETH","d":[]},{"s":"GATEIO:ATOMUSDT.3S","d":[]},{"s":"UNISWAP3ETH:PDXWETH","d":[]},{"s":"POLONIEX:CATSUSDT","d":[]},{"s":"QUICKSWAP:COTUSDC_0D117B","d":[]},{"s":"UNISWAP3ETH:WETHVPAD","d":[]},{"s":"TRADERJOE:WINEMIM_00CB5B.USD","d":[]},{"s":"MEXC:KARATEUSDT","d":[]},{"s":"UNISWAP3POLYGON:VDTUSDT_61D3F5.USD","d":[]},{"s":"UNISWAP3ETH:FXSFRAX_B64508.USD","d":[]},{"s":"UNISWAP:GMEWETH_DE9155.USD","d":[]},{"s":"BYBIT:VVUSDT","d":[]},{"s":"WHITEBIT:OXTUSDT","d":[]},{"s":"GATEIO:BZZUSDT","d":[]},{"s":"UPBIT:MINAKRW","d":[]},{"s":"UNISWAP:NFTWETH_AEB925.USD","d":[]},{"s":"UNISWAP:RISITAWETH_4C9955","d":[]},{"s":"PIONEX:JTOUSDT.P","d":[]},{"s":"GATEIO:BSVUSDT.5S","d":[]},{"s":"PANGOLIN:YAYWAVAX_04D80D.USD","d":[]},{"s":"UNISWAP3ETH:WETHOSKY","d":[]},{"s":"UNISWAP3ETH:GROWUSDT","d":[]},{"s":"MEXC:SANDUSDT","d":[]},{"s":"MEXC:TRESTLEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHKRX","d":[]},{"s":"GATEIO:BLESUSDT","d":[]},{"s":"UNISWAP:AIXWETH_3FDFD8","d":[]},{"s":"UNISWAP3ETH:DPSWETH_2DCD08.USD","d":[]},{"s":"MEXC:ACUSDT","d":[]},{"s":"GATEIO:SKMUSDT","d":[]},{"s":"QUICKSWAP:OPT3USDT_CFEADF","d":[]},{"s":"MEXC:FARAUSDT","d":[]},{"s":"UNISWAP3ETH:IMPTWETH","d":[]},{"s":"UNISWAP:RICHARDWETH_3E20D1","d":[]},{"s":"UNISWAP:CYBONKWETH_C618F2","d":[]},{"s":"UNISWAP3ETH:HUSKYWETH_453904.USD","d":[]},{"s":"UNISWAP:DERPWETH_3AFC65.USD","d":[]},{"s":"UNISWAP:FRINWETH_461DDA","d":[]},{"s":"UNISWAP:IMWETH_A62376","d":[]},{"s":"UNISWAP:JVLWETH_0933E0","d":[]},{"s":"UNISWAP3ETH:WETHCQT","d":[]},{"s":"UNISWAP:DLANCEWETH_600728.USD","d":[]},{"s":"MEXC:JABUSDT","d":[]},{"s":"QUICKSWAP:SOLWETH_4CEBED.USD","d":[]},{"s":"UNISWAP3ETH:AUDIOWETH","d":[]},{"s":"BISWAP:BABBCBUSD_4922CA","d":[]},{"s":"UNISWAP3ETH:DAIARW","d":[]},{"s":"BITGET:PEPE1USDT","d":[]},{"s":"UNISWAP3ETH:PEPE2.0WETH_D738E6.USD","d":[]},{"s":"UNISWAP3POLYGON:MANAWETH_28BDD3.USD","d":[]},{"s":"BINANCE:GALABTC","d":[]},{"s":"BITGET:FLUXUSDT","d":[]},{"s":"TRADERJOE:NODAWAVAX_1B7D2B","d":[]},{"s":"PHEMEX:GMTUSDT","d":[]},{"s":"UNISWAP3ETH:BSKTWETH","d":[]},{"s":"COINEX:TLMUSDT","d":[]},{"s":"UNISWAP:ZORAWETH_18112D.USD","d":[]},{"s":"SPOOKYSWAP:QTMUSDC_BDB8B1","d":[]},{"s":"UNISWAP3ETH:NEUYWETH","d":[]},{"s":"WOONETWORK:AXSUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCDAI_391E85.USD","d":[]},{"s":"MEXC:ELANUSDT","d":[]},{"s":"COINEX:MUBIUSDT","d":[]},{"s":"UNISWAP:COTIWETH_A2B04F","d":[]},{"s":"UNISWAP3ARBITRUM:GOHMUSDC_04A8CD.USD","d":[]},{"s":"COINEX:NGLUSDT","d":[]},{"s":"PHEMEX:ENSUSDT","d":[]},{"s":"SPOOKYSWAP:GOGOWFTM_6E8B2B","d":[]},{"s":"UNISWAP3ETH:SOLANAWETH","d":[]},{"s":"UNISWAP:DAOUSDC_4CD36D","d":[]},{"s":"MEXC:KUNCIUSDT","d":[]},{"s":"BYBIT:ALPACAUSDT.P","d":[]},{"s":"QUICKSWAP:VOXELWMATIC_01FD0D","d":[]},{"s":"UNISWAP:YOYOWETH_66914D.USD","d":[]},{"s":"BITFINEX:YFIBTC","d":[]},{"s":"UNISWAP:MKWETH_6EF244","d":[]},{"s":"UNISWAP3ETH:NMRUSDC","d":[]},{"s":"UNISWAP3ETH:WETHBTT","d":[]},{"s":"BINANCE:EOSETH","d":[]},{"s":"UNISWAP3ETH:ELAWETH_412940.USD","d":[]},{"s":"COINEX:ARCHUSDT","d":[]},{"s":"UNISWAP:STRNGRWETH_453A43.USD","d":[]},{"s":"UNISWAP3POLYGON:SANDWMATIC_DE92E7.USD","d":[]},{"s":"BINANCE:REQBTC","d":[]},{"s":"BITHUMB:SANDKRW","d":[]},{"s":"UNISWAP3ETH:DOMOWETH_A3D1E7.USD","d":[]},{"s":"UNISWAP3ETH:USDCTRESTLE","d":[]},{"s":"BYBIT:ICPUSDT","d":[]},{"s":"MEXC:RPTUSDT","d":[]},{"s":"GATEIO:WAXPUSDT","d":[]},{"s":"PANGOLIN:PEFIDAIE_07DCA2","d":[]},{"s":"UNISWAP:COBRAMONG_D4867B","d":[]},{"s":"BYBIT:PAXGUSDT","d":[]},{"s":"BITFINEX:KNCUSD","d":[]},{"s":"MEXC:DYMUSDT.P","d":[]},{"s":"MEXC:JSMUSDT","d":[]},{"s":"UNISWAP3ETH:USDCPOLA","d":[]},{"s":"MEXC:RSRETH","d":[]},{"s":"COINEX:AIUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:TIA.NWETH_908974.USD","d":[]},{"s":"BINANCE:ETHUSDH2024","d":[]},{"s":"UNISWAP3ETH:WETHTRU","d":[]},{"s":"UNISWAP3POLYGON:BCUTWETH_F03FD7.USD","d":[]},{"s":"BYBIT:LTCUSDT.2S","d":[]},{"s":"UNISWAP3ETH:BITWETH","d":[]},{"s":"MEXC:ROSEUSDT.P","d":[]},{"s":"TRADERJOE:WAVAXUSDCE_A389F9","d":[]},{"s":"UNISWAP3ETH:TKXWETH","d":[]},{"s":"BITGET:MKRUSDT.P","d":[]},{"s":"BITRUE:BNBADA","d":[]},{"s":"BITGET:DOGEBTC","d":[]},{"s":"PHEMEX:TOKENUSDT","d":[]},{"s":"POLONIEX:NMRBTC","d":[]},{"s":"BITFINEX:SUKUUSD","d":[]},{"s":"BINANCE:UFTUSDT","d":[]},{"s":"BITKUB:LQTYTHB","d":[]},{"s":"UNISWAP:LKTWETH_2B08A6.USD","d":[]},{"s":"WHITEBIT:LINKUSDT.P","d":[]},{"s":"BITGET:IOSTUSDT","d":[]},{"s":"BINANCEUS:BANDUSDT","d":[]},{"s":"UNISWAP3ETH:MIMIWETH","d":[]},{"s":"BITFINEX:WOOBTC","d":[]},{"s":"TRADERJOE:SBRMIM_EE60D8.USD","d":[]},{"s":"MEXC:OCTAVUSUSDT","d":[]},{"s":"MEXC:CELRUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:UNIUSDC_55F5F2.USD","d":[]},{"s":"MEXC:LTCUSDT.P","d":[]},{"s":"BITHUMB:LRCKRW","d":[]},{"s":"COINBASE:1INCHGBP","d":[]},{"s":"QUICKSWAP:RUSDUSDC_5EF874","d":[]},{"s":"UNISWAP3ETH:PAPERWETH","d":[]},{"s":"UNISWAP:LOOKSWETH_DC00BA","d":[]},{"s":"BITFINEX:KAVAUST","d":[]},{"s":"UNISWAP3ETH:CAHUSDT_371A09.USD","d":[]},{"s":"TRADERJOE:SLFTWAVAX_5CECB3","d":[]},{"s":"GATEIO:CSASUSDT","d":[]},{"s":"BITHUMB:STATKRW","d":[]},{"s":"TRADERJOE:URQAWAVAX_187446.USD","d":[]},{"s":"BYBIT:VELAUSDT","d":[]},{"s":"MEXC:FLOWUSDT","d":[]},{"s":"POLONIEX:MOBILEUSDT","d":[]},{"s":"BITRUE:ICPUSDC","d":[]},{"s":"PANGOLIN:SUSHIEWAVAX_F62381.USD","d":[]},{"s":"MEXC:ZENUSDT","d":[]},{"s":"KRAKEN:RBCUSD","d":[]},{"s":"BTSE:JUPUSD.P","d":[]},{"s":"QUICKSWAP:ASTRAFERUSDC_01EBD3","d":[]},{"s":"UNISWAP3ETH:MNWWETH","d":[]},{"s":"ZOOMEX:NKNUSDT.P","d":[]},{"s":"COINEX:AUDIOUSDC","d":[]},{"s":"UNISWAP:BEBEWETH_E6DA0C","d":[]},{"s":"EXMO:DOGEEUR","d":[]},{"s":"GATEIO:MDSUSDT","d":[]},{"s":"UNISWAP3POLYGON:WEB3WETH_2FFDF6.USD","d":[]},{"s":"UNISWAP3ETH:DCWETH_498498.USD","d":[]},{"s":"UNISWAP3ETH:TONCOINUSDC","d":[]},{"s":"MEXC:LINKETH","d":[]},{"s":"BITFINEX:LTCUSD","d":[]},{"s":"BITSTAMP:AVAXUSD","d":[]},{"s":"PANGOLIN:YAKWAVAX_D2F01C","d":[]},{"s":"UNISWAP:QRWETH_AECA06.USD","d":[]},{"s":"UNISWAP:QOMWETH_8EF79D","d":[]},{"s":"MEXC:MNGLUSDT","d":[]},{"s":"GATEIO:LBKUSDT","d":[]},{"s":"BITRUE:TRXUSDC","d":[]},{"s":"TRADERJOE:PENGUINWAVAX_6917E7","d":[]},{"s":"TRADERJOE:BPTWAVAX_0B44F6.USD","d":[]},{"s":"BINANCE:MTLUSDT","d":[]},{"s":"UNISWAP3ETH:BUSDUSDC_5E35C4.USD","d":[]},{"s":"QUICKSWAP:GOOWMATIC_11E8CE","d":[]},{"s":"UNISWAP3ETH:WETHDAR","d":[]},{"s":"UNISWAP:ZCXWETH_797E1D","d":[]},{"s":"MEXC:PHAUSDT","d":[]},{"s":"BITGET:JOYUSDT","d":[]},{"s":"MEXC:TWTUSDT","d":[]},{"s":"GATEIO:TRAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:CDTWETH_10E759.USD","d":[]},{"s":"UNISWAP3ETH:GTCWETH_D01761.USD","d":[]},{"s":"UNISWAP:SNIBBUWETH_1C726D.USD","d":[]},{"s":"UNISWAP3ETH:WETHXMON","d":[]},{"s":"COINEX:VITEBTC","d":[]},{"s":"BINANCE:UTKBTC","d":[]},{"s":"VERSEETH:VERSEDAI_85B7D6.USD","d":[]},{"s":"UNISWAP3ETH:WEWEWETH_B0288F.USD","d":[]},{"s":"UNISWAP:PLEBWETH_5F91C8.USD","d":[]},{"s":"UNISWAP:1PIECEWETH_723552","d":[]},{"s":"UNISWAP:RAINWETH_C4A8C2.USD","d":[]},{"s":"BITSTAMP:ANTUSD","d":[]},{"s":"COINEX:GRSUSDT","d":[]},{"s":"UNISWAP:WAGMIGAMESWETH_DF4F37","d":[]},{"s":"KRAKEN:ETHUSD.MM2024","d":[]},{"s":"SPOOKYSWAP:BNBBACKWFTM_3D861D.USD","d":[]},{"s":"HITBTC:BANDUSDT","d":[]},{"s":"UNISWAP:BABYSHIBWETH_97FEAD","d":[]},{"s":"UNISWAP3ETH:KLUBUSDT_3DD72A.USD","d":[]},{"s":"KRAKEN:LMWRUSD","d":[]},{"s":"BINANCE:IOSTUSDT","d":[]},{"s":"MEXC:LTCUSDT","d":[]},{"s":"UNISWAP:BABYJESUSWETH_9D680D.USD","d":[]},{"s":"PHEMEX:STRKUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDT_3BFCB4.USD","d":[]},{"s":"COINEX:EGLDUSDC","d":[]},{"s":"COINEX:CRVUSDT","d":[]},{"s":"MEXC:ATCUSDT","d":[]},{"s":"UNISWAP3POLYGON:ROGUEWMATIC_FD2352.USD","d":[]},{"s":"UNISWAP3ETH:APEBAYC_8513A7.USD","d":[]},{"s":"UNISWAP:OPFLOWWETH_95D17B","d":[]},{"s":"BITFINEX:BTCMXNT","d":[]},{"s":"HITBTC:WBTCBTC","d":[]},{"s":"UNISWAP:CORGIAIWETH_4D2F3E","d":[]},{"s":"BINANCEUS:SLPUSDT","d":[]},{"s":"UNISWAP3POLYGON:CRVWMATIC_4C5757.USD","d":[]},{"s":"UNISWAP3ETH:SWAPUSDC_47E466.USD","d":[]},{"s":"BINANCEUS:LTCBTC","d":[]},{"s":"UNISWAP3ETH:KNINEWETH","d":[]},{"s":"POLONIEX:PORUSDT","d":[]},{"s":"COINEX:PONDUSDT","d":[]},{"s":"BYBIT:TONUSDT","d":[]},{"s":"MEXC:IOSTUSDT.P","d":[]},{"s":"MEXC:MEGAHEROUSDT","d":[]},{"s":"UNISWAP3ETH:REVVUSDT","d":[]},{"s":"HITBTC:WINUSDC","d":[]},{"s":"MEXC:USDJUSDT","d":[]},{"s":"BTSE:CTSIUSD","d":[]},{"s":"UNISWAP3ARBITRUM:HEGICWETH_6186D6.USD","d":[]},{"s":"TRADERJOE:SWIFTWAVAX_FFC7A0.USD","d":[]},{"s":"HITBTC:STORJETH","d":[]},{"s":"UNISWAP:BLEPEWETH_E11CE9.USD","d":[]},{"s":"SPOOKYSWAP:WBONDWFTM_619832","d":[]},{"s":"XEXCHANGE:ECPXUSDC","d":[]},{"s":"UNISWAP3ETH:UDTWETH","d":[]},{"s":"GATEIO:ORNJUSDT","d":[]},{"s":"BITGET:MYROUSDT","d":[]},{"s":"BITRUE:SXPUSDT","d":[]},{"s":"BITRUE:HBARXRP","d":[]},{"s":"MEXC:CLOUDUSDT","d":[]},{"s":"UNISWAP3ETH:CARDWETH","d":[]},{"s":"BITGET:ZIGUSDT","d":[]},{"s":"BITGET:CELOUSDT","d":[]},{"s":"MEXC:BOOUSDT","d":[]},{"s":"MEXC:QDOUSDT","d":[]},{"s":"UNISWAP:WCHIWETH_5F005A","d":[]},{"s":"GATEIO:LOOKSUSDT","d":[]},{"s":"UNISWAP3ETH:MMXUSDT_4109AB.USD","d":[]},{"s":"SPOOKYSWAP:PUMPKINWFTM_A73D25","d":[]},{"s":"MEXC:SNXUSDT.P","d":[]},{"s":"QUICKSWAP:IQUSDC_9F4360","d":[]},{"s":"GATEIO:BLOCKUSDT","d":[]},{"s":"UNISWAP:HUSTLEWETH_DAC51D.USD","d":[]},{"s":"UNISWAP:HYPCWETH_CC0FCD","d":[]},{"s":"HITBTC:VRAETH","d":[]},{"s":"QUICKSWAP:TOTEMWETH_944602","d":[]},{"s":"BITSTAMP:AMPUSD","d":[]},{"s":"COINEX:POPCATUSDT","d":[]},{"s":"TRADERJOE:BROOMWAVAX_C4769F.USD","d":[]},{"s":"UNISWAP:BUHWETH_4DEB71","d":[]},{"s":"UNISWAP3POLYGON:ORAREUSDT_ED5B90.USD","d":[]},{"s":"UNISWAP3ARBITRUM:RDNTWETH_A8BA5F.USD","d":[]},{"s":"MEXC:RUNEUSDT.P","d":[]},{"s":"PANGOLIN:NCASHWAVAX_B8F66A","d":[]},{"s":"BINGX:OPUSDT.P","d":[]},{"s":"PHEMEX:MTLUSDT","d":[]},{"s":"UNISWAP3ETH:CXWETH","d":[]},{"s":"WHITEBIT:ETHPLN","d":[]},{"s":"ZOOMEX:SEIUSDT.P","d":[]},{"s":"GATEIO:MANAUSDT","d":[]},{"s":"UNISWAP:SLAKEWETH_02D9EA","d":[]},{"s":"UNISWAP:PORAWETH_7EFEFF","d":[]},{"s":"UNISWAP3POLYGON:AGIXRNDR_3A55E7.USD","d":[]},{"s":"GATEIO:LEASHUSDT","d":[]},{"s":"MEXC:CPHUSDT","d":[]},{"s":"WHITEBIT:GALAUSDT","d":[]},{"s":"BINGX:STMXUSDT.P","d":[]},{"s":"GATEIO:SLPUSDT.3S","d":[]},{"s":"UNISWAP:COOKWETH_BDFE29","d":[]},{"s":"BYBIT:MOVRUSDT.P","d":[]},{"s":"HITBTC:BONKUSDT","d":[]},{"s":"MEXC:SOBBUSDT","d":[]},{"s":"UNISWAP3ETH:EMERALDWETH_0E304F.USD","d":[]},{"s":"UNISWAP:RARIWETH_86FEF1","d":[]},{"s":"UNISWAP3ETH:RENBTCWETH_3CB751.USD","d":[]},{"s":"BITGET:UFOUSDT","d":[]},{"s":"PHEMEX:BELUSDT.P","d":[]},{"s":"MEXC:FARMSUSDT","d":[]},{"s":"UNISWAP:DREAMWETH_417FF8.USD","d":[]},{"s":"HITBTC:CPTBTC","d":[]},{"s":"UNISWAP:FRPWETH_F3C80A.USD","d":[]},{"s":"PIONEX:RPLUSDT.P","d":[]},{"s":"BITGET:HOTUSDT","d":[]},{"s":"QUICKSWAP:MIFARMQUICK_D76684.USD","d":[]},{"s":"MEXC:LTCUSDC","d":[]},{"s":"UNISWAP3ETH:WETHACX","d":[]},{"s":"GATEIO:1EARTHUSDT","d":[]},{"s":"BINANCE:HIGHUSDT","d":[]},{"s":"UNISWAP:REKTUSDT_7C30FF","d":[]},{"s":"DYDX:AVAXUSD.P","d":[]},{"s":"UNISWAP3ETH:BIDENWETH","d":[]},{"s":"BITGET:FMBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCCBCH","d":[]},{"s":"DELTA:RSRUSDT.P","d":[]},{"s":"BITHUMB:DAOKRW","d":[]},{"s":"BITGET:TRIASUSDT","d":[]},{"s":"UNISWAP:STARSHIPWETH_46290C.USD","d":[]},{"s":"UNISWAP3ETH:DATAWETH_7C3B12.USD","d":[]},{"s":"WHITEBIT:MAGICUSDT","d":[]},{"s":"HITBTC:ACMUSDT","d":[]},{"s":"MEXC:SCUSDT.P","d":[]},{"s":"BITFINEX:GOMININGUST","d":[]},{"s":"BITGET:NMRUSDT","d":[]},{"s":"UNISWAP:BUMPUSDC_11FA2A","d":[]},{"s":"BINANCE:KSMBTC","d":[]},{"s":"MEXC:LAMBUSDT","d":[]},{"s":"BINANCE:GALAFDUSD","d":[]},{"s":"QUICKSWAP:SPINWMATIC_5A6861.USD","d":[]},{"s":"MEXC:TRUUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDT_80151A.USD","d":[]},{"s":"UNISWAP:TROLLWETH_B7426B.USD","d":[]},{"s":"UNISWAP:DESKWETH_B6E68C","d":[]},{"s":"BITMEX:XBTETH.P","d":[]},{"s":"MEXC:CNGUSDT","d":[]},{"s":"QUICKSWAP:MOGWMATIC_3BFAED.USD","d":[]},{"s":"PHEMEX:STGUSDT.P","d":[]},{"s":"UNISWAP3ETH:XIWETH_9410CF.USD","d":[]},{"s":"MEXC:PITUSDT","d":[]},{"s":"UNISWAP:SNTVTWETH_AB9BEF","d":[]},{"s":"UNISWAP3ETH:MPLWETH","d":[]},{"s":"UNISWAP:APEGPTWETH_7EB656.USD","d":[]},{"s":"GATEIO:FAMEUSDT","d":[]},{"s":"OKX:LINKUSD.P","d":[]},{"s":"UNISWAP:CLAVELLWETH_ADF529","d":[]},{"s":"BLOFIN:SSVUSDT.P","d":[]},{"s":"BITHUMB:ACHKRW","d":[]},{"s":"UNISWAP3ETH:WETHAIN","d":[]},{"s":"UNISWAP:FAOWETH_0BA7C0","d":[]},{"s":"BYBIT:BOBAUSDT","d":[]},{"s":"HITBTC:CKBUSDT","d":[]},{"s":"COINEX:ONEUSDT","d":[]},{"s":"UNISWAP:RFOXWETH_421429.USD","d":[]},{"s":"UNISWAP3ETH:ANONWETH_18F9A1.USD","d":[]},{"s":"MEXC:WOOFUSDT","d":[]},{"s":"UNISWAP3ETH:NEXTWETH_A050F7.USD","d":[]},{"s":"UNISWAP:MYOBUWETH_F2FBAF","d":[]},{"s":"UNISWAP:LONGWETH_7CE52D","d":[]},{"s":"KRAKEN:SXPUSD.PM","d":[]},{"s":"UNISWAP3POLYGON:MXEN404WMATIC_824BFD.USD","d":[]},{"s":"UNISWAP3ETH:USDTSUM","d":[]},{"s":"BITFINEX:VRABTC","d":[]},{"s":"COINEX:ROUTEUSDT","d":[]},{"s":"QUICKSWAP:REBWMATIC_6D56CE.USD","d":[]},{"s":"UNISWAP:LDOWETH_454F11","d":[]},{"s":"BITRUE:AXSUSDT","d":[]},{"s":"UNISWAP3ETH:ACRIAWETH","d":[]},{"s":"UNISWAP:MORIWETH_AB1BFB","d":[]},{"s":"MEXC:HAKAUSDT","d":[]},{"s":"BITGET:DUSDUSDT","d":[]},{"s":"UNISWAP3ETH:BEAMWETH_318FBE.USD","d":[]},{"s":"MEXC:RFOXUSDT","d":[]},{"s":"UNISWAP3ETH:LINKWETH_3A0F22.USD","d":[]},{"s":"BITFINEX:CHEXBTC","d":[]},{"s":"PIONEX:METISUSDT.P","d":[]},{"s":"UNISWAP:CAGAUSDT_5016CD","d":[]},{"s":"UNISWAP:VETMEWETH_30361F.USD","d":[]},{"s":"VERSEETH:WBTCWETH_EACADC.USD","d":[]},{"s":"MEXC:PENDULUMUSDT","d":[]},{"s":"UNISWAP3ETH:USDTPATEX","d":[]},{"s":"COINEX:CROUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:DAIUSDC_BF16EF.USD","d":[]},{"s":"MEXC:ONTUSDT.P","d":[]},{"s":"KRAKEN:GSTEUR","d":[]},{"s":"ZOOMEX:1000FLOKIUSDT.P","d":[]},{"s":"KRAKEN:LDOUSD","d":[]},{"s":"BITRUE:SHENUSDT","d":[]},{"s":"POLONIEX:KUBUSDD","d":[]},{"s":"SPOOKYSWAP:HECDAI_BC0EEC","d":[]},{"s":"UNISWAP3ETH:WETHTIA","d":[]},{"s":"WOONETWORK:RNDRUSDT","d":[]},{"s":"UNISWAP:RISEWETH_7250F7.USD","d":[]},{"s":"BLOFIN:NEARUSDT.P","d":[]},{"s":"UNISWAP:AIDIWETH_F0CEB5","d":[]},{"s":"GATEIO:THETAUSDT.3S","d":[]},{"s":"TRADERJOE:URQAWAVAX_187446","d":[]},{"s":"MEXC:GP4UUSDT","d":[]},{"s":"MEXC:ALMUSDT","d":[]},{"s":"UNISWAP:SMUDWETH_CB8537","d":[]},{"s":"MEXC:RENUSDT","d":[]},{"s":"KRAKEN:NEAREUR","d":[]},{"s":"UNISWAP3ETH:MACKEWETH_409634.USD","d":[]},{"s":"GATEIO:KLVUSDT","d":[]},{"s":"BINANCE:GNSBTC","d":[]},{"s":"UNISWAP3ETH:MTRMWETH_CBBE43.USD","d":[]},{"s":"UNISWAP:CBOTWETH_54BEBB.USD","d":[]},{"s":"PANGOLIN:WETWAVAX_B714D1.USD","d":[]},{"s":"UNISWAP:WHIRLWETH_241119.USD","d":[]},{"s":"UNISWAP3ETH:CLOWNWETH","d":[]},{"s":"COINEX:VLXUSDT","d":[]},{"s":"BINANCE:ADAUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHDUCKS","d":[]},{"s":"UNISWAP:RENQUSDT_D44971","d":[]},{"s":"UNISWAP:LVMWETH_5A713B.USD","d":[]},{"s":"COINEX:LAZIOUSDT","d":[]},{"s":"HITBTC:XNOBTC","d":[]},{"s":"MEXC:XXUSDT","d":[]},{"s":"GEMINI:OXTUSD","d":[]},{"s":"HITBTC:AMBUSDT","d":[]},{"s":"PHEMEX:BADGERUSDT.P","d":[]},{"s":"UNISWAP3ETH:NABOXWETH","d":[]},{"s":"UNISWAP3ETH:BUSDUSDT_D5AD5E.USD","d":[]},{"s":"QUICKSWAP:QUICKUSDC_747375","d":[]},{"s":"UNISWAP:HBOTWETH_E595C1","d":[]},{"s":"PANGOLIN:PNGWETHE_CF3540","d":[]},{"s":"UNISWAP3ETH:WETHWAR","d":[]},{"s":"BINANCE:ASTUSDT","d":[]},{"s":"MEXC:VIAUSDT","d":[]},{"s":"UNISWAP:PCWETH_E8B85A.USD","d":[]},{"s":"UNISWAP:VANRYWETH_F4ACDA.USD","d":[]},{"s":"BITGET:PONDUSDT","d":[]},{"s":"BINGX:ZETAUSDT.P","d":[]},{"s":"UNISWAP3ETH:ZCXWETH","d":[]},{"s":"BYBIT:MUSDUSDT","d":[]},{"s":"UNISWAP:MONADWETH_0F2500","d":[]},{"s":"UNISWAP:TROLLWETH_B7426B","d":[]},{"s":"UNISWAP:BTSWETH_635EB9.USD","d":[]},{"s":"COINBASE:UNIGBP","d":[]},{"s":"BITFINEX:WAVESUST.P","d":[]},{"s":"UNISWAP3ETH:WETHPYUSD","d":[]},{"s":"UNISWAP3ETH:WETHPINEOWL","d":[]},{"s":"BITGET:BURGERUSDT","d":[]},{"s":"BITGET:POKTUSDT","d":[]},{"s":"PANGOLIN:DEPWAVAX_E2780D.USD","d":[]},{"s":"POLONIEX:ZECBTC","d":[]},{"s":"UNISWAP:LUCKYWETH_ADE52C.USD","d":[]},{"s":"KRAKEN:BTCUSDC","d":[]},{"s":"UNISWAP3ETH:WETHDROPS","d":[]},{"s":"QUICKSWAP:DAIWETH_4A3558","d":[]},{"s":"UPBIT:SBDKRW","d":[]},{"s":"UNISWAP3ETH:WETHRBLZ","d":[]},{"s":"COINEX:FXUSDT","d":[]},{"s":"UNISWAP3ETH:USDGLOUSDC_13C665.USD","d":[]},{"s":"UNISWAP:ZKTWETH_8AEB84","d":[]},{"s":"UNISWAP:KEANUWETH_FEE480.USD","d":[]},{"s":"BINANCE:APEBTC","d":[]},{"s":"UNISWAP3ETH:WETHHEHE","d":[]},{"s":"WHITEBIT:BTCPLN","d":[]},{"s":"POLONIEX:NEVERUSDT","d":[]},{"s":"BINANCE:XRPUSDC","d":[]},{"s":"SPOOKYSWAP:MSTUSDC_1F5C5B","d":[]},{"s":"UNISWAP:DACTWETH_256B4F.USD","d":[]},{"s":"TRADERJOE:LIQRWAVAX_DE1971.USD","d":[]},{"s":"BITHUMB:CRTSKRW","d":[]},{"s":"SPOOKYSWAP:DOGGOWFTM_E56CD7","d":[]},{"s":"BYBIT:APEUSDT.2L","d":[]},{"s":"MEXC:TOKKIUSDT","d":[]},{"s":"BINANCEUS:LINKUSDT","d":[]},{"s":"UNISWAP:MONAWETH_E6936D.USD","d":[]},{"s":"UNISWAP:CMOSWETH_5B8AEF.USD","d":[]},{"s":"TRADERJOE:BTCBWAVAX_2FD813","d":[]},{"s":"GATEIO:OPENUSDT","d":[]},{"s":"UNISWAP3ETH:ZUZALUWETH","d":[]},{"s":"UNISWAP3ETH:MATICDAI","d":[]},{"s":"KRAKEN:SNXETH","d":[]},{"s":"HITBTC:SPAUSDT","d":[]},{"s":"UNISWAP3ETH:APEUSDC_B07FE2.USD","d":[]},{"s":"UNISWAP:OBOTWETH_E7B0C1","d":[]},{"s":"UNISWAP3ARBITRUM:MUSDF50_4EE22A.USD","d":[]},{"s":"UNISWAP3ETH:LINAUSDC","d":[]},{"s":"BITRUE:LOOMSOL","d":[]},{"s":"BINGX:SEIUSDT.P","d":[]},{"s":"BITGET:CHZUSDT.P","d":[]},{"s":"UNISWAP:SPOWETH_6FCC7D.USD","d":[]},{"s":"MEXC:FRONTUSDT","d":[]},{"s":"UNISWAP3ETH:MICWETH_6225A9.USD","d":[]},{"s":"PANGOLIN:WAVAXUSDC_0E0100.USD","d":[]},{"s":"BLOFIN:MBOXUSDT.P","d":[]},{"s":"UNISWAP:RDTWETH_C433E2","d":[]},{"s":"UNISWAP:SHIBAWETH_BEF860.USD","d":[]},{"s":"UNISWAP3ETH:WETHGPOOL","d":[]},{"s":"UNISWAP:COMPWETH_CFFDDE.USD","d":[]},{"s":"UNISWAP3ETH:BLOCKSWETH","d":[]},{"s":"UNISWAP:WASWETH_095397","d":[]},{"s":"BTSE:GLMRUSD","d":[]},{"s":"BTSE:1INCHUSD.P","d":[]},{"s":"UNISWAP3ETH:DN404WETH_24E6F5.USD","d":[]},{"s":"PIONEX:UNIUSDT.P","d":[]},{"s":"BYBIT:10000SATSUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:GMXWETH_1AEEDD.USD","d":[]},{"s":"COINEX:AVAXUSDC","d":[]},{"s":"UNISWAP:ALLINWETH_EE02F9","d":[]},{"s":"BITFINEX:LTCUST","d":[]},{"s":"BINANCE:LINKUSDH2024","d":[]},{"s":"COINEX:AUDIOUSDT","d":[]},{"s":"WHITEBIT:BTCUSDC","d":[]},{"s":"UNISWAP:DSQWETH_C49125.USD","d":[]},{"s":"UNISWAP3POLYGON:P2PBITWMATIC_DC44F6.USD","d":[]},{"s":"UNISWAP3ETH:GBTCWETH_84D2E0.USD","d":[]},{"s":"HITBTC:AEBTC","d":[]},{"s":"MEXC:COOKUSDT","d":[]},{"s":"UNISWAP:BENWETH_003783.USD","d":[]},{"s":"UNISWAP3ETH:RSS3WETH","d":[]},{"s":"TRADERJOE:SACUSDTE_B4B611","d":[]},{"s":"UNISWAP3ARBITRUM:NXRAUSDT_4A2382.USD","d":[]},{"s":"UNISWAP3ETH:CHZUSDT_B0F4A7.USD","d":[]},{"s":"BTSE:APEUSD","d":[]},{"s":"UNISWAP3ETH:WETHSHADOW","d":[]},{"s":"UNISWAP:AIWETH_CEDE28.USD","d":[]},{"s":"MEXC:DENTUSDT.P","d":[]},{"s":"UNISWAP:HYDRAWETH_CAA894","d":[]},{"s":"SPOOKYSWAP:PDODAI_D339D1","d":[]},{"s":"BITFINEX:BTCMIM","d":[]},{"s":"UNISWAP:INUWETH_E5A7AB","d":[]},{"s":"UNISWAP3ETH:KEPWETH_837CF5.USD","d":[]},{"s":"WHITEBIT:BLZUSDT","d":[]},{"s":"MEXC:DCRUSDT","d":[]},{"s":"UNISWAP:5IREUSDT_17EA59","d":[]},{"s":"PHEMEX:MANAUSDC","d":[]},{"s":"BLOFIN:FTMUSDT.P","d":[]},{"s":"BYBIT:XRPUSDC","d":[]},{"s":"KRAKEN:ZRXBTC","d":[]},{"s":"BINGX:ARPAUSDT.P","d":[]},{"s":"BITFINEX:OCEANUSD","d":[]},{"s":"UNISWAP3ETH:INDEXWETH_77843E.USD","d":[]},{"s":"BINANCE:BNBBRL","d":[]},{"s":"UNISWAP:BANANAUSDT_5EBFD7","d":[]},{"s":"UNISWAP:GUARDIANWETH_F8112C.USD","d":[]},{"s":"UNISWAP3ETH:USDTLINK","d":[]},{"s":"MEXC:AEVOUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDT_B2AC2E.USD","d":[]},{"s":"HITBTC:PLAUSDT","d":[]},{"s":"HITBTC:VEOBTC","d":[]},{"s":"BYBIT:MANTAUSDT.P","d":[]},{"s":"HITBTC:KNCUSDT","d":[]},{"s":"PHEMEX:INJUSDT","d":[]},{"s":"UNISWAP:MLWETH_7FE2F9.USD","d":[]},{"s":"UNISWAP:APUWETH_8CFA4C","d":[]},{"s":"COINEX:MANAUSDC","d":[]},{"s":"UNISWAP3ETH:NFTCWETH","d":[]},{"s":"UNISWAP3POLYGON:SDEXUSDC_0A7E5A.USD","d":[]},{"s":"POLONIEX:BTRSTUSDT","d":[]},{"s":"QUICKSWAP:PFIWMATIC_B75B89.USD","d":[]},{"s":"HITBTC:GHSTUSDT","d":[]},{"s":"GATEIO:SNETUSDT","d":[]},{"s":"SPOOKYSWAP:JONESWFTM_21612A","d":[]},{"s":"COINBASE:GRTGBP","d":[]},{"s":"UNISWAP:VDOWETH_059928.USD","d":[]},{"s":"MEXC:CCDUSDT","d":[]},{"s":"UNISWAP3ETH:STORJWETH","d":[]},{"s":"HITBTC:CVNXUSDT","d":[]},{"s":"TIMEX:ETHBTC","d":[]},{"s":"UNISWAP:CATEWETH_5CB8A1","d":[]},{"s":"UNISWAP3ARBITRUM:RETHWETH_AAC7DE.USD","d":[]},{"s":"MEXC:VELAUSDT","d":[]},{"s":"UNISWAP:PPEASPOHM_80E9C4.USD","d":[]},{"s":"BITGET:MINAUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTSLN","d":[]},{"s":"UNISWAP3ETH:USDCSHFL","d":[]},{"s":"UNISWAP:LNQWETH_82B8EE","d":[]},{"s":"HITBTC:NKNUSDT","d":[]},{"s":"HITBTC:XRPBTC","d":[]},{"s":"UNISWAP3ETH:WETHPNPC","d":[]},{"s":"UNISWAP3ETH:ORDIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPOLS","d":[]},{"s":"OKX:FLRUSDT.P","d":[]},{"s":"COINEX:TONUSDT","d":[]},{"s":"KRAKEN:BCHGBP","d":[]},{"s":"UNISWAP:PEPE05PEPE_F8BED3.USD","d":[]},{"s":"GATEIO:MINAUSDT.3L","d":[]},{"s":"GEMINI:GRTUSD","d":[]},{"s":"BYBIT:ETCUSDC.P","d":[]},{"s":"SPOOKYSWAP:WSSPAWFTM_011732.USD","d":[]},{"s":"QUICKSWAP:KAVIWMATIC_617178.USD","d":[]},{"s":"UNISWAP:BSTWETH_0E85FB","d":[]},{"s":"GATEIO:BFTUSDT","d":[]},{"s":"UNISWAP:PURSEWETH_057EF9.USD","d":[]},{"s":"UNISWAP:WORLDWETH_6AFB3D","d":[]},{"s":"BINANCE:CFXUSDT","d":[]},{"s":"KRAKEN:NODLEUR","d":[]},{"s":"UNISWAP3ETH:OGNWETH_70BB8E.USD","d":[]},{"s":"UNISWAP3ETH:CRABUSDC","d":[]},{"s":"UNISWAP3ETH:USDTCHEQ","d":[]},{"s":"GATEIO:OPAUSDT","d":[]},{"s":"UNISWAP:ORAIWETH_9081B5.USD","d":[]},{"s":"UNISWAP:LOANIFYWETH_F77F7B","d":[]},{"s":"BINANCE:LRCETH","d":[]},{"s":"UNISWAP3ETH:DOLLARZKPWETH","d":[]},{"s":"GEMINI:FTMUSD","d":[]},{"s":"GATEIO:KFTUSDT","d":[]},{"s":"QUICKSWAP:DEFITWETH_580DA9.USD","d":[]},{"s":"MEXC:PYTHUSDT.P","d":[]},{"s":"QUICKSWAP:GHSTWETH_CCB9D2","d":[]},{"s":"COINEX:DCRUSDC","d":[]},{"s":"KRAKEN:AXSEUR","d":[]},{"s":"MEXC:BXENUSDT","d":[]},{"s":"UNISWAP:GSWAPWETH_1E9ED2","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDC_BED258.USD","d":[]},{"s":"HITBTC:AUTOUSDT","d":[]},{"s":"GATEIO:SMTXUSDT","d":[]},{"s":"MEXC:SCOTTYUSDT","d":[]},{"s":"QUICKSWAP:SWMWMATIC_644FF2.USD","d":[]},{"s":"COINEX:MBOXUSDT","d":[]},{"s":"HITBTC:ZAPUSDT","d":[]},{"s":"ZOOMEX:KLAYUSDT.P","d":[]},{"s":"COINEX:SXPUSDC","d":[]},{"s":"BITSTAMP:SANDUSD","d":[]},{"s":"UNISWAP3ARBITRUM:XPETWETH_A67F72.USD","d":[]},{"s":"UNISWAP3ETH:ABDSUSDT","d":[]},{"s":"COINEX:ALGOBTC","d":[]},{"s":"BYBIT:PORTALUSDT","d":[]},{"s":"POLONIEX:LOKAUSDT","d":[]},{"s":"UNISWAP:PEPEGWETH_726259.USD","d":[]},{"s":"GATEIO:PHAUSDT","d":[]},{"s":"BLOFIN:ALTUSDT.P","d":[]},{"s":"UNISWAP3ETH:AVINOCWETH","d":[]},{"s":"BINANCE:MBLUSDT","d":[]},{"s":"POLONIEX:FUNDUSDT","d":[]},{"s":"BLOFIN:EGLDUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTVOLTA","d":[]},{"s":"MEXC:RAYUSDC","d":[]},{"s":"UNISWAP3ETH:FLUXWETH","d":[]},{"s":"MEXC:BEFEUSDT","d":[]},{"s":"MEXC:LAVAUSDT","d":[]},{"s":"HITBTC:MATICUSDC","d":[]},{"s":"UNISWAP3ETH:WETHRICK","d":[]},{"s":"UNISWAP3ETH:WETHUSDT","d":[]},{"s":"BITHUMB:SHIBKRW","d":[]},{"s":"UNISWAP:ZENIWETH_0D5751.USD","d":[]},{"s":"UNISWAP3ETH:WETHUDOGE","d":[]},{"s":"UNISWAP:POHMPPEA3_3CCAF5","d":[]},{"s":"PANGOLIN:SUSHIEWAVAX_F62381","d":[]},{"s":"UNISWAP3ETH:FREEWETH_81508E.USD","d":[]},{"s":"QUICKSWAP:TOP50KOM_DD4531","d":[]},{"s":"QUICKSWAP:BANANAWETH_DEE9DC","d":[]},{"s":"PHEMEX:PORTOUSDT","d":[]},{"s":"VERSEETH:HAPIUSDC_33D15C.USD","d":[]},{"s":"UNISWAP:KERMITWETH_61CE73","d":[]},{"s":"PANGOLIN:EDBITWAVAX_D8A638","d":[]},{"s":"UNISWAP:COLRWETH_A71580.USD","d":[]},{"s":"MEXC:ROSEUSDT","d":[]},{"s":"SPOOKYSWAP:BOOUSDC_6B3B19.USD","d":[]},{"s":"GATEIO:VTGUSDT","d":[]},{"s":"COINBASE:GRTEUR","d":[]},{"s":"UNISWAP3ARBITRUM:FUSDCUSDC_6D6E11.USD","d":[]},{"s":"UNISWAP3ETH:WETHTGBP","d":[]},{"s":"QUICKSWAP:KAVIWMATIC_617178","d":[]},{"s":"UNISWAP3ETH:WETHXONE","d":[]},{"s":"GEMINI:PEPEUSD","d":[]},{"s":"UNISWAP3ETH:MUMUWETH_3D72D1.USD","d":[]},{"s":"BINANCE:ICPFDUSD","d":[]},{"s":"XEXCHANGE:CRUWEGLD","d":[]},{"s":"COINEX:ZRXBTC","d":[]},{"s":"KRAKEN:USDCHF","d":[]},{"s":"HITBTC:SXPUSDT","d":[]},{"s":"UNISWAP:WBNWETH_AEC2A2.USD","d":[]},{"s":"UNISWAP3POLYGON:SWCHUSDT_1DE01E.USD","d":[]},{"s":"WOONETWORK:ETHUSDT","d":[]},{"s":"UNISWAP:LONGWETH_2DF2EF","d":[]},{"s":"UNISWAP3ETH:WASUSDC","d":[]},{"s":"PHEMEX:PAXGUSDT","d":[]},{"s":"MEXC:MNFTUSDT","d":[]},{"s":"POLONIEX:BATBTC","d":[]},{"s":"UNISWAP:DOGE1WETH_C0263B","d":[]},{"s":"BITFINEX:KSMBTC","d":[]},{"s":"GATEIO:EMONUSDT","d":[]},{"s":"COINEX:HUHUUSDT","d":[]},{"s":"COINEX:1CATUSDT","d":[]},{"s":"MEXC:ARTYUSDT","d":[]},{"s":"KRAKEN:TRXUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHJEFF","d":[]},{"s":"PANGOLIN:MIMWAVAX_239AAE.USD","d":[]},{"s":"BITHUMB:KSMKRW","d":[]},{"s":"QUICKSWAP:ATKWETH_59213D","d":[]},{"s":"PHEMEX:OMUSDT.P","d":[]},{"s":"UNISWAP:0XANONWETH_76BFF3","d":[]},{"s":"MEXC:BANANAUSDT","d":[]},{"s":"UNISWAP:OZKWETH_BF1B57","d":[]},{"s":"UNISWAP3ETH:RENQUSDT_9CD0D2.USD","d":[]},{"s":"GATEIO:FIOUSDT","d":[]},{"s":"MEXC:OBIUSDT","d":[]},{"s":"COINEX:SDNBTC","d":[]},{"s":"GATEIO:LUFFYUSDT","d":[]},{"s":"PHEMEX:RENUSDT.P","d":[]},{"s":"XEXCHANGE:BEEWEGLD","d":[]},{"s":"UPBIT:TKRW","d":[]},{"s":"COINEX:KDAUSDT","d":[]},{"s":"UNISWAP:FETWETH_4042A0.USD","d":[]},{"s":"UNISWAP3ETH:MDTWETH","d":[]},{"s":"KRAKEN:LTCUSD.PM","d":[]},{"s":"GATEIO:DMCUSDT","d":[]},{"s":"ZOOMEX:INJUSDT.P","d":[]},{"s":"BINANCE:WOOUSDT","d":[]},{"s":"UNISWAP:SMRTWETH_FAAD22","d":[]},{"s":"MEXC:ZKPUSDT","d":[]},{"s":"COINEX:XCNUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:DAIUSDT_6387B0.USD","d":[]},{"s":"UNISWAP3ETH:INDEXWETH_8C1314.USD","d":[]},{"s":"HITBTC:1INCHUSDC","d":[]},{"s":"UNISWAP3ETH:SMTUSDC","d":[]},{"s":"BINANCE:LINKTUSD","d":[]},{"s":"WHITEBIT:ALPACAUSDT","d":[]},{"s":"BTSE:MASKUSD.P","d":[]},{"s":"COINEX:STORJUSDC","d":[]},{"s":"UNISWAP3ETH:RUSDWETH","d":[]},{"s":"UNISWAP:PAYWETH_583A00.USD","d":[]},{"s":"GATEIO:CATEUSDT","d":[]},{"s":"UNISWAP:ELONONEWETH_9EC514.USD","d":[]},{"s":"HITBTC:SMARTBTC","d":[]},{"s":"KRAKEN:MATICUSDT","d":[]},{"s":"MEXC:IOTXUSDT","d":[]},{"s":"QUICKSWAP:PAYWMATIC_DC37DD.USD","d":[]},{"s":"SPOOKYSWAP:WSTAETH_47DCD7.USD","d":[]},{"s":"UNISWAP3ETH:LMWRWETH_5C2891.USD","d":[]},{"s":"SPOOKYSWAP:TAZORWFTM_700B4D","d":[]},{"s":"BITSTAMP:DOTUSD","d":[]},{"s":"UNISWAP3ETH:RIOWETH_5B7E3E.USD","d":[]},{"s":"BITRUE:CSCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSPELL","d":[]},{"s":"BITGET:SHIBUSDT","d":[]},{"s":"UNISWAP:MEOWWETH_19F026","d":[]},{"s":"PIONEX:BIGTIMEUSDT.P","d":[]},{"s":"BYBIT:OBXUSDT","d":[]},{"s":"BTSE:LPTUSD","d":[]},{"s":"UNISWAP:AIMAGEWETH_2917F0.USD","d":[]},{"s":"BITFINEX:MIMBTC","d":[]},{"s":"UNISWAP:TAONUWETH_00AA54.USD","d":[]},{"s":"UNISWAP:QWETH_8B5778.USD","d":[]},{"s":"TRADERJOE:WOLFWAVAX_08DB8E.USD","d":[]},{"s":"COINEX:MINAUSDT","d":[]},{"s":"COINEX:FTMBTC","d":[]},{"s":"BITGET:SANDUSDT.P","d":[]},{"s":"BINANCE:SHIBUSDT","d":[]},{"s":"ZOOMEX:BNBUSDT.P","d":[]},{"s":"UNISWAP:BTSWETH_635EB9","d":[]},{"s":"UNISWAP3ETH:WETHM2","d":[]},{"s":"COINEX:XPRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCHEX","d":[]},{"s":"UNISWAP3ARBITRUM:PENDLEWETH_B08A87.USD","d":[]},{"s":"BINANCE:PYTHFDUSD","d":[]},{"s":"UNISWAP3ETH:WETHKASINU","d":[]},{"s":"UNISWAP:AIIWETH_159AE1.USD","d":[]},{"s":"UNISWAP:JVLWETH_0933E0.USD","d":[]},{"s":"COINBASE:BANDUSD","d":[]},{"s":"UNISWAP:X7104WETH_7D0D7C","d":[]},{"s":"UNISWAP:CETIWTAO_114020.USD","d":[]},{"s":"UNISWAP3ETH:WETHTREE","d":[]},{"s":"MEXC:PANDADAOUSDT","d":[]},{"s":"BITFINEX:FLRBTC","d":[]},{"s":"UNISWAP:MUMUWETH_ABD503","d":[]},{"s":"UNISWAP:GFYWETH_0A24E4.USD","d":[]},{"s":"UNISWAP3ETH:WETHDINO404","d":[]},{"s":"UNISWAP:CTGPTWETH_A78DFF","d":[]},{"s":"UNISWAP3ETH:PARTYWETH_7A1F65.USD","d":[]},{"s":"BITFINEX:ETHUSD","d":[]},{"s":"BITSTAMP:SGBUSD","d":[]},{"s":"SPOOKYSWAP:MODUSDC_C915D1","d":[]},{"s":"BISWAP:BAKEWBNB_4C3726","d":[]},{"s":"QUICKSWAP:IUXUSDT_5CE7C6","d":[]},{"s":"BINANCE:DENTUSDT","d":[]},{"s":"UNISWAP3ETH:DATAWETH","d":[]},{"s":"UNISWAP:MICKEYWETH_2A7AE6","d":[]},{"s":"BITFINEX:ICPBTC","d":[]},{"s":"UNISWAP:AQTISWETH_B777D3.USD","d":[]},{"s":"PHEMEX:DOTUSDT.P","d":[]},{"s":"BISWAP:WBNBUSDT_8840C6","d":[]},{"s":"QUICKSWAP:RINGWMATIC_610A90","d":[]},{"s":"SPOOKYSWAP:RAVENWFTM_7FA386","d":[]},{"s":"BINANCE:BTTCUSDT","d":[]},{"s":"UNISWAP:PEPEBFWETH_DB9DF6.USD","d":[]},{"s":"BITGET:BLURUSDT.P","d":[]},{"s":"SPOOKYSWAP:OGTOMBWFTM_35A283.USD","d":[]},{"s":"QUICKSWAP:GFARM2WETH_DB869D","d":[]},{"s":"PHEMEX:BLURUSDT.P","d":[]},{"s":"BYBIT:SSVUSDT.P","d":[]},{"s":"BITFINEX:FUNUSD","d":[]},{"s":"UNISWAP:DOGPADWETH_4C7E62","d":[]},{"s":"UNISWAP:MCCWETH_9C2B19.USD","d":[]},{"s":"UNISWAP3ETH:ZKMLWETH_8A1FCE.USD","d":[]},{"s":"UNISWAP3ETH:DOLLARMUSICWETH","d":[]},{"s":"BITGET:LMUSDT","d":[]},{"s":"BYBIT:MATICBTC","d":[]},{"s":"UNISWAP3ETH:CHAIWETH_DBFF8E.USD","d":[]},{"s":"QUICKSWAP:BCMCWMATIC_CA3E45.USD","d":[]},{"s":"UNISWAP:SHIBLWETH_DE0A4A.USD","d":[]},{"s":"COINBASE:DIAUSD","d":[]},{"s":"PIONEX:ROSEUSDT.P","d":[]},{"s":"MEXC:PENUSDT","d":[]},{"s":"UNISWAP:OTXWETH_08D4EF","d":[]},{"s":"BINANCE:FIROUSDT","d":[]},{"s":"BINANCE:ROSEUSDT","d":[]},{"s":"UNISWAP3ETH:AMKTWETH","d":[]},{"s":"UNISWAP3ETH:LDOWETH","d":[]},{"s":"TRADERJOE:USTUSDCE_A3A029","d":[]},{"s":"MEXC:BXCUSDT","d":[]},{"s":"UNISWAP:BTCPEPWETH_CAF528.USD","d":[]},{"s":"MEXC:FRCUSDT","d":[]},{"s":"BITGET:BADUSDT","d":[]},{"s":"UNISWAP3ETH:LNDXWETH","d":[]},{"s":"UNISWAP:GOLDWETH_0A8642","d":[]},{"s":"BINANCE:RONINBTC","d":[]},{"s":"BITRUE:SHIBUSDC","d":[]},{"s":"COINEX:GLMUSDT","d":[]},{"s":"BITFINEX:EUTUST","d":[]},{"s":"UNISWAP3ETH:WETHCZ","d":[]},{"s":"BINANCE:ONEUSDT","d":[]},{"s":"MEXC:RPLUSDT","d":[]},{"s":"POLONIEX:ETCUSDT","d":[]},{"s":"UNISWAP:BINANCEWETH_53900D.USD","d":[]},{"s":"BITHUMB:MOCKRW","d":[]},{"s":"UNISWAP3ETH:OBOTSDEX_185959.USD","d":[]},{"s":"KRAKEN:TOKEUSD","d":[]},{"s":"UNISWAP3ETH:CRVUSDUSDC_73EA3D.USD","d":[]},{"s":"BITGET:OLASUSDT","d":[]},{"s":"SPOOKYSWAP:ZOOWFTM_3CCEB4","d":[]},{"s":"GATEIO:BNBUSDT.3S","d":[]},{"s":"PHEMEX:LINKUSDC","d":[]},{"s":"COINEX:XPETUSDT","d":[]},{"s":"UNISWAP:PUSSYWETH_AC3369","d":[]},{"s":"BYBIT:KCALUSDT","d":[]},{"s":"BTSE:ENSUSD.P","d":[]},{"s":"PHEMEX:ELFUSDT","d":[]},{"s":"COINEX:XCHUSDT","d":[]},{"s":"UNISWAP:SHUGGIWETH_67AED5","d":[]},{"s":"UNISWAP3ETH:BABYSORAWETH_9CBDBB.USD","d":[]},{"s":"UNISWAP3POLYGON:AISUSDC_F257D5.USD","d":[]},{"s":"GATEIO:MDAUSDT","d":[]},{"s":"BITRUE:LINKETH","d":[]},{"s":"COINEX:RSTKUSDT","d":[]},{"s":"PANGOLIN:JPYCUSDC_CEBAC1.USD","d":[]},{"s":"COINEX:MNDEUSDT","d":[]},{"s":"PHEMEX:TOKENUSDT.P","d":[]},{"s":"POLONIEX:WRXBTC","d":[]},{"s":"GEMINI:LTCBCH","d":[]},{"s":"POLONIEX:TITANUSDT","d":[]},{"s":"MEXC:SUCUSDT","d":[]},{"s":"UNISWAP:HAKAWETH_C5BBE6","d":[]},{"s":"UNISWAP3ETH:WETHWCOMAI","d":[]},{"s":"POLONIEX:XYMUSDT","d":[]},{"s":"UNISWAP3POLYGON:SOLXUSDT_6D66B6.USD","d":[]},{"s":"UNISWAP3ETH:USDTQSP","d":[]},{"s":"MEXC:BONEUSDT.P","d":[]},{"s":"UNISWAP3ETH:VEEUSDT","d":[]},{"s":"BITGET:ARUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSFI","d":[]},{"s":"BITRUE:BTRXRP","d":[]},{"s":"UNISWAP:ORDIFIWETH_76C849.USD","d":[]},{"s":"UNISWAP3ETH:WETHDNA","d":[]},{"s":"BINANCEUS:OCEANUSDT","d":[]},{"s":"HITBTC:BOSONUSDT","d":[]},{"s":"BITGET:STRAXUSDT","d":[]},{"s":"ZOOMEX:ICXUSDT.P","d":[]},{"s":"TRADERJOE:HONWAVAX_DB87BA","d":[]},{"s":"UNISWAP:CREWETH_7262A4.USD","d":[]},{"s":"UNISWAP3ARBITRUM:VRTXUSDT_653148.USD","d":[]},{"s":"BINANCE:SUITRY","d":[]},{"s":"BITGET:1000SATSUSDT.P","d":[]},{"s":"MEXC:GALUSDT.P","d":[]},{"s":"BINANCE:OCEANBNB","d":[]},{"s":"BINANCE:OCEANBTC","d":[]},{"s":"BITMEX:AERGOUSDT.P","d":[]},{"s":"GATEIO:CHRUSDT","d":[]},{"s":"MEXC:OPUSDT","d":[]},{"s":"SPOOKYSWAP:RAVENWFTM_7FA386.USD","d":[]},{"s":"UNISWAP:BEAMWETH_180EFC","d":[]},{"s":"TRADERJOE:EVBWAVAX_E06D4F","d":[]},{"s":"UNISWAP3ETH:WETHFREE","d":[]},{"s":"BINGX:NTRNUSDT.P","d":[]},{"s":"BYBIT:NEXOUSDT","d":[]},{"s":"UNISWAP:BMIWETH_A9BD7E","d":[]},{"s":"MEXC:OJAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMETIS","d":[]},{"s":"BITGET:JUPUSDT.P","d":[]},{"s":"SPOOKYSWAP:TAROTWFTM_11D90E.USD","d":[]},{"s":"BINANCE:ARBBTC","d":[]},{"s":"UNISWAP:MILK2SHAKE_9F319E","d":[]},{"s":"UNISWAP:HEDGEWETH_26A0CB","d":[]},{"s":"MEXC:EMRUSDT","d":[]},{"s":"HITBTC:API3USDT","d":[]},{"s":"POLONIEX:NAKAUSDT","d":[]},{"s":"GATEIO:PLAYUSDT","d":[]},{"s":"MEXC:MARSHUSDT","d":[]},{"s":"BITKUB:XRPTHB","d":[]},{"s":"UNISWAP3ARBITRUM:AAWETH_A30DF5.USD","d":[]},{"s":"COINEX:ATORUSDT","d":[]},{"s":"BITGET:CVXUSDT.P","d":[]},{"s":"KRAKEN:PONDUSD","d":[]},{"s":"TRADERJOE:GGPWAVAX_AE671E","d":[]},{"s":"VERSEETH:VRAUSDT_0B0242.USD","d":[]},{"s":"UNISWAP:WLITIWETH_5AC9EA","d":[]},{"s":"UNISWAP:BIGSBUSDC_149148","d":[]},{"s":"UNISWAP:PLXWETH_5AEA97","d":[]},{"s":"UNISWAP3POLYGON:RBWWMATIC_3A1EA4.USD","d":[]},{"s":"TRADERJOE:AKITAWAVAX_5928F0.USD","d":[]},{"s":"UNISWAP:WDOGEWETH_C3D7AA","d":[]},{"s":"UNISWAP:HONEYCOINWETH_DF4462.USD","d":[]},{"s":"MEXC:MOBILEUSDT","d":[]},{"s":"BITGET:1CATUSDT","d":[]},{"s":"MEXC:MANAUSDT","d":[]},{"s":"UNISWAP:PEPAWETH_6B316F.USD","d":[]},{"s":"UNISWAP:LRCWETH_8878DF.USD","d":[]},{"s":"MEXC:KP3RUSDT","d":[]},{"s":"HITBTC:FETBTC","d":[]},{"s":"UNISWAP:VAIWETH_AF95D3.USD","d":[]},{"s":"UNISWAP3ETH:PROWETH_C7CF08.USD","d":[]},{"s":"BITGET:MCHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBOOP","d":[]},{"s":"SPOOKYSWAP:FLORYWFTM_453E15.USD","d":[]},{"s":"UNISWAP:GROKGPTWETH_A26F08","d":[]},{"s":"GATEIO:VARAUSDT","d":[]},{"s":"MEXC:SDTUSDT","d":[]},{"s":"BITFINEX:ETHUST","d":[]},{"s":"BITGET:BBOUSDT","d":[]},{"s":"HITBTC:CVTBTC","d":[]},{"s":"UNISWAP3ETH:INUWETH","d":[]},{"s":"BTSE:C98USD.P","d":[]},{"s":"WAGYUSWAP:VICIWVLX_13526C.USD","d":[]},{"s":"MEXC:PGUSDT","d":[]},{"s":"KRAKEN:BTCDAI","d":[]},{"s":"HITBTC:STNDBTC","d":[]},{"s":"UNISWAP3ETH:GEMWETH_455383.USD","d":[]},{"s":"COINEX:AIDOGEUSDT","d":[]},{"s":"UNISWAP:DBNBWETH_A9B339","d":[]},{"s":"UNISWAP:FUFUWETH_F43672.USD","d":[]},{"s":"BINGX:ATOMUSDT.PS","d":[]},{"s":"MEXC:APCGUSDT","d":[]},{"s":"UNISWAP:ZENIWETH_0D5751","d":[]},{"s":"TRADERJOE:LEOWAVAX_18F92C","d":[]},{"s":"GATEIO:BFCUSDT","d":[]},{"s":"BISWAP:VETWBNB_6882A3","d":[]},{"s":"HITBTC:BRISEUSDT","d":[]},{"s":"TRADERJOE:W3ULLWAVAX_CCD7DE","d":[]},{"s":"UNISWAP:CLOSEDAIWETH_A63D86.USD","d":[]},{"s":"WHITEBIT:RENUSDT","d":[]},{"s":"BITRUE:EQUSDT","d":[]},{"s":"TRADERJOE:TACOSWAVAX_1EBB06","d":[]},{"s":"UNISWAP3ETH:WETHWOJAK","d":[]},{"s":"GATEIO:CALUSDT","d":[]},{"s":"BITKUB:BNBTHB","d":[]},{"s":"TRADERJOE:APEWAVAX_11BBFA.USD","d":[]},{"s":"UNISWAP3ETH:USDCSUSHI","d":[]},{"s":"UNISWAP:XENWETH_C0D776","d":[]},{"s":"UNISWAP:POWWETH_A19BBA","d":[]},{"s":"COINEX:GWGWUSDT","d":[]},{"s":"UNISWAP3ETH:FLCWETH_19FE98.USD","d":[]},{"s":"UNISWAP:VXAIWETH_1A4CD6","d":[]},{"s":"BINGX:UNFIUSDT.PS","d":[]},{"s":"BITSTAMP:SLPEUR","d":[]},{"s":"UNISWAP:MOGWETH_C2EAB7","d":[]},{"s":"GATEIO:CELRUSDT","d":[]},{"s":"UNISWAP:COMPWETH_CFFDDE","d":[]},{"s":"UNISWAP:AVGWETH_FA5562.USD","d":[]},{"s":"COINBASE:ZECUSD","d":[]},{"s":"UNISWAP3ETH:RLCSDEX_5B2840.USD","d":[]},{"s":"BYBIT:CELOUSDT.P","d":[]},{"s":"UNISWAP3ETH:SILV2WETH_EF9A92.USD","d":[]},{"s":"BINANCE:ALPHABTC","d":[]},{"s":"UNISWAP:F9WETH_459E4E.USD","d":[]},{"s":"QUICKSWAP:KOOPUSDT_1FCE8C","d":[]},{"s":"COINEX:ALPHAUSDT","d":[]},{"s":"MEXC:BTCUSDT","d":[]},{"s":"PANGOLIN:SNOBWAVAX_A1C2C3","d":[]},{"s":"UNISWAP:TOWERWETH_4E9E73","d":[]},{"s":"UNISWAP3ETH:FREEWETH","d":[]},{"s":"QUICKSWAP:PIKAWMATIC_171F13","d":[]},{"s":"MEXC:PBXUSDT","d":[]},{"s":"MEXC:BLASTUSDT","d":[]},{"s":"UNISWAP:EXNTWETH_E875D8.USD","d":[]},{"s":"QUICKSWAP:YELWMATIC_8BAB87.USD","d":[]},{"s":"BYBIT:SCAUSDT","d":[]},{"s":"GATEIO:FEGUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GRAINWETH_613242.USD","d":[]},{"s":"QUICKSWAP:ARCADIUMWMATIC_0BBAFA","d":[]},{"s":"SPOOKYSWAP:PHEPEWFTM_EEB2E0","d":[]},{"s":"SPOOKYSWAP:GOOWFTM_2A0804.USD","d":[]},{"s":"BITMEX:ORBSUSDT.P","d":[]},{"s":"COINEX:BOOTOKENUSDT","d":[]},{"s":"WHITEBIT:RADUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSI","d":[]},{"s":"TRADERJOE:MIMWAVAX_781655.USD","d":[]},{"s":"UNISWAP3ETH:DOGWETH_9B3423.USD","d":[]},{"s":"UNISWAP:UDTWETH_9CA8AE","d":[]},{"s":"UNISWAP:TRXWETH_7C8699.USD","d":[]},{"s":"COINBASE:WCFGUSD","d":[]},{"s":"SPOOKYSWAP:HNRWFTM_663684.USD","d":[]},{"s":"BTSE:UNIUSD","d":[]},{"s":"MEXC:TOFFEEUSDT","d":[]},{"s":"UNISWAP3ETH:SHIBAFORKWETH","d":[]},{"s":"BTSE:NEARUSD","d":[]},{"s":"BYBIT:XTZUSDT.P","d":[]},{"s":"TRADERJOE:ORBSWAVAX_031552","d":[]},{"s":"UNISWAP:NERDWETH_38E997.USD","d":[]},{"s":"MEXC:DEVVEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ZEEPUSDT_5D953E.USD","d":[]},{"s":"SPOOKYSWAP:DRAUGRSWAPUSDC_4C8D8E","d":[]},{"s":"BYBIT:MATICUSDT","d":[]},{"s":"BITFINEX:RLYBTC","d":[]},{"s":"UNISWAP3ARBITRUM:HYPEWETH_A6044B.USD","d":[]},{"s":"BITGET:SXSUSDT","d":[]},{"s":"TRADERJOE:BNBWAVAX_EB8EB6.USD","d":[]},{"s":"BITGET:BNXUSDT.P","d":[]},{"s":"BINANCE:SYSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPAID","d":[]},{"s":"UNISWAP:EJSWETH_0BC139.USD","d":[]},{"s":"BITGET:XRP8USDT","d":[]},{"s":"UNISWAP:TRUMPWETH_8AE950.USD","d":[]},{"s":"HITBTC:PANUSD","d":[]},{"s":"UNISWAP3ETH:RARIWETH","d":[]},{"s":"GATEIO:STARLUSDT","d":[]},{"s":"BINANCEUS:MXCUSDT","d":[]},{"s":"UNISWAP:XPROWETH_22BEE1.USD","d":[]},{"s":"SPOOKYSWAP:FTMOUSDC_9A3C6C","d":[]},{"s":"MEXC:ANTCUSDT","d":[]},{"s":"UNISWAP3ETH:MNRCHWETH","d":[]},{"s":"PIONEX:KASUSDT.P","d":[]},{"s":"UNISWAP:IMBTCWETH_4D1368.USD","d":[]},{"s":"UNISWAP:CINUWETH_EC6771.USD","d":[]},{"s":"UNISWAP:HAMBURGLARWETH_3DCA1C","d":[]},{"s":"MEXC:IOTXUSDT.P","d":[]},{"s":"HITBTC:TRUEUSD","d":[]},{"s":"UNISWAP3ETH:CHADWETH","d":[]},{"s":"UNISWAP3ETH:WETHMRF","d":[]},{"s":"HITBTC:LINKBTC","d":[]},{"s":"BLOFIN:ZRXUSDT.P","d":[]},{"s":"GATEIO:BTRSTUSDT","d":[]},{"s":"BYBIT:AAVEUSDT","d":[]},{"s":"UNISWAP3ETH:ICETHWETH","d":[]},{"s":"UNISWAP3ETH:MICKEYWETH","d":[]},{"s":"WHITEBIT:ACHUSDT","d":[]},{"s":"BISWAP:BATWBNB_A099F0","d":[]},{"s":"UNISWAP3ETH:WETHMMT","d":[]},{"s":"UNISWAP:PDFROGSDAI_087711","d":[]},{"s":"BITHUMB:BTTKRW","d":[]},{"s":"MEXC:APT1USDT","d":[]},{"s":"PHEMEX:CTSIUSDT.P","d":[]},{"s":"UNISWAP:EPETSWETH_9A20F7.USD","d":[]},{"s":"BITGET:VAIUSDT","d":[]},{"s":"HITBTC:LTCEOS","d":[]},{"s":"BITHUMB:OGNKRW","d":[]},{"s":"BINANCE:IOTATRY","d":[]},{"s":"HITBTC:WINBTC","d":[]},{"s":"MEXC:NOVAXUSDT","d":[]},{"s":"UNISWAP:FINEWETH_B54CE2.USD","d":[]},{"s":"MEXC:ONDOUSDT.P","d":[]},{"s":"UNISWAP3ETH:TAROUSDT","d":[]},{"s":"UNISWAP3POLYGON:FORTWMATIC_65CA07.USD","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARREKT","d":[]},{"s":"ZOOMEX:OCEANUSDT.P","d":[]},{"s":"BITRUE:FORTHUSDT","d":[]},{"s":"UNISWAP3POLYGON:WBTCWMATIC_642F28.USD","d":[]},{"s":"BYBIT:SQTUSDT","d":[]},{"s":"WOONETWORK:ONDOUSDT","d":[]},{"s":"MEXC:AASTUSDT","d":[]},{"s":"KRAKEN:DENTEUR","d":[]},{"s":"UNISWAP:CATWETH_613212.USD","d":[]},{"s":"UNISWAP3POLYGON:FDTUSDT_3B7A1A.USD","d":[]},{"s":"OKX:GALUSDT.P","d":[]},{"s":"GATEIO:LAVITAUSDT","d":[]},{"s":"HITBTC:ZAPBTC","d":[]},{"s":"BITGET:LQTYUSDT","d":[]},{"s":"UNISWAP3POLYGON:BEPROUSDC_1A710F.USD","d":[]},{"s":"UNISWAP3POLYGON:USDCWETH_19C550.USD","d":[]},{"s":"BITSTAMP:FTMEUR","d":[]},{"s":"POLONIEX:TESTUSDT","d":[]},{"s":"KRAKEN:BCHEUR","d":[]},{"s":"PANGOLIN:LINKWAVAX_BBC7FF","d":[]},{"s":"UNISWAP3ETH:DCHFUSDC_0B1DEB.USD","d":[]},{"s":"BITRUE:AVAXUSDT","d":[]},{"s":"UNISWAP:PMOGPOHM_F3D2F6.USD","d":[]},{"s":"KRAKEN:SPELLEUR","d":[]},{"s":"UNISWAP:ORBSWETH_C98B3B.USD","d":[]},{"s":"UNISWAP3ETH:WETHDAI_60594A.USD","d":[]},{"s":"BYBIT:10000000AIDOGEUSDT.P","d":[]},{"s":"OKX:FETUSDT.P","d":[]},{"s":"BYBIT:GFTUSDT.P","d":[]},{"s":"UNISWAP:ALDWETH_ED6C2F","d":[]},{"s":"PHEMEX:BANDUSDT","d":[]},{"s":"UNISWAP:SHIBELONWETH_F5364C","d":[]},{"s":"GATEIO:NAPUSDT","d":[]},{"s":"UNISWAP3ETH:DBIWETH","d":[]},{"s":"BINGX:GALAUSDT.PS","d":[]},{"s":"VERSEETH:WETHDAI_682831.USD","d":[]},{"s":"QUICKSWAP:GHSTFOMO_641CA8","d":[]},{"s":"BITMEX:100SATSUSD","d":[]},{"s":"BITSTAMP:UMAUSD","d":[]},{"s":"GATEIO:BAMBOOUSDT","d":[]},{"s":"POLONIEX:POPUSDT","d":[]},{"s":"GATEIO:AMPUSDT","d":[]},{"s":"HITBTC:ROSEUSDT","d":[]},{"s":"UNISWAP3ETH:LITWETH","d":[]},{"s":"COINEX:EQXUSDT","d":[]},{"s":"GATEIO:LENDSUSDT","d":[]},{"s":"UNISWAP3ETH:USDTITP","d":[]},{"s":"TRADERJOE:CORKWAVAX_D998AB.USD","d":[]},{"s":"UNISWAP:PAIWETH_FBB4E3","d":[]},{"s":"GATEIO:BSWUSDT","d":[]},{"s":"UNISWAP:WAXEWETH_0EE0CB","d":[]},{"s":"MEXC:LPTUSDT.P","d":[]},{"s":"GATEIO:TRACEUSDT","d":[]},{"s":"MEXC:CWSUSDT","d":[]},{"s":"BINANCE:BTCDAI","d":[]},{"s":"BINANCE:RUNEUSD.P","d":[]},{"s":"UNISWAP:CLOSEDAIWETH_A63D86","d":[]},{"s":"GEMINI:LTCGUSD.P","d":[]},{"s":"UNISWAP3ETH:TRXCWETH","d":[]},{"s":"UNISWAP3ETH:ICHIWETH_E26F34.USD","d":[]},{"s":"UNISWAP:ERRORWETH_D2ACF6","d":[]},{"s":"UNISWAP:PLPCWETH_7B36C4.USD","d":[]},{"s":"UNISWAP3ETH:ILVWETH_BAEC0E.USD","d":[]},{"s":"TRADERJOE:ANKRWAVAX_754A67","d":[]},{"s":"BLOFIN:SOLUSDT.P","d":[]},{"s":"TRADERJOE:AKITAXWAVAX_837D44","d":[]},{"s":"UNISWAP:VRDWETH_D2A72B","d":[]},{"s":"HITBTC:EVERUSD","d":[]},{"s":"UNISWAP:ACWETH_666055","d":[]},{"s":"UNISWAP:BTEWETH_130AE7","d":[]},{"s":"COINEX:ADAUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:POGAIWETH_77D17D.USD","d":[]},{"s":"UNISWAP3ETH:KASINUWETH","d":[]},{"s":"UNISWAP:PWBTCPOHM_3DEC6D","d":[]},{"s":"QUICKSWAP:SWAYUSDC_8CC823","d":[]},{"s":"BITMEX:UNIUSDT","d":[]},{"s":"HITBTC:KMDETH","d":[]},{"s":"TRADERJOE:METAGWAVAX_968033.USD","d":[]},{"s":"UNISWAP3ETH:LOOMWETH","d":[]},{"s":"UNISWAP3ETH:WOWFLC_EC9979.USD","d":[]},{"s":"UNISWAP3ETH:FEIDAI_BB2E5C.USD","d":[]},{"s":"BYBIT:MANABTC","d":[]},{"s":"BINANCE:BCHTRY","d":[]},{"s":"GATEIO:DYDXUSDT.3S","d":[]},{"s":"MEXC:DGCUSDT","d":[]},{"s":"GATEIO:CARATUSDT","d":[]},{"s":"BITFINEX:ICPUST.P","d":[]},{"s":"BINANCE:BTCEUR","d":[]},{"s":"GATEIO:BTCUSDT.5L","d":[]},{"s":"MEXC:MTRUSDT","d":[]},{"s":"WOONETWORK:LINKUSDT","d":[]},{"s":"UNISWAP3ETH:ALUSDFRAX_173CAC.USD","d":[]},{"s":"MEXC:OASUSDT","d":[]},{"s":"TRADERJOE:GSHAREWAVAX_AE427A","d":[]},{"s":"BINANCE:GFTUSDT","d":[]},{"s":"KRAKEN:LUNAEUR","d":[]},{"s":"GATEIO:SWFTCUSDT","d":[]},{"s":"MEXC:WSBUSDT","d":[]},{"s":"UNISWAP3ETH:PAIWETH_78DDC9.USD","d":[]},{"s":"UNISWAP:PCASHWETH_47C01E.USD","d":[]},{"s":"UNISWAP3ETH:WETHFI","d":[]},{"s":"UNISWAP:X2Y2WETH_603336","d":[]},{"s":"UNISWAP3ETH:MUSEWETH_F5E4A4.USD","d":[]},{"s":"BINANCE:HBARUSDT","d":[]},{"s":"BITSTAMP:EUROCEUR","d":[]},{"s":"UNISWAP3ETH:WETHORC","d":[]},{"s":"BITFINEX:SMRUSD","d":[]},{"s":"BITFINEX:ATOUSD","d":[]},{"s":"UNISWAP:HOICHIWETH_74AC70.USD","d":[]},{"s":"UNISWAP3ETH:WETHRING","d":[]},{"s":"BITFINEX:GBPUST","d":[]},{"s":"GATEIO:BUYUSDT","d":[]},{"s":"DELTA:BTCUSD.P","d":[]},{"s":"UNISWAP3ETH:FIWETH_C48396.USD","d":[]},{"s":"WAGYUSWAP:PENTWVLX_960957.USD","d":[]},{"s":"KRAKEN:BATUSD","d":[]},{"s":"HITBTC:BTCSTUSDT","d":[]},{"s":"GATEIO:NULSUSDT","d":[]},{"s":"PANGOLIN:USDCUSDCE_8A9C36","d":[]},{"s":"COINBASE:XRPUSDT","d":[]},{"s":"UNISWAP:BPDWETH_9BF92F.USD","d":[]},{"s":"UNISWAP:AWCWETH_4A3FBA","d":[]},{"s":"BINANCE:IOTXETH","d":[]},{"s":"UNISWAP3POLYGON:MDXNWMATIC_717128.USD","d":[]},{"s":"UNISWAP:NINUWETH_0FF6C9.USD","d":[]},{"s":"UNISWAP:GETWETH_2680A9.USD","d":[]},{"s":"BINANCE:TRXXRP","d":[]},{"s":"HITBTC:CVPUSDT","d":[]},{"s":"COINEX:BANDUSDC","d":[]},{"s":"BTSE:KLAYUSD","d":[]},{"s":"UNISWAP3ETH:SHIBARIUMWETH","d":[]},{"s":"UNISWAP3ETH:WETHERR","d":[]},{"s":"BITGET:AXLUSDT.P","d":[]},{"s":"MEXC:BONEUSDT","d":[]},{"s":"BINGX:MKRUSDT.PS","d":[]},{"s":"COINEX:KANUSDT","d":[]},{"s":"KRAKEN:BICOUSD","d":[]},{"s":"UNISWAP3ETH:MAPUSDT","d":[]},{"s":"TRADERJOE:SACUSDTE_B4B611.USD","d":[]},{"s":"PHEMEX:HOOKUSDT","d":[]},{"s":"UNISWAP:INVWETH_73E02E","d":[]},{"s":"PIONEX:1INCHUSDT.P","d":[]},{"s":"UNISWAP:WHITEWETH_A3B79B","d":[]},{"s":"UNISWAP:REMITWETH_EEFC2A","d":[]},{"s":"UNISWAP3POLYGON:DUSDUSDC_3EF7F8.USD","d":[]},{"s":"UNISWAP:FRMWETH_92330D","d":[]},{"s":"BINANCE:GASUSDT","d":[]},{"s":"SPOOKYSWAP:BOOUSDC_6B3B19","d":[]},{"s":"DYDX:UNIUSD.P","d":[]},{"s":"UNISWAP3ETH:MPSUSDC_A74AC0.USD","d":[]},{"s":"UNISWAP:HONRWETH_7BA88E","d":[]},{"s":"BYBIT:AMBUSDT.P","d":[]},{"s":"UNISWAP3ETH:COOLFLC_383F1D.USD","d":[]},{"s":"UNISWAP3OPTIMISM:TBTCWBTC_D52533.USD","d":[]},{"s":"UNISWAP:ALIPEWETH_CC575D.USD","d":[]},{"s":"UNISWAP:IXSWETH_C09BF2.USD","d":[]},{"s":"UNISWAP:DOGWIFHATWETH_11C20A","d":[]},{"s":"MEXC:APFCUSDT","d":[]},{"s":"POLONIEX:TRIBEUSDT","d":[]},{"s":"PANGOLIN:RUGPULLWAVAX_A8D0C8.USD","d":[]},{"s":"UNISWAP3ETH:WETHEWTB","d":[]},{"s":"SPOOKYSWAP:2SHARESWFTM_6398AC.USD","d":[]},{"s":"UNISWAP:POOLWETH_85CB0B.USD","d":[]},{"s":"TRADERJOE:CHECKWAVAX_5579CA.USD","d":[]},{"s":"UNISWAP3ETH:ZARPWETH","d":[]},{"s":"BITFINEX:NXRAUSD","d":[]},{"s":"UNISWAP3ETH:SOLIDWETH_191F63.USD","d":[]},{"s":"UNISWAP3ETH:DEPAYDAI","d":[]},{"s":"HITBTC:ORMEUSETH","d":[]},{"s":"QUICKSWAP:ICEWBTC_DC4734.USD","d":[]},{"s":"UNISWAP3ETH:UNIWETH_360B97.USD","d":[]},{"s":"UNISWAP3POLYGON:PYRUSDC_30FE5E.USD","d":[]},{"s":"UNISWAP:DOTSWETH_75061B","d":[]},{"s":"POLONIEX:OOKIUSDT","d":[]},{"s":"GATEIO:ASTRUSDT","d":[]},{"s":"MEXC:ETERNALUSDT","d":[]},{"s":"COINBASE:SHPINGUSD","d":[]},{"s":"COINEX:NCTUSDT","d":[]},{"s":"KRAKEN:USDTCAD","d":[]},{"s":"GATEIO:WITUSDT","d":[]},{"s":"HITBTC:XCNBTC","d":[]},{"s":"BINANCE:WNXMUSDT","d":[]},{"s":"COINBASE:TRACUSD","d":[]},{"s":"UPBIT:MBLKRW","d":[]},{"s":"UNISWAP:GCOTICOTI_7335E5.USD","d":[]},{"s":"QUICKSWAP:PIWMATIC_452861","d":[]},{"s":"UNISWAP3ETH:USDTGPT","d":[]},{"s":"GATEIO:MTGUSDT","d":[]},{"s":"UNISWAP3ETH:FPISWETH","d":[]},{"s":"HITBTC:HIFIUSDT","d":[]},{"s":"COINBASE:AXSUSD","d":[]},{"s":"ZOOMEX:OXTUSDT.P","d":[]},{"s":"UNISWAP3ETH:RPLWETH_E42318.USD","d":[]},{"s":"UNISWAP3ETH:COMPUSDC","d":[]},{"s":"TRADERJOE:RSTWAVAX_648C21","d":[]},{"s":"TRADERJOE:EGGSWAVAX_12D1E1.USD","d":[]},{"s":"SPOOKYSWAP:SPANKUSDC_F9563C","d":[]},{"s":"BITSTAMP:SKLUSD","d":[]},{"s":"MEXC:QNTUSDT","d":[]},{"s":"HITBTC:HBARUSD","d":[]},{"s":"BINANCE:STGUSDT","d":[]},{"s":"UNISWAP3ETH:OPSECWETH_45F4D6.USD","d":[]},{"s":"UNISWAP3ETH:ZENIQLINK","d":[]},{"s":"UNISWAP3ETH:GFUSDC","d":[]},{"s":"BITFINEX:MIMUST","d":[]},{"s":"SPOOKYSWAP:AAVEWFTM_EBF374","d":[]},{"s":"ZOOMEX:BONDUSDT.P","d":[]},{"s":"PANGOLIN:CORNUSDCE_C6A9DC","d":[]},{"s":"HITBTC:MATHUSDT","d":[]},{"s":"BINANCE:YFIUSDT","d":[]},{"s":"GATEIO:RPKUSDT","d":[]},{"s":"BLOFIN:ARBUSDT.P","d":[]},{"s":"UNISWAP:GOOGLEWETH_2EB918.USD","d":[]},{"s":"UNISWAP:BANANAWETH_43DE43.USD","d":[]},{"s":"UNISWAP:KAKIWETH_D507D8.USD","d":[]},{"s":"UNISWAP:DGNSWETH_79D49C","d":[]},{"s":"UNISWAP:HOICHIWETH_74AC70","d":[]},{"s":"UNISWAP:DSTWETH_D36FE2.USD","d":[]},{"s":"KRAKEN:OMGETH","d":[]},{"s":"UNISWAP3POLYGON:QRWMATIC_3964E7.USD","d":[]},{"s":"HITBTC:ALCXBTC","d":[]},{"s":"UNISWAP:KERMITWETH_4B882B","d":[]},{"s":"UNISWAP3ETH:LMWRWETH","d":[]},{"s":"COINEX:GARIUSDT","d":[]},{"s":"HITBTC:ANTBTC","d":[]},{"s":"UNISWAP:AIWETH_A9A88A","d":[]},{"s":"UNISWAP3ETH:WETHP404","d":[]},{"s":"GATEIO:IHTUSDT","d":[]},{"s":"BITKUB:XTZTHB","d":[]},{"s":"UNISWAP3ETH:VPADWETH","d":[]},{"s":"COINEX:AARTUSDT","d":[]},{"s":"MEXC:DOGEBABYUSDT","d":[]},{"s":"UNISWAP3ETH:ELANDWETH_8119C0.USD","d":[]},{"s":"UNISWAP3ETH:HEMULEWETH","d":[]},{"s":"UNISWAP:TREEWETH_3E800F","d":[]},{"s":"UNISWAP:CRUWETH_469506","d":[]},{"s":"HITBTC:XLMBTC","d":[]},{"s":"BINANCE:JUPUSDC","d":[]},{"s":"BITHUMB:XCNKRW","d":[]},{"s":"UNISWAP:LIQWETH_13C869","d":[]},{"s":"UNISWAP3ETH:USDCDEXTF","d":[]},{"s":"BITMEX:DOTUSD.P","d":[]},{"s":"WOONETWORK:BONKUSDT","d":[]},{"s":"WOONETWORK:MKRUSDT","d":[]},{"s":"UNISWAP3ETH:LCXWETH_5AAA28.USD","d":[]},{"s":"UNISWAP:HEDEXWETH_FCBA83","d":[]},{"s":"UNISWAP:DYNETHWETH_144A31","d":[]},{"s":"BLOFIN:MOVRUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMUSLIM","d":[]},{"s":"GATEIO:SUIPUSDT","d":[]},{"s":"BITHUMB:VETKRW","d":[]},{"s":"HITBTC:CELUSDT","d":[]},{"s":"ZOOMEX:UNIUSDT.P","d":[]},{"s":"PHEMEX:SPELLUSDT","d":[]},{"s":"POLONIEX:LTCUSD","d":[]},{"s":"BITFINEX:YFIUST","d":[]},{"s":"BITFINEX:TONUST","d":[]},{"s":"MEXC:IMPTUSDT","d":[]},{"s":"UNISWAP3ETH:CNVWETH_031112.USD","d":[]},{"s":"UPBIT:ETCKRW","d":[]},{"s":"UNISWAP:ARMORWETH_648450.USD","d":[]},{"s":"TRADERJOE:USDTEWAVAX_ED8CBD","d":[]},{"s":"UNISWAP:CHUPEWETH_6DAA33.USD","d":[]},{"s":"HITBTC:VOWUSDT","d":[]},{"s":"UNISWAP:LNDRYWETH_8D6249","d":[]},{"s":"UNISWAP3POLYGON:FXSABAIUSDT_13840F.USD","d":[]},{"s":"HITBTC:CEEKUSD","d":[]},{"s":"BYBIT:DGBUSDT","d":[]},{"s":"COINBASE:MUSEUSD","d":[]},{"s":"UNISWAP:FAIRWETH_5EBB45","d":[]},{"s":"COINEX:XYMBTC","d":[]},{"s":"BINANCE:SXPTRY","d":[]},{"s":"UNISWAP3ETH:USDYUSDC_B5C584.USD","d":[]},{"s":"BITGET:FTMUSDT.P","d":[]},{"s":"MEXC:STBOTUSDT","d":[]},{"s":"BTSE:DOTUSD","d":[]},{"s":"COINEX:MUSICUSDT","d":[]},{"s":"MEXC:ASTRAUSDT","d":[]},{"s":"QUICKSWAP:EVEWMATIC_3DC471.USD","d":[]},{"s":"UNISWAP:WBNWETH_AEC2A2","d":[]},{"s":"QUICKSWAP:SFLUSDC_6F09E1","d":[]},{"s":"PIONEX:CKBUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:RINGWETH_39FE25.USD","d":[]},{"s":"WAGYUSWAP:BITORBWAG_AD118B.USD","d":[]},{"s":"BITHUMB:ASMKRW","d":[]},{"s":"BYBIT:KSMUSDT","d":[]},{"s":"MEXC:DEFROGSUSDT","d":[]},{"s":"QUICKSWAP:MATICXWMATIC_B0E69F.USD","d":[]},{"s":"POLONIEX:PEPE20USDT","d":[]},{"s":"MEXC:3ULLUSDT","d":[]},{"s":"KRAKEN:DOTUSD","d":[]},{"s":"UNISWAP3OPTIMISM:WBTCUSDC_A7BB0D.USD","d":[]},{"s":"HITBTC:HUBUSD","d":[]},{"s":"BITGET:LRCUSDT","d":[]},{"s":"BITGET:ETHWUSDT","d":[]},{"s":"UNISWAP3ETH:TGOLDWETH","d":[]},{"s":"GATEIO:KISHUUSDT","d":[]},{"s":"UNISWAP3ETH:MAPUSDT_84D9B0.USD","d":[]},{"s":"COINEX:PIXELUSDT","d":[]},{"s":"GATEIO:HODUSDT","d":[]},{"s":"GATEIO:SEILORUSDT","d":[]},{"s":"POLONIEX:WLKNUSDD","d":[]},{"s":"COINEX:BCUTUSDT","d":[]},{"s":"UNISWAP3ETH:Y00TFLC_E286CF.USD","d":[]},{"s":"PIONEX:BADGERUSDT.P","d":[]},{"s":"MEXC:MEMERATSUSDT","d":[]},{"s":"GATEIO:BNTUSDT","d":[]},{"s":"UNISWAP:DPAYWETH_4CBCFF","d":[]},{"s":"GATEIO:NEONUSDT","d":[]},{"s":"UNISWAP:MBLKWETH_8180EB.USD","d":[]},{"s":"HITBTC:VIBEBTC","d":[]},{"s":"MEXC:FXSUSDT.P","d":[]},{"s":"GATEIO:LIENUSDT","d":[]},{"s":"GATEIO:DCBUSDT","d":[]},{"s":"GATEIO:HOTCROSSUSDT","d":[]},{"s":"UNISWAP3POLYGON:GOCWMATIC_4F654D.USD","d":[]},{"s":"POLONIEX:SWAPUSDT","d":[]},{"s":"BYBIT:MOVRUSDT","d":[]},{"s":"UNISWAP3POLYGON:VEEWETH_5834DA.USD","d":[]},{"s":"UNISWAP:POWWETH_A19BBA.USD","d":[]},{"s":"KRAKEN:PYTHEUR","d":[]},{"s":"UNISWAP:BETWETH_6AE265.USD","d":[]},{"s":"OKX:SATSUSDT.P","d":[]},{"s":"SPOOKYSWAP:MVDOLLARUSDC_35BED1","d":[]},{"s":"QUICKSWAP:SUREWETH_F9008F.USD","d":[]},{"s":"UNISWAP3ETH:USDTDREP","d":[]},{"s":"BLOFIN:LSKUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARMNB","d":[]},{"s":"UNISWAP:ZIONWETH_FA919D","d":[]},{"s":"HITBTC:OPBTC","d":[]},{"s":"UNISWAP:TAOSWETH_117CC7.USD","d":[]},{"s":"UNISWAP3ETH:TONCOINUSDC_2A48DB.USD","d":[]},{"s":"MEXC:QRLUSDT","d":[]},{"s":"UNISWAP:FLUTDAI_E532B0","d":[]},{"s":"MEXC:LOVESNOOPYUSDT","d":[]},{"s":"UNISWAP:MCUWETH_068553.USD","d":[]},{"s":"UNISWAP3ETH:WETHTRDM","d":[]},{"s":"BITGET:MCADEUSDT","d":[]},{"s":"UNISWAP:PZWETH_DFBDAB.USD","d":[]},{"s":"HITBTC:HVNUSD","d":[]},{"s":"BITGET:MDTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHBEN","d":[]},{"s":"BINANCE:DYDXBNB","d":[]},{"s":"UNISWAP3ARBITRUM:GRAINUSDC_5E3C4E.USD","d":[]},{"s":"HONEYSWAPPOLYGON:WMATICWETH","d":[]},{"s":"COINEX:FTMUSDT","d":[]},{"s":"BITGET:GALAUSDT.P","d":[]},{"s":"COINEX:HOPUSDT","d":[]},{"s":"GATEIO:APEUSDT.3L","d":[]},{"s":"UNISWAP3ETH:WETHCHESS","d":[]},{"s":"UNISWAP3ETH:USDCDAO","d":[]},{"s":"UNISWAP3ETH:WETHMPL","d":[]},{"s":"BITFINEX:BTCUSD","d":[]},{"s":"QUICKSWAP:PLAWETH_DE6DAA.USD","d":[]},{"s":"POLONIEX:DOGE2USDT","d":[]},{"s":"PANGOLIN:PNGWAVAX_D7538C.USD","d":[]},{"s":"XEXCHANGE:ISETWEGLD","d":[]},{"s":"GATEIO:PLSPADUSDT","d":[]},{"s":"UNISWAP:SCXEYE_F047EE.USD","d":[]},{"s":"UNISWAP3ETH:SAITABITWBTC","d":[]},{"s":"UNISWAP3ETH:WNXMWETH_C02D0F.USD","d":[]},{"s":"HITBTC:BCHUSD","d":[]},{"s":"UNISWAP3ETH:FUNGWETH_EF0069.USD","d":[]},{"s":"UNISWAP:ALBTUSDT_1CD926","d":[]},{"s":"BLOFIN:SFPUSDT.P","d":[]},{"s":"EXMO:BCHBTC","d":[]},{"s":"UNISWAP:ZIGWETH_B36EC8.USD","d":[]},{"s":"UNISWAP3ETH:LDOWETH_A3F558.USD","d":[]},{"s":"MEXC:BAKEUSDT","d":[]},{"s":"ZOOMEX:USDCUSDT.P","d":[]},{"s":"POLONIEX:MANAUSD","d":[]},{"s":"UNISWAP:QUIDWETH_7AFEBB","d":[]},{"s":"BITGET:VISIONUSDT","d":[]},{"s":"UNISWAP3POLYGON:SVALUESWBTC_FA0463.USD","d":[]},{"s":"COINEX:BNSXUSDT","d":[]},{"s":"POLONIEX:CHATUSDT","d":[]},{"s":"MEXC:GASUSDT","d":[]},{"s":"UNISWAP:MONEROWETH_596744.USD","d":[]},{"s":"UNISWAP3ETH:EWTBWETH","d":[]},{"s":"UNISWAP:WENWETH_CF099E","d":[]},{"s":"UNISWAP:CEUSDT_EACD8A","d":[]},{"s":"UNISWAP3POLYGON:SOLWMATIC_B229F2.USD","d":[]},{"s":"UNISWAP3ETH:CRPTUSDT_A033D7.USD","d":[]},{"s":"BITKUB:CVCTHB","d":[]},{"s":"HITBTC:ETNUSDT","d":[]},{"s":"PHEMEX:PHBUSDT","d":[]},{"s":"UNISWAP:SHEZMUWETH_74E6CA","d":[]},{"s":"UNISWAP3ETH:404WHEELSWETH","d":[]},{"s":"MEXC:TRBUSDT.P","d":[]},{"s":"PANGOLIN:VSOWAVAX_2B532B","d":[]},{"s":"WHITEBIT:ENJUSDT","d":[]},{"s":"BINANCE:MAGICFDUSD","d":[]},{"s":"UNISWAP:HEARTWETH_540B96","d":[]},{"s":"BYBIT:IMXUSDT.P","d":[]},{"s":"BITKUB:FLUXTHB","d":[]},{"s":"BITHUMB:BFCKRW","d":[]},{"s":"UNISWAP3ARBITRUM:WODIUWETH_525B2B.USD","d":[]},{"s":"BYBIT:PERPUSDT","d":[]},{"s":"POLONIEX:LINKTRX","d":[]},{"s":"PHEMEX:CVXUSDT","d":[]},{"s":"PANGOLIN:YAKUSDC_D9BF8B.USD","d":[]},{"s":"KRAKEN:JUPUSD","d":[]},{"s":"TRADERJOE:SUBZSHARE_B10A87","d":[]},{"s":"ZOOMEX:EOSUSDT.P","d":[]},{"s":"UNISWAP:BULKWETH_AD0870","d":[]},{"s":"HITBTC:SOLUSDT","d":[]},{"s":"GATEIO:NFTLUSDT","d":[]},{"s":"COINEX:IZIUSDT","d":[]},{"s":"HITBTC:LRCBTC","d":[]},{"s":"COINEX:RTMUSDT","d":[]},{"s":"UNISWAP3ETH:LUSDDAI_16980C.USD","d":[]},{"s":"UNISWAP3ETH:JESUSUSDC","d":[]},{"s":"UNISWAP:TORNWETH_0C722A.USD","d":[]},{"s":"UNISWAP:MATTERWETH_EC7A1A","d":[]},{"s":"BINANCE:LDOUSDT","d":[]},{"s":"WHITEBIT:AXSBTC","d":[]},{"s":"UNISWAP3ETH:WETHNOIA","d":[]},{"s":"UNISWAP:GRTWETH_2E81EC","d":[]},{"s":"UNISWAP3ARBITRUM:BROWETH_3F21C8.USD","d":[]},{"s":"HITBTC:KEYUSDT","d":[]},{"s":"POLONIEX:FRAXUSDT","d":[]},{"s":"UNISWAP:WWWWETH_DCF6F5.USD","d":[]},{"s":"UNISWAP3ETH:WETHSSV","d":[]},{"s":"BITRUE:BEMDUSDT","d":[]},{"s":"KRAKEN:ETHCAD","d":[]},{"s":"HITBTC:ETNBTC","d":[]},{"s":"COINEX:AEVOUSDT","d":[]},{"s":"BITFINEX:DOGEBTC","d":[]},{"s":"POLONIEX:LOOMUSD","d":[]},{"s":"UNISWAP:RBXWETH_3B7143.USD","d":[]},{"s":"UNISWAP3ETH:PAXUSDC","d":[]},{"s":"UNISWAP:FANXWETH_4742E4","d":[]},{"s":"GATEIO:MOVRUSDT","d":[]},{"s":"QUICKSWAP:DMAGICUSDT_882DED","d":[]},{"s":"UNISWAP:GNXWETH_133533.USD","d":[]},{"s":"UNISWAP3ETH:QSPUSDT","d":[]},{"s":"POLONIEX:LLUSDT","d":[]},{"s":"BINANCE:STRKUSDT","d":[]},{"s":"COINBASE:DIMOUSD","d":[]},{"s":"QUICKSWAP:JCHFWETH_95697B.USD","d":[]},{"s":"UNISWAP3ETH:MELDWETH_1C3A98.USD","d":[]},{"s":"OKX:BTCUSDT.P","d":[]},{"s":"HITBTC:ALCXUSD","d":[]},{"s":"UNISWAP3POLYGON:MKRWMATIC_A8BA77.USD","d":[]},{"s":"BYBIT:ENSUSDT","d":[]},{"s":"TRADERJOE:DCARUSDC_CE719B","d":[]},{"s":"BYBIT:ALGOUSDT.P","d":[]},{"s":"POLONIEX:MATICTRX","d":[]},{"s":"UNISWAP3ETH:OJEEWETH_79E4E7.USD","d":[]},{"s":"UNISWAP:PPDRADAI_762D94","d":[]},{"s":"GATEIO:RBLSUSDT","d":[]},{"s":"BITRUE:CTSISOL","d":[]},{"s":"POLONIEX:BICOUSDT","d":[]},{"s":"COINEX:PIPUSDT","d":[]},{"s":"HITBTC:PARTBTC","d":[]},{"s":"UNISWAP:MEOWWETH_B8AEF6.USD","d":[]},{"s":"MEXC:BOBAUSDT.P","d":[]},{"s":"GATEIO:MSWAPUSDT","d":[]},{"s":"KRAKEN:MLNETH","d":[]},{"s":"UNISWAP3ETH:USDCMETIS","d":[]},{"s":"BITGET:QNTUSDT","d":[]},{"s":"UNISWAP:AIFORKWETH_B335AF","d":[]},{"s":"SPOOKYSWAP:WFTMUSDC_90469A.USD","d":[]},{"s":"COINBASE:FLOWUSD","d":[]},{"s":"QUICKSWAP:MANAWMATIC_6B0CE3","d":[]},{"s":"MEXC:KPCUSDT","d":[]},{"s":"UNISWAP3ETH:XRAUSDT","d":[]},{"s":"TRADERJOE:WETHEUSDCE_199FB7","d":[]},{"s":"UNISWAP3ETH:WETHPAI","d":[]},{"s":"UNISWAP3ETH:USDTCHZ","d":[]},{"s":"MEXC:ASMUSDT","d":[]},{"s":"UNISWAP:WAITWETH_6028EB","d":[]},{"s":"KRAKEN:SUIUSD.PM","d":[]},{"s":"BINANCE:XRPBRL","d":[]},{"s":"UNISWAP3ETH:CNFIWETH","d":[]},{"s":"POLONIEX:LOOMBTC","d":[]},{"s":"UNISWAP3ETH:OMNIWETH","d":[]},{"s":"WAGYUSWAP:VSHWVLX_F8BDFB.USD","d":[]},{"s":"MEXC:HOTUSDT.P","d":[]},{"s":"COINBASE:WAMPLUSD","d":[]},{"s":"UNISWAP:TROLLSWETH_54C54E","d":[]},{"s":"MEXC:DFMUSDT","d":[]},{"s":"BINANCE:PIXELTRY","d":[]},{"s":"WAGYUSWAP:WAGASTRO_40AC95","d":[]},{"s":"UNISWAP3POLYGON:DSTUSDT_070DC9.USD","d":[]},{"s":"PHEMEX:RATSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAETH","d":[]},{"s":"MEXC:OXTETH","d":[]},{"s":"UNISWAP:HYPERWETH_ACD3C9.USD","d":[]},{"s":"EXMO:VLXBTC","d":[]},{"s":"QUICKSWAP:AVAXWMATIC_EB477A.USD","d":[]},{"s":"BITMEX:FTTUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:LINKWETH_3DC10D.USD","d":[]},{"s":"COINEX:AMPUSDT","d":[]},{"s":"UNISWAP3ETH:ERC20WETH_226568.USD","d":[]},{"s":"BITHUMB:SNXKRW","d":[]},{"s":"BITFINEX:KSMUST","d":[]},{"s":"UNISWAP:ANTWETH_9DEF95.USD","d":[]},{"s":"UNISWAP:WISDOMWETH_6D65FA.USD","d":[]},{"s":"UNISWAP3ETH:WILDUSDC","d":[]},{"s":"UNISWAP:SONAWETH_147BEA.USD","d":[]},{"s":"BYBIT:SAILUSDT","d":[]},{"s":"UNISWAP3POLYGON:COMPUSDC_9B0FF5.USD","d":[]},{"s":"UNISWAP3ETH:USDTCSCS","d":[]},{"s":"MEXC:OVRUSDT","d":[]},{"s":"GATEIO:BNTYUSDT","d":[]},{"s":"MEXC:KBDUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCTBTC","d":[]},{"s":"GATEIO:UNFIUSDT","d":[]},{"s":"GATEIO:PCNTUSDT","d":[]},{"s":"UNISWAP:LEXAWETH_6F72B3.USD","d":[]},{"s":"UNISWAP:SWFLWETH_2CACCF","d":[]},{"s":"UNISWAP3POLYGON:WBTCUSDT_A1CFB3.USD","d":[]},{"s":"POLONIEX:PEASUSDT","d":[]},{"s":"POLONIEX:VMPXUSDT","d":[]},{"s":"BITFINEX:SEIUSD","d":[]},{"s":"UNISWAP:ALEAWETH_62EB1A","d":[]},{"s":"UNISWAP3ETH:RADARWETH","d":[]},{"s":"POLONIEX:BENUSDT","d":[]},{"s":"MEXC:EOSBTC","d":[]},{"s":"UNISWAP:WZNNWETH_DAC866","d":[]},{"s":"MEXC:MATICUSDT","d":[]},{"s":"UNISWAP:MEMESWETH_939B4A","d":[]},{"s":"QUICKSWAP:WETHUSDT_F6422B","d":[]},{"s":"COINEX:GFIUSDT","d":[]},{"s":"QUICKSWAP:MCHCWETH_E90056","d":[]},{"s":"BITGET:GTCUSDT","d":[]},{"s":"COINEX:HNTUSDC","d":[]},{"s":"UNISWAP3ETH:USDTASI","d":[]},{"s":"UNISWAP3ETH:DEFROGSWETH","d":[]},{"s":"HITBTC:REEFUSDT","d":[]},{"s":"BITSTAMP:SLPUSD","d":[]},{"s":"UNISWAP3ETH:BEBEWETH","d":[]},{"s":"BINANCEUS:CUDOSUSDT","d":[]},{"s":"COINEX:GALUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:NBLWETH_64185E.USD","d":[]},{"s":"ZOOMEX:BLURUSDT.P","d":[]},{"s":"MEXC:ANKRETH","d":[]},{"s":"UNISWAP:ORDIBRIDGEWETH_944D2F.USD","d":[]},{"s":"UNISWAP3ETH:APEFIWETH_88A3A6.USD","d":[]},{"s":"UNISWAP:TRESTLEWETH_C8F03F","d":[]},{"s":"MEXC:DISCUSDT","d":[]},{"s":"BLOFIN:CTKUSDT.P","d":[]},{"s":"COINEX:ALTUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGENI","d":[]},{"s":"UNISWAP3ETH:SANDWETH_5B97B1.USD","d":[]},{"s":"GATEIO:WAGUSDT","d":[]},{"s":"UNISWAP3ETH:SDEXINSP_3F35A7.USD","d":[]},{"s":"UNISWAP:WNKWETH_94FE60","d":[]},{"s":"UNISWAP:LPTWETH_755C1A.USD","d":[]},{"s":"GATEIO:LUNCUSDT","d":[]},{"s":"MEXC:XTZUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDT_DB9F35.USD","d":[]},{"s":"GATEIO:TIPUSDT","d":[]},{"s":"UNISWAP:GROKWETH_3C8E12","d":[]},{"s":"BYBIT:ROOTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAEVO","d":[]},{"s":"OKX:BTCUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHLEOX","d":[]},{"s":"COINEX:DESOUSDT","d":[]},{"s":"UNISWAP3ETH:TELWETH_F35949.USD","d":[]},{"s":"UPBIT:FCT2KRW","d":[]},{"s":"UNISWAP:LAELAPSWETH_811A10","d":[]},{"s":"COINEX:BCHBTC","d":[]},{"s":"BITFINEX:IOTBTC","d":[]},{"s":"BITFINEX:UNIUST.P","d":[]},{"s":"UNISWAP3ETH:TCAPWETH","d":[]},{"s":"HITBTC:RLCUSDT","d":[]},{"s":"BITGET:PROMUSDT","d":[]},{"s":"COINEX:RSS3USDT","d":[]},{"s":"MEXC:C98USDT.P","d":[]},{"s":"WHITEBIT:RENBTC","d":[]},{"s":"HITBTC:BESTBTC","d":[]},{"s":"MEXC:GROKAPIUSDT","d":[]},{"s":"UNISWAP3ETH:LDORNG_8ADFED.USD","d":[]},{"s":"MEXC:BADUSDT","d":[]},{"s":"BINANCE:VANRYTRY","d":[]},{"s":"COINEX:AEBTC","d":[]},{"s":"KRAKEN:CVCEUR","d":[]},{"s":"BINANCE:GRTBTC","d":[]},{"s":"BITGET:UBXSUSDT","d":[]},{"s":"POLONIEX:EOSUSDC","d":[]},{"s":"GATEIO:SUIAUSDT","d":[]},{"s":"GATEIO:LIONUSDT","d":[]},{"s":"XEXCHANGE:BUSDUSDC","d":[]},{"s":"MEXC:WENUSDT","d":[]},{"s":"UNISWAP:MTAOWETH_6D1099","d":[]},{"s":"MEXC:AINSUSDT","d":[]},{"s":"BITFINEX:GALAUST.P","d":[]},{"s":"UNISWAP3ETH:WETHXNL","d":[]},{"s":"UNISWAP3ETH:WETHVEE","d":[]},{"s":"UNISWAP3ETH:WETHCAL","d":[]},{"s":"UNISWAP3ETH:TOILLINK","d":[]},{"s":"UNISWAP3ETH:MLHWETH_ECC23E.USD","d":[]},{"s":"BINANCEUS:REEFUSDT","d":[]},{"s":"BINGX:GRTUSDT.PS","d":[]},{"s":"MEXC:HONORUSDT","d":[]},{"s":"UNISWAP3ETH:WPLSUSDC_D32A2B.USD","d":[]},{"s":"GATEIO:GTHUSDT","d":[]},{"s":"BINANCE:LDOBTC","d":[]},{"s":"KRAKEN:OGNUSD","d":[]},{"s":"GATEIO:FREEUSDT","d":[]},{"s":"BITMEX:MATICUSDT.P","d":[]},{"s":"TRADERJOE:SPACEWAVAX_8149C0","d":[]},{"s":"PANGOLIN:AVMEWAVAX_381CC7","d":[]},{"s":"OKX:BONEUSDT.P","d":[]},{"s":"UNISWAP:ACYCWETH_C7B7DA","d":[]},{"s":"HITBTC:BIZZUSDT","d":[]},{"s":"OKX:BONKUSDT.P","d":[]},{"s":"POLONIEX:AFCUSDT","d":[]},{"s":"PHEMEX:JTOUSDT","d":[]},{"s":"MEXC:QNAUSDT","d":[]},{"s":"PANGOLIN:SAVAXWAVAX_4E9A38","d":[]},{"s":"MEXC:XRPCUSDT","d":[]},{"s":"UNISWAP:OCEANWETH_9B7DAD.USD","d":[]},{"s":"UNISWAP:FEELSWETH_B42018","d":[]},{"s":"BYBIT:XTZUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBTC20","d":[]},{"s":"UNISWAP3POLYGON:DAIUSDC_5645DC.USD","d":[]},{"s":"HITBTC:KMDUSD","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDC_BD934A.USD","d":[]},{"s":"UNISWAP3ETH:USDCMERC","d":[]},{"s":"UNISWAP3ETH:HAYWETH_7618C0.USD","d":[]},{"s":"UNISWAP3ETH:WETHFMC","d":[]},{"s":"UNISWAP3OPTIMISM:WETHUSDC_851492.USD","d":[]},{"s":"POLONIEX:ETHFUSDT","d":[]},{"s":"UNISWAP:FIREWETH_788149","d":[]},{"s":"UNISWAP3ETH:DEGENWETH","d":[]},{"s":"PHEMEX:RSRUSDT.P","d":[]},{"s":"UNISWAP3ETH:GTCETHWETH","d":[]},{"s":"BINGX:SNXUSDT.PS","d":[]},{"s":"SPOOKYSWAP:KEKWFTM_F3582D","d":[]},{"s":"COINEX:EOSBTC","d":[]},{"s":"MEXC:YACHTUSDT","d":[]},{"s":"MEXC:BSVUSDT.P","d":[]},{"s":"UNISWAP3ETH:TSCTWETH","d":[]},{"s":"UNISWAP:LEADWETH_B9ACB5","d":[]},{"s":"BITKUB:LYXETHB","d":[]},{"s":"MEXC:OMUSDT.P","d":[]},{"s":"UNISWAP3ETH:PXETHWETH","d":[]},{"s":"UNISWAP:SHIFUWETH_865457.USD","d":[]},{"s":"UNISWAP:NCORWETH_9A981B","d":[]},{"s":"COINEX:APEUSDC","d":[]},{"s":"UNISWAP:RIZOWETH_5F9D85","d":[]},{"s":"BINANCE:AAVEBTC","d":[]},{"s":"UNISWAP:BCBWETH_3BEEAB","d":[]},{"s":"BITFINEX:NOMUSD","d":[]},{"s":"MEXC:MTVUSDT","d":[]},{"s":"GATEIO:FLOKICEOUSDT","d":[]},{"s":"BINGX:NEARUSDT.P","d":[]},{"s":"HITBTC:GOFBTC","d":[]},{"s":"BISWAP:FTMWBNB_7BFCD2.USD","d":[]},{"s":"BLOFIN:JASMYUSDT.P","d":[]},{"s":"BLOFIN:XCNUSDT.P","d":[]},{"s":"UNISWAP3ETH:OBOTUSDT_3FD2FE.USD","d":[]},{"s":"UNISWAP3ETH:RAEUSDC_5A4CC2.USD","d":[]},{"s":"GATEIO:GRBEUSDT","d":[]},{"s":"BYBIT:POLYXUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRACWETH_B19144.USD","d":[]},{"s":"UNISWAP:MOROSWETH_9E3036","d":[]},{"s":"GATEIO:HSCUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:EMCUSDT_1B63B4.USD","d":[]},{"s":"HITBTC:LINKUSDT","d":[]},{"s":"UNISWAP3ETH:SOXWETH","d":[]},{"s":"KRAKEN:KEEPBTC","d":[]},{"s":"UNISWAP:SENDWETH_75A0D3.USD","d":[]},{"s":"BYBIT:CTSIUSDT.P","d":[]},{"s":"UNISWAP:NIZAWETH_6ACB42","d":[]},{"s":"MEXC:ACEUSDT","d":[]},{"s":"UNISWAP:AVIWETH_460B1C","d":[]},{"s":"BISWAP:IGUPBUSD_6DED87","d":[]},{"s":"POLONIEX:FLOKIUSDT","d":[]},{"s":"DELTA:RNDRUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAMP","d":[]},{"s":"UNISWAP3ETH:WETHBTCINU","d":[]},{"s":"UNISWAP3ETH:SWKWETH_7D6022.USD","d":[]},{"s":"BITHUMB:FITKRW","d":[]},{"s":"UNISWAP3ETH:GRGWETH_1D0F3C.USD","d":[]},{"s":"SPOOKYSWAP:ICEANY_10F2A5","d":[]},{"s":"COINEX:FOLDUSDT","d":[]},{"s":"BITGET:ETCUSDT.P","d":[]},{"s":"UNISWAP:NCDTWETH_1921B8","d":[]},{"s":"UNISWAP3ETH:ANFDWETH","d":[]},{"s":"BITGET:NKNUSDT","d":[]},{"s":"GATEIO:LAIUSDT","d":[]},{"s":"UNISWAP3POLYGON:HOMWETH_9AB9F6.USD","d":[]},{"s":"QUICKSWAP:STRATWMATIC_A2D08F","d":[]},{"s":"UNISWAP3ARBITRUM:PEPERWETH_5BC941.USD","d":[]},{"s":"HITBTC:UOSBTC","d":[]},{"s":"UNISWAP3ETH:MUBIDOVA_C6A3FC.USD","d":[]},{"s":"PANGOLIN:GAJWAVAX_278F24","d":[]},{"s":"UNISWAP3ETH:TRXUSDC","d":[]},{"s":"BYBIT:BATUSDT","d":[]},{"s":"MEXC:ACQUSDT","d":[]},{"s":"POLONIEX:DOBOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHHILO","d":[]},{"s":"COINEX:CAKEUSDC","d":[]},{"s":"UNISWAP3POLYGON:MIMATICUSDC_F7DE42.USD","d":[]},{"s":"PANGOLIN:FXSWAVAX_86814A.USD","d":[]},{"s":"COINEX:KNOBUSDT","d":[]},{"s":"OKX:SHIBUSDT.P","d":[]},{"s":"COINEX:NEOBTC","d":[]},{"s":"MEXC:LEOXUSDT","d":[]},{"s":"BITHUMB:LEVERKRW","d":[]},{"s":"QUICKSWAP:MALTDAI_F864DB","d":[]},{"s":"MEXC:EARNUSDT","d":[]},{"s":"UNISWAP3ETH:USDCXEN","d":[]},{"s":"UNISWAP:PROMPTIDEWETH_E9DA0A","d":[]},{"s":"UNISWAP3ETH:WETHLAURION","d":[]},{"s":"UNISWAP3ETH:ORNWETH","d":[]},{"s":"UNISWAP3ETH:BLOXWETH_1294AD.USD","d":[]},{"s":"MEXC:BARUSDT","d":[]},{"s":"PIONEX:JASMYUSDT.P","d":[]},{"s":"UNISWAP3ETH:LMRWETH_1C647C.USD","d":[]},{"s":"HITBTC:UNIUSDC","d":[]},{"s":"DYDX:ETCUSD.P","d":[]},{"s":"WOONETWORK:YFIUSDT","d":[]},{"s":"GATEIO:ERNUSDT","d":[]},{"s":"UNISWAP3ETH:POWRWETH","d":[]},{"s":"OKX:FRONTUSDT.P","d":[]},{"s":"UNISWAP:ZKWETH_F24BEC","d":[]},{"s":"MEXC:TOPUSDT","d":[]},{"s":"PHEMEX:QNTUSDT","d":[]},{"s":"UNISWAP3POLYGON:GNSUSDC_32A222.USD","d":[]},{"s":"BITKUB:CTXCTHB","d":[]},{"s":"SPOOKYSWAP:USDTUSDC_C109A3","d":[]},{"s":"ZOOMEX:RUNEUSDT.P","d":[]},{"s":"UNISWAP:SHSWETH_C817FD.USD","d":[]},{"s":"UNISWAP:LOOTERWETH_FDA70E.USD","d":[]},{"s":"QUICKSWAP:MEEUSDT_7E00FD","d":[]},{"s":"UNISWAP:GUSDWETH_61247D","d":[]},{"s":"QUICKSWAP:DATAUSDC_44EB80","d":[]},{"s":"QUICKSWAP:ICEWMATIC_BD3547","d":[]},{"s":"GATEIO:DOMIUSDT","d":[]},{"s":"HITBTC:ARNXETH","d":[]},{"s":"COINEX:XRGBUSDT","d":[]},{"s":"POLONIEX:KISHUTRX","d":[]},{"s":"UNISWAP:LOONGWETH_0501BB.USD","d":[]},{"s":"BINANCE:BELBTC","d":[]},{"s":"QUICKSWAP:MASQWMATIC_B5A7C5.USD","d":[]},{"s":"UNISWAP:PZWETH_DFBDAB","d":[]},{"s":"BINANCE:SOLTUSD","d":[]},{"s":"HITBTC:DREPUSDT","d":[]},{"s":"QUICKSWAP:KOMWMATIC_E0A1FD.USD","d":[]},{"s":"GATEIO:BKCUSDT","d":[]},{"s":"UNISWAP:MAGWETH_11480A.USD","d":[]},{"s":"UNISWAP3ETH:DOODLEFLC_2AD72E.USD","d":[]},{"s":"UNISWAP3ARBITRUM:KNSWETH_68C685.USD","d":[]},{"s":"BITGET:ZRXUSDT.P","d":[]},{"s":"KRAKEN:SNXUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHXOR","d":[]},{"s":"TRADERJOE:KIMBOWAVAX_03A588","d":[]},{"s":"UNISWAP3ETH:DOMIWETH_3610C0.USD","d":[]},{"s":"GATEIO:ARCXUSDT","d":[]},{"s":"UNISWAP3ETH:ECOTERRAWETH_248115.USD","d":[]},{"s":"GATEIO:MCASHUSDT","d":[]},{"s":"HITBTC:BNKBTC","d":[]},{"s":"GATEIO:IQTUSDT","d":[]},{"s":"BYBIT:TUSDT","d":[]},{"s":"QUICKSWAP:CNTWMATIC_3D3A6B.USD","d":[]},{"s":"BITGET:AWTUSDT","d":[]},{"s":"HONEYSWAPPOLYGON:USDCWETH","d":[]},{"s":"BITFINEX:CHZUST","d":[]},{"s":"UNISWAP:PORKTOSHIWETH_A65303.USD","d":[]},{"s":"BITRUE:AMPUSDT","d":[]},{"s":"MEXC:NVSUSDT","d":[]},{"s":"BYBIT:CHRUSDT.P","d":[]},{"s":"UNISWAP:OCAIWETH_23BC66","d":[]},{"s":"UNISWAP:SEXYWETH_C88DEB","d":[]},{"s":"COINEX:WOMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDBLN","d":[]},{"s":"UNISWAP3OPTIMISM:SNXSUSD_C0F184.USD","d":[]},{"s":"HITBTC:YFIIBTC","d":[]},{"s":"MEXC:CRVETH","d":[]},{"s":"UNISWAP:NWETH_10BDE4.USD","d":[]},{"s":"BYBIT:MKRUSDT","d":[]},{"s":"UNISWAP3POLYGON:LINKWMATIC_27CA89.USD","d":[]},{"s":"UNISWAP3ETH:MLWETH_C923B3.USD","d":[]},{"s":"UNISWAP3ETH:OMIUSDT","d":[]},{"s":"UNISWAP3ETH:CHZWETH_325365.USD","d":[]},{"s":"COINBASE:SOLETH","d":[]},{"s":"UNISWAP:GROK20WETH_DFC620","d":[]},{"s":"GATEIO:SXPUSDT.3L","d":[]},{"s":"BITGET:BENDUSDT","d":[]},{"s":"COINBASE:DNTUSD","d":[]},{"s":"QUICKSWAP:PXIWMATIC_DB9EB4.USD","d":[]},{"s":"BITKUB:LINKTHB","d":[]},{"s":"BLOFIN:BATUSDT.P","d":[]},{"s":"HITBTC:GSTSOLUSD","d":[]},{"s":"WHITEBIT:ANTUSDT","d":[]},{"s":"BITHUMB:CHZKRW","d":[]},{"s":"MEXC:INVUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMAI","d":[]},{"s":"UNISWAP:VRARENAWETH_F1EF98.USD","d":[]},{"s":"BINANCE:1INCHUSDT","d":[]},{"s":"MEXC:INSPUSDT","d":[]},{"s":"UNISWAP:FTRBWETH_3E3B38","d":[]},{"s":"GATEIO:MYTHUSDT","d":[]},{"s":"UNISWAP:UNIWETH_D3D2E2.USD","d":[]},{"s":"UNISWAP:NOIAWETH_B8A1A8","d":[]},{"s":"MEXC:HERUSDT","d":[]},{"s":"SPOOKYSWAP:BLASTWFTM_A7E9C8","d":[]},{"s":"UPBIT:BATKRW","d":[]},{"s":"UNISWAP:BAKEWETH_85B864","d":[]},{"s":"UNISWAP3ETH:AGRSUSDT_B77A5A.USD","d":[]},{"s":"BINANCE:PIXELUSDC","d":[]},{"s":"BITGET:TLMUSDT","d":[]},{"s":"UNISWAP:OCDWETH_9E7065.USD","d":[]},{"s":"BITGET:PAXGUSDT","d":[]},{"s":"WOONETWORK:NEARUSDT","d":[]},{"s":"MEXC:NLSUSDT","d":[]},{"s":"GATEIO:KMONUSDT","d":[]},{"s":"BITGET:CETUSUSDT","d":[]},{"s":"BYBIT:STORJUSDT.P","d":[]},{"s":"BINANCE:OPBNB","d":[]},{"s":"MEXC:ETHTUSD","d":[]},{"s":"UNISWAP:OVRWETH_0B0D6C","d":[]},{"s":"SPOOKYSWAP:MEGAMANWFTM_8D6D02","d":[]},{"s":"UNISWAP3ETH:TOSWETH","d":[]},{"s":"MEXC:WASBUSDT","d":[]},{"s":"MEXC:TRKUSDT","d":[]},{"s":"UNISWAP:XORWETH_019621.USD","d":[]},{"s":"UNISWAP:GLORYWETH_F32177.USD","d":[]},{"s":"UNISWAP:HEARTWETH_5C8DD8","d":[]},{"s":"UNISWAP3ETH:WETHGGTK","d":[]},{"s":"UNISWAP:DARKWETH_F7031F.USD","d":[]},{"s":"HITBTC:RIFBTC","d":[]},{"s":"GATEIO:KUMAUSDT","d":[]},{"s":"COINEX:LUNRUSDT","d":[]},{"s":"QUICKSWAP:SNOWUSDC_6DB145","d":[]},{"s":"UNISWAP3ETH:WETHGLQ","d":[]},{"s":"MEXC:WXUSDT","d":[]},{"s":"PHEMEX:PIXELUSDT","d":[]},{"s":"UNISWAP:FLEXUSDC_3F6117","d":[]},{"s":"BTSE:NMRUSD","d":[]},{"s":"BITGET:MANABTC","d":[]},{"s":"UNISWAP:DIVIWETH_011A43","d":[]},{"s":"UNISWAP3ETH:WETHMCRT","d":[]},{"s":"MEXC:CDOGEUSDT","d":[]},{"s":"MEXC:IBOXUSDT","d":[]},{"s":"BINANCE:LTCBNB","d":[]},{"s":"UNISWAP3ETH:INJWETH_6C063A.USD","d":[]},{"s":"QUICKSWAP:GOGOUSDC_E33DD0","d":[]},{"s":"SPOOKYSWAP:OXDUSDC_D5FA40","d":[]},{"s":"MEXC:IXTUSDT","d":[]},{"s":"UNISWAP:DOGGERWETH_59F7BC.USD","d":[]},{"s":"BITGET:VSCUSDT","d":[]},{"s":"HITBTC:DGDUSD","d":[]},{"s":"UNISWAP3ETH:KNCWETH","d":[]},{"s":"UNISWAP:SAITAMAWETH_D41310.USD","d":[]},{"s":"BITGET:AXSUSDT.P","d":[]},{"s":"BITFINEX:XCADUSD","d":[]},{"s":"MEXC:WEMIXUSDT","d":[]},{"s":"UNISWAP:369WETH_C27D2F","d":[]},{"s":"POLONIEX:STTUSDT","d":[]},{"s":"BITMEX:PORTALUSDTH2024","d":[]},{"s":"UNISWAP:FORTUNEWETH_01E6DD.USD","d":[]},{"s":"HITBTC:KNCBTC","d":[]},{"s":"UNISWAP3ETH:UNIRNG_3778F7.USD","d":[]},{"s":"UNISWAP:MAGICWETH_8C56CA.USD","d":[]},{"s":"BYBIT:CANDYUSDT","d":[]},{"s":"BITMEX:ARBUSD.P","d":[]},{"s":"UNISWAP3ETH:WPLSUSDC_199357.USD","d":[]},{"s":"SPOOKYSWAP:SHADEWFTM_20AA39","d":[]},{"s":"UNISWAP:YUKKYWETH_F0AB40","d":[]},{"s":"UPBIT:WAXPKRW","d":[]},{"s":"HITBTC:PASSBTC","d":[]},{"s":"UNISWAP3ETH:WETHDBI","d":[]},{"s":"GATEIO:SUNNYUSDT","d":[]},{"s":"QUICKSWAP:GOVIWETH_1DAB41","d":[]},{"s":"GATEIO:PEPEUSDT.3L","d":[]},{"s":"KRAKEN:RADUSD","d":[]},{"s":"UNISWAP:ELDGWETH_FE615E.USD","d":[]},{"s":"UNISWAP3ETH:PT404WETH","d":[]},{"s":"UNISWAP:CBSNWETH_67C32C","d":[]},{"s":"MEXC:SFPUSDT","d":[]},{"s":"UNISWAP:INSPWETH_D209D4.USD","d":[]},{"s":"GATEIO:NIIFIUSDT","d":[]},{"s":"WAGYUSWAP:ETHWAG_8ECB48","d":[]},{"s":"UNISWAP:ARRKYPEPE_802191","d":[]},{"s":"MEXC:RATS2USDT","d":[]},{"s":"UNISWAP:CHAINSWETH_11E6B3","d":[]},{"s":"BITRUE:LDOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMUSK","d":[]},{"s":"UNISWAP:XAIWETH_5F97E7","d":[]},{"s":"MEXC:CHMPZUSDT","d":[]},{"s":"BITFINEX:ETHGBP","d":[]},{"s":"UNISWAP3ETH:USDTML","d":[]},{"s":"HITBTC:ABBCUSD","d":[]},{"s":"UNISWAP:NARUTOWETH_F65DFC.USD","d":[]},{"s":"POLONIEX:WENUSDT","d":[]},{"s":"MEXC:RVFUSDT","d":[]},{"s":"WOONETWORK:METISUSDT","d":[]},{"s":"GATEIO:PACEUSDT","d":[]},{"s":"QUICKSWAP:UNLOCKWMATIC_0010CC.USD","d":[]},{"s":"QUICKSWAP:MGHWMATIC_6512CE.USD","d":[]},{"s":"UNISWAP:ALITWETH_9D30D2","d":[]},{"s":"BYBIT:JASMYUSDT","d":[]},{"s":"UNISWAP:MBETWETH_D30567","d":[]},{"s":"BLOFIN:ZILUSDT.P","d":[]},{"s":"GATEIO:MAHAUSDT","d":[]},{"s":"BISWAP:ONEWBNB_E73FE1","d":[]},{"s":"BYBIT:SQRUSDT","d":[]},{"s":"BINGX:DUSKUSDT.PS","d":[]},{"s":"BITKUB:ILVTHB","d":[]},{"s":"UNISWAP:CAPYWETH_B2843C.USD","d":[]},{"s":"UNISWAP3ETH:ESOVWETH_3C4323.USD","d":[]},{"s":"UPBIT:STRIKEKRW","d":[]},{"s":"QUICKSWAP:FXSFRAX_4756FF.USD","d":[]},{"s":"PHEMEX:DUSKUSDT.P","d":[]},{"s":"UNISWAP:ISPWETH_000DD0","d":[]},{"s":"UNISWAP3ETH:FLRBRGWETH_60914A.USD","d":[]},{"s":"UNISWAP:BTREEWETH_A4FAB5.USD","d":[]},{"s":"UNISWAP:HUSKYWETH_1BE574.USD","d":[]},{"s":"POLONIEX:BEOBLEUSDT","d":[]},{"s":"UNISWAP:BETSWETH_5A5552.USD","d":[]},{"s":"COINBASE:ONDOUSD","d":[]},{"s":"POLONIEX:NEXOUSDT","d":[]},{"s":"GATEIO:RAREUSDT","d":[]},{"s":"GATEIO:BEARUSDT","d":[]},{"s":"UNISWAP:KEKEWETH_DBB9F2.USD","d":[]},{"s":"HITBTC:CRVETH","d":[]},{"s":"OKX:KSMUSD.P","d":[]},{"s":"HITBTC:ANKRUSDT","d":[]},{"s":"UNISWAP3ETH:MAVIAWETH","d":[]},{"s":"UNISWAP:EMOTIWETH_F6CD17.USD","d":[]},{"s":"UNISWAP3ETH:DWIFWETH","d":[]},{"s":"KRAKEN:ANKRBTC","d":[]},{"s":"GATEIO:POKTUSDT","d":[]},{"s":"COINEX:REEFUSDT","d":[]},{"s":"MEXC:CONVUSDT","d":[]},{"s":"BITGET:OGNUSDT.P","d":[]},{"s":"BYBIT:IDUSDT","d":[]},{"s":"POLONIEX:BRCSHIBUSDT","d":[]},{"s":"COINEX:XDCBTC","d":[]},{"s":"PHEMEX:COTIUSDT.P","d":[]},{"s":"UNISWAP:HDRNHEX_035A39","d":[]},{"s":"BINANCE:ACATRY","d":[]},{"s":"BTSE:ONEUSD.P","d":[]},{"s":"UNISWAP3ETH:BEAMWETH","d":[]},{"s":"POLONIEX:ARDRBTC","d":[]},{"s":"KRAKEN:KP3REUR","d":[]},{"s":"UNISWAP3POLYGON:GUILDUSDC_9D5832.USD","d":[]},{"s":"UNISWAP:HODLWETH_75A33D.USD","d":[]},{"s":"UNISWAP3ETH:TOSWETH_2AD99C.USD","d":[]},{"s":"MEXC:AMPLUSDT","d":[]},{"s":"BINGX:ONTUSDT.P","d":[]},{"s":"HITBTC:SPIUSDT","d":[]},{"s":"COINEX:PROUSDT","d":[]},{"s":"MEXC:HRTUSDT","d":[]},{"s":"PHEMEX:STXUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:BPETWETH_D02A49.USD","d":[]},{"s":"WHITEBIT:AXSUSDT","d":[]},{"s":"UNISWAP3ETH:TRUUSDC","d":[]},{"s":"UNISWAP3ETH:ENSUSDT_09AA63.USD","d":[]},{"s":"QUICKSWAP:GAIADAI_885EB7","d":[]},{"s":"BITGET:WOOUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMULLET","d":[]},{"s":"COINEX:CETUSDT","d":[]},{"s":"UNISWAP:PEPE40WETH_F8D443.USD","d":[]},{"s":"UNISWAP:SHIZUWETH_7B981F.USD","d":[]},{"s":"UNISWAP:AXSWETH_24B24A","d":[]},{"s":"BITGET:WENUSDT","d":[]},{"s":"QUICKSWAP:MOTUSDT_49D813","d":[]},{"s":"XEXCHANGE:HTMWEGLD","d":[]},{"s":"UNISWAP3ETH:PEPEWETH_A84181.USD","d":[]},{"s":"UNISWAP3ETH:WBTCBTC2X","d":[]},{"s":"UNISWAP:VCASHWETH_8D6F94","d":[]},{"s":"SPOOKYSWAP:MONEYRAINUSDC_8E9D1A","d":[]},{"s":"BLOFIN:DASHUSDT.P","d":[]},{"s":"BITRUE:BNBUSDT","d":[]},{"s":"BITFINEX:BALUST","d":[]},{"s":"UNISWAP:MGLSWETH_C7ECAB","d":[]},{"s":"BITFINEX:B2MUST","d":[]},{"s":"UNISWAP3ETH:AEGISWETH","d":[]},{"s":"KRAKEN:MKRBTC","d":[]},{"s":"BYBIT:EOSUSDT.2L","d":[]},{"s":"UNISWAP:ARCONAWETH_1A1FE6.USD","d":[]},{"s":"POLONIEX:XCNUSDT","d":[]},{"s":"UNISWAP3ETH:YUPWETH_9297AD.USD","d":[]},{"s":"BINANCE:ADAUSDC","d":[]},{"s":"UNISWAP:KITWETH_CCEB09.USD","d":[]},{"s":"UNISWAP3ETH:BS9000WETH","d":[]},{"s":"UNISWAP:TVKWETH_0F5A2E.USD","d":[]},{"s":"UNISWAP3ETH:VLIZWETH","d":[]},{"s":"MEXC:PXTUSDT","d":[]},{"s":"WHITEBIT:ZILUSDT","d":[]},{"s":"QUICKSWAP:TOWERASTRAFER_516F2B.USD","d":[]},{"s":"HITBTC:BNBUSDT","d":[]},{"s":"GATEIO:CTGUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WETHDAI_31FA55.USD","d":[]},{"s":"BITFINEX:FILUST.P","d":[]},{"s":"XEXCHANGE:JEXWEGLD","d":[]},{"s":"UNISWAP:RONALDOWETH_5B0ED9.USD","d":[]},{"s":"QUICKSWAP:SNGUSDT_35F8B4","d":[]},{"s":"POLONIEX:FTMUSDC","d":[]},{"s":"BINANCE:MANABTC","d":[]},{"s":"UNISWAP3ETH:WETHPRQ","d":[]},{"s":"HITBTC:MDTUSD","d":[]},{"s":"UNISWAP3ETH:WETHSYN","d":[]},{"s":"MEXC:NEARUSDT.P","d":[]},{"s":"MEXC:JTOUSDT.P","d":[]},{"s":"COINEX:BICOUSDT","d":[]},{"s":"BINANCEUS:AXSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTROLL","d":[]},{"s":"SPOOKYSWAP:SPOOKWFTM_F7920E","d":[]},{"s":"UNISWAP3ETH:USDTMBX","d":[]},{"s":"MEXC:OGNUSDT","d":[]},{"s":"SPOOKYSWAP:CHILLWFTM_21EEEF","d":[]},{"s":"UNISWAP3ETH:ICSAUSDC","d":[]},{"s":"UNISWAP3POLYGON:MIMATICUSDC_7DE263.USD","d":[]},{"s":"UNISWAP:CVPWETH_12D444.USD","d":[]},{"s":"MEXC:SLTUSDT","d":[]},{"s":"KRAKEN:BADGERUSD","d":[]},{"s":"BITHUMB:GTCKRW","d":[]},{"s":"UNISWAP3ETH:TONCOINUSDT","d":[]},{"s":"BITSTAMP:ENJUSD","d":[]},{"s":"POLONIEX:ELONUSDD","d":[]},{"s":"BINANCE:MEMETUSD","d":[]},{"s":"BITHUMB:ENJKRW","d":[]},{"s":"MEXC:MAGAUSDT","d":[]},{"s":"UNISWAP3ETH:C2H6WETH","d":[]},{"s":"UNISWAP3ARBITRUM:HMXUSDC_18D8F4.USD","d":[]},{"s":"HITBTC:ALPACAUSDT","d":[]},{"s":"KRAKEN:XTZGBP","d":[]},{"s":"UNISWAP3POLYGON:CW3USDT_F78DDB.USD","d":[]},{"s":"BLOFIN:WAXPUSDT.P","d":[]},{"s":"BLOFIN:WOOUSDT.P","d":[]},{"s":"UNISWAP:TMNTWETH_916314","d":[]},{"s":"UNISWAP:COOKWETH_BDFE29.USD","d":[]},{"s":"GATEIO:TEDUSDT","d":[]},{"s":"UNISWAP:SHUNGWETH_6A1020.USD","d":[]},{"s":"COINBASE:BITUSD","d":[]},{"s":"POLONIEX:MNDUSDT","d":[]},{"s":"TRADERJOE:KGCUSDTE_9CE225.USD","d":[]},{"s":"BLOFIN:GMXUSDT.P","d":[]},{"s":"TRADERJOE:EMUNWAVAX_5CA330","d":[]},{"s":"UNISWAP:OPMNDWETH_19823F.USD","d":[]},{"s":"UNISWAP3ETH:RAIUSDC","d":[]},{"s":"UNISWAP:HELLOWETH_F3DCE0.USD","d":[]},{"s":"BITFINEX:UDCUSD","d":[]},{"s":"UNISWAP3POLYGON:STMATICUSDC_AE732B.USD","d":[]},{"s":"UNISWAP3ETH:WAGMIWETH_CA9BEE.USD","d":[]},{"s":"BLOFIN:AKROUSDT.P","d":[]},{"s":"BITGET:OXTUSDT","d":[]},{"s":"BTSE:XRPUSD.P","d":[]},{"s":"UNISWAP3ETH:GODWETH_BD9CD5.USD","d":[]},{"s":"UNISWAP:MINGMONG_9E6646.USD","d":[]},{"s":"BITFINEX:LIFIIIBTC","d":[]},{"s":"COINEX:KLVUSDT","d":[]},{"s":"GATEIO:LTCUSDT","d":[]},{"s":"MEXC:DECHATUSDT","d":[]},{"s":"UNISWAP3ETH:AIMEMEUSDT_DB9B35.USD","d":[]},{"s":"MEXC:GNOUSDT","d":[]},{"s":"BITFINEX:DSHBTC","d":[]},{"s":"GATEIO:EDUUSDT","d":[]},{"s":"MEXC:JPEGUSDT","d":[]},{"s":"UNISWAP3ETH:USDCBULLFI","d":[]},{"s":"UNISWAP:XMONWETH_4BACAA.USD","d":[]},{"s":"UNISWAP3ETH:BPVCWETH_8DB1E8.USD","d":[]},{"s":"UNISWAP3ETH:STOSWETH","d":[]},{"s":"UNISWAP:SHILLWETH_85DA6D","d":[]},{"s":"MEXC:SUPERPEPEUSDT","d":[]},{"s":"MEXC:IDEAUSDT","d":[]},{"s":"UNISWAP3POLYGON:USDCOSAK_FDEE82.USD","d":[]},{"s":"UNISWAP:BMDAWETH_43B82C.USD","d":[]},{"s":"HITBTC:SWFTCUSDT","d":[]},{"s":"MEXC:DPRUSDT","d":[]},{"s":"COINEX:MOVRUSDT","d":[]},{"s":"OKX:BADGERUSDT.P","d":[]},{"s":"UNISWAP3ETH:CNFIWETH_79464B.USD","d":[]},{"s":"KRAKEN:WOOEUR","d":[]},{"s":"UNISWAP3ETH:RYOSHIWETH","d":[]},{"s":"UNISWAP3ETH:DAMMUSDC","d":[]},{"s":"HITBTC:TWTUSDT","d":[]},{"s":"BITFINEX:TSDUST","d":[]},{"s":"BITHUMB:RSRKRW","d":[]},{"s":"BITFINEX:MATICBTC","d":[]},{"s":"UNISWAP:THEPEPEWETH_95C4B4.USD","d":[]},{"s":"BINANCE:IMXBTC","d":[]},{"s":"HITBTC:CTXCBTC","d":[]},{"s":"WAGYUSWAP:ASTROWVLX_0ABABC.USD","d":[]},{"s":"UNISWAP:MARSHWETH_9C5DE3","d":[]},{"s":"ZOOMEX:FRONTUSDT.P","d":[]},{"s":"GATEIO:OBIUSDT","d":[]},{"s":"UNISWAP3ETH:MILADYWETH","d":[]},{"s":"UNISWAP:TRUMPWETH_28B498","d":[]},{"s":"BINANCE:XAIBNB","d":[]},{"s":"BYBIT:1000BTTUSDT.P","d":[]},{"s":"UNISWAP3ETH:IMGNAIWETH","d":[]},{"s":"PHEMEX:ALTUSDT.P","d":[]},{"s":"WHITEBIT:BONKUSDT","d":[]},{"s":"TRADERJOE:XPTPPTP_C4B712.USD","d":[]},{"s":"UNISWAP3ETH:TONCOINUSDT_7F76A0.USD","d":[]},{"s":"BYBIT:SOLUSDT.P","d":[]},{"s":"MEXC:ETLUSDT","d":[]},{"s":"HITBTC:SKLUSD","d":[]},{"s":"GATEIO:BANKBRCUSDT","d":[]},{"s":"MEXC:JAMUSDT","d":[]},{"s":"UNISWAP:METALWETH_83B33B","d":[]},{"s":"UNISWAP:XFIWETH_AF9961.USD","d":[]},{"s":"BYBIT:DOTUSDT","d":[]},{"s":"UNISWAP:LEMONWETH_7E54D5.USD","d":[]},{"s":"UNISWAP:XFOURWETH_452C91.USD","d":[]},{"s":"MEXC:CADUSDT","d":[]},{"s":"UNISWAP3POLYGON:FLYUSDC_27B63D.USD","d":[]},{"s":"UNISWAP:MZEROWETH_8343CB.USD","d":[]},{"s":"UNISWAP3POLYGON:DOMUSDC_9913A9.USD","d":[]},{"s":"BITRUE:DENTUSDT","d":[]},{"s":"MEXC:FNCTUSDT","d":[]},{"s":"UPBIT:QKCKRW","d":[]},{"s":"UNISWAP:GTA6WETH_9B909D","d":[]},{"s":"HITBTC:LSKETH","d":[]},{"s":"UNISWAP:DYORWETH_8142CF","d":[]},{"s":"BINANCE:RENUSDT","d":[]},{"s":"TRADERJOE:LORDWAVAX_2063B0.USD","d":[]},{"s":"MEXC:XTMUSDT","d":[]},{"s":"COINBASE:GRTBTC","d":[]},{"s":"MEXC:SSVUSDT.P","d":[]},{"s":"UPBIT:AAVEKRW","d":[]},{"s":"UNISWAP3ETH:USDCAAVE","d":[]},{"s":"BITGET:AFKUSDT","d":[]},{"s":"SPOOKYSWAP:SYFWFTM_AF6477","d":[]},{"s":"BITRUE:XEMUSDT","d":[]},{"s":"UNISWAP3POLYGON:DCIUSDC_9D3CAC.USD","d":[]},{"s":"UNISWAP:KABOSUWETH_8407B9","d":[]},{"s":"COINEX:BORKUSDT","d":[]},{"s":"BITGET:LINKUSDT.P","d":[]},{"s":"ZOOMEX:APTUSDT.P","d":[]},{"s":"UNISWAP:SHOPXWETH_37AC54","d":[]},{"s":"UNISWAP:BUBUWETH_1BC00B.USD","d":[]},{"s":"UNISWAP3ETH:USDCSCLM","d":[]},{"s":"BITMEX:GMTUSD.P","d":[]},{"s":"KRAKEN:WOOUSD","d":[]},{"s":"BITRUE:BCHUSDT","d":[]},{"s":"KRAKEN:POLEUR","d":[]},{"s":"UNISWAP:THEXWETH_E990AB","d":[]},{"s":"UNISWAP3ETH:SUSDSNX","d":[]},{"s":"UNISWAP:SUSDWETH_F80758.USD","d":[]},{"s":"MEXC:BABYMEME1USDT","d":[]},{"s":"BYBIT:KLAYUSDT","d":[]},{"s":"UNISWAP:MAPSWETH_F06447","d":[]},{"s":"UNISWAP:STARWETH_19FFC5","d":[]},{"s":"MEXC:SSVUSDT","d":[]},{"s":"BINGX:STORJUSDT.PS","d":[]},{"s":"BITGET:AIUSDT","d":[]},{"s":"MEXC:CTKUSDT.P","d":[]},{"s":"BLOFIN:LINAUSDT.P","d":[]},{"s":"SPOOKYSWAP:FURYFUSDT_5B8CB8.USD","d":[]},{"s":"UNISWAP3ETH:HTUSDC","d":[]},{"s":"UNISWAP3ETH:WETHAMMX","d":[]},{"s":"PHEMEX:SSVUSDT.P","d":[]},{"s":"UNISWAP3ETH:TRGWETH","d":[]},{"s":"UNISWAP3ETH:WETHKNIGHT","d":[]},{"s":"UNISWAP:WBUYWETH_B5D948.USD","d":[]},{"s":"BITRUE:DENTXRP","d":[]},{"s":"SPOOKYSWAP:ANDREWFTM_E6E513","d":[]},{"s":"UNISWAP3ARBITRUM:STGWETH_35946E.USD","d":[]},{"s":"BYBIT:AGIUSDT","d":[]},{"s":"UNISWAP3ETH:ALTUSDT","d":[]},{"s":"HITBTC:RADBTC","d":[]},{"s":"UNISWAP:PEPEWETH_3C5F0C.USD","d":[]},{"s":"XEXCHANGE:CHARGEDUSDC","d":[]},{"s":"COINEX:RAILUSDT","d":[]},{"s":"UNISWAP3POLYGON:BETSWMATIC_27D118.USD","d":[]},{"s":"POLONIEX:PERLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHVPP","d":[]},{"s":"BLOFIN:APTUSDT.P","d":[]},{"s":"UNISWAP:TAILSWETH_B74446","d":[]},{"s":"BITHUMB:RSS3KRW","d":[]},{"s":"UNISWAP:BNVWETH_ECB06F","d":[]},{"s":"UNISWAP:FABRICWETH_8224F6.USD","d":[]},{"s":"UNISWAP:LUNAWETH_D42CCA.USD","d":[]},{"s":"GATEIO:BDXUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSAVM","d":[]},{"s":"BYBIT:STXUSDT","d":[]},{"s":"UNISWAP3ETH:COREDAODAI_A68479.USD","d":[]},{"s":"HITBTC:XPRUSD","d":[]},{"s":"POLONIEX:DASHUSD","d":[]},{"s":"SPOOKYSWAP:PLDWFTM_D19D10.USD","d":[]},{"s":"UNISWAP:MIKAWETH_709332.USD","d":[]},{"s":"KRAKEN:BLZEUR","d":[]},{"s":"BITGET:MMITUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAIGF","d":[]},{"s":"MEXC:ATOMUSDT.P","d":[]},{"s":"UNISWAP:SUBFWETH_86E4A6.USD","d":[]},{"s":"BITFINEX:XRPUST.P","d":[]},{"s":"GATEIO:CSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:SILOWETH_D3E111.USD","d":[]},{"s":"UNISWAP:SHUEYWETH_8233F4.USD","d":[]},{"s":"GATEIO:MEMETOONUSDT","d":[]},{"s":"GATEIO:KCTUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:BRC30WETH_F56F99.USD","d":[]},{"s":"COINBASE:RARIUSD","d":[]},{"s":"GEMINI:DOTGUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHRENBTC","d":[]},{"s":"UNISWAP:ITSWETH_24D9F6","d":[]},{"s":"MEXC:SHITUSDT","d":[]},{"s":"MEXC:XDAGUSDT","d":[]},{"s":"COINEX:MOONUSDT","d":[]},{"s":"BITGET:HALOUSDT","d":[]},{"s":"KRAKEN:ALICEEUR","d":[]},{"s":"UNISWAP3ETH:GALEONWETH","d":[]},{"s":"UNISWAP3ETH:WETHHFT","d":[]},{"s":"BYBIT:PORT3USDT","d":[]},{"s":"UNISWAP3ETH:BONDWETH","d":[]},{"s":"UNISWAP3ETH:XMONWETH","d":[]},{"s":"TRADERJOE:CCYWAVAX_9A3545.USD","d":[]},{"s":"COINEX:SPAUSDT","d":[]},{"s":"UNISWAP3ETH:ORBKWETH_B89B97.USD","d":[]},{"s":"QUICKSWAP:WELTUSDC_55E49F","d":[]},{"s":"BINANCE:MKRBTC","d":[]},{"s":"POLONIEX:SENSOUSD","d":[]},{"s":"PIONEX:XRPBTC.P","d":[]},{"s":"BINANCE:STEEMUSDT","d":[]},{"s":"UNISWAP:EDGEWETH_A4C134.USD","d":[]},{"s":"KRAKEN:IDEXEUR","d":[]},{"s":"COINBASE:SNXEUR","d":[]},{"s":"BITGET:VRTXUSDT","d":[]},{"s":"BYBIT:PURSEUSDT","d":[]},{"s":"UNISWAP:FRIENDWETH_D89015","d":[]},{"s":"TRADERJOE:ETHMWAVAX_C72EB6.USD","d":[]},{"s":"BYBIT:AKROUSDT.P","d":[]},{"s":"UNISWAP:MTEWETH_19A59F.USD","d":[]},{"s":"HITBTC:SNCBTC","d":[]},{"s":"UNISWAP:BLOXWETH_B145BA.USD","d":[]},{"s":"BITKUB:WOOTHB","d":[]},{"s":"UNISWAP:BEBEWETH_1A4BA3.USD","d":[]},{"s":"QUICKSWAP:DICTUSDT_F1F40B","d":[]},{"s":"BINGX:POWRUSDT.P","d":[]},{"s":"MEXC:NXTTUSDT","d":[]},{"s":"UNISWAP3ETH:STCUSDC","d":[]},{"s":"UNISWAP3ETH:BADGERWETH","d":[]},{"s":"MEXC:MARS4USDT","d":[]},{"s":"UNISWAP3POLYGON:LANDUSDT_C186C0.USD","d":[]},{"s":"BYBIT:APEUSDC","d":[]},{"s":"BINANCE:THETABTC","d":[]},{"s":"BITRUE:DGBADA","d":[]},{"s":"COINEX:ROCKYUSDT","d":[]},{"s":"UNISWAP:PINCHIWETH_4D4AB2","d":[]},{"s":"UNISWAP3POLYGON:MXENWMATIC_97FFB2.USD","d":[]},{"s":"UNISWAP3ETH:WCFGWETH","d":[]},{"s":"UNISWAP:ECOUSDC_09BC52","d":[]},{"s":"BINGX:EDUUSDT.P","d":[]},{"s":"BYBIT:DYDXUSDT","d":[]},{"s":"SPOOKYSWAP:CATSWFTM_441AD1","d":[]},{"s":"BITFINEX:MXNTUSD","d":[]},{"s":"KRAKEN:QTUMEUR","d":[]},{"s":"HITBTC:TUSDUSDC","d":[]},{"s":"PANGOLIN:AVABBCUSDC_89DB05","d":[]},{"s":"BITRUE:ROSEUSDT","d":[]},{"s":"COINEX:LQTYUSDT","d":[]},{"s":"TRADERJOE:DUCKWAVAX_6783C4","d":[]},{"s":"HITBTC:XMCETH","d":[]},{"s":"GATEIO:ONDOUSDT","d":[]},{"s":"HITBTC:RNDRUSDT","d":[]},{"s":"KRAKEN:1INCHUSD","d":[]},{"s":"HITBTC:SLPUSDT","d":[]},{"s":"PHEMEX:DASHUSDT","d":[]},{"s":"GATEIO:BSVBRCUSDT","d":[]},{"s":"UNISWAP3ETH:USDCDSU","d":[]},{"s":"UNISWAP3ETH:WETHN","d":[]},{"s":"GATEIO:MSUUSDT","d":[]},{"s":"UNISWAP3ETH:WETHC2H6","d":[]},{"s":"UNISWAP3ETH:KLUBUSDT","d":[]},{"s":"COINEX:ERNUSDT","d":[]},{"s":"TRADERJOE:BINGOWAVAX_3008FE.USD","d":[]},{"s":"BITGET:LUSDT","d":[]},{"s":"UNISWAP3ETH:BUCCPEPECOIN_F49C65.USD","d":[]},{"s":"BITSTAMP:DYDXUSD","d":[]},{"s":"QUICKSWAP:METAUSDT_75D4C0","d":[]},{"s":"UNISWAP3ETH:UDOGEWETH","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDC_1C3140.USD","d":[]},{"s":"XEXCHANGE:INFRAWEGLD","d":[]},{"s":"GATEIO:FSNUSDT","d":[]},{"s":"UNISWAP3ETH:FUSEWETH_9127C5.USD","d":[]},{"s":"UNISWAP3ETH:AXLUSDC_AE2A25.USD","d":[]},{"s":"COINEX:WINUSDT","d":[]},{"s":"BINANCE:AMPTRY","d":[]},{"s":"UNISWAP3ETH:LMRWETH","d":[]},{"s":"UNISWAP3ETH:PANDORAUSDC","d":[]},{"s":"UNISWAP3ETH:USDTLUNA","d":[]},{"s":"BITFINEX:ADABTC","d":[]},{"s":"UNISWAP3ETH:DCKUSDT","d":[]},{"s":"UNISWAP3ETH:JESUSWETH","d":[]},{"s":"UNISWAP3POLYGON:MNIUSDT_404BD2.USD","d":[]},{"s":"UNISWAP3ETH:HIPPWETH_C8FA85.USD","d":[]},{"s":"UNISWAP3ETH:COVFEFEWETH","d":[]},{"s":"UNISWAP:LTXWETH_69884D","d":[]},{"s":"BYBIT:EGLDUSDT","d":[]},{"s":"BINGX:MTLUSDT.PS","d":[]},{"s":"UNISWAP:FGPUWETH_A910FC","d":[]},{"s":"BINANCE:ICPBTC","d":[]},{"s":"GATEIO:BYNUSDT","d":[]},{"s":"PHEMEX:MKRUSDC","d":[]},{"s":"UNISWAP:DUBBZWETH_063E91","d":[]},{"s":"BYBIT:SEIUSDT","d":[]},{"s":"POLONIEX:TURTUSDT","d":[]},{"s":"UNISWAP3ETH:SHEBWETH","d":[]},{"s":"KRAKEN:FILETH","d":[]},{"s":"BITGET:WAVESUSDT.P","d":[]},{"s":"BINANCE:DGBBTC","d":[]},{"s":"UNISWAP:BILLWETH_E8D2E5","d":[]},{"s":"KRAKEN:MIRUSD","d":[]},{"s":"UNISWAP3ETH:WBTCTONCOIN","d":[]},{"s":"UNISWAP:SAUDIPEPEWETH_72BA7A","d":[]},{"s":"BINANCE:ATOMUSD.P","d":[]},{"s":"UNISWAP:AFBWETH_4D702B","d":[]},{"s":"UNISWAP3ARBITRUM:GHOSTWETH_EE9CE7.USD","d":[]},{"s":"BITGET:TLOSUSDT","d":[]},{"s":"BINANCE:API3USDT","d":[]},{"s":"BYBIT:ARUSDT","d":[]},{"s":"GATEIO:UFIUSDT","d":[]},{"s":"QUICKSWAP:SAFLEQUICK_AA2953.USD","d":[]},{"s":"BITFINEX:ETHXAUT","d":[]},{"s":"BITHUMB:ARBKRW","d":[]},{"s":"UNISWAP3ETH:IMPTWETH_1A89AE.USD","d":[]},{"s":"GATEIO:ETHFUSDT","d":[]},{"s":"HITBTC:BLURUSDT","d":[]},{"s":"UNISWAP3ETH:PRTCWETH_86D27C.USD","d":[]},{"s":"UNISWAP3OPTIMISM:STGWETH_0CA747.USD","d":[]},{"s":"BINANCE:MATICUSDC","d":[]},{"s":"COINEX:SUDOUSDT","d":[]},{"s":"UNISWAP:RWSXRT_42018A.USD","d":[]},{"s":"HITBTC:SUSHIUSD","d":[]},{"s":"HITBTC:GLMUSD","d":[]},{"s":"UNISWAP3ETH:SKYNETWETH_2C0C82.USD","d":[]},{"s":"BYBIT:DEFYUSDT","d":[]},{"s":"SPOOKYSWAP:ETHWFTM_F07022.USD","d":[]},{"s":"TRADERJOE:WXGEMWAVAX_114EEA","d":[]},{"s":"UNISWAP3ARBITRUM:KABOSUWETH_485C6C.USD","d":[]},{"s":"HITBTC:SUBBTC","d":[]},{"s":"PHEMEX:ALCXUSDT","d":[]},{"s":"HITBTC:ETHBNTBTC","d":[]},{"s":"UNISWAP3ETH:AMMXWETH_A42620.USD","d":[]},{"s":"UNISWAP:BETZWETH_1F61CD","d":[]},{"s":"COINEX:HUAHUAUSDT","d":[]},{"s":"MEXC:CRDCUSDT","d":[]},{"s":"BTSE:LINKUSD.P","d":[]},{"s":"GATEIO:LTCUSDT.3S","d":[]},{"s":"UNISWAP3ETH:WPLSUSDT","d":[]},{"s":"MEXC:ZRXUSDT.P","d":[]},{"s":"BYBIT:STPTUSDT.P","d":[]},{"s":"BYBIT:WOOUSDT.P","d":[]},{"s":"BITSTAMP:ADABTC","d":[]},{"s":"POLONIEX:WHALESUSDT","d":[]},{"s":"BINANCE:STRKTRY","d":[]},{"s":"UNISWAP3ARBITRUM:OSAKWETH_899AD0.USD","d":[]},{"s":"BTSE:DOGEUSD","d":[]},{"s":"UNISWAP:MAAPLUST_B022E0","d":[]},{"s":"UNISWAP:COSMICWETH_9DC1B5.USD","d":[]},{"s":"MEXC:XRPAYNETUSDT","d":[]},{"s":"POLONIEX:HIFIUSDT","d":[]},{"s":"UNISWAP3ETH:LSETHWETH","d":[]},{"s":"BITGET:OMGUSDT","d":[]},{"s":"XEXCHANGE:CYBERUSDC","d":[]},{"s":"KRAKEN:CVXUSD","d":[]},{"s":"BITKUB:RNDRTHB","d":[]},{"s":"UNISWAP3ARBITRUM:XDEFIUSDC_0452A9.USD","d":[]},{"s":"UNISWAP3POLYGON:DMTWETH_42D543.USD","d":[]},{"s":"BINGX:DARUSDT.P","d":[]},{"s":"BITSTAMP:BATUSD","d":[]},{"s":"UNISWAP:BYTEWETH_8FBD26.USD","d":[]},{"s":"HITBTC:KLAYBTC","d":[]},{"s":"WHITEBIT:IOTXUSDT","d":[]},{"s":"BITSTAMP:LTCUSD","d":[]},{"s":"BLOFIN:XVSUSDT.P","d":[]},{"s":"BITKUB:ZILTHB","d":[]},{"s":"BITGET:VOXELUSDT","d":[]},{"s":"BYBIT:DPXUSDT","d":[]},{"s":"PHEMEX:AXSUSDT","d":[]},{"s":"HITBTC:CHZUSDT","d":[]},{"s":"BITGET:LUNA2USDT.P","d":[]},{"s":"COINEX:BNXUSDT","d":[]},{"s":"UNISWAP:BUCKBREAKERWETH_92478A","d":[]},{"s":"VERSEETH:DAIUSDC_8FF77D.USD","d":[]},{"s":"BITGET:C98USDT.P","d":[]},{"s":"UNISWAP:HAKAWETH_C5BBE6.USD","d":[]},{"s":"UNISWAP:LOOTWETH_76E3B9","d":[]},{"s":"HITBTC:SSVUSDT","d":[]},{"s":"UNISWAP3ETH:WETH404BLOCKS","d":[]},{"s":"PHEMEX:XLMUSDT","d":[]},{"s":"GATEIO:HTRUSDT","d":[]},{"s":"UNISWAP:NGNWETH_F6417E","d":[]},{"s":"BITGET:ORNUSDT","d":[]},{"s":"BINANCE:KP3RUSDT","d":[]},{"s":"MEXC:BSWUSDT","d":[]},{"s":"GATEIO:ALEXUSDT","d":[]},{"s":"BITFINEX:BTCUST","d":[]},{"s":"UNISWAP:AXLWETH_3BC9AA","d":[]},{"s":"BITGET:BTCUSDC.P","d":[]},{"s":"HITBTC:TRIGXBTC","d":[]},{"s":"UNISWAP:KENNELWETH_73B66A.USD","d":[]},{"s":"MEXC:BULLISHUSDT","d":[]},{"s":"COINEX:BLENDRUSDT","d":[]},{"s":"SPOOKYSWAP:AXLUSDTWFTM_7F2B4D.USD","d":[]},{"s":"UNISWAP:READWETH_511D04.USD","d":[]},{"s":"UNISWAP3ETH:NEXTWETH","d":[]},{"s":"MEXC:POLYXUSDT.P","d":[]},{"s":"MEXC:XMRUSDT.P","d":[]},{"s":"BITGET:STORJUSDT.P","d":[]},{"s":"POLONIEX:KNOBUSDT","d":[]},{"s":"MEXC:SWIUSDT","d":[]},{"s":"UNISWAP:BAOWETH_3674AA.USD","d":[]},{"s":"BINANCE:TRXUSDT","d":[]},{"s":"BYBIT:TOMIUSDT.P","d":[]},{"s":"GATEIO:SUSDUSDT","d":[]},{"s":"HITBTC:MASKUSD","d":[]},{"s":"UNISWAP3ETH:USDCWBTC","d":[]},{"s":"SPOOKYSWAP:WATERFALLWFTM_C4EC70.USD","d":[]},{"s":"UNISWAP:POWELLWETH_05F155","d":[]},{"s":"MEXC:IRLUSDT","d":[]},{"s":"QUICKSWAP:PAEWMATIC_07D53B.USD","d":[]},{"s":"UNISWAP:PEIPEIWETH_AD796F.USD","d":[]},{"s":"UNISWAP:LIQWETH_13C869.USD","d":[]},{"s":"UNISWAP:KABOSUWETH_8407B9.USD","d":[]},{"s":"UNISWAP3POLYGON:SVALUESWBTC_5B4346.USD","d":[]},{"s":"BINANCE:ALGOUSDT","d":[]},{"s":"MEXC:FLUX1USDT","d":[]},{"s":"UNISWAP:BONKIWETH_30E9F1.USD","d":[]},{"s":"HITBTC:VGXUSD","d":[]},{"s":"COINBASE:ELAUSD","d":[]},{"s":"KRAKEN:ENSUSD.PM","d":[]},{"s":"POLONIEX:YFIIUSDT","d":[]},{"s":"BITMEX:NEARUSD.P","d":[]},{"s":"QUICKSWAP:KNIGHTWETH_7F7C12","d":[]},{"s":"BITRUE:SLPUSDT","d":[]},{"s":"GEMINI:STORJUSD","d":[]},{"s":"GATEIO:DODOUSDT","d":[]},{"s":"BINANCE:SOLBNB","d":[]},{"s":"MEXC:SKPUSDT","d":[]},{"s":"POLONIEX:TORNUSDT","d":[]},{"s":"XEXCHANGE:MERMAIDUSDC","d":[]},{"s":"COINEX:ZILBTC","d":[]},{"s":"UNISWAP:BLESWETH_187094.USD","d":[]},{"s":"UNISWAP:VLABSWETH_6A4D1F","d":[]},{"s":"UNISWAP3ETH:UNDERWETH_1139E3.USD","d":[]},{"s":"MEXC:ABBCUSDT","d":[]},{"s":"MEXC:HUSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:MZRTOKENWETH_94122A.USD","d":[]},{"s":"UNISWAP:MLTWETH_9B3DF8.USD","d":[]},{"s":"UNISWAP3POLYGON:WBTCWETH_50EAED.USD","d":[]},{"s":"UNISWAP3ETH:CDAIWETH","d":[]},{"s":"UNISWAP:SIPHERWETH_F3FDCF","d":[]},{"s":"GATEIO:OINUSDT","d":[]},{"s":"MEXC:QIUSDT.P","d":[]},{"s":"POLONIEX:EOSETH","d":[]},{"s":"BITGET:BEAMUSDT.P","d":[]},{"s":"TRADERJOE:PANDAWAVAX_ED3D6E","d":[]},{"s":"HITBTC:STETHBTC","d":[]},{"s":"UNISWAP:KIROWETH_5CD136","d":[]},{"s":"UNISWAP3OPTIMISM:USDCUSDT_F3F343.USD","d":[]},{"s":"PHEMEX:SOLUSDT","d":[]},{"s":"PANGOLIN:LINKEWAVAX_5875C3.USD","d":[]},{"s":"BITRUE:ETCBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ICHIWETH_071427.USD","d":[]},{"s":"UNISWAP:LOVEPEPE_AEA41A.USD","d":[]},{"s":"COINEX:RBWUSDT","d":[]},{"s":"UNISWAP:XWETH_981680.USD","d":[]},{"s":"BITMEX:GMTUSDT.P","d":[]},{"s":"KRAKEN:FLREUR","d":[]},{"s":"UNISWAP:KIBAWETH_AC6776.USD","d":[]},{"s":"BTSE:RUNEUSD.P","d":[]},{"s":"QUICKSWAP:ISPWETH_B60D9E","d":[]},{"s":"UNISWAP3ETH:SLNUSDT_291DB2.USD","d":[]},{"s":"GATEIO:VIDYXUSDT","d":[]},{"s":"HITBTC:ELFUSDT","d":[]},{"s":"PHEMEX:TRXUSDT.P","d":[]},{"s":"COINBASE:SANDUSD","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDT_BB98B3.USD","d":[]},{"s":"TRADERJOE:GTRYCWAVAX_D65328","d":[]},{"s":"UNISWAP3ETH:CHAIWETH","d":[]},{"s":"EXMO:DOGEBTC","d":[]},{"s":"BITGET:CSPRUSDT","d":[]},{"s":"UNISWAP3ETH:LRCWETH","d":[]},{"s":"BLOFIN:CTSIUSDT.P","d":[]},{"s":"HITBTC:XCHUSDT","d":[]},{"s":"MEXC:CVIPUSDT","d":[]},{"s":"TRADERJOE:DUAUSDC_389556.USD","d":[]},{"s":"GATEIO:SANTOSUSDT","d":[]},{"s":"BITRUE:CGOUSDT","d":[]},{"s":"XEXCHANGE:XKINGWEGLD","d":[]},{"s":"UNISWAP:MOSSWETH_ECD493","d":[]},{"s":"BINGX:TIAUSDT.PS","d":[]},{"s":"MEXC:ETHUSDC","d":[]},{"s":"UNISWAP3ETH:USDCWAS","d":[]},{"s":"BITSTAMP:LINKUSD","d":[]},{"s":"UNISWAP:PEPE20WETH_076A3E.USD","d":[]},{"s":"HITBTC:BALUSDT","d":[]},{"s":"UNISWAP3ETH:SUSHIUSDC_184C33.USD","d":[]},{"s":"BLOFIN:LUNCUSDT.P","d":[]},{"s":"COINEX:INSTUSDT","d":[]},{"s":"COINEX:HBBUSDT","d":[]},{"s":"DYDX:XLMUSD.P","d":[]},{"s":"UNISWAP3ETH:OPTIMUSUSDT_4BFEAC.USD","d":[]},{"s":"UNISWAP3ETH:BADGERUSDT","d":[]},{"s":"SPOOKYSWAP:ARCHAWFTM_71DF70","d":[]},{"s":"MEXC:FNCYUSDT","d":[]},{"s":"POLONIEX:LONUSDT","d":[]},{"s":"HITBTC:BTCVUSD","d":[]},{"s":"UNISWAP3ETH:USDTCAST","d":[]},{"s":"UNISWAP:MOSESWETH_635B9E.USD","d":[]},{"s":"UNISWAP:LENNYFACEWETH_4B82E8.USD","d":[]},{"s":"GATEIO:ZENUSDT.3L","d":[]},{"s":"UNISWAP:TOMWETH_AE2CF4.USD","d":[]},{"s":"MEXC:CMPUSDT","d":[]},{"s":"BINANCE:BLZUSDT","d":[]},{"s":"UNISWAP:VGPUWETH_FB9ECD","d":[]},{"s":"WHITEBIT:UTKUSDT","d":[]},{"s":"GATEIO:DEPUSDT","d":[]},{"s":"BITGET:PGTUSDT","d":[]},{"s":"GATEIO:SAVGUSDT","d":[]},{"s":"GATEIO:SPACEUSDT","d":[]},{"s":"BINANCE:USDTUAH","d":[]},{"s":"XEXCHANGE:CRTWEGLD","d":[]},{"s":"UPBIT:ASTRKRW","d":[]},{"s":"UNISWAP:CHINGWETH_2ADA17","d":[]},{"s":"TRADERJOE:BETSWAVAX_05D762.USD","d":[]},{"s":"PHEMEX:ONDOUSDT","d":[]},{"s":"COINEX:IOTAUSDT","d":[]},{"s":"MEXC:GALAUSDT.P","d":[]},{"s":"UNISWAP3ETH:SDEXWETH","d":[]},{"s":"BITMEX:BONKUSDT","d":[]},{"s":"UNISWAP3ETH:WBNBWETH","d":[]},{"s":"KRAKEN:TIAUSD","d":[]},{"s":"UNISWAP:QUADWETH_24D26D.USD","d":[]},{"s":"COINEX:COMPBTC","d":[]},{"s":"UNISWAP3ETH:1INCHUSDT_A21ED0.USD","d":[]},{"s":"BITHUMB:MAGICKRW","d":[]},{"s":"GATEIO:MMSSUSDT","d":[]},{"s":"UNISWAP3ETH:XDWETH_FB76CD.USD","d":[]},{"s":"POLONIEX:BRISEUSDT","d":[]},{"s":"POLONIEX:BTPUSDT","d":[]},{"s":"COINEX:CUDOSUSDT","d":[]},{"s":"TRADERJOE:OSAKCOQ_257D3B","d":[]},{"s":"ZOOMEX:CKBUSDT.P","d":[]},{"s":"POLONIEX:STXUSDT","d":[]},{"s":"UNISWAP:MIXWETH_E7F70C","d":[]},{"s":"ZOOMEX:CEEKUSDT.P","d":[]},{"s":"POLONIEX:SRMUSDC","d":[]},{"s":"COINEX:BANDBTC","d":[]},{"s":"BITHUMB:MKRKRW","d":[]},{"s":"QUICKSWAP:PBRUSDT_53B02A","d":[]},{"s":"BITHUMB:FANCKRW","d":[]},{"s":"UNISWAP:ORDSWETH_FE9E79","d":[]},{"s":"HITBTC:FYPBTC","d":[]},{"s":"TRADERJOE:HATCHYWAVAX_127322.USD","d":[]},{"s":"GATEIO:PNLUSDT","d":[]},{"s":"GATEIO:PAALUSDT","d":[]},{"s":"OKX:RVNUSDT.P","d":[]},{"s":"TRADERJOE:TRUMPWAVAX_FDC291.USD","d":[]},{"s":"PANGOLIN:INSURWAVAX_ED7648.USD","d":[]},{"s":"POLONIEX:MILKUSDT","d":[]},{"s":"HITBTC:RSRUSDT","d":[]},{"s":"UNISWAP:NOBWETH_5764FC","d":[]},{"s":"BINANCE:CTKUSDT","d":[]},{"s":"POLONIEX:CAFUSDT","d":[]},{"s":"UNISWAP:MVIWETH_4D3C5D","d":[]},{"s":"UNISWAP3ETH:WETHCHZ","d":[]},{"s":"KRAKEN:AKTEUR","d":[]},{"s":"POLONIEX:VAULTUSDT","d":[]},{"s":"BYBIT:BTCUSDT.3L","d":[]},{"s":"UNISWAP:FTWWETH_B2A497.USD","d":[]},{"s":"BINANCE:CHZBTC","d":[]},{"s":"BINGX:THETAUSDT.PS","d":[]},{"s":"BITFINEX:ALGBTC","d":[]},{"s":"BITGET:USDCUSDT","d":[]},{"s":"UNISWAP3ETH:PROSWETH","d":[]},{"s":"BINANCE:UNFIBTC","d":[]},{"s":"UNISWAP3ETH:WETHZRX","d":[]},{"s":"BINGX:FILUSDT.P","d":[]},{"s":"MEXC:XEPUSDT","d":[]},{"s":"BINANCE:SEIBTC","d":[]},{"s":"COINEX:DIACUSDT","d":[]},{"s":"QUICKSWAP:ONEWMATIC_01CA94.USD","d":[]},{"s":"TIMEX:LTCAUDT","d":[]},{"s":"GATEIO:TEDDYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFWB","d":[]},{"s":"GATEIO:SFUNDUSDT","d":[]},{"s":"BLOFIN:FLMUSDT.P","d":[]},{"s":"MEXC:WMINIMAUSDT","d":[]},{"s":"MEXC:EGGUSDT","d":[]},{"s":"BYBIT:SEIUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDT_421610.USD","d":[]},{"s":"UNISWAP3ETH:WETHVARK","d":[]},{"s":"BITGET:CRVUSDT","d":[]},{"s":"UNISWAP:BTBSUSDC_05A4FA","d":[]},{"s":"GATEIO:SMTUSDT","d":[]},{"s":"POLONIEX:RDNTUSDT","d":[]},{"s":"QUICKSWAP:GMEEASTRAFER_346E2F.USD","d":[]},{"s":"GATEIO:AIEPKUSDT","d":[]},{"s":"MEXC:DARUSDT","d":[]},{"s":"BYBIT:ETHUSD.P","d":[]},{"s":"BITKUB:JFINTHB","d":[]},{"s":"BITGET:CELRUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHXDEFI","d":[]},{"s":"MEXC:TMTUSDT","d":[]},{"s":"UNISWAP3ETH:GENAIWETH_590B85.USD","d":[]},{"s":"BITFINEX:CRVUST.P","d":[]},{"s":"MEXC:AIUSDT","d":[]},{"s":"XEXCHANGE:LANDUSDC","d":[]},{"s":"MEXC:PORTALUSDT","d":[]},{"s":"MEXC:XRPUSDC","d":[]},{"s":"BINGX:IDEXUSDT.P","d":[]},{"s":"GATEIO:SOLSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:HMXWETH_05BBAA.USD","d":[]},{"s":"HITBTC:BDGETH","d":[]},{"s":"UNISWAP:HELIOSWETH_886FBB.USD","d":[]},{"s":"BINANCE:LTCUSDH2024","d":[]},{"s":"ZOOMEX:ZECUSDT.P","d":[]},{"s":"SPOOKYSWAP:WVWFTM_DDD72A","d":[]},{"s":"BINGX:VANRYUSDT.PS","d":[]},{"s":"UNISWAP:AZRWETH_54E4BA","d":[]},{"s":"COINEX:VRUSDT","d":[]},{"s":"UNISWAP:MANAWETH_11B1F5","d":[]},{"s":"QUICKSWAP:MTHDQUICK_10A80A.USD","d":[]},{"s":"UNISWAP3ETH:WETHSDAX","d":[]},{"s":"UNISWAP3ETH:WETHDOVA","d":[]},{"s":"UNISWAP:RFKJWETH_F12FE4","d":[]},{"s":"BITMEX:SOLUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:PORTXUSDT_659321.USD","d":[]},{"s":"MEXC:TFUSDT","d":[]},{"s":"QUICKSWAP:REVVWMATIC_70BAC4.USD","d":[]},{"s":"POLONIEX:BCHUSDT","d":[]},{"s":"BINANCE:MOVRUSDT","d":[]},{"s":"UNISWAP3ETH:NINJAWETH_DF4AC3.USD","d":[]},{"s":"POLONIEX:BLOXUSDT","d":[]},{"s":"MEXC:SKLUSDT","d":[]},{"s":"POLONIEX:BCHBTC","d":[]},{"s":"PIONEX:RVNUSDT.P","d":[]},{"s":"UNISWAP:GDOGGETH_BAEA27","d":[]},{"s":"KRAKEN:BITEUR","d":[]},{"s":"MEXC:SXPUSDT","d":[]},{"s":"UNISWAP3ETH:USDCINFINITE","d":[]},{"s":"PHEMEX:GLMUSDT","d":[]},{"s":"UNISWAP3ETH:HOFFWETH","d":[]},{"s":"UNISWAP3ETH:WETHLINU","d":[]},{"s":"KRAKEN:PAXGBTC","d":[]},{"s":"GEMINI:LTCETH","d":[]},{"s":"BINGX:ENSUSDT.P","d":[]},{"s":"HITBTC:DGDBTC","d":[]},{"s":"UNISWAP:HIKARIWETH_EB1E76.USD","d":[]},{"s":"GATEIO:GALUSDT.3L","d":[]},{"s":"SPOOKYSWAP:CATSWFTM_441AD1.USD","d":[]},{"s":"KRAKEN:GRTBTC","d":[]},{"s":"BITGET:FLOKIUSDT.P","d":[]},{"s":"QUICKSWAP:POLYDOGEWMATIC_264E6B","d":[]},{"s":"GATEIO:AGBUSDT","d":[]},{"s":"HITBTC:HOTUSD","d":[]},{"s":"UNISWAP3ARBITRUM:CIPARB_4319B9.USD","d":[]},{"s":"UNISWAP3ETH:SQTUSDT_65F53F.USD","d":[]},{"s":"UNISWAP3ETH:WETHENS","d":[]},{"s":"UNISWAP:POWERWETH_49F931.USD","d":[]},{"s":"MEXC:UNLEASHUSDT","d":[]},{"s":"MEXC:MCTUSDT","d":[]},{"s":"UNISWAP3ETH:XDEFIWETH","d":[]},{"s":"UNISWAP3OPTIMISM:SUSDUSDT_F046D8.USD","d":[]},{"s":"POLONIEX:KDOEUSDT","d":[]},{"s":"MEXC:CFXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WBTCBTREE","d":[]},{"s":"TRADERJOE:SLIMEWAVAX_15AB2D.USD","d":[]},{"s":"UNISWAP:SWOTWETH_12031C","d":[]},{"s":"UNISWAP:CBSNWETH_67C32C.USD","d":[]},{"s":"TRADERJOE:PAYDAYWAVAX_61F8A0","d":[]},{"s":"UNISWAP:CRUUSDC_2702BD","d":[]},{"s":"GATEIO:DCRNUSDT","d":[]},{"s":"BYBIT:DUSKUSDT.P","d":[]},{"s":"BITRUE:LUNAUSDT","d":[]},{"s":"UNISWAP:SEAWETH_DF389D.USD","d":[]},{"s":"UNISWAP3ETH:WETHFTR","d":[]},{"s":"BITGET:CREUSDT","d":[]},{"s":"UNISWAP3POLYGON:WETHUSDC_45DDA9.USD","d":[]},{"s":"TRADERJOE:BLZZWAVAX_AC3F97.USD","d":[]},{"s":"BITFINEX:XLMUST.P","d":[]},{"s":"HITBTC:XECUSDT","d":[]},{"s":"BINANCE:PNTUSDT","d":[]},{"s":"BINGX:LDOUSDT.PS","d":[]},{"s":"BITKUB:ARBTHB","d":[]},{"s":"UNISWAP:PKNWETH_94DE69","d":[]},{"s":"UNISWAP3ETH:WETHCBABY","d":[]},{"s":"BITSTAMP:ETHUSDT","d":[]},{"s":"MEXC:SEAMUSDT","d":[]},{"s":"GATEIO:MILOUSDT","d":[]},{"s":"MEXC:NEARUSDC","d":[]},{"s":"UNISWAP:PEPECWETH_A193FB.USD","d":[]},{"s":"WOONETWORK:DOTUSDT","d":[]},{"s":"UNISWAP3ETH:ILVWETH","d":[]},{"s":"UNISWAP:MIXCOINWETH_1E8967.USD","d":[]},{"s":"UNISWAP:HYPEWETH_D66278.USD","d":[]},{"s":"UNISWAP:TRUSTWETH_403EED.USD","d":[]},{"s":"UNISWAP3ETH:TURBOWETH_8107FC.USD","d":[]},{"s":"GATEIO:MIXUSDT","d":[]},{"s":"UNISWAP3ETH:ICSAHEX_82DE4D.USD","d":[]},{"s":"QUICKSWAP:TEADWETH_7896A4","d":[]},{"s":"WAGYUSWAP:JUNGLEWVLX_E9A515","d":[]},{"s":"UNISWAP:CHANWETH_173B99","d":[]},{"s":"UNISWAP3POLYGON:OPXUSDT_080C91.USD","d":[]},{"s":"BITSTAMP:XRPGBP","d":[]},{"s":"UNISWAP:VDOWETH_059928","d":[]},{"s":"UNISWAP:AIWETH_CDE8D6.USD","d":[]},{"s":"BITRUE:FYNUSDT","d":[]},{"s":"BINANCE:MAGICTRY","d":[]},{"s":"UNISWAP:DOJOWETH_AE0C26.USD","d":[]},{"s":"COINEX:SDUSDT","d":[]},{"s":"UNISWAP:WHIRLWETH_241119","d":[]},{"s":"BITSTAMP:GODSEUR","d":[]},{"s":"UNISWAP:BIGWETH_5710E8.USD","d":[]},{"s":"UNISWAP3ETH:JUSTICEWETH","d":[]},{"s":"ZOOMEX:PAXGUSDT.P","d":[]},{"s":"BITSTAMP:ETHGBP","d":[]},{"s":"BITGET:PONKEUSDT","d":[]},{"s":"PHEMEX:SUIUSDT.P","d":[]},{"s":"TRADERJOE:SOBWAVAX_B5048A","d":[]},{"s":"BITGET:SUSHIUSDT","d":[]},{"s":"MEXC:DEPUSDT","d":[]},{"s":"BYBIT:MANAUSDC","d":[]},{"s":"HITBTC:NEOTUSD","d":[]},{"s":"UNISWAP3ETH:HONOUSDC_E78717.USD","d":[]},{"s":"KRAKEN:LDOEUR","d":[]},{"s":"HITBTC:SOLHIT","d":[]},{"s":"UNISWAP3ETH:Y00TWETH_92741B.USD","d":[]},{"s":"MEXC:HYDRAUSDT","d":[]},{"s":"UNISWAP3ETH:USDCJESUS","d":[]},{"s":"BITRUE:VTHOADA","d":[]},{"s":"HITBTC:TUSDEOSDT","d":[]},{"s":"MEXC:OMNICATUSDT","d":[]},{"s":"MEXC:LAZIOUSDT","d":[]},{"s":"MEXC:CEREUSDT","d":[]},{"s":"ZOOMEX:AKROUSDT.P","d":[]},{"s":"UNISWAP:AVATARWETH_24A8FE.USD","d":[]},{"s":"UNISWAP:PAYWETH_4941AE.USD","d":[]},{"s":"MEXC:REVVUSDT","d":[]},{"s":"POLONIEX:UTUSDT","d":[]},{"s":"UNISWAP3ETH:ACXWETH_508ACD.USD","d":[]},{"s":"BYBIT:LTCBTC","d":[]},{"s":"KRAKEN:FTMEUR","d":[]},{"s":"MEXC:ONEUSDT.P","d":[]},{"s":"MEXC:AZITUSDT","d":[]},{"s":"UNISWAP:GRAVITASWETH_B6BFFE","d":[]},{"s":"GATEIO:ENVUSDT","d":[]},{"s":"KRAKEN:OPUSD.PM","d":[]},{"s":"MEXC:ZEBUUSDT","d":[]},{"s":"MEXC:BOZOUSDT","d":[]},{"s":"PHEMEX:SANDUSDT.P","d":[]},{"s":"HITBTC:LPTUSDT","d":[]},{"s":"UNISWAP:STATSWETH_0B2079","d":[]},{"s":"GATEIO:ZETAUSDT","d":[]},{"s":"QUICKSWAP:4INTWMATIC_029717.USD","d":[]},{"s":"UNISWAP3ETH:HUNDREDWETH_ECB037.USD","d":[]},{"s":"UNISWAP3ETH:SCLMUSDT","d":[]},{"s":"BISWAP:LTCUSDT_412B60","d":[]},{"s":"BYBIT:GALAUSDT","d":[]},{"s":"UNISWAP3ETH:GRAIUSDC","d":[]},{"s":"BITRUE:KOMUSDT","d":[]},{"s":"BITRUE:DATAUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LUSDUSDC_494A11.USD","d":[]},{"s":"UNISWAP3ETH:MCADEUSDT","d":[]},{"s":"PIONEX:IMXUSDT.P","d":[]},{"s":"UNISWAP:LUFFYWETH_55B085","d":[]},{"s":"COINEX:BOBABTC","d":[]},{"s":"UNISWAP3ETH:TURTWETH","d":[]},{"s":"BINANCE:AITUSD","d":[]},{"s":"UNISWAP:BASEWETH_C03692","d":[]},{"s":"UNISWAP3ETH:WETHDATA","d":[]},{"s":"UNISWAP:RINWETH_DB030E","d":[]},{"s":"PANGOLIN:UNIWAVAX_92DC55","d":[]},{"s":"HITBTC:LCXBTC","d":[]},{"s":"UNISWAP:DEXMWETH_C92B1C","d":[]},{"s":"EXMO:EXMETH","d":[]},{"s":"UNISWAP:EPEPWETH_895F6D.USD","d":[]},{"s":"MEXC:FIROUSDT","d":[]},{"s":"COINBASE:FISUSD","d":[]},{"s":"SPOOKYSWAP:BPEPEWFTM_5EA336.USD","d":[]},{"s":"UNISWAP3ETH:NOBODYFLC_13B554.USD","d":[]},{"s":"ZOOMEX:MAVIAUSDT.P","d":[]},{"s":"UNISWAP:HONKWETH_B04255.USD","d":[]},{"s":"KRAKEN:ANTUSD.PM","d":[]},{"s":"BINANCE:TLMUSDT","d":[]},{"s":"UNISWAP3ETH:XONEWETH_7ECEE7.USD","d":[]},{"s":"UPBIT:BORAKRW","d":[]},{"s":"GATEIO:PERPUSDT","d":[]},{"s":"UNISWAP:PAIDWETH_73A864.USD","d":[]},{"s":"UNISWAP:PXWETH_277E11","d":[]},{"s":"UNISWAP:CHOWWETH_0387E5.USD","d":[]},{"s":"UNISWAP:HONGWETH_CE7C2B","d":[]},{"s":"GATEIO:GEMUSDT","d":[]},{"s":"PANGOLIN:FITFIWAVAX_1BB665.USD","d":[]},{"s":"GATEIO:ALNUSDT","d":[]},{"s":"BINGX:LTCUSDT.PS","d":[]},{"s":"GATEIO:ORTUSDT","d":[]},{"s":"KRAKEN:OMGJPY","d":[]},{"s":"HITBTC:LUNCUSD","d":[]},{"s":"BINANCE:THETAETH","d":[]},{"s":"POLONIEX:BOBOUSDT","d":[]},{"s":"KRAKEN:DASHEUR","d":[]},{"s":"UNISWAP3ETH:WETHVINU","d":[]},{"s":"PIONEX:OXTUSDT.P","d":[]},{"s":"GATEIO:SLGUSDT","d":[]},{"s":"BITGET:XELSUSDT","d":[]},{"s":"COINBASE:BALBTC","d":[]},{"s":"UNISWAP3ETH:IDLEWETH_79E42A.USD","d":[]},{"s":"UNISWAP:NOONWETH_8A8A13.USD","d":[]},{"s":"UNISWAP:TAOXWETH_B657A7.USD","d":[]},{"s":"MEXC:BUNNYUSDT","d":[]},{"s":"UNISWAP3ETH:ETHXWETH_1B9669.USD","d":[]},{"s":"MEXC:NMRUSDT","d":[]},{"s":"UNISWAP3ETH:GTCWETH_06B165.USD","d":[]},{"s":"BITFINEX:HMTUSD","d":[]},{"s":"UNISWAP3ETH:DERCWETH","d":[]},{"s":"GATEIO:PHMUSDT","d":[]},{"s":"BINANCE:FIDABTC","d":[]},{"s":"UNISWAP:NOVCWETH_2B3B3F","d":[]},{"s":"MEXC:GDCUSDT","d":[]},{"s":"BITGET:ADAUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:WETHDAI_67A9FE.USD","d":[]},{"s":"BINANCE:WLDUSDC","d":[]},{"s":"BITFINEX:AZEROUSD","d":[]},{"s":"POLONIEX:COMUSDT","d":[]},{"s":"UNISWAP:BURNWETH_F464DC.USD","d":[]},{"s":"UNISWAP:SANI0NE_EF6242","d":[]},{"s":"MEXC:ETCUSDT","d":[]},{"s":"BINANCE:CAKEUSDT","d":[]},{"s":"UNISWAP:BLUEYWETH_3A00D3.USD","d":[]},{"s":"HITBTC:RVNUSD","d":[]},{"s":"TRADERJOE:YYAVAXUSDC_0512AB","d":[]},{"s":"BITMEX:CROUSD.P","d":[]},{"s":"BITRUE:ADAUSDT","d":[]},{"s":"UNISWAP3ETH:API3WETH","d":[]},{"s":"BYBIT:STGUSDT","d":[]},{"s":"UNISWAP:ENXSWETH_12AE60.USD","d":[]},{"s":"QUICKSWAP:MVWMATIC_F21284","d":[]},{"s":"COINEX:DOTUSDT","d":[]},{"s":"UNISWAP:CRACERWETH_26B9C1.USD","d":[]},{"s":"UNISWAP:DEUSWETH_367E2D.USD","d":[]},{"s":"MEXC:SMTUSDT","d":[]},{"s":"BYBIT:TLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHVXV","d":[]},{"s":"BITHUMB:MINAKRW","d":[]},{"s":"COINEX:JPEGUSDT","d":[]},{"s":"BITFINEX:ARBUST.P","d":[]},{"s":"UNISWAP:TEARWETH_A29191","d":[]},{"s":"UNISWAP:BEAMWETH_180EFC.USD","d":[]},{"s":"UNISWAP:CVXFPISWETH_AEA3E8","d":[]},{"s":"UNISWAP:JOYWETH_041184.USD","d":[]},{"s":"UNISWAP:BLASTWETH_5311E3.USD","d":[]},{"s":"MEXC:NFTYUSDT","d":[]},{"s":"OKX:METISUSDT.P","d":[]},{"s":"COINEX:NTRNUSDT","d":[]},{"s":"UNISWAP:SHIBAKENWETH_420CF3.USD","d":[]},{"s":"PIONEX:WAXPUSDT.P","d":[]},{"s":"GATEIO:ZCNUSDT","d":[]},{"s":"BITGET:T2T2USDT","d":[]},{"s":"GATEIO:KATUSDT","d":[]},{"s":"UNISWAP3ETH:WETHXEN","d":[]},{"s":"GATEIO:SAKAIUSDT","d":[]},{"s":"KRAKEN:ORCAUSD","d":[]},{"s":"HITBTC:SPIBTC","d":[]},{"s":"POLONIEX:UNIUSDT","d":[]},{"s":"UNISWAP:FAIWETH_4D7324.USD","d":[]},{"s":"BITSTAMP:XRPUSDT","d":[]},{"s":"UNISWAP3ETH:XYXYXWETH_79AE08.USD","d":[]},{"s":"HITBTC:XPRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPRT","d":[]},{"s":"BINANCE:PEPEUSDC","d":[]},{"s":"BITRUE:BNBUSDC","d":[]},{"s":"UNISWAP3ETH:DSETHWETH","d":[]},{"s":"UNISWAP:FOLOWETH_D7160F","d":[]},{"s":"UNISWAP3ETH:USDCCYBER","d":[]},{"s":"BYBIT:AGLDUSDT","d":[]},{"s":"UNISWAP3ETH:GMSWETH_ACB952.USD","d":[]},{"s":"UNISWAP3ETH:WETHAI.MAX","d":[]},{"s":"GATEIO:VSOUSDT","d":[]},{"s":"UNISWAP:TETHERWETH_619931","d":[]},{"s":"MEXC:SECUSDT","d":[]},{"s":"TRADERJOE:BENDWAVAX_C5EC2A","d":[]},{"s":"MEXC:PORT3USDT","d":[]},{"s":"UNISWAP3ETH:IZIWETH_3EB822.USD","d":[]},{"s":"PANGOLIN:AYIELDUSDCE_454F88","d":[]},{"s":"UNISWAP:K21WETH_3BF862","d":[]},{"s":"UNISWAP:ROOTWETH_FB4492","d":[]},{"s":"COINEX:SYLOUSDT","d":[]},{"s":"UNISWAP3ETH:LORDSWETH_510484.USD","d":[]},{"s":"BITRUE:ICPBTR","d":[]},{"s":"HITBTC:IPLBTC","d":[]},{"s":"BITGET:PYRUSDT","d":[]},{"s":"BINANCE:NEARBNB","d":[]},{"s":"UNISWAP3ETH:USDCGRAI","d":[]},{"s":"UNISWAP:OCDWETH_9E7065","d":[]},{"s":"BINANCE:ARBTC","d":[]},{"s":"UNISWAP:PUSHWETH_AF31FD.USD","d":[]},{"s":"HITBTC:XMRETH","d":[]},{"s":"UNISWAP3ETH:SAFETHWETH","d":[]},{"s":"UNISWAP3ETH:GMEWETH_C50892.USD","d":[]},{"s":"MEXC:HNSUSDT","d":[]},{"s":"UNISWAP:ESOVWETH_127CAD.USD","d":[]},{"s":"UNISWAP3ETH:METISWETH","d":[]},{"s":"HITBTC:USDDUSDC","d":[]},{"s":"UNISWAP3ETH:WLDWETH_841820.USD","d":[]},{"s":"BITGET:MDAOUSDT","d":[]},{"s":"MEXC:KINEUSDT","d":[]},{"s":"UNISWAP:XWETH_2515C6.USD","d":[]},{"s":"GATEIO:AUDIOUSDT","d":[]},{"s":"TRADERJOE:TRUMPWAVAX_FDC291","d":[]},{"s":"UNISWAP:XWETH_8E83DE.USD","d":[]},{"s":"HITBTC:BNBHIT","d":[]},{"s":"UNISWAP3OPTIMISM:SNXLINK_BF595E.USD","d":[]},{"s":"WHITEBIT:ANKRUSDT","d":[]},{"s":"BITFINEX:DYMUSD","d":[]},{"s":"SPOOKYSWAP:ELITEWFTM_EA035A","d":[]},{"s":"COINEX:STMXUSDT","d":[]},{"s":"UNISWAP:OPOEWETH_F60028","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDC_58B8FF.USD","d":[]},{"s":"UNISWAP:LAIKAWETH_2E0ADB.USD","d":[]},{"s":"BITGET:BHATUSDT","d":[]},{"s":"COINEX:COQUSDT","d":[]},{"s":"UNISWAP:STREAKWETH_752F36.USD","d":[]},{"s":"GATEIO:SQUADUSDT","d":[]},{"s":"UNISWAP:APOLLOWETH_56606D","d":[]},{"s":"MEXC:OCEANUSDT","d":[]},{"s":"MEXC:RSS3USDT.P","d":[]},{"s":"UNISWAP:JUANWETH_C7074A.USD","d":[]},{"s":"UNISWAP:BABYPEPEWETH_3AF45B","d":[]},{"s":"UNISWAP3ETH:PROWETH","d":[]},{"s":"POLONIEX:HONKUSDT","d":[]},{"s":"UNISWAP:CHAPWETH_3268EC","d":[]},{"s":"UNISWAP3ETH:WETHBORAT","d":[]},{"s":"UNISWAP3ETH:PORT3WETH","d":[]},{"s":"MEXC:XRPUSDT.P","d":[]},{"s":"GATEIO:LOONUSDT","d":[]},{"s":"KRAKEN:KNCEUR","d":[]},{"s":"BINGX:MATICUSDT.PS","d":[]},{"s":"COINEX:DOTBTC","d":[]},{"s":"UNISWAP3ETH:ABIWETH","d":[]},{"s":"UNISWAP:HNTAIWETH_BD0473","d":[]},{"s":"BYBIT:INTERUSDT","d":[]},{"s":"PANGOLIN:ACREWAVAX_64694F","d":[]},{"s":"UNISWAP:DOPWETH_4C0EE2.USD","d":[]},{"s":"GATEIO:ASMUSDT","d":[]},{"s":"UNISWAP3ETH:USDTAIMEME","d":[]},{"s":"UNISWAP3ETH:WETHSHIBDOGE","d":[]},{"s":"MEXC:ALLINUSDT","d":[]},{"s":"MEXC:AVAXUSDT.P","d":[]},{"s":"UNISWAP3ETH:JEFFWETH_A04954.USD","d":[]},{"s":"GATEIO:URUSUSDT","d":[]},{"s":"UNISWAP3ETH:TENJINSPELLBOOK_5605F4.USD","d":[]},{"s":"UNISWAP3ETH:MNTWETH_F4C5E0.USD","d":[]},{"s":"MEXC:MANAUSDT.P","d":[]},{"s":"UNISWAP3ETH:BITROCKWETH","d":[]},{"s":"BINANCE:HIFIUSDT","d":[]},{"s":"BITRUE:FTMUSDT","d":[]},{"s":"BINANCE:LINKBTC","d":[]},{"s":"GATEIO:WISTAUSDT","d":[]},{"s":"POLONIEX:KSMUSDT","d":[]},{"s":"BLOFIN:NTRNUSDT.P","d":[]},{"s":"MEXC:CFXUSDT","d":[]},{"s":"UNISWAP:OCP404WETH_F757CC.USD","d":[]},{"s":"BINGX:SUIUSDT.P","d":[]},{"s":"SPOOKYSWAP:THCWFTM_8A8FDF","d":[]},{"s":"GEMINI:XRPGUSD.P","d":[]},{"s":"UNISWAP:LAYER4WETH_BD37AF","d":[]},{"s":"UNISWAP3POLYGON:FBXDCI_381BEA.USD","d":[]},{"s":"BITFINEX:BORGUST","d":[]},{"s":"UNISWAP3ETH:SHIWETH_052CEA.USD","d":[]},{"s":"KRAKEN:SUIEUR","d":[]},{"s":"UNISWAP:BADGERWBTC_CD7989.USD","d":[]},{"s":"BITFINEX:XVGUSD","d":[]},{"s":"HITBTC:REPBTC","d":[]},{"s":"PHEMEX:NEXOUSDT","d":[]},{"s":"UNISWAP:PEELWETH_1E3869","d":[]},{"s":"COINEX:POSIUSDT","d":[]},{"s":"UNISWAP3ETH:SDAOWETH_4B9D06.USD","d":[]},{"s":"UNISWAP:FR33WETH_F71E8A","d":[]},{"s":"HITBTC:QTUMUSDC","d":[]},{"s":"UNISWAP:SNTVTWETH_AB9BEF.USD","d":[]},{"s":"BINANCE:BTCZAR","d":[]},{"s":"PANGOLIN:JPYCUSDC_CEBAC1","d":[]},{"s":"QUICKSWAP:ANGELWMATIC_2A7D27","d":[]},{"s":"QUICKSWAP:PBORAWMATIC_4EF715","d":[]},{"s":"UNISWAP:SPIDERWETH_C14EF0.USD","d":[]},{"s":"BINANCE:ALICEUSDT","d":[]},{"s":"UNISWAP:VSWETH_6E204B.USD","d":[]},{"s":"MEXC:BOBUSDT","d":[]},{"s":"WOONETWORK:UNIUSDT","d":[]},{"s":"BYBIT:CRDSUSDT","d":[]},{"s":"BITGET:SATSUSDT","d":[]},{"s":"BINANCE:CYBERETH","d":[]},{"s":"GATEIO:DPETUSDT","d":[]},{"s":"UNISWAP3POLYGON:USDCGMT_055CD1.USD","d":[]},{"s":"UNISWAP3ETH:BONKUSDT","d":[]},{"s":"MEXC:HORDUSDT","d":[]},{"s":"BITRUE:PAXGUSDT","d":[]},{"s":"GATEIO:OMIUSDT","d":[]},{"s":"UNISWAP3ETH:POLKWETH_34B848.USD","d":[]},{"s":"QUICKSWAP:SANDCCDAO_75B303","d":[]},{"s":"ZOOMEX:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP3ETH:KEXWETH_7DD734.USD","d":[]},{"s":"UNISWAP3ETH:XAIUSDT","d":[]},{"s":"BITGET:BABYDRAGONUSDT","d":[]},{"s":"UNISWAP:EXOTIXWETH_63DE8D","d":[]},{"s":"WHITEBIT:JASMYUSDT","d":[]},{"s":"TRADERJOE:OWLWAVAX_E644B6","d":[]},{"s":"UNISWAP:RAIWETH_8AE720","d":[]},{"s":"UNISWAP:GOOCHWETH_F2CB72.USD","d":[]},{"s":"COINEX:JGNUSDT","d":[]},{"s":"HITBTC:EOSUSD","d":[]},{"s":"UPBIT:NEARKRW","d":[]},{"s":"GATEIO:PAFUSDT","d":[]},{"s":"BITFINEX:ATOUST.P","d":[]},{"s":"KRAKEN:MCUSD","d":[]},{"s":"BITGET:ETHUSDC.P","d":[]},{"s":"UNISWAP:TCRVWETH_1215CD.USD","d":[]},{"s":"BLOFIN:STORJUSDT.P","d":[]},{"s":"MEXC:COBUSDT","d":[]},{"s":"UNISWAP:DOGGYNFTWETH_BDE9B4.USD","d":[]},{"s":"UNISWAP3ETH:PORT3WETH_B388F8.USD","d":[]},{"s":"UNISWAP3ETH:WETHBABYPEPE","d":[]},{"s":"UNISWAP3POLYGON:LDOWMATIC_D866FA.USD","d":[]},{"s":"BITSTAMP:RLYUSD","d":[]},{"s":"GATEIO:XPNETUSDT","d":[]},{"s":"GATEIO:FTIUSDT","d":[]},{"s":"BYBIT:1SOLUSDT","d":[]},{"s":"BITFINEX:LYMUSD","d":[]},{"s":"GEMINI:GALAUSD","d":[]},{"s":"TRADERJOE:AVATWAVAX_CC502D","d":[]},{"s":"MEXC:MXMUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDC_EA263B.USD","d":[]},{"s":"COINEX:ENQAIUSDT","d":[]},{"s":"UNISWAP3ETH:STAOWETH","d":[]},{"s":"UNISWAP:FUNDWETH_BAB761.USD","d":[]},{"s":"DERIBIT:BTCUSD27U2024","d":[]},{"s":"BLOFIN:ICPUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:GRAINWETH_4237A1.USD","d":[]},{"s":"BLOFIN:RVNUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:IDRXUSDT_F640A4.USD","d":[]},{"s":"UNISWAP3ETH:WETHMIMI","d":[]},{"s":"UNISWAP3ETH:WRLDWETH_7AD5EC.USD","d":[]},{"s":"QUICKSWAP:LEPAWMATIC_B93027","d":[]},{"s":"GATEIO:NIMUSDT","d":[]},{"s":"KRAKEN:LUNA2EUR","d":[]},{"s":"UNISWAP3ETH:REPAYUSDT","d":[]},{"s":"MEXC:PANDOUSDT","d":[]},{"s":"GATEIO:WOZXUSDT","d":[]},{"s":"HITBTC:BESTUSD","d":[]},{"s":"UNISWAP3ETH:WETHDON","d":[]},{"s":"QUICKSWAP:RVLTWETH_3902B8.USD","d":[]},{"s":"MEXC:RAYUSDT","d":[]},{"s":"UNISWAP:THUGWETH_6512D5.USD","d":[]},{"s":"BLOFIN:BOBAUSDT.P","d":[]},{"s":"QUICKSWAP:CIOTXUSDC_CDDF91","d":[]},{"s":"MEXC:FIBUSDT","d":[]},{"s":"ZOOMEX:STRKUSDT.P","d":[]},{"s":"UNISWAP3ETH:DIDAI","d":[]},{"s":"PIONEX:PEPEUSDT.P","d":[]},{"s":"UNISWAP:PWGWETH_A757B7","d":[]},{"s":"BITGET:BNBUSDC","d":[]},{"s":"UNISWAP3ETH:BOJACKWETH_8F5AC7.USD","d":[]},{"s":"SPOOKYSWAP:FLIBEROWFTM_8A3422","d":[]},{"s":"UNISWAP3ETH:CNDUSDC","d":[]},{"s":"BITGET:VEMPUSDT","d":[]},{"s":"POLONIEX:FRAXUSDD","d":[]},{"s":"GATEIO:MOFIUSDT","d":[]},{"s":"UNISWAP3ETH:NCTWETH_05AAA0.USD","d":[]},{"s":"BYBIT:GMTUSDT.2S","d":[]},{"s":"BITRUE:SUNUSDC","d":[]},{"s":"UNISWAP3POLYGON:NEXUSDC_F836BE.USD","d":[]},{"s":"UNISWAP:AXIWETH_0F3CE8","d":[]},{"s":"UNISWAP:PEPEDOGEWETH_991069.USD","d":[]},{"s":"GATEIO:PLCUUSDT","d":[]},{"s":"SPOOKYSWAP:BRUSHWFTM_4EE115.USD","d":[]},{"s":"QUICKSWAP:ORIONUSDC_719E82","d":[]},{"s":"COINEX:ARBUSDT","d":[]},{"s":"COINBASE:XTZEUR","d":[]},{"s":"BITFINEX:EOSUSD","d":[]},{"s":"UNISWAP:SPROTOWETH_756043.USD","d":[]},{"s":"UNISWAP:AAVEWETH_DFC14D","d":[]},{"s":"TRADERJOE:GAUUSDC_035D10","d":[]},{"s":"PHEMEX:USTCUSDT.P","d":[]},{"s":"QUICKSWAP:PBORAUSDC_14BE05","d":[]},{"s":"UNISWAP3ETH:SQTWETH","d":[]},{"s":"HITBTC:SALTETH","d":[]},{"s":"UNISWAP:TRUMPWETH_0D1959.USD","d":[]},{"s":"BINANCE:ATOMBTC","d":[]},{"s":"SPOOKYSWAP:SPELLWFTM_78F82C.USD","d":[]},{"s":"BITRUE:LOKAUSDT","d":[]},{"s":"UNISWAP3ETH:BIPXUSDT","d":[]},{"s":"UNISWAP:EVILWETH_C0E00A","d":[]},{"s":"HITBTC:EMCBTC","d":[]},{"s":"UNISWAP3ETH:WETHWHRH","d":[]},{"s":"BITGET:INJUSDT.P","d":[]},{"s":"KRAKEN:BONDEUR","d":[]},{"s":"DYDX:CELOUSD.P","d":[]},{"s":"MEXC:PAXGUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:X404WETH_E309FB.USD","d":[]},{"s":"PHEMEX:YGGUSDT","d":[]},{"s":"UNISWAP3ETH:BONZAIWETH_3B038C.USD","d":[]},{"s":"UNISWAP3ETH:FEIDAI","d":[]},{"s":"COINBASE:FILBTC","d":[]},{"s":"UNISWAP:SHIBGFWETH_39DE6C.USD","d":[]},{"s":"UNISWAP3ETH:WETHFOOM","d":[]},{"s":"BITGET:NEOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMUSE","d":[]},{"s":"MEXC:CREAMUSDT","d":[]},{"s":"BLOFIN:1000BTTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSYNK","d":[]},{"s":"BYBIT:CTCUSDT","d":[]},{"s":"MEXC:JINKOUSDT","d":[]},{"s":"PIONEX:SOLUSDT.P","d":[]},{"s":"UNISWAP:SHIDOWETH_C44B09.USD","d":[]},{"s":"UNISWAP3ETH:SMARTWETH","d":[]},{"s":"TRADERJOE:WOODWAVAX_DD4601","d":[]},{"s":"UNISWAP:DIGGWBTC_E86204.USD","d":[]},{"s":"UNISWAP:DSYNCWETH_1FFEC7.USD","d":[]},{"s":"GATEIO:GTUSDT","d":[]},{"s":"BITRUE:OMGUSDT","d":[]},{"s":"QUICKSWAP:MSWMATIC_B44F63.USD","d":[]},{"s":"HITBTC:EOSBTC","d":[]},{"s":"BYBIT:CEEKUSDT.P","d":[]},{"s":"HITBTC:NXTUSD","d":[]},{"s":"HITBTC:AGLDUSD","d":[]},{"s":"QUICKSWAP:SANDCCDAO_75B303.USD","d":[]},{"s":"MEXC:STRKUSDT.P","d":[]},{"s":"BINGX:BONDUSDT.P","d":[]},{"s":"BINANCE:CAKETUSD","d":[]},{"s":"POLONIEX:CHZUSDT","d":[]},{"s":"BITGET:TSUGTUSDT","d":[]},{"s":"BITMEX:ADAUSD.P","d":[]},{"s":"UNISWAP3ETH:APEWETH_AC4B3D.USD","d":[]},{"s":"BITFINEX:LUNA2UST","d":[]},{"s":"UNISWAP3ETH:WETHYUME","d":[]},{"s":"COINBASE:PRIMEUSD","d":[]},{"s":"UNISWAP:BLFWETH_D75DF5.USD","d":[]},{"s":"UNISWAP3ETH:ALTWETH","d":[]},{"s":"UNISWAP:MONADWETH_0F2500.USD","d":[]},{"s":"UNISWAP:OPTIMOUSEWETH_E922D4.USD","d":[]},{"s":"UNISWAP3ETH:MATHWETH_D1DFF3.USD","d":[]},{"s":"POLONIEX:DARUSDT","d":[]},{"s":"UNISWAP3ETH:RENWETH_2DD56B.USD","d":[]},{"s":"UNISWAP3ARBITRUM:NUMADAI_91705F.USD","d":[]},{"s":"UNISWAP3ETH:BZZWETH_5696C2.USD","d":[]},{"s":"BYBIT:AGLAUSDT","d":[]},{"s":"SPOOKYSWAP:FORGWFTM_F1F065","d":[]},{"s":"UNISWAP:HUSTLEWETH_DAC51D","d":[]},{"s":"UNISWAP:PEPEAIWETH_B2DA70.USD","d":[]},{"s":"UNISWAP:UCOWETH_F89830","d":[]},{"s":"COINEX:BATUSDT","d":[]},{"s":"HITBTC:STARLUSDT","d":[]},{"s":"MEXC:DRFUSDT","d":[]},{"s":"BITSTAMP:APEEUR","d":[]},{"s":"UNISWAP3ETH:MKRRNG","d":[]},{"s":"MEXC:CPUUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAUTUMN","d":[]},{"s":"MEXC:ORAIXUSDT","d":[]},{"s":"WHITEBIT:XLMTRY","d":[]},{"s":"OKX:RENUSDT.P","d":[]},{"s":"UNISWAP3ETH:LQTYRNG_53C14D.USD","d":[]},{"s":"MEXC:CHICAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSWAP","d":[]},{"s":"MEXC:AVAETH","d":[]},{"s":"COINEX:KLAYUSDT","d":[]},{"s":"COINEX:ARUSDC","d":[]},{"s":"GATEIO:STCHAINUSDT","d":[]},{"s":"GATEIO:AAVEUSDT","d":[]},{"s":"UNISWAP:JUPWETH_2DFEE8.USD","d":[]},{"s":"BYBIT:ETHUSDT.3L","d":[]},{"s":"UNISWAP:STREAKWETH_752F36","d":[]},{"s":"UNISWAP3ARBITRUM:AAVEUSDC_6409BD.USD","d":[]},{"s":"UNISWAP3ETH:GMMWETH","d":[]},{"s":"PHEMEX:XRPUSDT.P","d":[]},{"s":"GATEIO:NESTUSDT","d":[]},{"s":"PHEMEX:ENJUSDT","d":[]},{"s":"UNISWAP:LUNCHWETH_950BF5","d":[]},{"s":"UNISWAP:OMNIXWETH_F4AB56.USD","d":[]},{"s":"KRAKEN:C98EUR","d":[]},{"s":"UNISWAP3ETH:ZEROUSDT","d":[]},{"s":"KRAKEN:FLOWGBP","d":[]},{"s":"PANGOLIN:MILK2WAVAX_180CAC","d":[]},{"s":"UNISWAP:BONK20WETH_94D9D7","d":[]},{"s":"KRAKEN:ARPAEUR","d":[]},{"s":"PIONEX:ETCUSDT.P","d":[]},{"s":"KRAKEN:GRTUSD.PM","d":[]},{"s":"UNISWAP3ETH:WETHXTREME","d":[]},{"s":"MEXC:ANTTUSDT","d":[]},{"s":"BYBIT:PLAYUSDT","d":[]},{"s":"GATEIO:CAKEUSDT","d":[]},{"s":"GATEIO:BTOUSDT","d":[]},{"s":"UNISWAP3POLYGON:TELWETH_22D1C3.USD","d":[]},{"s":"UNISWAP3OPTIMISM:MAIWETH_D7CCC6.USD","d":[]},{"s":"UNISWAP3ARBITRUM:CIPWETH_A0B05A.USD","d":[]},{"s":"UNISWAP:GRAVITASWETH_B6BFFE.USD","d":[]},{"s":"PHEMEX:RPLUSDT","d":[]},{"s":"UNISWAP:KERMITWETH_43A372","d":[]},{"s":"UNISWAP:JUDGEWETH_FA0E42.USD","d":[]},{"s":"MEXC:SHILLUSDT","d":[]},{"s":"UNISWAP3ETH:GPCWETH","d":[]},{"s":"UNISWAP3ARBITRUM:GRBWETH_91D98B.USD","d":[]},{"s":"COINEX:UOSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LDOWETH_E4CD69.USD","d":[]},{"s":"UNISWAP3ETH:PCHWETH_85F603.USD","d":[]},{"s":"BITFINEX:LEOBTC","d":[]},{"s":"UNISWAP:BULLWETH_723AB6.USD","d":[]},{"s":"MEXC:LUNAUSDT","d":[]},{"s":"BITGET:SWCHUSDT","d":[]},{"s":"COINEX:ENJBTC","d":[]},{"s":"UNISWAP3ETH:CHEXWETH_1D48FC.USD","d":[]},{"s":"UNISWAP:SALEWETH_AAE5F8.USD","d":[]},{"s":"UNISWAP:EGGSWETH_C54BA7","d":[]},{"s":"BITSTAMP:USDCUSDT","d":[]},{"s":"UNISWAP:GZLRWETH_551617.USD","d":[]},{"s":"UNISWAP3POLYGON:AEGWMATIC_C2EE86.USD","d":[]},{"s":"BINANCE:POWRETH","d":[]},{"s":"UNISWAP:YFIWETH_2FDBAD.USD","d":[]},{"s":"MEXC:PEPEUSDT.P","d":[]},{"s":"BYBIT:ARBUSDC","d":[]},{"s":"UNISWAP3ETH:UNIVERSEUSDC","d":[]},{"s":"UNISWAP3ETH:WETHMLH","d":[]},{"s":"BYBIT:XCADUSDT","d":[]},{"s":"BISWAP:ALPACABUSD_8410C2","d":[]},{"s":"BITGET:GEARUSDT","d":[]},{"s":"GATEIO:EOSUSDT.3L","d":[]},{"s":"BINGX:SSVUSDT.PS","d":[]},{"s":"COINEX:BLOCXUSDT","d":[]},{"s":"GATEIO:REVUUSDT","d":[]},{"s":"GATEIO:METISUSDT","d":[]},{"s":"UNISWAP:HOSHIWBTC_542C3B.USD","d":[]},{"s":"BINGX:TRBUSDT.P","d":[]},{"s":"COINEX:GLMRUSDT","d":[]},{"s":"BITHUMB:IOSTKRW","d":[]},{"s":"UNISWAP3ETH:RLBUSDT","d":[]},{"s":"UNISWAP:ARCHUSDC_128DD6","d":[]},{"s":"BITMEX:DYMUSDT.P","d":[]},{"s":"BINANCEUS:APTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPDX","d":[]},{"s":"UNISWAP3ETH:WETHETF","d":[]},{"s":"MEXC:SPAUSDT","d":[]},{"s":"POLONIEX:MOCKJUPUSDT","d":[]},{"s":"UNISWAP3ETH:PCHUSDC_A6DC1F.USD","d":[]},{"s":"GATEIO:AMEUSDT","d":[]},{"s":"XEXCHANGE:BHATWEGLD","d":[]},{"s":"UNISWAP3ETH:FTRWETH","d":[]},{"s":"UNISWAP3ETH:FIDUUSDC","d":[]},{"s":"BITMEX:PEPEUSDT.P","d":[]},{"s":"BITMEX:MANTAUSDT.P","d":[]},{"s":"MEXC:OBTUSDT","d":[]},{"s":"OKX:KNCUSDT.P","d":[]},{"s":"MEXC:VOWUSDT","d":[]},{"s":"UNISWAP:MLORDWETH_E0C006.USD","d":[]},{"s":"HITBTC:VEMPUSDC","d":[]},{"s":"MEXC:LIKEUSDT","d":[]},{"s":"UNISWAP3POLYGON:SUSHIDAI_04685D.USD","d":[]},{"s":"BISWAP:TUSDBUSD_56D8BC","d":[]},{"s":"POLONIEX:FORKUSDT","d":[]},{"s":"PHEMEX:JOEUSDT.P","d":[]},{"s":"BITGET:METISUSDT","d":[]},{"s":"MEXC:ATNTUSDT","d":[]},{"s":"SPOOKYSWAP:TAZORWFTM_700B4D.USD","d":[]},{"s":"PIONEX:HOOKUSDT.P","d":[]},{"s":"UNISWAP:DECDAI_1C19FD","d":[]},{"s":"UNISWAP:FTX20WETH_EA1FC3","d":[]},{"s":"QUICKSWAP:GOVIWETH_1DAB41.USD","d":[]},{"s":"MEXC:KPLUSDT","d":[]},{"s":"BINANCE:QTUMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHALVA","d":[]},{"s":"BITGET:GSWIFTUSDT","d":[]},{"s":"QUICKSWAP:UMWETH_78413E.USD","d":[]},{"s":"UNISWAP3ETH:USDCFIDU","d":[]},{"s":"TRADERJOE:BEAMUSDC_B60511","d":[]},{"s":"TRADERJOE:PLNWAVAX_829A9F.USD","d":[]},{"s":"GATEIO:GQUSDT","d":[]},{"s":"UNISWAP3ETH:HABIBIWETH","d":[]},{"s":"KRAKEN:JUPEUR","d":[]},{"s":"UNISWAP:REVHUBWETH_496CA5","d":[]},{"s":"UNISWAP:GMEWETH_16BFD2.USD","d":[]},{"s":"UNISWAP:BLADEWETH_BE309F","d":[]},{"s":"BITFINEX:NEOUST","d":[]},{"s":"PANGOLIN:USTUSDC_E1F75E","d":[]},{"s":"COINEX:PYTHUSDT","d":[]},{"s":"HITBTC:IHTUSD","d":[]},{"s":"TRADERJOE:EGGWAVAX_3052A7.USD","d":[]},{"s":"UNISWAP:LEOXUSDT_A0416C","d":[]},{"s":"COINBASE:1INCHUSD","d":[]},{"s":"UNISWAP:NAAIWETH_255608.USD","d":[]},{"s":"UNISWAP3ETH:OUSDUSDT","d":[]},{"s":"UNISWAP:WORMZWETH_72F5A3.USD","d":[]},{"s":"UNISWAP3ETH:USDCACX","d":[]},{"s":"GATEIO:TTTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDMT","d":[]},{"s":"WAGYUSWAP:VLXPADWAG_3CB5AF.USD","d":[]},{"s":"BINGX:ASTRUSDT.P","d":[]},{"s":"POLONIEX:USDTUSDC","d":[]},{"s":"COINEX:ICXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GETHWETH_0DCF98.USD","d":[]},{"s":"UNISWAP:REDPANDAWETH_2EBF95","d":[]},{"s":"BINANCE:EPXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSAITO","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCUSDC_6985CB.USD","d":[]},{"s":"KRAKEN:OXTEUR","d":[]},{"s":"PHEMEX:EOSUSDT","d":[]},{"s":"UNISWAP:BBANKWETH_2A182E.USD","d":[]},{"s":"WHITEBIT:XRPUSDC","d":[]},{"s":"UNISWAP:QUANTUMWETH_473DF3.USD","d":[]},{"s":"UNISWAP:SRKWETH_162CB3","d":[]},{"s":"UNISWAP3POLYGON:AAVEWETH_25FB97.USD","d":[]},{"s":"TRADERJOE:PSHAREWAVAX_40128A.USD","d":[]},{"s":"COINEX:SUSHIUSDT","d":[]},{"s":"COINBASE:HBARUSD","d":[]},{"s":"BYBIT:NYMUSDT","d":[]},{"s":"UNISWAP3ETH:BNKLTOWETH","d":[]},{"s":"SPOOKYSWAP:INVWFTM_938048.USD","d":[]},{"s":"GATEIO:CVPUSDT","d":[]},{"s":"GATEIO:ARKSUSDT","d":[]},{"s":"TRADERJOE:FOXWAVAX_3C10C5","d":[]},{"s":"WHITEBIT:SHIBUSDT","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDT_9A72FC.USD","d":[]},{"s":"BYBIT:PIXELUSDT.P","d":[]},{"s":"UNISWAP3ETH:PARUSDC_D7DCB0.USD","d":[]},{"s":"HITBTC:ATOMBTC","d":[]},{"s":"BITFINEX:CCDUSD","d":[]},{"s":"COINEX:RTMBTC","d":[]},{"s":"UNISWAP3ETH:UMAWETH","d":[]},{"s":"UNISWAP:GOLDWETH_0A8642.USD","d":[]},{"s":"UNISWAP3ETH:WETHDMTR","d":[]},{"s":"UNISWAP3ETH:USDCUNB","d":[]},{"s":"UNISWAP:COROLLAWETH_9B3F1D.USD","d":[]},{"s":"UNISWAP3ETH:DMTWETH_E3170D.USD","d":[]},{"s":"TRADERJOE:RPGWAVAX_E42E7C","d":[]},{"s":"BITGET:BROCKUSDT","d":[]},{"s":"UNISWAP3ETH:WASWETH_ED4CB3.USD","d":[]},{"s":"UNISWAP3OPTIMISM:PERPWETH_535541.USD","d":[]},{"s":"GATEIO:QTUMUSDT.3S","d":[]},{"s":"UNISWAP:MEMEWETH_B953C7","d":[]},{"s":"BINGX:RONUSDT.PS","d":[]},{"s":"UNISWAP:BULLWETH_AFF69F.USD","d":[]},{"s":"BITMEX:DYDXUSD.P","d":[]},{"s":"UNISWAP3ETH:MORKWETH","d":[]},{"s":"UNISWAP3POLYGON:AISWMATIC_D2A9A4.USD","d":[]},{"s":"UNISWAP:WSCRTWETH_438D3E","d":[]},{"s":"UNISWAP3POLYGON:METALWMATIC_273D58.USD","d":[]},{"s":"MEXC:MCCUSDT","d":[]},{"s":"UNISWAP:WPTWETH_638996","d":[]},{"s":"BINANCE:TUSDTRY","d":[]},{"s":"UNISWAP:DUBWETH_385034.USD","d":[]},{"s":"UNISWAP3ETH:SXWETH_D43489.USD","d":[]},{"s":"KRAKEN:DYMEUR","d":[]},{"s":"GATEIO:ETHAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHOHM","d":[]},{"s":"QUICKSWAP:TRIXXWMATIC_489950","d":[]},{"s":"UNISWAP3ETH:MAXIUSDC_F5595D.USD","d":[]},{"s":"UNISWAP:SOHOTWETH_C777B5","d":[]},{"s":"HITBTC:BTCEURS","d":[]},{"s":"HITBTC:CSOVUSD","d":[]},{"s":"DERIBIT:ETHUSD27U2024","d":[]},{"s":"QUICKSWAP:SANDWMATIC_369582.USD","d":[]},{"s":"POLONIEX:MKRUSD","d":[]},{"s":"UNISWAP:XENDWETH_1E8FF5.USD","d":[]},{"s":"BINANCE:BTCUSD.P","d":[]},{"s":"QUICKSWAP:PMATICWMATIC_05EFA0.USD","d":[]},{"s":"UNISWAP3OPTIMISM:TBTCWETH_4B082B.USD","d":[]},{"s":"UNISWAP:SIMPAIWETH_E40106.USD","d":[]},{"s":"BYBIT:PEPEUSDT","d":[]},{"s":"BINANCE:QNTBTC","d":[]},{"s":"UNISWAP:SANDWETH_3DD49F","d":[]},{"s":"KRAKEN:STEPEUR","d":[]},{"s":"UNISWAP:MILK2WETH_EE802B.USD","d":[]},{"s":"BITGET:PKEYUSDT","d":[]},{"s":"ZOOMEX:CHRUSDT.P","d":[]},{"s":"HITBTC:ONGUSDT","d":[]},{"s":"UNISWAP:CHECKSWETH_7D2CE6","d":[]},{"s":"UNISWAP:KORIWETH_672A62.USD","d":[]},{"s":"UNISWAP3ARBITRUM:USDVUSDT_4992DE.USD","d":[]},{"s":"GATEIO:PRQUSDT","d":[]},{"s":"ZOOMEX:TIAUSDT.P","d":[]},{"s":"PHEMEX:MANAUSDT.P","d":[]},{"s":"HITBTC:XNOUSDT","d":[]},{"s":"BITFINEX:MKRUST.P","d":[]},{"s":"XEXCHANGE:WETHUSDC","d":[]},{"s":"BITFINEX:LINKUST","d":[]},{"s":"UNISWAP:DPAYWETH_4CBCFF.USD","d":[]},{"s":"BITKUB:MKRTHB","d":[]},{"s":"UNISWAP:MOROSWETH_9E3036.USD","d":[]},{"s":"GATEIO:LITEUSDT","d":[]},{"s":"UNISWAP:MOGWETH_C2EAB7.USD","d":[]},{"s":"MEXC:ACEUSDT.P","d":[]},{"s":"UNISWAP:ADDYWETH_2A2AE0","d":[]},{"s":"UNISWAP3ETH:DAIWBTC","d":[]},{"s":"COINEX:FIREUSDT","d":[]},{"s":"OKX:CETUSUSDT.P","d":[]},{"s":"COINEX:VMPXUSDT","d":[]},{"s":"GATEIO:LADYSUSDT","d":[]},{"s":"UNISWAP:DFNDRWETH_432941","d":[]},{"s":"GATEIO:DCKUSDT","d":[]},{"s":"COINEX:GLMRBTC","d":[]},{"s":"MEXC:QORPOUSDT","d":[]},{"s":"TRADERJOE:ELKWAVAX_88D000.USD","d":[]},{"s":"SPOOKYSWAP:BSHAREBASED_5748B5","d":[]},{"s":"BITGET:ENSUSDT","d":[]},{"s":"BISWAP:ATOMWBNB_5A36E9.USD","d":[]},{"s":"OKX:1INCHUSD.P","d":[]},{"s":"BITHUMB:LOOMKRW","d":[]},{"s":"TRADERJOE:ATECHWAVAX_4BC1BB","d":[]},{"s":"WOONETWORK:AVAXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPORTAL","d":[]},{"s":"MEXC:KOINUSDT","d":[]},{"s":"KRAKEN:USDCEUR","d":[]},{"s":"EXMO:DASHUSDT","d":[]},{"s":"HITBTC:CTCUSDT","d":[]},{"s":"BITRUE:ICPSOL","d":[]},{"s":"UNISWAP3ETH:NHUBWETH","d":[]},{"s":"BITGET:AAVEUSDC","d":[]},{"s":"GATEIO:GLMRUSDT.3S","d":[]},{"s":"GATEIO:KBDUSDT","d":[]},{"s":"BITGET:ROSEUSDT.P","d":[]},{"s":"GATEIO:BNCUSDT","d":[]},{"s":"UNISWAP3ETH:ETHTCG2WETH","d":[]},{"s":"BITGET:AMPUSDT","d":[]},{"s":"UNISWAP3ETH:RETHWETH","d":[]},{"s":"UNISWAP3ETH:1INCHWETH_E931B0.USD","d":[]},{"s":"GATEIO:GAMEUSDT","d":[]},{"s":"UNISWAP:XRPCHAINWETH_DAC9E9.USD","d":[]},{"s":"BITGET:BAKEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHASM","d":[]},{"s":"UNISWAP3ETH:FWIFWETH","d":[]},{"s":"KRAKEN:UMAUSD","d":[]},{"s":"GATEIO:PBRUSDT","d":[]},{"s":"UNISWAP:ROOKWETH_70EC2F.USD","d":[]},{"s":"UPBIT:DKAKRW","d":[]},{"s":"UNISWAP3ARBITRUM:GRTWETH_F782CD.USD","d":[]},{"s":"COINEX:SOLUSDC","d":[]},{"s":"UNISWAP:SAIWETH_00BEFC","d":[]},{"s":"UNISWAP3POLYGON:COLLECTWMATIC_64C001.USD","d":[]},{"s":"TRADERJOE:AUXUSDC_83CCF9","d":[]},{"s":"BYBIT:1000RATSUSDT.P","d":[]},{"s":"BYBIT:KASUSDT","d":[]},{"s":"GATEIO:BOBAUSDT","d":[]},{"s":"BITGET:ALPHAUSDT","d":[]},{"s":"HITBTC:WOOUSDT","d":[]},{"s":"BINGX:CELOUSDT.PS","d":[]},{"s":"BITGET:VETUSDT.P","d":[]},{"s":"MEXC:FLOYXUSDT","d":[]},{"s":"UNISWAP:CTGPTWETH_A78DFF.USD","d":[]},{"s":"BINANCE:ICXUSDT","d":[]},{"s":"UNISWAP:YARDBOYZWETH_3AFE88","d":[]},{"s":"COINEX:NXRAUSDT","d":[]},{"s":"POLONIEX:SAFEREUMUSDT","d":[]},{"s":"UNISWAP3ETH:LEOXUSDC_DEE582.USD","d":[]},{"s":"UNISWAP:COCOWETH_ED0683","d":[]},{"s":"BINANCEUS:USDTUSD","d":[]},{"s":"DELTA:MKRUSDT.P","d":[]},{"s":"BITGET:DYMUSDT","d":[]},{"s":"BITGET:JANUSDT","d":[]},{"s":"BINANCE:PEOPLEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHKAS","d":[]},{"s":"MEXC:GHXUSDT","d":[]},{"s":"UNISWAP:UNIXUSDC_CCAB68","d":[]},{"s":"UNISWAP3ARBITRUM:GNSUSDC_AA9E65.USD","d":[]},{"s":"OKX:LDOUSDT.P","d":[]},{"s":"BYBIT:ZIGUSDT","d":[]},{"s":"UNISWAP:FERRETWETH_A88544","d":[]},{"s":"COINBASE:BICOUSDT","d":[]},{"s":"COINEX:QTUMUSDT","d":[]},{"s":"BYBIT:TRCUSDT","d":[]},{"s":"BINANCE:JOEUSDT","d":[]},{"s":"MEXC:CEJIUSDT","d":[]},{"s":"UNISWAP3ETH:SPANKUSDC_319679.USD","d":[]},{"s":"UNISWAP3ETH:FLXRNG_A6A22E.USD","d":[]},{"s":"MEXC:HAMUSDT","d":[]},{"s":"UNISWAP:HOSWETH_71B4CD.USD","d":[]},{"s":"UNISWAP3ETH:SLPWETH","d":[]},{"s":"BINANCE:MANTATRY","d":[]},{"s":"QUICKSWAP:DUBIUSDC_FB6EA6","d":[]},{"s":"HITBTC:CHZBTC","d":[]},{"s":"ZOOMEX:STRAXUSDT.P","d":[]},{"s":"POLONIEX:BIBIUSDT","d":[]},{"s":"MEXC:PIXELUSDT.P","d":[]},{"s":"UNISWAP3ETH:1INCHUSDC_9FEBC9.USD","d":[]},{"s":"HITBTC:BURGERUSDT","d":[]},{"s":"UNISWAP:DAWGWETH_9694D6","d":[]},{"s":"UNISWAP:BARTWETH_3A815D.USD","d":[]},{"s":"BITRUE:FXSUSDT","d":[]},{"s":"BITGET:KLAYUSDT.P","d":[]},{"s":"UNISWAP:HEELWETH_1123BB.USD","d":[]},{"s":"UNISWAP3ETH:USDTXIN","d":[]},{"s":"KRAKEN:TOKEEUR","d":[]},{"s":"WAGYUSWAP:STVLXWVLX_D42846.USD","d":[]},{"s":"GATEIO:PEPEUSDT.3S","d":[]},{"s":"GATEIO:CARTUSDT","d":[]},{"s":"UNISWAP3ETH:XYOWETH_E331DE.USD","d":[]},{"s":"MEXC:CAUUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHIMA","d":[]},{"s":"BINANCE:USDTTRY","d":[]},{"s":"HITBTC:LTOUSDT","d":[]},{"s":"PHEMEX:APTUSDT","d":[]},{"s":"BITMEX:DOGEUSDT.P","d":[]},{"s":"PIONEX:ADAUSDT.P","d":[]},{"s":"GATEIO:SHIBAIUSDT","d":[]},{"s":"SPOOKYSWAP:XRLCWFTM_732CF5.USD","d":[]},{"s":"UNISWAP:RAWETH_A0E793","d":[]},{"s":"HITBTC:MOVRUSD","d":[]},{"s":"HITBTC:DATXUSD","d":[]},{"s":"BITGET:PIXELUSDT","d":[]},{"s":"COINBASE:AMPUSD","d":[]},{"s":"PIONEX:MASKUSDT.P","d":[]},{"s":"GATEIO:FLMUSDT","d":[]},{"s":"MEXC:CHZUSDT","d":[]},{"s":"UNISWAP3ETH:MATICPOL","d":[]},{"s":"MEXC:AMDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRLB","d":[]},{"s":"TRADERJOE:SOLUSDCE_74EF6A","d":[]},{"s":"BINGX:ICXUSDT.P","d":[]},{"s":"OKX:MINAUSDT.P","d":[]},{"s":"MEXC:HOLDUSDT","d":[]},{"s":"UNISWAP3POLYGON:BOBUSDC_0A63D3.USD","d":[]},{"s":"UNISWAP3POLYGON:XZOOMERWMATIC_A89395.USD","d":[]},{"s":"UNISWAP:POS32WETH_8A7F39","d":[]},{"s":"COINEX:FLRUSDT","d":[]},{"s":"BITGET:MANTAUSDT.P","d":[]},{"s":"BINANCE:PROMBTC","d":[]},{"s":"UNISWAP:TKNWETH_050397.USD","d":[]},{"s":"BINGX:ORDIUSDT.P","d":[]},{"s":"UNISWAP:BRETTWETH_E1EBDF.USD","d":[]},{"s":"WHITEBIT:WOJAKUSDT","d":[]},{"s":"MEXC:DEPIN1USDT","d":[]},{"s":"HITBTC:EKOBTC","d":[]},{"s":"UNISWAP3ETH:WETHNETVR","d":[]},{"s":"GATEIO:UNIUSDT.3S","d":[]},{"s":"UNISWAP3POLYGON:ULTUSDC_6B8651.USD","d":[]},{"s":"MEXC:FMCUSDT","d":[]},{"s":"BITGET:CAKEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:UNIUSDC_2DFBBC.USD","d":[]},{"s":"MEXC:GLMRUSDT","d":[]},{"s":"UNISWAP:TOADWETH_5618E1","d":[]},{"s":"MEXC:ETHWUSDT.P","d":[]},{"s":"HITBTC:CKBBTC","d":[]},{"s":"MEXC:CEXUSDT","d":[]},{"s":"UNISWAP3POLYGON:TPROWMATIC_A80C71.USD","d":[]},{"s":"COINEX:QTUMUSDC","d":[]},{"s":"UNISWAP:BLZWETH_CF4236","d":[]},{"s":"COINEX:SCUSDC","d":[]},{"s":"UNISWAP3ETH:PKFWETH","d":[]},{"s":"POLONIEX:COMPETH","d":[]},{"s":"BINANCE:REEFUSDT","d":[]},{"s":"KRAKEN:POWREUR","d":[]},{"s":"OKX:FTMUSDT.P","d":[]},{"s":"PHEMEX:PORTALUSDT.P","d":[]},{"s":"QUICKSWAP:DOGWETH_F51640","d":[]},{"s":"HITBTC:SWMUSDT","d":[]},{"s":"BYBIT:BNBUSDT.P","d":[]},{"s":"BINANCE:EGLDBTC","d":[]},{"s":"COINBASE:MINAEUR","d":[]},{"s":"BITFINEX:CNHCNHT","d":[]},{"s":"UNISWAP3ETH:WETHFORTH","d":[]},{"s":"HITBTC:IOTXUSDT","d":[]},{"s":"COINEX:LUNAUSDT","d":[]},{"s":"GATEIO:LMRUSDT","d":[]},{"s":"HITBTC:KSMBTC","d":[]},{"s":"BYBIT:PLYUSDT","d":[]},{"s":"BITGET:TUSDUSDT","d":[]},{"s":"HITBTC:RAYUSDT","d":[]},{"s":"BITFINEX:SOLBTC","d":[]},{"s":"PANGOLIN:BOOFIWAVAX_E64CC2","d":[]},{"s":"ZOOMEX:AIUSDT.P","d":[]},{"s":"BINANCE:CRVUSDT","d":[]},{"s":"UNISWAP3ETH:BLURUSDT_AF852A.USD","d":[]},{"s":"MEXC:SPELLUSDT","d":[]},{"s":"UNISWAP3ETH:SCANSWETH","d":[]},{"s":"UNISWAP3ETH:NUTWETH","d":[]},{"s":"UNISWAP:UNDEADWETH_A4346F.USD","d":[]},{"s":"BINANCE:USTCUSDT","d":[]},{"s":"GATEIO:WNCGUSDT","d":[]},{"s":"BITRUE:TFUELUSDC","d":[]},{"s":"KRAKEN:LTCETH","d":[]},{"s":"UNISWAP:EMTRGWETH_837F68.USD","d":[]},{"s":"UNISWAP3POLYGON:FLTUSDT_4A3192.USD","d":[]},{"s":"MEXC:ZZZUSDT","d":[]},{"s":"MEXC:SWOUSDT","d":[]},{"s":"MEXC:DRAUSDT","d":[]},{"s":"BITGET:LEVERUSDT","d":[]},{"s":"UNISWAP3ETH:USDCNCR","d":[]},{"s":"GEMINI:APEUSD","d":[]},{"s":"UNISWAP:FISWETH_6DA6C5","d":[]},{"s":"BITFINEX:XRPBTC","d":[]},{"s":"UNISWAP3ETH:USDTCRU","d":[]},{"s":"MEXC:ARBSUSDT","d":[]},{"s":"HITBTC:ETHEURS","d":[]},{"s":"UNISWAP3ETH:JNEWETH","d":[]},{"s":"UNISWAP3ETH:USDCLMWR","d":[]},{"s":"POLONIEX:QTUMBTC","d":[]},{"s":"BYBIT:HOOKUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:DEDAI_54A59B.USD","d":[]},{"s":"XEXCHANGE:ISETUSDC","d":[]},{"s":"BINANCE:VITEBTC","d":[]},{"s":"MEXC:AICOIN1USDT","d":[]},{"s":"HITBTC:HVNBTC","d":[]},{"s":"UNISWAP3ETH:WAVXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBOBO","d":[]},{"s":"UNISWAP3ETH:TRVLWETH_0A0B2C.USD","d":[]},{"s":"UNISWAP3POLYGON:POLYDOGEUSDC_2E0AD6.USD","d":[]},{"s":"BYBIT:VINUUSDT","d":[]},{"s":"ZOOMEX:XAIUSDT.P","d":[]},{"s":"BITGET:NERDUSDT","d":[]},{"s":"GATEIO:GRINUSDT","d":[]},{"s":"COINEX:RSRUSDC","d":[]},{"s":"PHEMEX:AGLDUSDT","d":[]},{"s":"BLOFIN:ADAUSDT.P","d":[]},{"s":"UNISWAP:COFWETH_2B53D2.USD","d":[]},{"s":"PHEMEX:LITUSDT","d":[]},{"s":"UNISWAP3ETH:USDCUSDT_3416CF.USD","d":[]},{"s":"UNISWAP3ETH:WETHBLOB","d":[]},{"s":"MEXC:LOLUSDT","d":[]},{"s":"BITGET:ORDSUSDT","d":[]},{"s":"BYBIT:COUSDT","d":[]},{"s":"GATEIO:WORKUSDT","d":[]},{"s":"UNISWAP3ETH:RAREWETH","d":[]},{"s":"MEXC:SRTUSDT","d":[]},{"s":"MEXC:ZGTUSDT","d":[]},{"s":"MEXC:XSPECTARUSDT","d":[]},{"s":"UNISWAP3ETH:USDCUSDGLO","d":[]},{"s":"MEXC:REQUSDT.P","d":[]},{"s":"UNISWAP3ETH:PRTCWETH","d":[]},{"s":"WHITEBIT:REEFUSDT","d":[]},{"s":"UNISWAP3ETH:GENEWETH","d":[]},{"s":"COINEX:ICXUSDC","d":[]},{"s":"GATEIO:DOTUSDT.3L","d":[]},{"s":"MEXC:BGNUSDT","d":[]},{"s":"BINANCE:AVAXTUSD","d":[]},{"s":"UNISWAP:KUSDCUSDC_EB5A5A","d":[]},{"s":"UNISWAP3ETH:RAIDAI_CB0C5D.USD","d":[]},{"s":"UNISWAP:KIRBYWETH_28200D.USD","d":[]},{"s":"GATEIO:KINTUSDT","d":[]},{"s":"COINEX:INDEXUSDT","d":[]},{"s":"UNISWAP:RAIWETH_8AE720.USD","d":[]},{"s":"GATEIO:KEXUSDT","d":[]},{"s":"UNISWAP:LARPWETH_CDF6C7.USD","d":[]},{"s":"UNISWAP3POLYGON:SANDUSDT_B8B0D7.USD","d":[]},{"s":"UNISWAP3ETH:USDCNEXT","d":[]},{"s":"HITBTC:LOCUSDT","d":[]},{"s":"UNISWAP:0XTWETH_AE48CD","d":[]},{"s":"HITBTC:NUTUSDT","d":[]},{"s":"MEXC:TRUMP2024USDT","d":[]},{"s":"UNISWAP3ETH:MYSTWETH_BC844C.USD","d":[]},{"s":"BYBIT:STETHUSDT","d":[]},{"s":"BITMEX:SOLUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHGRT","d":[]},{"s":"PANGOLIN:ORBSWAVAX_662135.USD","d":[]},{"s":"POLONIEX:SHDW1USDT","d":[]},{"s":"SPOOKYSWAP:OBOLWFTM_47FCE1","d":[]},{"s":"BINANCE:KNCUSD.P","d":[]},{"s":"PHEMEX:GLMRUSDT.P","d":[]},{"s":"BITGET:ATOMUSDC","d":[]},{"s":"UNISWAP:JOTCHUAWETH_26BE65.USD","d":[]},{"s":"UNISWAP3ETH:AXGTWETH","d":[]},{"s":"HITBTC:CRPTUSD","d":[]},{"s":"SPOOKYSWAP:GROKWFTM_1C4E8F","d":[]},{"s":"UNISWAP3ETH:PEPEWETH_11950D.USD","d":[]},{"s":"POLONIEX:DUSKUSDT","d":[]},{"s":"ZOOMEX:YFIIUSDT.P","d":[]},{"s":"HITBTC:XRPEOS","d":[]},{"s":"COINEX:ERGUSDT","d":[]},{"s":"COINEX:MILKUSDT","d":[]},{"s":"BINANCE:MOVRBTC","d":[]},{"s":"UNISWAP3ETH:WBTCRNG","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARPAPER","d":[]},{"s":"QUICKSWAP:YUPWETH_FE8BAC.USD","d":[]},{"s":"BITFINEX:LTCUST.P","d":[]},{"s":"BINANCE:XRPETH","d":[]},{"s":"BITFINEX:FETUSD","d":[]},{"s":"BITGET:LUNCUSDC","d":[]},{"s":"UNISWAP:UDOWETH_AB3B03.USD","d":[]},{"s":"BINANCE:OMTRY","d":[]},{"s":"UNISWAP:DBIUSDC_E0AC41","d":[]},{"s":"GATEIO:BLANKV2USDT","d":[]},{"s":"BITRUE:BTRUSDC","d":[]},{"s":"QUICKSWAP:SANDASTRAFER_6B0ED1","d":[]},{"s":"HITBTC:YGGUSD","d":[]},{"s":"BITRUE:BAKEUSDT","d":[]},{"s":"BYBIT:BTCUSDT.3S","d":[]},{"s":"PANGOLIN:USDTEJOE_D50A48.USD","d":[]},{"s":"BITFINEX:STGUST","d":[]},{"s":"BTSE:FRONTUSD","d":[]},{"s":"MEXC:ATLASUSDT","d":[]},{"s":"PHEMEX:RLCUSDT","d":[]},{"s":"BYBIT:SOLUSDT","d":[]},{"s":"TRADERJOE:3QFDWETHE_B1175C","d":[]},{"s":"BINGX:TWTUSDT.P","d":[]},{"s":"QUICKSWAP:BAKEDWMATIC_5C68FD","d":[]},{"s":"UNISWAP:SHIBDAOWETH_5FD405","d":[]},{"s":"BITFINEX:EUTUSD","d":[]},{"s":"MEXC:RSS3USDT","d":[]},{"s":"MEXC:MBLUSDT","d":[]},{"s":"BYBIT:REEFUSDT.P","d":[]},{"s":"COINBASE:APEEUR","d":[]},{"s":"BITGET:DYDXUSDT.P","d":[]},{"s":"GATEIO:CRE8USDT","d":[]},{"s":"WHITEBIT:OPTRY","d":[]},{"s":"UNISWAP:TOKENWETH_34F434.USD","d":[]},{"s":"UNISWAP3ETH:CLOSEDAIWETH_55B6B9.USD","d":[]},{"s":"MEXC:KNCUSDT","d":[]},{"s":"BINANCE:FILUSD.P","d":[]},{"s":"BINANCE:ETHFDUSD","d":[]},{"s":"HITBTC:MAIDUSDT","d":[]},{"s":"BITSTAMP:SUIEUR","d":[]},{"s":"UNISWAP3ETH:OBIUSDT","d":[]},{"s":"MEXC:GMXUSDT","d":[]},{"s":"POLONIEX:JTOUSDT","d":[]},{"s":"KRAKEN:USTUSD","d":[]},{"s":"UNISWAP:FSWWETH_E275EB","d":[]},{"s":"UNISWAP:MONEROWETH_596744","d":[]},{"s":"QUICKSWAP:BIOSWMATIC_267720.USD","d":[]},{"s":"COINBASE:BATEUR","d":[]},{"s":"UNISWAP3ETH:USDTTUSD","d":[]},{"s":"UNISWAP:MARSWETH_FDDE7B.USD","d":[]},{"s":"UNISWAP:SNAKEWETH_0513DC","d":[]},{"s":"UNISWAP3ETH:WETHFORM","d":[]},{"s":"BINANCE:VANRYBTC","d":[]},{"s":"UNISWAP:AIUSWETH_CB3708.USD","d":[]},{"s":"MEXC:NEXAUSDT","d":[]},{"s":"UNISWAP:METISWETH_D03DFF","d":[]},{"s":"COINBASE:AUDIOUSD","d":[]},{"s":"MEXC:CREPEUSDT","d":[]},{"s":"TRADERJOE:NOBELWAVAX_26F3F0.USD","d":[]},{"s":"BITGET:GRPHUSDT","d":[]},{"s":"UNISWAP3ETH:BOBAWETH","d":[]},{"s":"COINEX:CHONKYUSDT","d":[]},{"s":"UNISWAP:DIAWETH_4DC02E.USD","d":[]},{"s":"PANGOLIN:SUSHIWAVAX_D8B262","d":[]},{"s":"UNISWAP:GODWETH_DB161B","d":[]},{"s":"WHITEBIT:AVAXBTC","d":[]},{"s":"MEXC:CATMANUSDT","d":[]},{"s":"UNISWAP3ETH:WETHELAND","d":[]},{"s":"UNISWAP:OBXWETH_1ED39E.USD","d":[]},{"s":"UNISWAP:OGGYWETH_39A34C","d":[]},{"s":"UNISWAP:SWETH_433FDC.USD","d":[]},{"s":"UNISWAP3ETH:XMTUSDT","d":[]},{"s":"QUICKSWAP:PAPERWMATIC_29689A","d":[]},{"s":"BITMEX:SOLUSDT","d":[]},{"s":"MEXC:MOSSUSDT","d":[]},{"s":"UNISWAP:PSTFXPOHM_64093D.USD","d":[]},{"s":"BINANCE:ICPBNB","d":[]},{"s":"BYBIT:DATAUSDT.P","d":[]},{"s":"MEXC:CKBUSDT.P","d":[]},{"s":"COINEX:MKRUSDT","d":[]},{"s":"BINANCE:NMRUSDT","d":[]},{"s":"GATEIO:MDFUSDT","d":[]},{"s":"BINGX:COMBOUSDT.PS","d":[]},{"s":"BINANCE:SUITUSD","d":[]},{"s":"BINANCE:FLOWUSDT","d":[]},{"s":"ZOOMEX:1000BTTUSDT.P","d":[]},{"s":"SPOOKYSWAP:WSSPAWFTM_011732","d":[]},{"s":"UNISWAP:TOKENWETH_C7E6B6","d":[]},{"s":"HITBTC:GOFUSDT","d":[]},{"s":"COINBASE:MASKEUR","d":[]},{"s":"UNISWAP3ETH:DOGWIFHATWETH_B9AD11.USD","d":[]},{"s":"HITBTC:SWMETH","d":[]},{"s":"UNISWAP:2DAIWETH_539B4D.USD","d":[]},{"s":"HITBTC:XLMUSDT","d":[]},{"s":"UNISWAP3ETH:SNXSUSD","d":[]},{"s":"UNISWAP:MDXWETH_2EFB41","d":[]},{"s":"QUICKSWAP:EGGUSDC_6D7FFC","d":[]},{"s":"UNISWAP3POLYGON:WBTCUSDC_EEF1A9.USD","d":[]},{"s":"UNISWAP3POLYGON:SMTUSDC_9105CC.USD","d":[]},{"s":"UNISWAP3ETH:WETHSOMM","d":[]},{"s":"UNISWAP:WFOWETH_AD00F1.USD","d":[]},{"s":"UNISWAP:FLXWETH_D6F376","d":[]},{"s":"UNISWAP3ETH:WETHPOR","d":[]},{"s":"MEXC:BTTUSDC","d":[]},{"s":"MEXC:CCTUSDC","d":[]},{"s":"BITSTAMP:IMXEUR","d":[]},{"s":"KRAKEN:FLOWUSD","d":[]},{"s":"UNISWAP3ETH:PLUWETH","d":[]},{"s":"BYBIT:GMTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMELANIA","d":[]},{"s":"COINEX:RMRKUSDT","d":[]},{"s":"COINEX:FIROBTC","d":[]},{"s":"BITRUE:ALICEUSDC","d":[]},{"s":"GATEIO:TSUKAUSDT","d":[]},{"s":"QUICKSWAP:MOGWMATIC_3BFAED","d":[]},{"s":"UNISWAP3ETH:USDCJANKA","d":[]},{"s":"BINANCE:ONTTRY","d":[]},{"s":"UNISWAP3ETH:P404WETH","d":[]},{"s":"KRAKEN:XTZUSD","d":[]},{"s":"UNISWAP3ETH:WETHWCFG","d":[]},{"s":"BITMEX:MINAUSDT.P","d":[]},{"s":"GATEIO:ATAUSDT","d":[]},{"s":"BYBIT:CELRUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTCANDY","d":[]},{"s":"UNISWAP:REQWETH_4A7D4B","d":[]},{"s":"BITGET:MMSSUSDT","d":[]},{"s":"UNISWAP3ETH:CNGWETH","d":[]},{"s":"BISWAP:SHIBWBNB_498594.USD","d":[]},{"s":"BINANCE:LUNCUSDT","d":[]},{"s":"BYBIT:BTCUSDM2024","d":[]},{"s":"UNISWAP:PRINTWETH_04F0FD","d":[]},{"s":"MEXC:APEXUSDT","d":[]},{"s":"SPOOKYSWAP:EYEWFTM_AF6125.USD","d":[]},{"s":"PANGOLIN:AYIELDUSDCE_1EB17B","d":[]},{"s":"UNISWAP3ETH:USDCGFI","d":[]},{"s":"MEXC:EDENUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:HEGICWETH_1DFC10.USD","d":[]},{"s":"KRAKEN:SHIBUSDT","d":[]},{"s":"UNISWAP:SUPERWETH_25647E","d":[]},{"s":"UNISWAP:TRSCTWETH_D4FE3D","d":[]},{"s":"BITGET:DMAILUSDT","d":[]},{"s":"UNISWAP:NEURALAIWETH_1F2B28.USD","d":[]},{"s":"MEXC:MNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHCOMBO","d":[]},{"s":"UNISWAP3ETH:CERESWETH_5112B8.USD","d":[]},{"s":"TRADERJOE:MIMTIME_113F41","d":[]},{"s":"PIONEX:MATICUSDT.P","d":[]},{"s":"MEXC:RELUSDT","d":[]},{"s":"UNISWAP:AIXWETH_3FDFD8.USD","d":[]},{"s":"UNISWAP3ARBITRUM:RWAWETH_066B28.USD","d":[]},{"s":"UNISWAP3POLYGON:WSTETHWETH_FF6920.USD","d":[]},{"s":"HITBTC:FRINBTC","d":[]},{"s":"COINEX:CUBEUSDT","d":[]},{"s":"BITGET:PPADUSDT","d":[]},{"s":"WHITEBIT:USDTEUR","d":[]},{"s":"UNISWAP:LUSHWETH_D056DE","d":[]},{"s":"MEXC:CLDUSDT","d":[]},{"s":"UNISWAP3ETH:WORKUSDT","d":[]},{"s":"PHEMEX:BAKEUSDT.P","d":[]},{"s":"GATEIO:AIEUSDT","d":[]},{"s":"TRADERJOE:DGNXWAVAX_BCABB9","d":[]},{"s":"GATEIO:PIPUSDT","d":[]},{"s":"UNISWAP3ETH:ATRIWETH","d":[]},{"s":"TRADERJOE:FXSWAVAX_53942D","d":[]},{"s":"BINANCE:USDTZAR","d":[]},{"s":"TRADERJOE:SUBWAVAX_EE7263","d":[]},{"s":"EXMO:TRXUSD","d":[]},{"s":"MEXC:HOSKYUSDT","d":[]},{"s":"UNISWAP3ETH:TALKUSDT_6AC39E.USD","d":[]},{"s":"TRADERJOE:BOBSWAVAX_8D59F2.USD","d":[]},{"s":"UNISWAP3ETH:MASQWETH","d":[]},{"s":"UNISWAP3ARBITRUM:LUSDUSDC_1557FD.USD","d":[]},{"s":"COINBASE:GSTUSD","d":[]},{"s":"UNISWAP3ETH:CMPTWETH_7D5435.USD","d":[]},{"s":"UNISWAP:WSBWETH_436065.USD","d":[]},{"s":"UNISWAP3ETH:BBLWETH_75DECB.USD","d":[]},{"s":"UNISWAP:MEOWWETH_64FDDE","d":[]},{"s":"TRADERJOE:JNSWAVAX_4F3F39.USD","d":[]},{"s":"UNISWAP:WTAOWETH_ED1C7B.USD","d":[]},{"s":"COINEX:THORUSDT","d":[]},{"s":"GATEIO:HEARTUSDT","d":[]},{"s":"GATEIO:OPIUMUSDT","d":[]},{"s":"UNISWAP3ETH:ZAPWETH","d":[]},{"s":"MEXC:CLYUSDT","d":[]},{"s":"OKX:SPELLUSDT.P","d":[]},{"s":"POLONIEX:VOXELUSDT","d":[]},{"s":"KRAKEN:SRMBTC","d":[]},{"s":"UNISWAP:NYANWETH_7C2543.USD","d":[]},{"s":"UNISWAP:POPOWETH_EAC15F.USD","d":[]},{"s":"TRADERJOE:MAGICWAVAX_B9775B","d":[]},{"s":"COINEX:NOIAUSDT","d":[]},{"s":"MEXC:TOXUSDT","d":[]},{"s":"UNISWAP:DERCUSDC_C88AC9","d":[]},{"s":"UNISWAP3POLYGON:SUIBGWMATIC_513478.USD","d":[]},{"s":"UNISWAP:USHIWETH_E97786.USD","d":[]},{"s":"UNISWAP3ETH:WSTETHWETH","d":[]},{"s":"UNISWAP3ETH:20MANTSWETH_CF6026.USD","d":[]},{"s":"MEXC:TABOOUSDT","d":[]},{"s":"COINBASE:STXUSD","d":[]},{"s":"BINANCE:SOLFDUSD","d":[]},{"s":"TRADERJOE:GTRYCWAVAX_D65328.USD","d":[]},{"s":"UNISWAP3ETH:SEAMWETH","d":[]},{"s":"GATEIO:TARIUSDT","d":[]},{"s":"PANGOLIN:PNGDAIE_603EFE","d":[]},{"s":"MEXC:DOBOUSDT","d":[]},{"s":"UNISWAP3POLYGON:CRVWMATIC_991A0E.USD","d":[]},{"s":"POLONIEX:HEMULEUSDT","d":[]},{"s":"ZOOMEX:JOEUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHCODE","d":[]},{"s":"ZOOMEX:JUPUSDT.P","d":[]},{"s":"TRADERJOE:USDTEWAVAX_ED8CBD.USD","d":[]},{"s":"UNISWAP3POLYGON:LUMPWMATIC_215364.USD","d":[]},{"s":"UNISWAP3ETH:DPIWETH","d":[]},{"s":"POLONIEX:ERSDLUSDT","d":[]},{"s":"UNISWAP3ETH:BYTESWETH_3782A3.USD","d":[]},{"s":"MEXC:YLDYUSDT","d":[]},{"s":"BLOFIN:SNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:0XBTCWETH_AFF587.USD","d":[]},{"s":"MEXC:AIRBUSDT","d":[]},{"s":"MEXC:ALPACAUSDT","d":[]},{"s":"UNISWAP3ETH:TITANXWETH_C45A81.USD","d":[]},{"s":"UNISWAP:ETHIXWETH_B14B94.USD","d":[]},{"s":"BINANCE:SSVTUSD","d":[]},{"s":"COINBASE:UNIBTC","d":[]},{"s":"UNISWAP3ETH:WETHTHOL","d":[]},{"s":"UNISWAP3ARBITRUM:LDOWETH_52F9D1.USD","d":[]},{"s":"HITBTC:KLVUSDT","d":[]},{"s":"UNISWAP:POPEWETH_0650B0.USD","d":[]},{"s":"BITRUE:FLOWUSDT","d":[]},{"s":"BYBIT:USDCUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHNFTY","d":[]},{"s":"BITRUE:SGBUSDT","d":[]},{"s":"KRAKEN:LINKUSDT","d":[]},{"s":"UNISWAP:RCNWETH_F0936E.USD","d":[]},{"s":"GATEIO:MTRUSDT","d":[]},{"s":"UNISWAP3POLYGON:FROTHWMATIC_4CEBDB.USD","d":[]},{"s":"UNISWAP3ETH:WETHCBX","d":[]},{"s":"TRADERJOE:MICROWAVAX_397C86.USD","d":[]},{"s":"HITBTC:REVVUSD","d":[]},{"s":"TRADERJOE:SPACEWAVAX_8149C0.USD","d":[]},{"s":"UNISWAP3ETH:XTREMEWETH","d":[]},{"s":"UNISWAP:DORKLWETH_EF9EF6.USD","d":[]},{"s":"UNISWAP:NFTLWETH_AD0AF6","d":[]},{"s":"MEXC:SOLAVUSDT","d":[]},{"s":"UNISWAP3ETH:00WETH_2773CA.USD","d":[]},{"s":"COINEX:ATOMUSDT","d":[]},{"s":"QUICKSWAP:MCRNWETH_DE84C8.USD","d":[]},{"s":"COINBASE:COMPBTC","d":[]},{"s":"GATEIO:PUMLXUSDT","d":[]},{"s":"BITGET:CROUSDT","d":[]},{"s":"POLONIEX:AGLDUSDT","d":[]},{"s":"BITGET:ETCUSDT","d":[]},{"s":"UNISWAP3ETH:USDTALPH","d":[]},{"s":"UNISWAP3ETH:WETHONDO","d":[]},{"s":"UNISWAP:MEMWETH_21C5EA.USD","d":[]},{"s":"BINANCE:PORTALBTC","d":[]},{"s":"UNISWAP3ETH:IAIWETH_DB9580.USD","d":[]},{"s":"BLOFIN:C98USDT.P","d":[]},{"s":"UNISWAP:IAIUSDC_7F4AA4","d":[]},{"s":"POLONIEX:MDTTRX","d":[]},{"s":"PHEMEX:PUNDIXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GDAIDAI_3BFE2E.USD","d":[]},{"s":"UNISWAP:OZKWETH_84BC85","d":[]},{"s":"UNISWAP3ETH:USDCSTTAO","d":[]},{"s":"UNISWAP:BLOCKWETH_41AABD.USD","d":[]},{"s":"COINEX:KLAYBTC","d":[]},{"s":"UNISWAP:PRINTWETH_04F0FD.USD","d":[]},{"s":"UNISWAP3ETH:DROPSWETH","d":[]},{"s":"UNISWAP:JESUSWETH_8A9975","d":[]},{"s":"GEMINI:FILUSD","d":[]},{"s":"TRADERJOE:CRVWAVAX_78DA10.USD","d":[]},{"s":"BITMEX:AVAXUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSCLM","d":[]},{"s":"GATEIO:ETHUSDT","d":[]},{"s":"UNISWAP:HORDWETH_BAA48E.USD","d":[]},{"s":"BINANCE:UTKUSDT","d":[]},{"s":"UNISWAP:DUAUSDT_B3623C","d":[]},{"s":"HITBTC:ZENUSD","d":[]},{"s":"MEXC:MATICUSDT.P","d":[]},{"s":"GATEIO:ACHUSDT","d":[]},{"s":"UNISWAP:AGIXWETH_E45B4A","d":[]},{"s":"GATEIO:BCXUSDT","d":[]},{"s":"BINANCE:NKNUSDT","d":[]},{"s":"BINANCEUS:XNOUSDT","d":[]},{"s":"SPOOKYSWAP:FTMLUSDC_34B77D","d":[]},{"s":"BTSE:ARBUSD.P","d":[]},{"s":"GATEIO:MINAUSDT.3S","d":[]},{"s":"UNISWAP:X7103WETH_CECF54","d":[]},{"s":"UNISWAP3ETH:WETHRBN","d":[]},{"s":"UNISWAP:KRONKWETH_A8FF73.USD","d":[]},{"s":"POLONIEX:PAALUSDT","d":[]},{"s":"HITBTC:MITHUSDT","d":[]},{"s":"UNISWAP3POLYGON:OVL3USDT_BD1A94.USD","d":[]},{"s":"MEXC:WIFUSDT.P","d":[]},{"s":"COINEX:HARDUSDT","d":[]},{"s":"UNISWAP3ETH:ZEROUSDC_0004CD.USD","d":[]},{"s":"GATEIO:FETUSDT","d":[]},{"s":"KRAKEN:XTZETH","d":[]},{"s":"HITBTC:YGGUSDT","d":[]},{"s":"BITRUE:MANAUSDT","d":[]},{"s":"UNISWAP:AIMEEWETH_1D2F23","d":[]},{"s":"UNISWAP3ETH:WETHSLOPY","d":[]},{"s":"BINANCE:ETHJPY","d":[]},{"s":"UNISWAP3ETH:WETHCNV","d":[]},{"s":"MEXC:THALESUSDT","d":[]},{"s":"POLONIEX:TUSDUSDC","d":[]},{"s":"UNISWAP3ETH:ICEWETH","d":[]},{"s":"UNISWAP3ETH:MTAWETH","d":[]},{"s":"PHEMEX:AIUSDT.P","d":[]},{"s":"HITBTC:LTCUSD","d":[]},{"s":"POLONIEX:ANDYSOLUSDT","d":[]},{"s":"UNISWAP:SWAGUSDC_205902","d":[]},{"s":"UNISWAP3ETH:MGMIWETH","d":[]},{"s":"MEXC:WNXMUSDT","d":[]},{"s":"DERIBIT:BTCUSD27Z2024","d":[]},{"s":"UNISWAP:SYNCWETH_197D70","d":[]},{"s":"BINGX:DYMUSDT.PS","d":[]},{"s":"MEXC:FLXUSDT","d":[]},{"s":"BITGET:RNDRUSDT","d":[]},{"s":"QUICKSWAP:IBEXWETH_E186DA","d":[]},{"s":"GATEIO:FDCUSDT","d":[]},{"s":"GEMINI:AMPUSD","d":[]},{"s":"GEMINI:SAMOUSD","d":[]},{"s":"COINEX:CHIBTC","d":[]},{"s":"DERIBIT:NEARUSDC.P","d":[]},{"s":"BINANCE:EOSUSD.P","d":[]},{"s":"POLONIEX:XLMUSD","d":[]},{"s":"SPOOKYSWAP:IBWFTM_CB10EF.USD","d":[]},{"s":"UNISWAP:SAITOWETH_DFCF74","d":[]},{"s":"PHEMEX:SUPERUSDT","d":[]},{"s":"PHEMEX:STORJUSDT.P","d":[]},{"s":"GATEIO:BAJUUSDT","d":[]},{"s":"PIONEX:ANTUSDT.P","d":[]},{"s":"MEXC:AEETH","d":[]},{"s":"UNISWAP:CRVYWETH_19D89A.USD","d":[]},{"s":"DYDX:TRXUSD.P","d":[]},{"s":"KRAKEN:EURTUSDT","d":[]},{"s":"QUICKSWAP:BETSWMATIC_76BBA0.USD","d":[]},{"s":"PIONEX:LSKUSDT.P","d":[]},{"s":"COINBASE:ICPEUR","d":[]},{"s":"BYBIT:WLDUSDT","d":[]},{"s":"UNISWAP3ETH:GODWETH","d":[]},{"s":"COINBASE:UNIEUR","d":[]},{"s":"UNISWAP:BIGCAPWETH_E056D6.USD","d":[]},{"s":"BITGET:UNIBOTUSDT","d":[]},{"s":"UNISWAP3ETH:PIKAWETH","d":[]},{"s":"UNISWAP3ETH:SPCDAI","d":[]},{"s":"MEXC:CYBERUSDT","d":[]},{"s":"BYBIT:OKGUSDT","d":[]},{"s":"POLONIEX:GASUSD","d":[]},{"s":"MEXC:BZAIUSDT","d":[]},{"s":"GEMINI:BTCSGD","d":[]},{"s":"POLONIEX:STEEMBTC","d":[]},{"s":"UNISWAP3ETH:WAGMIWETH_84B546.USD","d":[]},{"s":"POLONIEX:FLIPUSDT","d":[]},{"s":"COINEX:NFTBUSDT","d":[]},{"s":"UNISWAP:CROCWETH_D07ECA.USD","d":[]},{"s":"UNISWAP:TRLWETH_D8901E","d":[]},{"s":"GEMINI:LTCUSD","d":[]},{"s":"BITKUB:WLDTHB","d":[]},{"s":"UNISWAP3ETH:WETHDG","d":[]},{"s":"UNISWAP3ETH:USDTLBLOCK","d":[]},{"s":"UNISWAP3OPTIMISM:DAIUSDC_100BDC.USD","d":[]},{"s":"GATEIO:QUACKUSDT","d":[]},{"s":"TRADERJOE:ARENAWAVAX_E9A53E.USD","d":[]},{"s":"BITFINEX:ARBBTC","d":[]},{"s":"UNISWAP:PUSHWETH_AF31FD","d":[]},{"s":"UNISWAP:RIORST_450298.USD","d":[]},{"s":"HITBTC:BCDUSD","d":[]},{"s":"UNISWAP3ETH:POPUSDC_9FEE77.USD","d":[]},{"s":"QUICKSWAP:VISIONWETH_47BE4B.USD","d":[]},{"s":"UNISWAP3ETH:BITCOINUSDT_26F828.USD","d":[]},{"s":"OKX:SUSHIUSD.P","d":[]},{"s":"UNISWAP3POLYGON:LFGWMATIC_252410.USD","d":[]},{"s":"PHEMEX:DASHUSDT.P","d":[]},{"s":"BYBIT:LUNCUSDT","d":[]},{"s":"BYBIT:SUNUSDT","d":[]},{"s":"GATEIO:EDENUSDT","d":[]},{"s":"COINEX:OLASUSDT","d":[]},{"s":"GATEIO:NETTUSDT","d":[]},{"s":"UNISWAP:SONICWETH_26CC6A","d":[]},{"s":"UNISWAP:BULKWETH_AD0870.USD","d":[]},{"s":"GATEIO:LITUSDT.3S","d":[]},{"s":"MEXC:LEGOUSDT","d":[]},{"s":"POLONIEX:FRONTBTC","d":[]},{"s":"BYBIT:FAMEUSDT","d":[]},{"s":"BITSTAMP:LTCGBP","d":[]},{"s":"GATEIO:CHZUSDT","d":[]},{"s":"UNISWAP:IONXWETH_60F6E2","d":[]},{"s":"MEXC:WAXPUSDT","d":[]},{"s":"BITRUE:GALAUSDC","d":[]},{"s":"QUICKSWAP:SPEPEWMATIC_63E624","d":[]},{"s":"GATEIO:DOGEUSDT.3S","d":[]},{"s":"HITBTC:SWFTCBTC","d":[]},{"s":"UNISWAP:XOXWETH_A32F2C","d":[]},{"s":"MEXC:BANDUSDT.P","d":[]},{"s":"UNISWAP3ETH:LORDSWETH","d":[]},{"s":"COINBASE:DAIUSD","d":[]},{"s":"XEXCHANGE:PROTEOUSDC","d":[]},{"s":"UNISWAP:DUCKERWETH_94293B","d":[]},{"s":"SPOOKYSWAP:NRGYWFTM_ECADFF","d":[]},{"s":"BITMEX:LTCUSDT.P","d":[]},{"s":"TRADERJOE:EVOWAVAX_B99A92","d":[]},{"s":"UNISWAP:HOTKEYWETH_C7E33C.USD","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDC_88F3C1.USD","d":[]},{"s":"GATEIO:CBKUSDT","d":[]},{"s":"UNISWAP:ALIPEWETH_CC575D","d":[]},{"s":"HITBTC:ZENBTC","d":[]},{"s":"BLOFIN:1000BONKUSDT.P","d":[]},{"s":"BINANCE:FIOBTC","d":[]},{"s":"BITFINEX:QRDOBTC","d":[]},{"s":"UNISWAP:KEKWETH_420583.USD","d":[]},{"s":"XEXCHANGE:HTMUSDC","d":[]},{"s":"BITFINEX:NEARUST","d":[]},{"s":"BTSE:LDOUSD.P","d":[]},{"s":"MEXC:TARALUSDT","d":[]},{"s":"UNISWAP:GBEWETH_21CEF3.USD","d":[]},{"s":"BITRUE:EOSADA","d":[]},{"s":"UNISWAP:VOLDEMORTWETH_39A4B7.USD","d":[]},{"s":"KRAKEN:TEEREUR","d":[]},{"s":"UNISWAP:PROWETH_9B7463","d":[]},{"s":"GATEIO:BTCSTUSDT","d":[]},{"s":"UNISWAP3ETH:CHZWETH","d":[]},{"s":"MEXC:CTSIUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHDAWN","d":[]},{"s":"UNISWAP:PHYSICSWETH_8B7923.USD","d":[]},{"s":"KRAKEN:PAXGEUR","d":[]},{"s":"HITBTC:BICOUSDT","d":[]},{"s":"MEXC:ZETAUSDT.P","d":[]},{"s":"ZOOMEX:LUNA2USDT.P","d":[]},{"s":"TRADERJOE:BETSWAVAX_05D762","d":[]},{"s":"UNISWAP:MTLXFET_6C52B8.USD","d":[]},{"s":"COINEX:ETHUSDC","d":[]},{"s":"GATEIO:TWTUSDT","d":[]},{"s":"COINEX:ALICEUSDT","d":[]},{"s":"BINGX:KSMUSDT.P","d":[]},{"s":"BITFINEX:USTBTC","d":[]},{"s":"COINEX:YOOSHIUSDT","d":[]},{"s":"UNISWAP:GENSLRWETH_03EB30.USD","d":[]},{"s":"UNISWAP:EQUADWETH_B06A5F.USD","d":[]},{"s":"UNISWAP:HUSLWETH_98D266","d":[]},{"s":"UNISWAP:RYOSHIWETH_92FFE7.USD","d":[]},{"s":"WHITEBIT:USDTGBP","d":[]},{"s":"UNISWAP3OPTIMISM:KROMWETH_E62BD9.USD","d":[]},{"s":"BITGET:RNDRUSDT.P","d":[]},{"s":"GATEIO:SOLUSDT.3S","d":[]},{"s":"HITBTC:FLUXUSDC","d":[]},{"s":"BINGX:SFPUSDT.PS","d":[]},{"s":"BYBIT:FORTHUSDT.P","d":[]},{"s":"GATEIO:LINKUSDT.3S","d":[]},{"s":"UNISWAP:UMADWETH_D3E5CA","d":[]},{"s":"UNISWAP:DEPINWETH_288DF0","d":[]},{"s":"UNISWAP:KEKECWETH_C6E405.USD","d":[]},{"s":"MEXC:GNSSLABUSDT","d":[]},{"s":"PIONEX:MEMEUSDT.P","d":[]},{"s":"UNISWAP3ETH:PRNTWETH","d":[]},{"s":"UNISWAP3ETH:MONAIWETH","d":[]},{"s":"UNISWAP3POLYGON:WMATICDAI_0F663C.USD","d":[]},{"s":"GATEIO:IZIUSDT","d":[]},{"s":"UNISWAP3ETH:TTXWETH","d":[]},{"s":"SPOOKYSWAP:MODAWFTM_F59338","d":[]},{"s":"UNISWAP3POLYGON:DEUSDC_4DC80E.USD","d":[]},{"s":"MEXC:FITFIUSDT.P","d":[]},{"s":"UNISWAP:UBTWETH_B27DE0.USD","d":[]},{"s":"COINEX:TFUELUSDT","d":[]},{"s":"GATEIO:SWTHUSDT","d":[]},{"s":"EXMO:XRPUAH","d":[]},{"s":"PANGOLIN:PNGUSDTE_1FFB6F.USD","d":[]},{"s":"MEXC:PPAIUSDT","d":[]},{"s":"BITFINEX:ARBUSD","d":[]},{"s":"BINANCE:ALPACAUSDT","d":[]},{"s":"UNISWAP:DBNBWETH_A9B339.USD","d":[]},{"s":"UNISWAP3ETH:WETHSUPER","d":[]},{"s":"UNISWAP3ETH:CBXUSDC","d":[]},{"s":"UNISWAP3ETH:BARAWETH","d":[]},{"s":"UNISWAP:PIXEWETH_41F6BA.USD","d":[]},{"s":"GATEIO:BEFEUSDT","d":[]},{"s":"MEXC:DGHUSDT","d":[]},{"s":"UNISWAP3ETH:AUCTIONWETH","d":[]},{"s":"UNISWAP3ETH:AGLDWETH","d":[]},{"s":"BITRUE:1INCHUSDT","d":[]},{"s":"UNISWAP3ETH:JBXWETH_48598F.USD","d":[]},{"s":"GATEIO:HBARUSDT.3L","d":[]},{"s":"BITSTAMP:YFIEUR","d":[]},{"s":"COINEX:RONBTC","d":[]},{"s":"GATEIO:HOOKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHZCX","d":[]},{"s":"COINEX:JSTUSDT","d":[]},{"s":"HITBTC:LUNCUSDT","d":[]},{"s":"HITBTC:GLEECBTC","d":[]},{"s":"MEXC:RETSUSDT","d":[]},{"s":"UNISWAP:DJ15WETH_6A164D.USD","d":[]},{"s":"UNISWAP:FOTTIEWETH_27920A.USD","d":[]},{"s":"UNISWAP3ETH:WETHBANK","d":[]},{"s":"UNISWAP3ETH:WETHPET","d":[]},{"s":"UNISWAP3ETH:ARCWETH_F5BF64.USD","d":[]},{"s":"BINANCE:PENDLEBTC","d":[]},{"s":"XEXCHANGE:CYBERWEGLD","d":[]},{"s":"MEXC:HOTUSDT","d":[]},{"s":"UNISWAP:TXWETH_7F095E.USD","d":[]},{"s":"MEXC:GECKOUSDT","d":[]},{"s":"UNISWAP:NTXWETH_B3D994","d":[]},{"s":"MEXC:OMMIUSDT","d":[]},{"s":"COINBASE:XLMBTC","d":[]},{"s":"BINANCEUS:USDCUSDT","d":[]},{"s":"BINANCE:LINKUSDT","d":[]},{"s":"UNISWAP3ETH:STETHUSDC","d":[]},{"s":"BLOFIN:OMGUSDT.P","d":[]},{"s":"MEXC:NAVUSDT","d":[]},{"s":"UNISWAP:BAOWETH_8D7443","d":[]},{"s":"PANGOLIN:STORMUSDTE_551D0B.USD","d":[]},{"s":"POLONIEX:TOMIUSDT","d":[]},{"s":"UNISWAP3POLYGON:VCNTUSDC_D29C2D.USD","d":[]},{"s":"POLONIEX:WOOUSDT","d":[]},{"s":"BINGX:ATOMUSDT.P","d":[]},{"s":"UNISWAP:ELUSDT_D91C72","d":[]},{"s":"UNISWAP3ETH:ONDOUSDT","d":[]},{"s":"TRADERJOE:RADXWAVAX_1A7415.USD","d":[]},{"s":"UNISWAP3POLYGON:CGGUSDC_F11411.USD","d":[]},{"s":"BITFINEX:STRKBTC","d":[]},{"s":"TRADERJOE:PETWAVAX_E9DCB3","d":[]},{"s":"GATEIO:XETUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:OPUSDT_44B170.USD","d":[]},{"s":"UNISWAP3ETH:YLDUSDC","d":[]},{"s":"MEXC:OZOUSDT","d":[]},{"s":"UNISWAP:DOPWETH_00AA1C","d":[]},{"s":"OKX:ICPUSDT.P","d":[]},{"s":"SPOOKYSWAP:COREWFTM_9CC7CB.USD","d":[]},{"s":"MEXC:LINKUSDT","d":[]},{"s":"GATEIO:SHIBUSDT.5L","d":[]},{"s":"WAGYUSWAP:METAVWVLX_C2C21E","d":[]},{"s":"MEXC:RIFBTC","d":[]},{"s":"GATEIO:TOXUSDT","d":[]},{"s":"UNISWAP3ETH:COVALWETH_2B43FE.USD","d":[]},{"s":"BITRUE:ETCUSDT","d":[]},{"s":"GATEIO:LEMOUSDT","d":[]},{"s":"BITFINEX:COMPUST","d":[]},{"s":"UNISWAP:ZUCKWETH_54319D","d":[]},{"s":"BITRUE:XDCUSDT","d":[]},{"s":"UNISWAP3ETH:WSTORWETH_51F635.USD","d":[]},{"s":"UNISWAP3ETH:WNXMWETH_058D79.USD","d":[]},{"s":"GATEIO:COMPUSDT.3S","d":[]},{"s":"BITRUE:EOSBTC","d":[]},{"s":"UNISWAP:PINGWETH_2FD71D","d":[]},{"s":"HITBTC:SALTBTC","d":[]},{"s":"ZOOMEX:DATAUSDT.P","d":[]},{"s":"WOONETWORK:RSRUSDT","d":[]},{"s":"TRADERJOE:STGUSDC_330F77","d":[]},{"s":"GATEIO:ARGONUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:GRAINUSDC_1FE33C.USD","d":[]},{"s":"BITMEX:WLDUSDT.P","d":[]},{"s":"COINBASE:YFIUSD","d":[]},{"s":"UNISWAP3ETH:HARRYPOOTERWETH","d":[]},{"s":"HITBTC:FLMUSDT","d":[]},{"s":"MEXC:IZIUSDT","d":[]},{"s":"MEXC:LRCUSDT","d":[]},{"s":"HITBTC:OCEANBTC","d":[]},{"s":"HITBTC:ARNXUSD","d":[]},{"s":"UNISWAP:MLNWETH_15AB03.USD","d":[]},{"s":"UNISWAP3POLYGON:USDCWMATIC_B6E57E.USD","d":[]},{"s":"HITBTC:AVAUSD","d":[]},{"s":"XEXCHANGE:UTKWEGLD","d":[]},{"s":"UNISWAP3ETH:DAMWETH_BD233D.USD","d":[]},{"s":"SPOOKYSWAP:MOTNAFWFTM_BA0B8C","d":[]},{"s":"UNISWAP3ETH:PVFYBOWETH_91E5B0.USD","d":[]},{"s":"UNISWAP:EVAUSDT_BB12D6","d":[]},{"s":"UNISWAP3ETH:USDTCAH","d":[]},{"s":"MEXC:P3DUSDT","d":[]},{"s":"BINANCE:ARBUSDC","d":[]},{"s":"UNISWAP:MATCHWETH_7A35FD.USD","d":[]},{"s":"UNISWAP:SIMPWETH_BBCA22.USD","d":[]},{"s":"GATEIO:VNOUSDT","d":[]},{"s":"BLOFIN:LOOMUSDT.P","d":[]},{"s":"GATEIO:DBCUSDT","d":[]},{"s":"POLONIEX:ZKSUSDT","d":[]},{"s":"UNISWAP3ETH:GRAIWETH_F53C15.USD","d":[]},{"s":"BINANCE:PORTOTRY","d":[]},{"s":"UNISWAP:IOWETH_0DA5B1.USD","d":[]},{"s":"PHEMEX:APTUSDT.P","d":[]},{"s":"XEXCHANGE:TADAWEGLD","d":[]},{"s":"UNISWAP3ARBITRUM:GNSWETH_FF33C0.USD","d":[]},{"s":"UNISWAP3POLYGON:DCIWMATIC_9FFF97.USD","d":[]},{"s":"BITFINEX:SUNBTC","d":[]},{"s":"KRAKEN:XRPBTC","d":[]},{"s":"UNISWAP3ETH:WETHOMNI","d":[]},{"s":"UNISWAP3ETH:WETHTPU","d":[]},{"s":"UPBIT:CREKRW","d":[]},{"s":"MEXC:SATUSDT","d":[]},{"s":"UNISWAP:DOGEAIWETH_26AA7D.USD","d":[]},{"s":"MEXC:MASKUSDT.P","d":[]},{"s":"UNISWAP:DGUSDC_873056","d":[]},{"s":"POLONIEX:SUDOUSDT","d":[]},{"s":"MEXC:WILDUSDT","d":[]},{"s":"UNISWAP3POLYGON:MBSWMATIC_BAD0D9.USD","d":[]},{"s":"BINANCE:ARDRBTC","d":[]},{"s":"UNISWAP:XRAIWETH_C16253.USD","d":[]},{"s":"UNISWAP3POLYGON:WBTCUSDT_9B2364.USD","d":[]},{"s":"COINBASE:HIGHUSD","d":[]},{"s":"UNISWAP3POLYGON:LINKUSDT_495359.USD","d":[]},{"s":"MEXC:SEEDUSDT","d":[]},{"s":"UNISWAP:PETERWETH_7050C2","d":[]},{"s":"COINEX:KARUSDT","d":[]},{"s":"UNISWAP3ETH:KABOSUUSDC_B65A97.USD","d":[]},{"s":"PIONEX:LRCUSDT.P","d":[]},{"s":"UNISWAP3ETH:MIMIWETH_6168DA.USD","d":[]},{"s":"KRAKEN:EWTGBP","d":[]},{"s":"UNISWAP:ALEAWETH_62EB1A.USD","d":[]},{"s":"UNISWAP:SLASHAWETH_8AF006","d":[]},{"s":"BISWAP:DOTWBNB_E7FBB8","d":[]},{"s":"HITBTC:FRINUSD","d":[]},{"s":"OKX:GPTUSDT.P","d":[]},{"s":"UNISWAP3ETH:UMAWETH_157DFA.USD","d":[]},{"s":"UNISWAP3ETH:CSWAPWETH","d":[]},{"s":"UNISWAP:DELREYWETH_F88A07","d":[]},{"s":"UNISWAP3ETH:HOODIEWETH_F1A8F0.USD","d":[]},{"s":"UNISWAP:HEZUSDT_F6C4E4","d":[]},{"s":"UNISWAP:EMAXWETH_B6CA52.USD","d":[]},{"s":"SPOOKYSWAP:PGKUSDC_9F3FE2","d":[]},{"s":"UNISWAP:RFIWETH_4C8341.USD","d":[]},{"s":"BINANCE:PORTALBNB","d":[]},{"s":"UNISWAP:LBLOCKWETH_1398EE","d":[]},{"s":"BITRUE:ETHUSDT","d":[]},{"s":"BITKUB:INJTHB","d":[]},{"s":"HITBTC:CGPTUSDT","d":[]},{"s":"MEXC:GPUUSDT","d":[]},{"s":"UNISWAP:TORNWETH_0C722A","d":[]},{"s":"TRADERJOE:WEAPONWAVAX_39D437.USD","d":[]},{"s":"UNISWAP3ETH:IDLEWETH","d":[]},{"s":"UNISWAP:MAGNETWETH_74D936","d":[]},{"s":"BISWAP:TKOWBNB_DE5E03.USD","d":[]},{"s":"UNISWAP3POLYGON:NEUYWMATIC_5CE5C2.USD","d":[]},{"s":"TRADERJOE:DCAUDCAR_5EB784","d":[]},{"s":"BISWAP:PMGWBNB_56F6BA.USD","d":[]},{"s":"GATEIO:MMMUSDT","d":[]},{"s":"TRADERJOE:SHIBXWAVAX_9A053B.USD","d":[]},{"s":"BLOFIN:STGUSDT.P","d":[]},{"s":"TRADERJOE:SHENWAVAX_618D07.USD","d":[]},{"s":"UNISWAP3ETH:SHIBWBTC","d":[]},{"s":"TRADERJOE:RAINWAVAX_3DA3B2","d":[]},{"s":"BINANCE:DUSKUSDT","d":[]},{"s":"BINGX:NMRUSDT.P","d":[]},{"s":"BISWAP:USDTDAI_E0CAAB","d":[]},{"s":"UNISWAP:LARRYWETH_C174F3.USD","d":[]},{"s":"COINEX:0X0USDT","d":[]},{"s":"BITSTAMP:CRVEUR","d":[]},{"s":"UNISWAP:MOMOV2WETH_89D780.USD","d":[]},{"s":"UNISWAP3ETH:AMKTWBTC","d":[]},{"s":"BINANCE:ALCXBTC","d":[]},{"s":"BITHUMB:ROAKRW","d":[]},{"s":"COINEX:HOOKUSDT","d":[]},{"s":"UNISWAP3ETH:UFOWETH","d":[]},{"s":"PANGOLIN:AABLOCKWAVAX_FFC53C","d":[]},{"s":"BITGET:GXEUSDT","d":[]},{"s":"UNISWAP3POLYGON:GEODWMATIC_6B5AA9.USD","d":[]},{"s":"UNISWAP:RFKJWETH_F12FE4.USD","d":[]},{"s":"UNISWAP:KENNYWETH_B4AA76","d":[]},{"s":"MEXC:WNZUSDT","d":[]},{"s":"UNISWAP:WPOKTWETH_A7FD8F.USD","d":[]},{"s":"PIONEX:RUNEUSDT.P","d":[]},{"s":"GATEIO:FLXUSDT","d":[]},{"s":"UNISWAP:WAR3LOVE_1C9189","d":[]},{"s":"GATEIO:FILDAUSDT","d":[]},{"s":"KRAKEN:NYMEUR","d":[]},{"s":"BINGX:10000SATSUSDT.P","d":[]},{"s":"TRADERJOE:KINGSHITXWAVAX_43FD4E","d":[]},{"s":"GATEIO:JOEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHELA","d":[]},{"s":"BITGET:EOSUSD.P","d":[]},{"s":"UNISWAP3ETH:WFIOWETH","d":[]},{"s":"UNISWAP:MEOWWETH_64FDDE.USD","d":[]},{"s":"BITSTAMP:PEPEEUR","d":[]},{"s":"UNISWAP3OPTIMISM:LYRAWETH_837CF1.USD","d":[]},{"s":"BINANCE:APEUSDT","d":[]},{"s":"BYBIT:XRPUSDT","d":[]},{"s":"UNISWAP3ETH:GLMUSDT_20DAC1.USD","d":[]},{"s":"UNISWAP:DBZWETH_C4CD6C","d":[]},{"s":"BINANCEUS:DASHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLIMIT","d":[]},{"s":"HITBTC:ROSEBTC","d":[]},{"s":"BITGET:SOLUSDT","d":[]},{"s":"BITFINEX:XAUTUSD","d":[]},{"s":"UNISWAP3ETH:WETHBURN","d":[]},{"s":"TIMEX:XRPUSDT","d":[]},{"s":"UNISWAP:CIPHERWETH_6A81D9","d":[]},{"s":"UNISWAP3ETH:WETHGBTC","d":[]},{"s":"HITBTC:CUREUSD","d":[]},{"s":"MEXC:10000LADYSUSDT.P","d":[]},{"s":"WHITEBIT:HBARUSDT","d":[]},{"s":"KRAKEN:BONKEUR","d":[]},{"s":"PIONEX:MKRUSDT.P","d":[]},{"s":"PANGOLIN:WAVAXDAIE_BA0967","d":[]},{"s":"TRADERJOE:YAKWAVAX_B5C9E8","d":[]},{"s":"GATEIO:MPLXUSDT","d":[]},{"s":"UNISWAP:CREAMWETH_DDF9B7.USD","d":[]},{"s":"MEXC:XUIUSDT","d":[]},{"s":"UNISWAP:WXRPWETH_D1D739","d":[]},{"s":"GATEIO:XEDUSDT","d":[]},{"s":"GATEIO:IRONUSDT","d":[]},{"s":"UNISWAP:ORAOWETH_78D186.USD","d":[]},{"s":"UNISWAP:ANTIMEVWETH_6EF666.USD","d":[]},{"s":"BINGX:LITUSDT.PS","d":[]},{"s":"PHEMEX:ILVUSDT.P","d":[]},{"s":"QUICKSWAP:AIMXWETH_F115BD.USD","d":[]},{"s":"TRADERJOE:PLNWAVAX_829A9F","d":[]},{"s":"WOONETWORK:XRPUSDT","d":[]},{"s":"UNISWAP:HHGTTGWETH_2063BC.USD","d":[]},{"s":"BINGX:HOOKUSDT.PS","d":[]},{"s":"GATEIO:DESOUSDT","d":[]},{"s":"UNISWAP:MCHCWETH_5B272C","d":[]},{"s":"UNISWAP:YUNAWETH_0EAA2C.USD","d":[]},{"s":"BYBIT:SHIBUSDT","d":[]},{"s":"TRADERJOE:OSAKWAVAX_FB1AB8.USD","d":[]},{"s":"UNISWAP3ETH:CMPWETH","d":[]},{"s":"UNISWAP:WENNUT_D813E7.USD","d":[]},{"s":"BITGET:MAXUSDT","d":[]},{"s":"GATEIO:RUFFUSDT","d":[]},{"s":"PHEMEX:1000SATSUSDT","d":[]},{"s":"QUICKSWAP:FEARUSDC_4E5684","d":[]},{"s":"MEXC:YURIUSDT","d":[]},{"s":"UNISWAP3ETH:JUSTICEUSDT","d":[]},{"s":"BINANCEUS:DOGEUSDT","d":[]},{"s":"BINGX:SNXUSDT.P","d":[]},{"s":"KRAKEN:RENUSD.PM","d":[]},{"s":"UNISWAP:FMTUSDT_56FDB1","d":[]},{"s":"TRADERJOE:SINGUSDTE_42B33D","d":[]},{"s":"QUICKSWAP:GFARM2DAI_0C7AD4","d":[]},{"s":"WAGYUSWAP:STVLXWVLX_D42846","d":[]},{"s":"UNISWAP:VXLWETH_3A0814.USD","d":[]},{"s":"GATEIO:ZAMUSDT","d":[]},{"s":"UNISWAP:MAXIHEX_BF036D","d":[]},{"s":"HITBTC:IDRTBTC","d":[]},{"s":"UNISWAP3ARBITRUM:DAIUSDC_7CF803.USD","d":[]},{"s":"BINGX:LITUSDT.P","d":[]},{"s":"UNISWAP:HAKIWETH_F71A7D","d":[]},{"s":"QUICKSWAP:MTCLUSDT_A93687","d":[]},{"s":"KRAKEN:KILTUSD","d":[]},{"s":"UNISWAP3ETH:CPOOLWETH_CB488B.USD","d":[]},{"s":"HITBTC:STORJUSDT","d":[]},{"s":"MEXC:GSWIFTUSDT","d":[]},{"s":"UNISWAP:SCANSWETH_B7A86C.USD","d":[]},{"s":"UNISWAP3POLYGON:MKRUSDC_B3998B.USD","d":[]},{"s":"BISWAP:AAVEWBNB_FC2B26","d":[]},{"s":"POLONIEX:DCUSDT","d":[]},{"s":"MEXC:BLYUSDT","d":[]},{"s":"UNISWAP3ETH:BURNSDEX_9884E5.USD","d":[]},{"s":"PANGOLIN:USTUSDC_3C0ECF","d":[]},{"s":"HITBTC:HELLOUSDT","d":[]},{"s":"GATEIO:DEFIUSDT","d":[]},{"s":"UNISWAP:ETFWETH_762636","d":[]},{"s":"BINANCE:LTCETH","d":[]},{"s":"HITBTC:BETAUSDT","d":[]},{"s":"QUICKSWAP:POLDOWMATIC_0991E9","d":[]},{"s":"BITGET:TRXUSDT.P","d":[]},{"s":"PIONEX:UNFIUSDT.P","d":[]},{"s":"UNISWAP:FRENSWETH_72C175","d":[]},{"s":"MEXC:BOOLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDRAG","d":[]},{"s":"GATEIO:IOSTUSDT.3S","d":[]},{"s":"UNISWAP3ETH:WETHDUSK","d":[]},{"s":"MEXC:PORTUMAUSDT","d":[]},{"s":"BITHUMB:ONGKRW","d":[]},{"s":"UNISWAP:GFARM2WETH_3F759C.USD","d":[]},{"s":"WAGYUSWAP:METAVWVLX_C2C21E.USD","d":[]},{"s":"BITKUB:AVAXTHB","d":[]},{"s":"KRAKEN:BCHUSDH2024","d":[]},{"s":"UNISWAP3ETH:PNTWETH","d":[]},{"s":"MEXC:AVAUSDT","d":[]},{"s":"KRAKEN:BLURUSD","d":[]},{"s":"GATEIO:EOSDACUSDT","d":[]},{"s":"TRADERJOE:VIAGRAWAVAX_954757.USD","d":[]},{"s":"DELTA:RUNEUSDT.P","d":[]},{"s":"UNISWAP:PRAIWETH_F0F93A.USD","d":[]},{"s":"UNISWAP:SWPWETH_A71820","d":[]},{"s":"PANGOLIN:WBTCPNG_F372CE.USD","d":[]},{"s":"BITGET:NVIRUSDT","d":[]},{"s":"BINANCE:DOGEFDUSD","d":[]},{"s":"UNISWAP3ETH:WETHLOOKS","d":[]},{"s":"BYBIT:FETUSDT","d":[]},{"s":"UNISWAP:HORDWETH_BAA48E","d":[]},{"s":"MEXC:JUPUSDT","d":[]},{"s":"WHITEBIT:IDEXUSDT","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDC_0A6C45.USD","d":[]},{"s":"UNISWAP3POLYGON:PIGUSDT_463FE9.USD","d":[]},{"s":"UNISWAP3ETH:KOMPETEWETH_10D6DB.USD","d":[]},{"s":"BYBIT:1INCHUSDT","d":[]},{"s":"UNISWAP3ETH:PHAWETH","d":[]},{"s":"HITBTC:WLITIUSDT","d":[]},{"s":"UNISWAP:DANKWETH_BCE508.USD","d":[]},{"s":"POLONIEX:ALPHAUSDT","d":[]},{"s":"GEMINI:AVAXUSD","d":[]},{"s":"WOONETWORK:SHIBUSDT","d":[]},{"s":"BITRUE:ELFUSDT","d":[]},{"s":"UNISWAP:PINGWETH_2FD71D.USD","d":[]},{"s":"UNISWAP3ETH:BPROWETH","d":[]},{"s":"KRAKEN:ENSUSD","d":[]},{"s":"UNISWAP3ETH:DAIHOPR","d":[]},{"s":"TRADERJOE:NEMOUSDT_DA4D79","d":[]},{"s":"UNISWAP:CTPUWETH_C5FE95.USD","d":[]},{"s":"UNISWAP3ETH:SUWETH_24161E.USD","d":[]},{"s":"PIONEX:CYBERUSDT.P","d":[]},{"s":"BITSTAMP:XRPUSD","d":[]},{"s":"BINANCE:ADATUSD","d":[]},{"s":"MEXC:CHANGEUSDT","d":[]},{"s":"BITGET:UNIUSDT.P","d":[]},{"s":"SPOOKYSWAP:TREATWFTM_4F24AA","d":[]},{"s":"UNISWAP:HANUSDC_DC344C","d":[]},{"s":"EXMO:EXMUSDT","d":[]},{"s":"BYBIT:ICPUSDC","d":[]},{"s":"PANGOLIN:BLUEWAVAX_985C2B.USD","d":[]},{"s":"BINGX:ILVUSDT.PS","d":[]},{"s":"BINANCE:CVXUSDT","d":[]},{"s":"OKX:RACAUSDT.P","d":[]},{"s":"COINEX:FTMUSDC","d":[]},{"s":"UNISWAP3ETH:WETHRNDR","d":[]},{"s":"UNISWAP3ETH:FTMDAI","d":[]},{"s":"GATEIO:OSTUSDT","d":[]},{"s":"BINGX:RIFUSDT.P","d":[]},{"s":"UNISWAP3ETH:FOXYWETH_945C85.USD","d":[]},{"s":"UNISWAP3ETH:WETHVLLC","d":[]},{"s":"UNISWAP3ETH:WETHSMART","d":[]},{"s":"TRADERJOE:TECHWAVAX_E1D895","d":[]},{"s":"HITBTC:AGIXBTC","d":[]},{"s":"MEXC:SFMUSDT","d":[]},{"s":"UNISWAP3ETH:HYPEWETH_874F90.USD","d":[]},{"s":"UNISWAP:BROSWETH_2D54B7.USD","d":[]},{"s":"UNISWAP:ROULETTEBOTWETH_3CBF02","d":[]},{"s":"TRADERJOE:COQMOONWAVAX_92AED1.USD","d":[]},{"s":"BITFINEX:XRDBTC","d":[]},{"s":"BYBIT:KDAUSDT.P","d":[]},{"s":"KRAKEN:WIFUSD.PM","d":[]},{"s":"BINANCE:ETHUSDM2024","d":[]},{"s":"POLONIEX:VRAUSDT","d":[]},{"s":"BYBIT:CULTUSDT","d":[]},{"s":"PANGOLIN:PEFIWAVAX_494DD9","d":[]},{"s":"WHITEBIT:HZMUSDT","d":[]},{"s":"UNISWAP:XPEPEWETH_AF2845.USD","d":[]},{"s":"SPOOKYSWAP:FHMDAI_D77FC9","d":[]},{"s":"GEMINI:DOGEETH","d":[]},{"s":"PHEMEX:SLPUSDT.P","d":[]},{"s":"HITBTC:SKLUSDT","d":[]},{"s":"BINANCEUS:ARBUSDT","d":[]},{"s":"GATEIO:XRUNEUSDT","d":[]},{"s":"UNISWAP:BENTWETH_A0D7B8","d":[]},{"s":"UNISWAP3ETH:WETHVLIZ","d":[]},{"s":"POLONIEX:BNBDADDYUSDT","d":[]},{"s":"WHITEBIT:YFIUSDT","d":[]},{"s":"BINANCE:BNXUSDT","d":[]},{"s":"UNISWAP:XFITUSDT_F8D99C","d":[]},{"s":"UNISWAP3ETH:WETHLDO","d":[]},{"s":"BLOFIN:FILUSDT.P","d":[]},{"s":"TRADERJOE:PNGWAVAX_3DAF1C","d":[]},{"s":"UNISWAP3ARBITRUM:CELOWETH_8693F1.USD","d":[]},{"s":"UNISWAP:FWBWETH_A68180.USD","d":[]},{"s":"UNISWAP3ETH:WETHTBANK","d":[]},{"s":"UNISWAP:EGTWETH_FCDAE8","d":[]},{"s":"UNISWAP3ETH:NFTCWETH_9162D0.USD","d":[]},{"s":"UNISWAP3ARBITRUM:PREMIAUSDC_DFCC80.USD","d":[]},{"s":"TRADERJOE:SYNWAVAX_20ABDC","d":[]},{"s":"POLONIEX:ACUSDT","d":[]},{"s":"UNISWAP3ETH:TRISMWETH","d":[]},{"s":"QUICKSWAP:PLRWMATIC_A7EC31.USD","d":[]},{"s":"UNISWAP:BUILDWETH_870239","d":[]},{"s":"COINEX:BBSUSDT","d":[]},{"s":"QUICKSWAP:ACREWMATIC_561ED3.USD","d":[]},{"s":"UNISWAP:SPRMWETH_9D2DFD.USD","d":[]},{"s":"GATEIO:QASHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHTRUMP404","d":[]},{"s":"MEXC:OZONEUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSTG","d":[]},{"s":"UNISWAP3ETH:CRPTUSDT","d":[]},{"s":"UNISWAP:HUSBANTWETH_60F2CC","d":[]},{"s":"UNISWAP3ETH:TGOLDTUSD_EF955A.USD","d":[]},{"s":"MEXC:HSFUSDT","d":[]},{"s":"COINEX:IOTXBTC","d":[]},{"s":"UNISWAP:TERRAFORMWETH_2823F9","d":[]},{"s":"UNISWAP:ASGWETH_E79BAC.USD","d":[]},{"s":"UNISWAP:BTCGFWETH_0CF3F2","d":[]},{"s":"BYBIT:RSRUSDT.P","d":[]},{"s":"GATEIO:PIXELUSDT","d":[]},{"s":"UNISWAP:SHIBIEWETH_BD577B","d":[]},{"s":"POLONIEX:DASHUSDC","d":[]},{"s":"TRADERJOE:APEXWAVAX_824CA8","d":[]},{"s":"UNISWAP:SYLOWBTC_7E2B8A","d":[]},{"s":"HITBTC:GTUSD","d":[]},{"s":"COINEX:LYXUSDT","d":[]},{"s":"UNISWAP:LPWETH_9476F8","d":[]},{"s":"UNISWAP:UMADWETH_D3E5CA.USD","d":[]},{"s":"BINANCE:EGLDRON","d":[]},{"s":"QUICKSWAP:PAYWMATIC_DC37DD","d":[]},{"s":"COINBASE:AVAXBTC","d":[]},{"s":"SPOOKYSWAP:TORWFTM_41D886.USD","d":[]},{"s":"UNISWAP:KORIWETH_672A62","d":[]},{"s":"BITHUMB:COSKRW","d":[]},{"s":"BITGET:BIZAUSDT","d":[]},{"s":"UNISWAP:PEPOWETH_F4D35B.USD","d":[]},{"s":"HITBTC:CVPUSD","d":[]},{"s":"SPOOKYSWAP:COREWFTM_9CC7CB","d":[]},{"s":"QUICKSWAP:SWMWMATIC_644FF2","d":[]},{"s":"UNISWAP3ETH:WETHTYPE","d":[]},{"s":"TRADERJOE:USDTEMIM_EAAE66.USD","d":[]},{"s":"HITBTC:PLRUSD","d":[]},{"s":"MEXC:GRPHUSDT","d":[]},{"s":"TRADERJOE:WAVAXUSDC_F4003F","d":[]},{"s":"COINEX:CELOBTC","d":[]},{"s":"MEXC:MMAUSDT","d":[]},{"s":"BYBIT:JEFFUSDT","d":[]},{"s":"MEXC:1000RATSUSDT.P","d":[]},{"s":"PHEMEX:LDOUSDT.P","d":[]},{"s":"UNISWAP:69420WETH_429ADB.USD","d":[]},{"s":"UNISWAP3ETH:WETHTXJP","d":[]},{"s":"QUICKSWAP:GHSTUSDC_096C5C","d":[]},{"s":"BITKUB:ADATHB","d":[]},{"s":"UNISWAP3ARBITRUM:USDSWETH_5766DA.USD","d":[]},{"s":"UNISWAP3ETH:USDTTARO","d":[]},{"s":"UNISWAP:NONEWETH_E8A70A","d":[]},{"s":"UNISWAP3ETH:TENETWETH","d":[]},{"s":"UNISWAP:VIRALXWETH_E8AE1F","d":[]},{"s":"BITGET:PYUSDUSDT","d":[]},{"s":"MEXC:AIMXUSDT","d":[]},{"s":"MEXC:NVIRUSDT","d":[]},{"s":"BYBIT:TOKENUSDT","d":[]},{"s":"UNISWAP3ETH:EXDUSDT_87E844.USD","d":[]},{"s":"BITGET:CAGAUSDT","d":[]},{"s":"BITFINEX:KNCBTC","d":[]},{"s":"HITBTC:XENUSDT","d":[]},{"s":"MEXC:USDPUSDT","d":[]},{"s":"SPOOKYSWAP:WOOMYWFTM_FE1379.USD","d":[]},{"s":"UNISWAP:JUSDCWETH_893BE9","d":[]},{"s":"GATEIO:CFXUSDT","d":[]},{"s":"GATEIO:METANUSDT","d":[]},{"s":"BYBIT:CELUSDT","d":[]},{"s":"MEXC:SLIMUSDT","d":[]},{"s":"UNISWAP:JEFFWETH_6CC5A4","d":[]},{"s":"GATEIO:TROYUSDT","d":[]},{"s":"GATEIO:IAGUSDT","d":[]},{"s":"BINGX:LOOMUSDT.P","d":[]},{"s":"PHEMEX:SEIUSDT.P","d":[]},{"s":"HITBTC:DYDXBTC","d":[]},{"s":"UNISWAP:404AWETH_42EA91.USD","d":[]},{"s":"MEXC:MOCHICATUSDT","d":[]},{"s":"BYBIT:MIBRUSDT","d":[]},{"s":"BITGET:RENUSDT","d":[]},{"s":"MEXC:WELSHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHXENO","d":[]},{"s":"UNISWAP:CREDSWETH_BBC882.USD","d":[]},{"s":"COINEX:VTCUSDT","d":[]},{"s":"UNISWAP:CCDWETH_95F58F","d":[]},{"s":"UNISWAP:DMAIWETH_12C02A.USD","d":[]},{"s":"MEXC:TRVLUSDT","d":[]},{"s":"GATEIO:VADERUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:CIPDAI_3A6F24.USD","d":[]},{"s":"UNISWAP3ETH:LLMWETH","d":[]},{"s":"UNISWAP3ETH:AGVUSDC","d":[]},{"s":"GATEIO:EARNUSDT","d":[]},{"s":"UNISWAP:GFXWETH_23B45E","d":[]},{"s":"DELTA:LDOUSDT.P","d":[]},{"s":"BLOFIN:GLMRUSDT.P","d":[]},{"s":"COINBASE:TUSD","d":[]},{"s":"UNISWAP3ETH:ENSWETH_B9C4A5.USD","d":[]},{"s":"UNISWAP3ETH:BEGWETH_D92BD2.USD","d":[]},{"s":"MEXC:IRISBTC","d":[]},{"s":"HITBTC:QTUMUSD","d":[]},{"s":"OKX:BNBUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:USDSUSDC_504503.USD","d":[]},{"s":"HITBTC:GLEECUSD","d":[]},{"s":"COINEX:WAVESUSDT","d":[]},{"s":"TRADERJOE:LODEUSDC_A1AEB0","d":[]},{"s":"UNISWAP:ROOTWETH_FB4492.USD","d":[]},{"s":"MEXC:AEVOUSDT.P","d":[]},{"s":"HITBTC:CELUSD","d":[]},{"s":"COINEX:CETUSDC","d":[]},{"s":"POLONIEX:SANTOSUSDT","d":[]},{"s":"GATEIO:PSPUSDT","d":[]},{"s":"HITBTC:XCHUSD","d":[]},{"s":"UNISWAP:UNISTAKEWETH_78B952.USD","d":[]},{"s":"UNISWAP:API3WETH_4DD264","d":[]},{"s":"UNISWAP3ETH:CRUNCHUSDC","d":[]},{"s":"UNISWAP:METASTREETWETH_A6AAA3.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GRAIUSDC_021A4E.USD","d":[]},{"s":"UNISWAP3POLYGON:FBXWSTETH_A6B96E.USD","d":[]},{"s":"UNISWAP3ETH:WETHGALEON","d":[]},{"s":"HITBTC:XRDUSD","d":[]},{"s":"UNISWAP3POLYGON:BTCHUSDT_E856A7.USD","d":[]},{"s":"UNISWAP3ETH:PIPWETH","d":[]},{"s":"MEXC:ANTUSDT","d":[]},{"s":"BYBIT:MNTUSDC","d":[]},{"s":"UNISWAP:ZENITSUKA_B60E1B.USD","d":[]},{"s":"UNISWAP3ETH:JPEGWETH_AF9060.USD","d":[]},{"s":"BITHUMB:EGGKRW","d":[]},{"s":"BITFINEX:CCDUST","d":[]},{"s":"UNISWAP:COPEWETH_AD1B37","d":[]},{"s":"UNISWAP3ETH:FXSUSDC_1BC5D5.USD","d":[]},{"s":"BITRUE:VOWUSDT","d":[]},{"s":"QUICKSWAP:ANGLEAGEUR_BF1AC3","d":[]},{"s":"BINGX:XVGUSDT.PS","d":[]},{"s":"GEMINI:AXSUSD","d":[]},{"s":"COINEX:BNBBTC","d":[]},{"s":"BTSE:GTCUSD","d":[]},{"s":"BITRUE:LUNAUSDC","d":[]},{"s":"ZOOMEX:XVGUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCEUROE","d":[]},{"s":"BITSTAMP:CRVUSD","d":[]},{"s":"UNISWAP3POLYGON:ONBWMATIC_108EA4.USD","d":[]},{"s":"BITGET:SHIAUSDT","d":[]},{"s":"GATEIO:SLICEUSDT","d":[]},{"s":"HITBTC:SANDBTC","d":[]},{"s":"GATEIO:SS20USDT","d":[]},{"s":"UNISWAP3POLYGON:METALUSDT_10D3A0.USD","d":[]},{"s":"KRAKEN:ADAUSD.PM","d":[]},{"s":"BYBIT:PERPUSDT.P","d":[]},{"s":"TIMEX:TIMEUSDT","d":[]},{"s":"BINANCE:UMATRY","d":[]},{"s":"MEXC:POLYDOGEUSDT","d":[]},{"s":"BISWAP:EXOSBUSD_53CCCB","d":[]},{"s":"UNISWAP:MAPWETH_3613E3","d":[]},{"s":"UNISWAP3ETH:MAXIUSDC","d":[]},{"s":"BITGET:PAYUUSDT","d":[]},{"s":"UNISWAP:LIZARDWETH_5253D5.USD","d":[]},{"s":"UNISWAP3POLYGON:BOBWMATIC_D90D52.USD","d":[]},{"s":"MEXC:DGSUSDT","d":[]},{"s":"MEXC:MBDUSDT","d":[]},{"s":"UNISWAP:CFCWETH_8CC3B1.USD","d":[]},{"s":"UNISWAP3ETH:DACATWETH","d":[]},{"s":"UNISWAP3ETH:WETHPOWR","d":[]},{"s":"QUICKSWAP:BITTWMATIC_2B8D94","d":[]},{"s":"BINGX:LOOMUSDT.PS","d":[]},{"s":"UNISWAP:PALMWETH_051EF3.USD","d":[]},{"s":"BYBIT:USDCEUR","d":[]},{"s":"TRADERJOE:GURSWAVAX_964809","d":[]},{"s":"UNISWAP3ETH:WETHGNO","d":[]},{"s":"HITBTC:CLVUSDT","d":[]},{"s":"BINANCE:SUSHIUSDT","d":[]},{"s":"TRADERJOE:IMEWAVAX_5D95AE","d":[]},{"s":"BINANCE:BETABTC","d":[]},{"s":"WHITEBIT:BNTUSDT","d":[]},{"s":"BYBIT:ONGUSDT.P","d":[]},{"s":"GATEIO:LBLUSDT","d":[]},{"s":"BITGET:PLXUSDT","d":[]},{"s":"WHITEBIT:XMRUSDT","d":[]},{"s":"UNISWAP:PATHWETH_870519","d":[]},{"s":"SPOOKYSWAP:BOOFUSDT_BE8DA8.USD","d":[]},{"s":"BITFINEX:BOSONUST","d":[]},{"s":"GATEIO:DESUSDT","d":[]},{"s":"PANGOLIN:TIMEWAVAX_2F1516","d":[]},{"s":"UNISWAP3ETH:WETHCHZB","d":[]},{"s":"BITRUE:HOTADA","d":[]},{"s":"MEXC:KSMUSDT","d":[]},{"s":"PHEMEX:ENJUSDT.P","d":[]},{"s":"UNISWAP:WBTCWETH_BB2B80","d":[]},{"s":"GATEIO:TONCUSDT","d":[]},{"s":"BITGET:ARUSDT.P","d":[]},{"s":"MEXC:USTCUSDT","d":[]},{"s":"COINEX:RELUSDT","d":[]},{"s":"UNISWAP:ZOGZWETH_E33A68.USD","d":[]},{"s":"DELTA:ETHUSDT","d":[]},{"s":"UNISWAP:TOADWETH_9F6FAC","d":[]},{"s":"UNISWAP:BLACKSWANWETH_AEBFBD.USD","d":[]},{"s":"COINEX:SSSUSDT","d":[]},{"s":"MEXC:THLUSDT","d":[]},{"s":"UNISWAP3ETH:CARBWETH","d":[]},{"s":"UNISWAP:VEEWETH_0E8CC2.USD","d":[]},{"s":"WHITEBIT:BTTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCNG","d":[]},{"s":"MEXC:XRAIUSDT","d":[]},{"s":"OKX:YFIUSDT.P","d":[]},{"s":"PANGOLIN:PEFISNOB_0B9753.USD","d":[]},{"s":"GATEIO:PIVXUSDT","d":[]},{"s":"QUICKSWAP:CSMATICWMATIC_F161E3.USD","d":[]},{"s":"UNISWAP:AETHIRWETH_976C6F.USD","d":[]},{"s":"UNISWAP:NOONEWETH_73FA66.USD","d":[]},{"s":"UNISWAP:REQDAI_5522C3","d":[]},{"s":"COINEX:STRAXUSDT","d":[]},{"s":"QUICKSWAP:TCGCWETH_734E63.USD","d":[]},{"s":"UNISWAP3POLYGON:UNIWMATIC_65C4B1.USD","d":[]},{"s":"HITBTC:BCDBTC","d":[]},{"s":"BINGX:AVAXUSDT.PS","d":[]},{"s":"UNISWAP:WOJAK269WETH_AF4595.USD","d":[]},{"s":"COINEX:BEAMXUSDT","d":[]},{"s":"MEXC:UBUUSDT","d":[]},{"s":"BYBIT:FBUSDT","d":[]},{"s":"ZOOMEX:WAXPUSDT.P","d":[]},{"s":"MEXC:KAPUSDT","d":[]},{"s":"UNISWAP:PARAWETH_BCC900.USD","d":[]},{"s":"MEXC:TATSUUSDT","d":[]},{"s":"SPOOKYSWAP:KAEWFTM_E6C2DB.USD","d":[]},{"s":"POLONIEX:GOLD1USDT","d":[]},{"s":"BYBIT:ACAUSDT","d":[]},{"s":"BINANCE:XTZUSDT","d":[]},{"s":"BTSE:ANTUSD","d":[]},{"s":"COINBASE:MKRBTC","d":[]},{"s":"UPBIT:TONKRW","d":[]},{"s":"COINEX:JEWELUSDT","d":[]},{"s":"BYBIT:MXUSDT","d":[]},{"s":"TRADERJOE:SQRCATWAVAX_BC274B.USD","d":[]},{"s":"BINANCE:WINBNB","d":[]},{"s":"GATEIO:SIDUSUSDT","d":[]},{"s":"UNISWAP:UPIWETH_FFE8DF.USD","d":[]},{"s":"UNISWAP3ETH:ALPHABETWETH_0EBC04.USD","d":[]},{"s":"HITBTC:GOFUSD","d":[]},{"s":"UNISWAP3ETH:CETHWETH","d":[]},{"s":"TRADERJOE:METAGWAVAX_968033","d":[]},{"s":"UNISWAP:PERRPOHM_44BDAC","d":[]},{"s":"COINBASE:BONKUSD","d":[]},{"s":"QUICKSWAP:CHATWMATIC_2C1908.USD","d":[]},{"s":"HITBTC:MANAUSDC","d":[]},{"s":"MEXC:UNPUSDT","d":[]},{"s":"UNISWAP3ETH:SHPINGWETH","d":[]},{"s":"UNISWAP:TOONSWETH_248EC5","d":[]},{"s":"BINANCE:USDPUSDT","d":[]},{"s":"POLONIEX:AXSUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:SUSDUSDT_6ECB7D.USD","d":[]},{"s":"UNISWAP:HEGICWETH_1273AD.USD","d":[]},{"s":"UNISWAP:KARMAWETH_784670","d":[]},{"s":"BYBIT:PLTUSDT","d":[]},{"s":"WAGYUSWAP:USDVBUSD_5BF6D5","d":[]},{"s":"UNISWAP:PATNUTWETH_7F00AC.USD","d":[]},{"s":"UNISWAP:EGRNUSDT_74166D","d":[]},{"s":"COINEX:PERPUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:BONERSIZE_F0D998.USD","d":[]},{"s":"OKX:ORBSUSDT.P","d":[]},{"s":"SPOOKYSWAP:GOOWFTM_2A0804","d":[]},{"s":"UNISWAP:GUSDWETH_61247D.USD","d":[]},{"s":"BINANCE:ARPAUSDT","d":[]},{"s":"UNISWAP3ETH:BAKCFLC_2FEC72.USD","d":[]},{"s":"UNISWAP:ONEPEARLWETH_688C56","d":[]},{"s":"MEXC:JURUSDT","d":[]},{"s":"UNISWAP:LUFFYWETH_55B085.USD","d":[]},{"s":"BITRUE:VOXELUSDT","d":[]},{"s":"UNISWAP:VPADUSDT_9F9373","d":[]},{"s":"COINEX:JASMYUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:ATLASWETH_59D56D.USD","d":[]},{"s":"UNISWAP3ETH:CCBCHWETH","d":[]},{"s":"UPBIT:STMXKRW","d":[]},{"s":"GATEIO:TKOUSDT","d":[]},{"s":"UNISWAP3ETH:GYENUSDC_183716.USD","d":[]},{"s":"UNISWAP:TAIWETH_B65ADE","d":[]},{"s":"MEXC:ORDSUSDT","d":[]},{"s":"PHEMEX:COMPUSDT","d":[]},{"s":"BITGET:HIFIUSDT","d":[]},{"s":"UNISWAP3ETH:FORGEWETH_CF96FC.USD","d":[]},{"s":"KRAKEN:DYDXEUR","d":[]},{"s":"UNISWAP3ETH:XRTWETH","d":[]},{"s":"BITGET:IOTXUSDT","d":[]},{"s":"KRAKEN:ANKRUSD.PM","d":[]},{"s":"UNISWAP:RIZOWETH_5F9D85.USD","d":[]},{"s":"BINANCE:DYMTRY","d":[]},{"s":"GATEIO:RDNTUSDT","d":[]},{"s":"QUICKSWAP:SHIBPLUSWMATIC_99A243","d":[]},{"s":"UNISWAP:ALICEWETH_2BBD1E.USD","d":[]},{"s":"WOONETWORK:APEUSDT","d":[]},{"s":"BITSTAMP:AUDIOUSD","d":[]},{"s":"KRAKEN:ARPAUSD.PM","d":[]},{"s":"MEXC:HTUSDT","d":[]},{"s":"BINANCE:XVSBTC","d":[]},{"s":"UNISWAP:FGMWETH_030587","d":[]},{"s":"UNISWAP3ETH:WETHPRO","d":[]},{"s":"WHITEBIT:USDTKZT","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICRDNT_E0FEA9.USD","d":[]},{"s":"TRADERJOE:BALLSWAVAX_650679.USD","d":[]},{"s":"PIONEX:MINAUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:WSTETHUSDC_766854.USD","d":[]},{"s":"BITSTAMP:SANDEUR","d":[]},{"s":"UNISWAP:PENGYWETH_4212A9.USD","d":[]},{"s":"UNISWAP:BLACKSWANWETH_AEBFBD","d":[]},{"s":"MEXC:ENJUSDT","d":[]},{"s":"WHITEBIT:ASTRUSDT","d":[]},{"s":"POLONIEX:STORJBTC","d":[]},{"s":"MEXC:CELUSDC","d":[]},{"s":"COINBASE:CRVUSD","d":[]},{"s":"BLOFIN:NKNUSDT.P","d":[]},{"s":"BITFINEX:CELOBTC","d":[]},{"s":"UNISWAP:HALVINGWETH_C89225.USD","d":[]},{"s":"GATEIO:ACXUSDT","d":[]},{"s":"GATEIO:RACAUSDT","d":[]},{"s":"BYBIT:BTGUSDT","d":[]},{"s":"UNISWAP3ETH:USDTFMB","d":[]},{"s":"POLONIEX:SXPTRX","d":[]},{"s":"BITGET:GASUSDT","d":[]},{"s":"UNISWAP3ETH:OHMUSDC_893F50.USD","d":[]},{"s":"UNISWAP:SHIB05SHIB_914E57","d":[]},{"s":"BYBIT:DOTUSDC","d":[]},{"s":"UNISWAP:UMXWETH_383D02.USD","d":[]},{"s":"BINANCE:APTTRY","d":[]},{"s":"HITBTC:CRVUSDC","d":[]},{"s":"GATEIO:DFLUSDT","d":[]},{"s":"GATEIO:UFOUSDT","d":[]},{"s":"UNISWAP3ETH:USDTALT","d":[]},{"s":"TRADERJOE:JOEWAVAX_454E67","d":[]},{"s":"COINEX:ORAIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHIA","d":[]},{"s":"BITGET:BTCUSDT.P","d":[]},{"s":"HITBTC:POLISBTC","d":[]},{"s":"UNISWAP3ETH:BASEDAIWETH_FA4A4C.USD","d":[]},{"s":"UNISWAP3ARBITRUM:SYNWETH_B7C960.USD","d":[]},{"s":"UNISWAP3ETH:TXJPWETH","d":[]},{"s":"UNISWAP3ETH:LIQWETH_595839.USD","d":[]},{"s":"UNISWAP:DYORWETH_8142CF.USD","d":[]},{"s":"MEXC:EOSUSDT","d":[]},{"s":"SPOOKYSWAP:MIMWFTM_6F86E6","d":[]},{"s":"WHITEBIT:SUIUSDT","d":[]},{"s":"UNISWAP:VITALEKWETH_C8733A","d":[]},{"s":"UNISWAP:USHIWETH_E97786","d":[]},{"s":"UNISWAP3ARBITRUM:XPETWETH_3A203C.USD","d":[]},{"s":"HITBTC:DOTUSDC","d":[]},{"s":"UNISWAP3ETH:USDTMMX","d":[]},{"s":"BITFINEX:BLURUSD","d":[]},{"s":"BITHUMB:WIKENKRW","d":[]},{"s":"COINBASE:SUPERUSD","d":[]},{"s":"UNISWAP:INSPWETH_D209D4","d":[]},{"s":"BITFINEX:DOGEUSD","d":[]},{"s":"BISWAP:ONEWBNB_E73FE1.USD","d":[]},{"s":"SPOOKYSWAP:DAIWFTM_E120FF","d":[]},{"s":"UNISWAP3ETH:CELOWETH","d":[]},{"s":"GATEIO:PNGUSDT","d":[]},{"s":"PANGOLIN:NFTDUSDTE_C251D8.USD","d":[]},{"s":"UNISWAP3ETH:WETHOM","d":[]},{"s":"BITMEX:BCHUSD.P","d":[]},{"s":"MEXC:GMPDUSDT","d":[]},{"s":"BINANCE:OPBTC","d":[]},{"s":"OKX:CFXUSDT.P","d":[]},{"s":"UNISWAP:TRLWETH_D8901E.USD","d":[]},{"s":"UNISWAP3OPTIMISM:0FXUSDT_7292BA.USD","d":[]},{"s":"UNISWAP3ETH:SHAPEWETH","d":[]},{"s":"QUICKSWAP:SHNWMATIC_F6467B.USD","d":[]},{"s":"WOONETWORK:HBARUSDT","d":[]},{"s":"BISWAP:XVSWBNB_753C73","d":[]},{"s":"HITBTC:ENSUSDT","d":[]},{"s":"UNISWAP3ETH:MKRUSDC","d":[]},{"s":"GATEIO:QTCUSDT","d":[]},{"s":"UNISWAP:AFYWETH_F43E88.USD","d":[]},{"s":"UNISWAP3ETH:BEANSWETH_598CBC.USD","d":[]},{"s":"TRADERJOE:XETAUSDC_D1CADC.USD","d":[]},{"s":"HITBTC:REQUSD","d":[]},{"s":"POLONIEX:SQUIDSOLUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSWEAT","d":[]},{"s":"BINANCE:OPUSD.P","d":[]},{"s":"UNISWAP3POLYGON:INDEXUSDCUSDC_4F4B76.USD","d":[]},{"s":"EXMO:NEOBTC","d":[]},{"s":"UNISWAP:STATSWETH_0B2079.USD","d":[]},{"s":"UNISWAP:ACQUSDC_9FD736","d":[]},{"s":"BINANCE:ICPTRY","d":[]},{"s":"UNISWAP:CHIBAWETH_746B4D","d":[]},{"s":"UNISWAP3ETH:BITCOINWETH_25392D.USD","d":[]},{"s":"UNISWAP:MIXCOINWETH_1E8967","d":[]},{"s":"COINBASE:FORTUSD","d":[]},{"s":"GATEIO:PHTRUSDT","d":[]},{"s":"BINANCE:ASRUSDT","d":[]},{"s":"UNISWAP:VIDYAWETH_DA3706.USD","d":[]},{"s":"TRADERJOE:NEMOWAVAX_48AA4B","d":[]},{"s":"POLONIEX:MAVIAUSDT","d":[]},{"s":"MEXC:TRAVAUSDT","d":[]},{"s":"MEXC:HARDUSDT","d":[]},{"s":"UNISWAP:EXPECTATIONVSREALITYWETH_313774.USD","d":[]},{"s":"TRADERJOE:PENGUWAVAX_3BB461","d":[]},{"s":"UNISWAP:RCEWETH_B06EBF","d":[]},{"s":"UNISWAP3ETH:USDTDD","d":[]},{"s":"BYBIT:LRCUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:FKRPROWMATIC_596B93.USD","d":[]},{"s":"UNISWAP:HERWETH_DE7EC7","d":[]},{"s":"OKX:MKRUSDT.P","d":[]},{"s":"BINGX:SXPUSDT.P","d":[]},{"s":"WHITEBIT:QTUMUSDT","d":[]},{"s":"BITSTAMP:XLMUSD","d":[]},{"s":"UNISWAP3ETH:FACTRWETH","d":[]},{"s":"UNISWAP3ETH:DAILUSD","d":[]},{"s":"UNISWAP3ETH:WETHEMP","d":[]},{"s":"ZOOMEX:TWTUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:PENDLEUSDC_42D7C8.USD","d":[]},{"s":"UNISWAP3ETH:CREAMWETH","d":[]},{"s":"POLONIEX:SWAPUSD","d":[]},{"s":"MEXC:BLTUSDT","d":[]},{"s":"UNISWAP:PNKWETH_343FD1","d":[]},{"s":"UNISWAP3ETH:DN404WETH","d":[]},{"s":"UNISWAP:VCASHWETH_8D6F94.USD","d":[]},{"s":"QUICKSWAP:GBYTEUSDT_4D7956","d":[]},{"s":"UNISWAP:ORDWETH_29A512.USD","d":[]},{"s":"COINEX:BONDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHANT","d":[]},{"s":"PHEMEX:TWTUSDT","d":[]},{"s":"BITSTAMP:SUSHIEUR","d":[]},{"s":"HITBTC:IMXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNEUY","d":[]},{"s":"UNISWAP3ETH:WBTCBADGER","d":[]},{"s":"COINEX:DFYNUSDT","d":[]},{"s":"HITBTC:MTLXUSDT","d":[]},{"s":"UNISWAP:PPEASPOHM_80E9C4","d":[]},{"s":"UNISWAP3ETH:SPAYUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:THALESUSDC_CEDFBD.USD","d":[]},{"s":"GATEIO:CNAMEUSDT","d":[]},{"s":"HITBTC:ERGUSD","d":[]},{"s":"UNISWAP3ETH:IXSWETH","d":[]},{"s":"BLOFIN:SEIUSDT.P","d":[]},{"s":"WAGYUSWAP:ETHWVLX_7C3F1E","d":[]},{"s":"MEXC:CLOREUSDT","d":[]},{"s":"UNISWAP3ETH:M2WETH","d":[]},{"s":"TRADERJOE:KITTYWAVAX_BC61C7","d":[]},{"s":"UNISWAP3ETH:MNTWETH","d":[]},{"s":"POLONIEX:ALICEUSDT","d":[]},{"s":"UNISWAP3ETH:STMATICMATIC_577DF0.USD","d":[]},{"s":"MEXC:NEVERUSDT","d":[]},{"s":"MEXC:TRADEUSDT","d":[]},{"s":"UNISWAP3POLYGON:DSTWMATIC_9AC431.USD","d":[]},{"s":"BITFINEX:WOOUST","d":[]},{"s":"KRAKEN:AXSUSD.PM","d":[]},{"s":"HITBTC:ARKBTC","d":[]},{"s":"UNISWAP:CAPSWETH_456FB0.USD","d":[]},{"s":"UNISWAP:BABYDOGE20WETH_A75B1F.USD","d":[]},{"s":"UNISWAP3ETH:TEXANUSDC","d":[]},{"s":"GATEIO:XRPUSDT.5L","d":[]},{"s":"BITKUB:MATICTHB","d":[]},{"s":"BITFINEX:QTFUSD","d":[]},{"s":"PANGOLIN:PNGUSDCE_C33AC1","d":[]},{"s":"BITGET:MTLUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLOOM","d":[]},{"s":"GATEIO:WSIUSDT","d":[]},{"s":"BITHUMB:TRXKRW","d":[]},{"s":"GATEIO:WMTUSDT","d":[]},{"s":"MEXC:TURBOUSDT.P","d":[]},{"s":"QUICKSWAP:SOULSUSDT_25007F","d":[]},{"s":"POLONIEX:VEXTUSDT","d":[]},{"s":"MEXC:MURATIAIUSDT","d":[]},{"s":"QUICKSWAP:HEXUSDC_149BCB","d":[]},{"s":"BINANCE:USDCUSDT","d":[]},{"s":"BYBIT:ARPAUSDT.P","d":[]},{"s":"UNISWAP3ETH:MEMEWETH","d":[]},{"s":"BITFINEX:KANUSD","d":[]},{"s":"HITBTC:ZSCBTC","d":[]},{"s":"UNISWAP:BREEDWETH_3478B3","d":[]},{"s":"UNISWAP:BIBLEWETH_7A310B","d":[]},{"s":"WOONETWORK:UC721USDT","d":[]},{"s":"QUICKSWAP:KABYUSDC_72BA00","d":[]},{"s":"GATEIO:SAOUSDT","d":[]},{"s":"UNISWAP3ETH:SDAXWETH_A08D8D.USD","d":[]},{"s":"UNISWAP3POLYGON:GNSWETH_CE0BBB.USD","d":[]},{"s":"BITKUB:GLMTHB","d":[]},{"s":"UNISWAP:LITHWETH_2B68EA.USD","d":[]},{"s":"KRAKEN:PYTHUSD.PM","d":[]},{"s":"GATEIO:FUSEUSDT","d":[]},{"s":"HITBTC:PUNDIXUSD","d":[]},{"s":"COINEX:LFGUSDT","d":[]},{"s":"MEXC:BURNUSDT","d":[]},{"s":"UNISWAP:VIRTUWETH_F6CF82","d":[]},{"s":"BITGET:FTMUSDT","d":[]},{"s":"UNISWAP:HAHAWETH_7E3651","d":[]},{"s":"UNISWAP3ETH:LEASHWETH","d":[]},{"s":"HITBTC:PYTHUSDT","d":[]},{"s":"MEXC:ONSUSDT","d":[]},{"s":"UNISWAP3ETH:CHZBWETH","d":[]},{"s":"UNISWAP:MNDWETH_983226.USD","d":[]},{"s":"HITBTC:MLTUSDT","d":[]},{"s":"PHEMEX:FLOWUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPSALE","d":[]},{"s":"MEXC:AXSUSDT.P","d":[]},{"s":"TRADERJOE:DEGENWAVAX_15EC92","d":[]},{"s":"GATEIO:FORAUSDT","d":[]},{"s":"GATEIO:RFUELUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GASTUSDT_6AB9F1.USD","d":[]},{"s":"ZOOMEX:TRUUSDT.P","d":[]},{"s":"HITBTC:STORJBTC","d":[]},{"s":"HITBTC:NULSUSDT","d":[]},{"s":"MEXC:SENDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPEPE","d":[]},{"s":"UNISWAP:AFBWETH_4D702B.USD","d":[]},{"s":"PANGOLIN:LINKEWAVAX_5875C3","d":[]},{"s":"UNISWAP3ARBITRUM:MCBARB_82F223.USD","d":[]},{"s":"HITBTC:DGBUSDC","d":[]},{"s":"UNISWAP:EYEWETH_549658","d":[]},{"s":"WHITEBIT:MANTAUSDT.P","d":[]},{"s":"MEXC:PSLUSDT","d":[]},{"s":"BINANCE:BNTETH","d":[]},{"s":"WHITEBIT:LINAUSDT","d":[]},{"s":"UNISWAP:VXAIWETH_1A4CD6.USD","d":[]},{"s":"UNISWAP:GENIEWETH_F21D9D","d":[]},{"s":"BITGET:ATOMBTC","d":[]},{"s":"UNISWAP:EGGXWETH_9EAC34","d":[]},{"s":"COINEX:LTCUSDT","d":[]},{"s":"BLOFIN:IMXUSDT.P","d":[]},{"s":"BITGET:FNSAUSDT","d":[]},{"s":"BINANCE:FLOKIFDUSD","d":[]},{"s":"UNISWAP3ETH:WETHABTC","d":[]},{"s":"COINBASE:SUIUSD","d":[]},{"s":"OKX:TURBOUSDT.P","d":[]},{"s":"COINBASE:CROUSDT","d":[]},{"s":"UNISWAP3ETH:USDTBEAR","d":[]},{"s":"BLOFIN:NFPUSDT.P","d":[]},{"s":"GATEIO:DENTUSDT","d":[]},{"s":"UNISWAP:MATICWETH_819F34","d":[]},{"s":"PHEMEX:RAYUSDT","d":[]},{"s":"BLOFIN:SPELLUSDT.P","d":[]},{"s":"UNISWAP3ETH:ELONUSDT","d":[]},{"s":"BYBIT:GMXUSDT.P","d":[]},{"s":"UNISWAP:MUSEWETH_20D2C1","d":[]},{"s":"GATEIO:RATINGUSDT","d":[]},{"s":"UNISWAP3ETH:VMINTUSDT","d":[]},{"s":"MEXC:LEEUSDT","d":[]},{"s":"UNISWAP3ETH:JAREDWETH","d":[]},{"s":"UNISWAP:ANVAWETH_3DA595","d":[]},{"s":"POLONIEX:ETHUSDC","d":[]},{"s":"UNISWAP:BEEPWETH_CFDC42.USD","d":[]},{"s":"SPOOKYSWAP:RNDMWFTM_0FFED9.USD","d":[]},{"s":"QUICKSWAP:BQTWMATIC_827C59","d":[]},{"s":"QUICKSWAP:WMATICUSDC_6E7A5F","d":[]},{"s":"UNISWAP3ETH:QUIQWETH","d":[]},{"s":"MEXC:DOTBTC","d":[]},{"s":"BITGET:APPUSDT","d":[]},{"s":"COINEX:DHTUSDT","d":[]},{"s":"BITRUE:ENJXRP","d":[]},{"s":"UNISWAP:PROPCUSDT_4F9FC4","d":[]},{"s":"PANGOLIN:FEEDWAVAX_E8579E.USD","d":[]},{"s":"UNISWAP:GATSBYWETH_C37ECC.USD","d":[]},{"s":"BINANCE:DOTBTC","d":[]},{"s":"UNISWAP:TOMWETH_AE2CF4","d":[]},{"s":"ZOOMEX:AVAXUSDT.P","d":[]},{"s":"SPOOKYSWAP:GEISTWFTM_668AE9.USD","d":[]},{"s":"GATEIO:INSPUSDT","d":[]},{"s":"OKX:GRTUSD.P","d":[]},{"s":"POLONIEX:FIDAUSDT","d":[]},{"s":"HITBTC:UBTBTC","d":[]},{"s":"GATEIO:RAFTUSDT","d":[]},{"s":"BINGX:FLRUSDT.PS","d":[]},{"s":"UNISWAP3ETH:WETHORAIX","d":[]},{"s":"UNISWAP3ETH:WETHGEL","d":[]},{"s":"UNISWAP3ETH:ERBBWETH","d":[]},{"s":"UNISWAP3ETH:WETHSTTAO","d":[]},{"s":"HITBTC:MTHBTC","d":[]},{"s":"UNISWAP:VITALIKWETH_6F3EC8.USD","d":[]},{"s":"COINEX:WAXPBTC","d":[]},{"s":"COINEX:EGLDBTC","d":[]},{"s":"QUICKSWAP:MIMATICWMATIC_7805B6","d":[]},{"s":"GATEIO:BABIUSDT","d":[]},{"s":"BINANCE:AUCTIONFDUSD","d":[]},{"s":"COINEX:NMTUSDT","d":[]},{"s":"MEXC:VRAUSDT","d":[]},{"s":"BITMEX:ETHUSDH2024","d":[]},{"s":"SPOOKYSWAP:TRAVAWFTM_7AF191.USD","d":[]},{"s":"UNISWAP3ETH:WETHTKX","d":[]},{"s":"MEXC:PKUSDT","d":[]},{"s":"UPBIT:LINKKRW","d":[]},{"s":"COINEX:LOOTUSDT","d":[]},{"s":"MEXC:1MCTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGTCETH","d":[]},{"s":"GATEIO:CSTRUSDT","d":[]},{"s":"BINANCEUS:ROSEUSDT","d":[]},{"s":"UNISWAP3ETH:MRFWETH","d":[]},{"s":"BINANCE:RADTRY","d":[]},{"s":"UNISWAP:BLASTWETH_8C9E7A","d":[]},{"s":"BYBIT:TUSDT.P","d":[]},{"s":"WOONETWORK:RAYUSDT","d":[]},{"s":"SPOOKYSWAP:GEISTWFTM_668AE9","d":[]},{"s":"BINANCE:PUNDIXUSDT","d":[]},{"s":"WHITEBIT:ZETAUSDT","d":[]},{"s":"ZOOMEX:RAREUSDT.P","d":[]},{"s":"UNISWAP:MARSWETH_D5B817.USD","d":[]},{"s":"COINBASE:BLZUSD","d":[]},{"s":"GATEIO:QBTUSDT","d":[]},{"s":"UNISWAP:KANGALWETH_0BC442","d":[]},{"s":"QUICKSWAP:AAVETEL_4917BC.USD","d":[]},{"s":"COINBASE:DOTUSD","d":[]},{"s":"BINGX:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP:XCADUSDC_3FA5DB","d":[]},{"s":"BITGET:MEMECOINUSDT","d":[]},{"s":"UNISWAP:TAILSANI_BD1976.USD","d":[]},{"s":"BITRUE:ADABTR","d":[]},{"s":"PHEMEX:MATICUSDT.P","d":[]},{"s":"COINEX:OPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGEAR","d":[]},{"s":"UNISWAP3ETH:WETHDOLLARMONG","d":[]},{"s":"MEXC:LKIUSDT","d":[]},{"s":"UNISWAP3ETH:ADXUSDT","d":[]},{"s":"UNISWAP:DOGGERWETH_59F7BC","d":[]},{"s":"UNISWAP3POLYGON:IOTXCIOTX_46CF69.USD","d":[]},{"s":"MEXC:DARCUSDT","d":[]},{"s":"HITBTC:KINUSD","d":[]},{"s":"BINANCE:MINABTC","d":[]},{"s":"HITBTC:ARKMUSDT","d":[]},{"s":"BYBIT:ENJUSDT","d":[]},{"s":"BITGET:CUSDUSDT","d":[]},{"s":"MEXC:COREUSDT","d":[]},{"s":"GATEIO:PSUBUSDT","d":[]},{"s":"UNISWAP:SFIWETH_C76225","d":[]},{"s":"BINANCE:PIXELFDUSD","d":[]},{"s":"BINANCE:ADABTC","d":[]},{"s":"BINANCE:NEARBTC","d":[]},{"s":"POLONIEX:TUSDUSDT","d":[]},{"s":"UNISWAP3ETH:RESINWETH","d":[]},{"s":"GATEIO:LABSUSDT","d":[]},{"s":"MEXC:BNTUSDT","d":[]},{"s":"EXMO:ETHEUR","d":[]},{"s":"MEXC:NFTCUSDT","d":[]},{"s":"UNISWAP3ETH:SPXBITCOIN_6E7F25.USD","d":[]},{"s":"HITBTC:FLOKIUSDT","d":[]},{"s":"MEXC:SFUNDUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLRC","d":[]},{"s":"UNISWAP:FRENSWETH_72C175.USD","d":[]},{"s":"WHITEBIT:USDTCZK","d":[]},{"s":"QUICKSWAP:TELEBTCWMATIC_0035D2.USD","d":[]},{"s":"BYBIT:XWGUSDT","d":[]},{"s":"BYBIT:HIFIUSDT.P","d":[]},{"s":"BINANCEUS:BALUSDT","d":[]},{"s":"GATEIO:CHAINUSDT","d":[]},{"s":"UNISWAP3ETH:FOOMWETH_5CD0AD.USD","d":[]},{"s":"UNISWAP:INTERNWETH_A84D7C.USD","d":[]},{"s":"UNISWAP3ETH:GRTWETH","d":[]},{"s":"BITFINEX:TRADEUST","d":[]},{"s":"PHEMEX:MYROUSDT.P","d":[]},{"s":"UNISWAP:BEGWETH_7C9A17.USD","d":[]},{"s":"BYBIT:AERGOUSDT.P","d":[]},{"s":"XEXCHANGE:KROUSDC","d":[]},{"s":"UNISWAP3ETH:WETHFROGE","d":[]},{"s":"BYBIT:REQUSDT.P","d":[]},{"s":"PHEMEX:VGXUSDT","d":[]},{"s":"KRAKEN:REPV2ETH","d":[]},{"s":"HITBTC:DASHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSAMALTMAN","d":[]},{"s":"SPOOKYSWAP:OOEWFTM_0F941A.USD","d":[]},{"s":"HITBTC:RENUSDT","d":[]},{"s":"UNISWAP3POLYGON:WMATICDAI_FE5309.USD","d":[]},{"s":"HITBTC:OCEANUSD","d":[]},{"s":"UNISWAP:UCLXWETH_9891B0","d":[]},{"s":"BITGET:LUNCUSDT","d":[]},{"s":"PANGOLIN:PRXWAVAX_650F65","d":[]},{"s":"BITGET:XEMUSDT","d":[]},{"s":"UNISWAP3POLYGON:ROEWMATIC_355A6F.USD","d":[]},{"s":"QUICKSWAP:WCHIWETH_564D4E.USD","d":[]},{"s":"GATEIO:THALESUSDT","d":[]},{"s":"BTSE:SEIUSD.P","d":[]},{"s":"HITBTC:BIZZUSD","d":[]},{"s":"HITBTC:HBARBTC","d":[]},{"s":"MEXC:HEFIUSDT","d":[]},{"s":"MEXC:PROMUSDT.P","d":[]},{"s":"MEXC:MTLUSDT.P","d":[]},{"s":"HITBTC:KAVABTC","d":[]},{"s":"UNISWAP3ETH:ABTCWETH_14728E.USD","d":[]},{"s":"GATEIO:ZELIXUSDT","d":[]},{"s":"UNISWAP3ETH:ENSUSDT","d":[]},{"s":"BINANCE:DOTETH","d":[]},{"s":"COINEX:SPELLUSDT","d":[]},{"s":"BINANCE:SOLUSD.P","d":[]},{"s":"MEXC:MSHEESHAUSDT","d":[]},{"s":"BLOFIN:BELUSDT.P","d":[]},{"s":"QUICKSWAP:OREWETH_D9284F.USD","d":[]},{"s":"MEXC:COMPUSDT","d":[]},{"s":"UNISWAP:APUWETH_9B7E69","d":[]},{"s":"ZOOMEX:GASUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTVEE","d":[]},{"s":"BITGET:APEUSDC","d":[]},{"s":"POLONIEX:LOVESNOOPYUSDT","d":[]},{"s":"GATEIO:DMTRUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCSAVM","d":[]},{"s":"UNISWAP3ETH:DDUSDT","d":[]},{"s":"COINEX:KUBUSDT","d":[]},{"s":"BITFINEX:SIDUSBTC","d":[]},{"s":"UNISWAP:CAESARWETH_E48EB5","d":[]},{"s":"BINANCE:POLSUSDT","d":[]},{"s":"POLONIEX:RACAUSDT","d":[]},{"s":"HITBTC:TNCUSDT","d":[]},{"s":"UNISWAP3POLYGON:FIREUSDT_60EA32.USD","d":[]},{"s":"UPBIT:MANAKRW","d":[]},{"s":"UNISWAP:MAIWETH_A8BBC4.USD","d":[]},{"s":"ZOOMEX:KSMUSDT.P","d":[]},{"s":"WOONETWORK:CELOUSDT","d":[]},{"s":"UNISWAP3ETH:EURTUSDT_07F3D3.USD","d":[]},{"s":"UNISWAP3ETH:WETHBTCP","d":[]},{"s":"WOONETWORK:WOOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBAHAMAS","d":[]},{"s":"POLONIEX:NCTUSDT","d":[]},{"s":"GATEIO:MARSHUSDT","d":[]},{"s":"PANGOLIN:SFIWAVAX_18C8E1","d":[]},{"s":"KRAKEN:APTUSD.PM","d":[]},{"s":"PIONEX:TOKENUSDT.P","d":[]},{"s":"BITGET:AURORAUSDT","d":[]},{"s":"BINANCE:FLUXBTC","d":[]},{"s":"UNISWAP3ETH:FOLDWETH","d":[]},{"s":"UNISWAP3ETH:USDTBONK","d":[]},{"s":"MEXC:KOYUSDT","d":[]},{"s":"GATEIO:CHOUSDT","d":[]},{"s":"PHEMEX:XVSUSDT.P","d":[]},{"s":"MEXC:UNICEUSDT","d":[]},{"s":"MEXC:AIRIUSDT","d":[]},{"s":"BITFINEX:EOSETH","d":[]},{"s":"UNISWAP:DDIMWETH_38A94C.USD","d":[]},{"s":"MEXC:MPTUSDT","d":[]},{"s":"SPOOKYSWAP:SPECTUSDC_B326BB","d":[]},{"s":"BITSTAMP:PYUSDUSD","d":[]},{"s":"BITHUMB:GRACYKRW","d":[]},{"s":"UNISWAP3ETH:WETHSHIT","d":[]},{"s":"MEXC:BROCKUSDT","d":[]},{"s":"PHEMEX:FXSUSDT","d":[]},{"s":"BINANCE:SNXBTC","d":[]},{"s":"UNISWAP3ETH:JEFFWETH","d":[]},{"s":"GATEIO:ZIGUSDT","d":[]},{"s":"UNISWAP3ETH:MEMEPOTATOZ_E1C0F2.USD","d":[]},{"s":"PHEMEX:QTUMUSDT.P","d":[]},{"s":"BLOFIN:CVCUSDT.P","d":[]},{"s":"UNISWAP3ETH:ICHIUSDC_89E4D0.USD","d":[]},{"s":"COINEX:DAIUSDT","d":[]},{"s":"BITGET:OSMOUSDT","d":[]},{"s":"UNISWAP3ETH:USDTVXV","d":[]},{"s":"GEMINI:IOTXUSD","d":[]},{"s":"BYBIT:METISUSDT.P","d":[]},{"s":"MEXC:AICOREUSDT","d":[]},{"s":"UNISWAP3ETH:MTOWETH","d":[]},{"s":"UNISWAP:CHAINWETH_339064","d":[]},{"s":"PANGOLIN:TERRAUSDCE_5DC964","d":[]},{"s":"MEXC:AMGUSDT","d":[]},{"s":"BINANCE:AEVOBNB","d":[]},{"s":"UNISWAP3ETH:CHAINWETH","d":[]},{"s":"BYBIT:ELTUSDT","d":[]},{"s":"COINBASE:ACSUSD","d":[]},{"s":"COINEX:BALUSDT","d":[]},{"s":"GATEIO:BENQIUSDT","d":[]},{"s":"GATEIO:DHXUSDT","d":[]},{"s":"BINANCE:SNXTRY","d":[]},{"s":"UNISWAP3ETH:STOSUSDT_708859.USD","d":[]},{"s":"BITGET:ARBUSDT.P","d":[]},{"s":"PIONEX:STXUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDTOK","d":[]},{"s":"UNISWAP3ETH:CRVUSDWBTC_F7FDDE.USD","d":[]},{"s":"BYBIT:ORTUSDT","d":[]},{"s":"HITBTC:REMUSDT","d":[]},{"s":"UNISWAP:PHYSICSWETH_8B7923","d":[]},{"s":"HITBTC:RLYUSDT","d":[]},{"s":"UNISWAP3ETH:DIAUSDC","d":[]},{"s":"WHITEBIT:ZECUSDT","d":[]},{"s":"SPOOKYSWAP:TOMBWFTM_2A6515","d":[]},{"s":"UNISWAP:THINGWETH_6F1D9F","d":[]},{"s":"UNISWAP:CHAINSWETH_11E6B3.USD","d":[]},{"s":"BINANCE:BONKUSDT","d":[]},{"s":"BITSTAMP:CHZEUR","d":[]},{"s":"UPBIT:MASKKRW","d":[]},{"s":"ZOOMEX:BAKEUSDT.P","d":[]},{"s":"TRADERJOE:DFIATWAVAX_7CA8E6","d":[]},{"s":"BYBIT:SOLOUSDT","d":[]},{"s":"BYBIT:ZENUSDT","d":[]},{"s":"BITGET:EOSBTC","d":[]},{"s":"GATEIO:WZMUSDT","d":[]},{"s":"BITFINEX:CCDBTC","d":[]},{"s":"UNISWAP3ETH:WETHPEOPLE","d":[]},{"s":"MEXC:PPXUSDT","d":[]},{"s":"BINANCE:SHIBTRY","d":[]},{"s":"UNISWAP:MCLWETH_EFAF70","d":[]},{"s":"UNISWAP3ETH:STORJUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAAG","d":[]},{"s":"UNISWAP:MEMWETH_21C5EA","d":[]},{"s":"TRADERJOE:KERMITWAVAX_A5739A.USD","d":[]},{"s":"UNISWAP3ETH:WETHS4F","d":[]},{"s":"GATEIO:KBOXUSDT","d":[]},{"s":"UNISWAP3ETH:USDCSAND","d":[]},{"s":"BITRUE:EOSETH","d":[]},{"s":"UNISWAP:MCHCWETH_5B272C.USD","d":[]},{"s":"UNISWAP3ETH:BITCOINDAI","d":[]},{"s":"BYBIT:HBARUSDT","d":[]},{"s":"QUICKSWAP:RVRSUSDC_C0405F","d":[]},{"s":"UNISWAP3ARBITRUM:BOMEWETH_1931FC.USD","d":[]},{"s":"OKX:SANDUSDT.P","d":[]},{"s":"UNISWAP3ETH:ANGLEWETH","d":[]},{"s":"KRAKEN:AAVEEUR","d":[]},{"s":"BITSTAMP:DOGEEUR","d":[]},{"s":"UNISWAP3ETH:AUTOWETH","d":[]},{"s":"UNISWAP3ETH:GNUSWETH","d":[]},{"s":"UNISWAP3ETH:WTAOWETH","d":[]},{"s":"COINEX:ORCAUSDT","d":[]},{"s":"GATEIO:KABYUSDT","d":[]},{"s":"UNISWAP:VXONWETH_98E940","d":[]},{"s":"GATEIO:TDROPUSDT","d":[]},{"s":"BINANCEUS:SOLETH","d":[]},{"s":"UNISWAP:DOPWETH_00AA1C.USD","d":[]},{"s":"SPOOKYSWAP:XRLCWFTM_732CF5","d":[]},{"s":"UNISWAP:YARDBOYZWETH_3AFE88.USD","d":[]},{"s":"UNISWAP3ETH:MAHAWETH_B28DDF.USD","d":[]},{"s":"GATEIO:CYBERUSDT","d":[]},{"s":"UNISWAP3ETH:USDCCRUNCH","d":[]},{"s":"UNISWAP:LOVEWETH_7E966B.USD","d":[]},{"s":"UNISWAP:MINIONSWETH_D01CF7.USD","d":[]},{"s":"GATEIO:ESSUSDT","d":[]},{"s":"UNISWAP3ETH:DGWETH_7E719F.USD","d":[]},{"s":"OKX:ONTUSDT.P","d":[]},{"s":"COINEX:RJVUSDT","d":[]},{"s":"SPOOKYSWAP:STAWFTM_1CE91D.USD","d":[]},{"s":"BISWAP:GALAWBNB_4F00AD.USD","d":[]},{"s":"BINANCE:JOETRY","d":[]},{"s":"COINEX:SIDESHIFTUSDT","d":[]},{"s":"PIONEX:CROUSDT.P","d":[]},{"s":"BINGX:MOVRUSDT.P","d":[]},{"s":"UNISWAP3ARBITRUM:WARKUSDC_4DE80B.USD","d":[]},{"s":"BINANCEUS:SANDUSDT","d":[]},{"s":"UNISWAP3ETH:1INCHUSDT","d":[]},{"s":"TRADERJOE:SLOTWAVAX_04FC1C.USD","d":[]},{"s":"UNISWAP3POLYGON:ICNXUSDT_3E70C8.USD","d":[]},{"s":"BINANCE:DYMBTC","d":[]},{"s":"GATEIO:1ARTUSDT","d":[]},{"s":"UNISWAP:BLUESPARROWWETH_D2CE78","d":[]},{"s":"TRADERJOE:RELAYWAVAX_41F309.USD","d":[]},{"s":"WHITEBIT:USDTBGN","d":[]},{"s":"UNISWAP3ETH:WETHALT","d":[]},{"s":"UNISWAP3ETH:PCHWETH","d":[]},{"s":"MEXC:LEVERUSDT.P","d":[]},{"s":"MEXC:KNOBUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LGWETH_D0851B.USD","d":[]},{"s":"GEMINI:CHZUSD","d":[]},{"s":"WHITEBIT:LTCUAH","d":[]},{"s":"KRAKEN:ACAEUR","d":[]},{"s":"BITFINEX:TIABTC","d":[]},{"s":"UNISWAP:GYOSHIWETH_EA9DB7","d":[]},{"s":"GATEIO:XRPUSDT","d":[]},{"s":"PHEMEX:POWRUSDT.P","d":[]},{"s":"UNISWAP:XYOWETH_A986F2","d":[]},{"s":"GATEIO:NTRNUSDT","d":[]},{"s":"BINANCE:NEAREUR","d":[]},{"s":"MEXC:STPTUSDT","d":[]},{"s":"BINANCE:ATOMBNB","d":[]},{"s":"ZOOMEX:GODSUSDT.P","d":[]},{"s":"PHEMEX:DENTUSDT.P","d":[]},{"s":"UNISWAP:RMDWETH_F624B0.USD","d":[]},{"s":"UNISWAP:LMWRWETH_03296F.USD","d":[]},{"s":"HITBTC:LPTUSDC","d":[]},{"s":"GATEIO:SKEBUSDT","d":[]},{"s":"MEXC:TTTUUSDT","d":[]},{"s":"UNISWAP3ETH:WHITEWETH","d":[]},{"s":"GATEIO:GORILLAUSDT","d":[]},{"s":"GATEIO:ITEMUSDT","d":[]},{"s":"UNISWAP3ETH:WFLOWUSDC","d":[]},{"s":"UNISWAP:ENXSWETH_12AE60","d":[]},{"s":"COINEX:LBCBTC","d":[]},{"s":"PANGOLIN:AAVEWAVAX_5F233A","d":[]},{"s":"GATEIO:DEGOUSDT","d":[]},{"s":"POLONIEX:MYROUSDT","d":[]},{"s":"MEXC:XCHNGUSDT","d":[]},{"s":"ZOOMEX:TLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:SETH2RETH2_A9FFB2.USD","d":[]},{"s":"UNISWAP3ETH:WETH20MANTS","d":[]},{"s":"BTSE:BTCUSD","d":[]},{"s":"QUICKSWAP:ZENNYUSDT_0ABCD9","d":[]},{"s":"UNISWAP:0XAISWAPWETH_54A89E.USD","d":[]},{"s":"ZOOMEX:RIFUSDT.P","d":[]},{"s":"BYBIT:GGMUSDT","d":[]},{"s":"UNISWAP3ETH:USDTXAUT","d":[]},{"s":"HITBTC:EMCETH","d":[]},{"s":"UNISWAP:CRWETH_05AE02.USD","d":[]},{"s":"TRADERJOE:GBWAVAX_7EC396.USD","d":[]},{"s":"UNISWAP3ETH:USDCYLD","d":[]},{"s":"UNISWAP:MTLXWETH_A71D01","d":[]},{"s":"MEXC:DIONEUSDT","d":[]},{"s":"BINANCE:CHZUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:BOOWETH_FA1915.USD","d":[]},{"s":"GATEIO:CFXUSDT.3L","d":[]},{"s":"BITMEX:ETHUSDT.P","d":[]},{"s":"POLONIEX:SSVUSDD","d":[]},{"s":"WOONETWORK:LOOKSUSDT","d":[]},{"s":"UNISWAP:CRATEWETH_5D4BF2","d":[]},{"s":"UNISWAP:DANWETH_12EB81","d":[]},{"s":"UNISWAP3ETH:TROLLWETH_F46DAD.USD","d":[]},{"s":"UNISWAP3OPTIMISM:SUSDUSDC_252CBD.USD","d":[]},{"s":"BINANCE:SANDBTC","d":[]},{"s":"QUICKSWAP:DOSEWMATIC_349026.USD","d":[]},{"s":"GATEIO:REDTOKENUSDT","d":[]},{"s":"UNISWAP3ETH:WETHGPT","d":[]},{"s":"UNISWAP3OPTIMISM:DTOROUSDT_25FBBE.USD","d":[]},{"s":"HITBTC:BTCBAMUSDT","d":[]},{"s":"HITBTC:OMGETH","d":[]},{"s":"UNISWAP3ETH:WBTCSHIB","d":[]},{"s":"BITGET:CTKUSDT.P","d":[]},{"s":"COINBASE:GRTUSD","d":[]},{"s":"BITGET:AIMXUSDT","d":[]},{"s":"MEXC:SOLANACEOUSDT","d":[]},{"s":"UNISWAP3ETH:MORKWETH_096122.USD","d":[]},{"s":"BINANCE:UNIBNB","d":[]},{"s":"MEXC:VANRYUSDT.P","d":[]},{"s":"ZOOMEX:REQUSDT.P","d":[]},{"s":"MEXC:RDEXUSDT","d":[]},{"s":"BITHUMB:STPTKRW","d":[]},{"s":"COINEX:CGPTUSDT","d":[]},{"s":"UNISWAP:HUSLWETH_98D266.USD","d":[]},{"s":"UNISWAP3ETH:GOOBY2.0WETH","d":[]},{"s":"GATEIO:JFIUSDT","d":[]},{"s":"OKX:CELUSDT.P","d":[]},{"s":"UNISWAP:SPECTREWETH_8A6D95","d":[]},{"s":"BINANCEUS:IMXUSDT","d":[]},{"s":"KRAKEN:PEPEUSD","d":[]},{"s":"UNISWAP:NEURONIWETH_55D88D","d":[]},{"s":"UNISWAP3ETH:QKNTLWETH","d":[]},{"s":"UNISWAP3POLYGON:USDCWBTC_E6BA22.USD","d":[]},{"s":"BINANCE:VIBBTC","d":[]},{"s":"GATEIO:SGBUSDT","d":[]},{"s":"BINANCE:ICPETH","d":[]},{"s":"QUICKSWAP:KOMQUICK_082B58.USD","d":[]},{"s":"HITBTC:ETHBRL","d":[]},{"s":"UNISWAP3ETH:WETHAURA","d":[]},{"s":"BISWAP:UNIWBNB_153DC2","d":[]},{"s":"UNISWAP3ETH:RNGWBTC_C2C9DD.USD","d":[]},{"s":"UNISWAP3POLYGON:YPREDUSDT_F623B8.USD","d":[]},{"s":"KRAKEN:CRVUSD","d":[]},{"s":"UNISWAP:VOWWETH_7FDEB4","d":[]},{"s":"HITBTC:VICUSDT","d":[]},{"s":"XEXCHANGE:UMBWEGLD","d":[]},{"s":"GATEIO:BBFUSDT","d":[]},{"s":"DELTA:SOLUSDT","d":[]},{"s":"BYBIT:HOOKUSDT","d":[]},{"s":"PIONEX:APTUSDT.P","d":[]},{"s":"UNISWAP:0XLPWETH_3B9ABE.USD","d":[]},{"s":"PHEMEX:REEFUSDT","d":[]},{"s":"UNISWAP:COSHIWETH_1C6FAF.USD","d":[]},{"s":"BINANCE:ZILBTC","d":[]},{"s":"PIONEX:SNXUSDT.P","d":[]},{"s":"KRAKEN:ATOMETH","d":[]},{"s":"UNISWAP3ARBITRUM:VSTAUSDC_90605A.USD","d":[]},{"s":"GATEIO:DOGGYUSDT","d":[]},{"s":"BTSE:KSMUSD.P","d":[]},{"s":"HITBTC:LOANUSD","d":[]},{"s":"BINANCE:CTSIUSDT","d":[]},{"s":"UNISWAP3ETH:KNIGHTWETH","d":[]},{"s":"UNISWAP:BOTCWETH_13E088","d":[]},{"s":"POLONIEX:LUNCUSDD","d":[]},{"s":"BITGET:RUNEUSDT.P","d":[]},{"s":"BITGET:DODOUSDT","d":[]},{"s":"UNISWAP3POLYGON:SANDWMATIC_E1838B.USD","d":[]},{"s":"UNISWAP3ETH:MANAWETH","d":[]},{"s":"POLONIEX:YGGUSDT","d":[]},{"s":"HITBTC:STNDUSDT","d":[]},{"s":"MEXC:HEARTUSDT","d":[]},{"s":"WHITEBIT:NEXOUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBLOX","d":[]},{"s":"BINGX:FLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHRAIT","d":[]},{"s":"BITFINEX:QTFBTC","d":[]},{"s":"HITBTC:TELUSD","d":[]},{"s":"UNISWAP:DSYNCWETH_1FFEC7","d":[]},{"s":"UNISWAP3ETH:WETHTENET","d":[]},{"s":"UNISWAP:WBTCWETH_BB2B80.USD","d":[]},{"s":"UNISWAP3ETH:PEPEUSDC","d":[]},{"s":"UNISWAP:VOLTWETH_96AA22","d":[]},{"s":"MEXC:OXTUSDT","d":[]},{"s":"COINEX:MATHUSDT","d":[]},{"s":"UNISWAP3ETH:USDCWTAO","d":[]},{"s":"PHEMEX:CHZUSDT","d":[]},{"s":"UNISWAP:STETHWETH_4028DA","d":[]},{"s":"POLONIEX:TUSDUSDD","d":[]},{"s":"COINEX:CELUSDT","d":[]},{"s":"SPOOKYSWAP:APEWFTM_C9FB68","d":[]},{"s":"GATEIO:SEAMUSDT","d":[]},{"s":"QUICKSWAP:PANDORAWMATIC_359C63","d":[]},{"s":"BITRUE:MTLUSDT","d":[]},{"s":"UNISWAP3POLYGON:WMATICUSDT_9B0828.USD","d":[]},{"s":"UNISWAP:ETHERBITCOIN_3D86E6.USD","d":[]},{"s":"GATEIO:BOAUSDT","d":[]},{"s":"BTSE:KLAYUSD.P","d":[]},{"s":"UNISWAP3POLYGON:WIFIUSDC_A33BB2.USD","d":[]},{"s":"COINEX:FORTUSDT","d":[]},{"s":"HITBTC:CFXUSDT","d":[]},{"s":"PIONEX:SUSHIUSDT.P","d":[]},{"s":"MEXC:ARBUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHYUMYUM","d":[]},{"s":"UNISWAP:ACYCWETH_C7B7DA.USD","d":[]},{"s":"UNISWAP3ETH:AHTWETH","d":[]},{"s":"UNISWAP:KTOWETH_20893B.USD","d":[]},{"s":"UNISWAP3POLYGON:POOKWMATIC_79DF94.USD","d":[]},{"s":"WOONETWORK:AAVEUSDT","d":[]},{"s":"UNISWAP:URUSWETH_EBD54A","d":[]},{"s":"UNISWAP3ETH:USDCKABOSU","d":[]},{"s":"MEXC:SHIBUSDC","d":[]},{"s":"EXMO:ETHLTC","d":[]},{"s":"BINANCE:MATICFDUSD","d":[]},{"s":"GATEIO:NERDUSDT","d":[]},{"s":"QUICKSWAP:OMSXWMATIC_1D1FA3","d":[]},{"s":"COINEX:BANDUSDT","d":[]},{"s":"BITHUMB:ASTRKRW","d":[]},{"s":"WHITEBIT:DOTBTC","d":[]},{"s":"GEMINI:SANDUSD","d":[]},{"s":"UNISWAP:ABYSSWETH_5FC0F8","d":[]},{"s":"COINBASE:CRVEUR","d":[]},{"s":"GATEIO:OSMOUSDT","d":[]},{"s":"WHITEBIT:MANABTC","d":[]},{"s":"UNISWAP:TKXWETH_DAB143.USD","d":[]},{"s":"MEXC:ACHUSDT.P","d":[]},{"s":"UNISWAP:TETRISWETH_43F9A2","d":[]},{"s":"COINEX:XTZBTC","d":[]},{"s":"UNISWAP3ETH:SMTUSDC_6DCA2B.USD","d":[]},{"s":"UNISWAP3ETH:SAILWETH","d":[]},{"s":"UNISWAP3ETH:BANKWETH","d":[]},{"s":"UNISWAP:WHALEWETH_4FDA00","d":[]},{"s":"BISWAP:BFGBSW_88D483.USD","d":[]},{"s":"UNISWAP3ETH:WETHMNRCH","d":[]},{"s":"MEXC:XRISEUSDT","d":[]},{"s":"UNISWAP3ETH:ALEPHWETH_A424CE.USD","d":[]},{"s":"BITKUB:FXSTHB","d":[]},{"s":"BINANCE:QTUMBTC","d":[]},{"s":"UNISWAP3ETH:WETHZVT","d":[]},{"s":"BITFINEX:ETHWUST","d":[]},{"s":"HITBTC:CPTUSD","d":[]},{"s":"UNISWAP3ETH:WETHGBPT","d":[]},{"s":"BITGET:TRXUSDC","d":[]},{"s":"PHEMEX:SLNUSDT","d":[]},{"s":"UNISWAP3ETH:SGTUSDT","d":[]},{"s":"UNISWAP3ETH:ERROR404WETH_E0A5A7.USD","d":[]},{"s":"QUICKSWAP:POLDOWMATIC_0991E9.USD","d":[]},{"s":"UNISWAP3ETH:USDTVEXT","d":[]},{"s":"BINANCE:JTOFDUSD","d":[]},{"s":"UNISWAP3ETH:USDVUSDC","d":[]},{"s":"UNISWAP3ETH:DXNWETH_7F808F.USD","d":[]},{"s":"ZOOMEX:ARUSDT.P","d":[]},{"s":"HITBTC:BDXBTC","d":[]},{"s":"UNISWAP3ETH:USDCGRT","d":[]},{"s":"MEXC:CRVUSDT","d":[]},{"s":"DERIBIT:DOTUSDC.P","d":[]},{"s":"UNISWAP:CULTWETH_5281E3","d":[]},{"s":"BITGET:BRCTUSDT","d":[]},{"s":"UNISWAP:FETWETH_4042A0","d":[]},{"s":"PHEMEX:SUSHIUSDT","d":[]},{"s":"HITBTC:SENTBTC","d":[]},{"s":"ZOOMEX:LPTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHKEX","d":[]},{"s":"MEXC:DCUSDT","d":[]},{"s":"UNISWAP:OKINAMIUSDC_5AD745","d":[]},{"s":"MEXC:CTGUSDT","d":[]},{"s":"GATEIO:DFIUSDT","d":[]},{"s":"BINANCE:RARETRY","d":[]},{"s":"POLONIEX:OSMOUSDT","d":[]},{"s":"BITGET:RLCUSDT","d":[]},{"s":"PHEMEX:OPUSDT.P","d":[]},{"s":"GATEIO:AIRUSDT","d":[]},{"s":"BINANCE:STXUSDT","d":[]},{"s":"UNISWAP3ETH:USDTXYO","d":[]},{"s":"UNISWAP3ETH:TBTCWETH_979442.USD","d":[]},{"s":"DYDX:COMPUSD.P","d":[]},{"s":"UNISWAP:GOSWETH_1F8592","d":[]},{"s":"BITFINEX:MEMEUST","d":[]},{"s":"UNISWAP:T2VWETH_48051C","d":[]},{"s":"GATEIO:EVERUSDT","d":[]},{"s":"GATEIO:CTIUSDT","d":[]},{"s":"GATEIO:EOSUSDT.5S","d":[]},{"s":"MEXC:NGCUSDT","d":[]},{"s":"BINANCE:MATICTUSD","d":[]},{"s":"GATEIO:TOOLSUSDT","d":[]},{"s":"GATEIO:HYVEUSDT","d":[]},{"s":"BINGX:RONUSDT.P","d":[]},{"s":"GATEIO:AITECHUSDT","d":[]},{"s":"MEXC:FPFTUSDT","d":[]},{"s":"GATEIO:PRIDEUSDT","d":[]},{"s":"UNISWAP3ETH:CREUSDT","d":[]},{"s":"HITBTC:INSURUSDT","d":[]},{"s":"BITGET:KDAUSDT","d":[]},{"s":"BINANCE:ARKMTUSD","d":[]},{"s":"UNISWAP3ETH:DENTWETH_8B6ED5.USD","d":[]},{"s":"UNISWAP3ETH:USDTWILD","d":[]},{"s":"QUICKSWAP:TDAODAI_93EF40","d":[]},{"s":"BINGX:COMBOUSDT.P","d":[]},{"s":"MEXC:OMAXUSDT","d":[]},{"s":"PANGOLIN:HCTWAVAX_0B1EFD","d":[]},{"s":"UNISWAP3ETH:USDTNXRA","d":[]},{"s":"UNISWAP3ARBITRUM:SANCTAWETH_D55E15.USD","d":[]},{"s":"PIONEX:BTCETH.P","d":[]},{"s":"TRADERJOE:WIFWAVAX_4E733F","d":[]},{"s":"UNISWAP3ETH:OSKYWETH_43A940.USD","d":[]},{"s":"UNISWAP:DODOWETH_B41E4E.USD","d":[]},{"s":"COINEX:BIFIUSDT","d":[]},{"s":"COINBASE:ATOMBTC","d":[]},{"s":"BINANCE:ARKUSDT","d":[]},{"s":"TRADERJOE:DUAWAVAX_794AAE","d":[]},{"s":"UNISWAP3ETH:USDTCO2A","d":[]},{"s":"GEMINI:ERNUSD","d":[]},{"s":"UNISWAP:MGKLWETH_57E1CE","d":[]},{"s":"GATEIO:ISKYUSDT","d":[]},{"s":"UNISWAP:PRQWETH_64CAC8","d":[]},{"s":"QUICKSWAP:GLMUSDC_04E2DC","d":[]},{"s":"GATEIO:YESPUSDT","d":[]},{"s":"PIONEX:FRONTUSDT.P","d":[]},{"s":"UNISWAP3ETH:SYNWETH_F37C1D.USD","d":[]},{"s":"BITFINEX:SANDUST.P","d":[]},{"s":"UNISWAP:TPADWETH_CD8804.USD","d":[]},{"s":"BYBIT:AGIUSDT.P","d":[]},{"s":"MEXC:SCUSDT","d":[]},{"s":"COINEX:DYMUSDT","d":[]},{"s":"UNISWAP3ETH:QORPOWETH_4495FE.USD","d":[]},{"s":"HITBTC:SLPBTC","d":[]},{"s":"UNISWAP:FUNDWETH_BAB761","d":[]},{"s":"UNISWAP3ETH:WAVAXWETH_3BD4C7.USD","d":[]},{"s":"SPOOKYSWAP:BIFIWFTM_165672.USD","d":[]},{"s":"UNISWAP3ETH:TRNG_5B5292.USD","d":[]},{"s":"UNISWAP3ARBITRUM:GMXUSDC_135E49.USD","d":[]},{"s":"TIMEX:ETHUSDT","d":[]},{"s":"COINEX:KAVABTC","d":[]},{"s":"BITHUMB:ARKMKRW","d":[]},{"s":"UNISWAP3ETH:BPXUSDC_183B1A.USD","d":[]},{"s":"BINGX:JASMYUSDT.PS","d":[]},{"s":"MEXC:DINOSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCOHM","d":[]},{"s":"GATEIO:WFAIUSDT","d":[]},{"s":"UNISWAP3POLYGON:GMTWMATIC_B21315.USD","d":[]},{"s":"UNISWAP3OPTIMISM:WETHUSDT_C858A3.USD","d":[]},{"s":"UNISWAP:SHIB20WETH_E1DE07.USD","d":[]},{"s":"BINANCE:MINATRY","d":[]},{"s":"UNISWAP3ETH:WETHOCC","d":[]},{"s":"BINGX:AEVOUSDT.PS","d":[]},{"s":"MEXC:OLEAUSDT","d":[]},{"s":"MEXC:SERUSDT","d":[]},{"s":"KRAKEN:BANDUSD.PM","d":[]},{"s":"BITHUMB:HUNTKRW","d":[]},{"s":"BITKUB:APETHB","d":[]},{"s":"UNISWAP3ETH:WETHWSTETH","d":[]},{"s":"UNISWAP3ETH:WETHLYXE","d":[]},{"s":"BITHUMB:CTXCKRW","d":[]},{"s":"UNISWAP3ETH:METHWETH","d":[]},{"s":"GATEIO:MAVIAUSDT","d":[]},{"s":"BINANCE:DYMFDUSD","d":[]},{"s":"UNISWAP3ETH:ARBRNG_6D9301.USD","d":[]},{"s":"UNISWAP3ETH:MFTUSDC","d":[]},{"s":"UNISWAP3ETH:MFGWETH","d":[]},{"s":"UNISWAP:PEPE20WETH_61BC0E","d":[]},{"s":"BITGET:VRAUSDT","d":[]},{"s":"BINANCE:SEITRY","d":[]},{"s":"UNISWAP3ETH:PTFUSDC","d":[]},{"s":"UNISWAP:RVFWETH_A66CDA.USD","d":[]},{"s":"GATEIO:LPTUSDT","d":[]},{"s":"UNISWAP:DEFROGSWETH_A76A9B.USD","d":[]},{"s":"HITBTC:MNDEUSDT","d":[]},{"s":"UNISWAP3ETH:DEVTUSDC","d":[]},{"s":"UNISWAP3ETH:BEANZFLC_B1EEA7.USD","d":[]},{"s":"UNISWAP:LMEOWWETH_6C2B60.USD","d":[]},{"s":"UNISWAP3ETH:TALKUSDT","d":[]},{"s":"WHITEBIT:WIFUSDT.P","d":[]},{"s":"BITRUE:RNDRUSDC","d":[]},{"s":"COINBASE:STXUSDT","d":[]},{"s":"UNISWAP3ETH:FLPWETH","d":[]},{"s":"POLONIEX:BSWAPUSDT","d":[]},{"s":"COINEX:WINGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNEXT","d":[]},{"s":"TRADERJOE:GSHAREWAVAX_AE427A.USD","d":[]},{"s":"GEMINI:INJGUSD.P","d":[]},{"s":"UNISWAP:MOOKWETH_70D4BF","d":[]},{"s":"GATEIO:BABYGROKUSDT","d":[]},{"s":"PHEMEX:XEMUSDT.P","d":[]},{"s":"UNISWAP:WALLYWETH_A2376A.USD","d":[]},{"s":"PANGOLIN:AVMEWAVAX_381CC7.USD","d":[]},{"s":"UNISWAP3ETH:SUREWETH","d":[]},{"s":"BINANCE:BTCTRY","d":[]},{"s":"POLONIEX:DOTUSDD","d":[]},{"s":"COINEX:NMCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPOW","d":[]},{"s":"HITBTC:MIMOUSDT","d":[]},{"s":"UNISWAP:SHROOMSWETH_9CE78C.USD","d":[]},{"s":"QUICKSWAP:NSFWWMATIC_9646A9.USD","d":[]},{"s":"SPOOKYSWAP:COFFINWFTM_473F32.USD","d":[]},{"s":"PHEMEX:DYMUSDT","d":[]},{"s":"BINANCE:IDUSDT","d":[]},{"s":"UNISWAP3POLYGON:LYAWMATIC_DB29C4.USD","d":[]},{"s":"GATEIO:LOCGUSDT","d":[]},{"s":"GATEIO:UBXSUSDT","d":[]},{"s":"BINANCE:RAYBNB","d":[]},{"s":"UNISWAP3ETH:PNPCWETH_4528C1.USD","d":[]},{"s":"MEXC:CRTSUSDT","d":[]},{"s":"COINEX:SFUNDUSDT","d":[]},{"s":"COINBASE:MATHUSD","d":[]},{"s":"GATEIO:ODDZUSDT","d":[]},{"s":"PIONEX:STPTUSDT.P","d":[]},{"s":"UNISWAP:BITROCKWETH_2854FB","d":[]},{"s":"WAGYUSWAP:BITORBWVLX_A4C1EE.USD","d":[]},{"s":"UNISWAP3ETH:WETHYUP","d":[]},{"s":"COINEX:AVAUSDT","d":[]},{"s":"UNISWAP:CARDWETH_6CD730.USD","d":[]},{"s":"TRADERJOE:BAVAWAVAX_5A9071.USD","d":[]},{"s":"BTSE:AAVEUSD","d":[]},{"s":"HITBTC:EUNOBTC","d":[]},{"s":"BITKUB:SUSHITHB","d":[]},{"s":"GATEIO:MUSEUSDT","d":[]},{"s":"UNISWAP:XAIWETH_01F491","d":[]},{"s":"BITGET:CAPSUSDT","d":[]},{"s":"UNISWAP3ETH:FORKWETH","d":[]},{"s":"UNISWAP3ETH:USDCITGR","d":[]},{"s":"UNISWAP:WBTCUSDC_004375","d":[]},{"s":"GATEIO:GETAUSDT","d":[]},{"s":"TRADERJOE:APEWAVAX_11BBFA","d":[]},{"s":"UNISWAP3ETH:USDMUSDT_4A25DB.USD","d":[]},{"s":"UNISWAP3ETH:WETHAISORA","d":[]},{"s":"UNISWAP:STRONGXWETH_2418A8.USD","d":[]},{"s":"UNISWAP:MADWETH_866A9C","d":[]},{"s":"UNISWAP:CRYOWETH_6FCEE8.USD","d":[]},{"s":"GATEIO:PLAUSDT","d":[]},{"s":"QUICKSWAP:MIMATICUSDC_160532","d":[]},{"s":"TRADERJOE:DONWAVAX_5D4677.USD","d":[]},{"s":"GATEIO:FTMUSDT","d":[]},{"s":"BITHUMB:FXKRW","d":[]},{"s":"GATEIO:UNDEADUSDT","d":[]},{"s":"ZOOMEX:MYRIAUSDT.P","d":[]},{"s":"BTSE:BANDUSD","d":[]},{"s":"HITBTC:XEMEOS","d":[]},{"s":"BITKUB:DOTTHB","d":[]},{"s":"MEXC:OREUSDT","d":[]},{"s":"UNISWAP3ETH:STBUUSDT_390A4D.USD","d":[]},{"s":"UNISWAP3ARBITRUM:AICODEWETH_E6A933.USD","d":[]},{"s":"UNISWAP3ETH:AAVERNG","d":[]},{"s":"MEXC:FLMUSDT.P","d":[]},{"s":"UNISWAP:NOVCWETH_2B3B3F.USD","d":[]},{"s":"UNISWAP:XCEPTWETH_5B3BE3.USD","d":[]},{"s":"BYBIT:GLMRUSDT.P","d":[]},{"s":"POLONIEX:LONG1USDT","d":[]},{"s":"MEXC:FTMUSDT.P","d":[]},{"s":"UNISWAP:SWFLWETH_2CACCF.USD","d":[]},{"s":"BITGET:1INCHUSDT","d":[]},{"s":"UNISWAP3ETH:ALPHWETH","d":[]},{"s":"UNISWAP3POLYGON:LDOUSDC_DA7928.USD","d":[]},{"s":"WAGYUSWAP:QMALLWVLX_7C4346","d":[]},{"s":"GATEIO:FTTUSDT.3S","d":[]},{"s":"UNISWAP3ETH:WETHHPO","d":[]},{"s":"UNISWAP:BOREDWETH_87949A","d":[]},{"s":"MEXC:NETVRUSDT","d":[]},{"s":"MEXC:LITUSDT","d":[]},{"s":"BYBIT:FITFIUSDT.P","d":[]},{"s":"BINANCE:BTCUSDC","d":[]},{"s":"UNISWAP:ECTWETH_5B4900.USD","d":[]},{"s":"UNISWAP:POOHWETH_AF06E7.USD","d":[]},{"s":"UNISWAP:CHADWETH_2DB388.USD","d":[]},{"s":"COINEX:PEPEUSDT","d":[]},{"s":"UNISWAP:FVTWETH_75001B.USD","d":[]},{"s":"UNISWAP:WARPWETH_A469D7.USD","d":[]},{"s":"KRAKEN:BALEUR","d":[]},{"s":"UNISWAP:FURWETH_099ED5.USD","d":[]},{"s":"MEXC:IWELLUSDT","d":[]},{"s":"UNISWAP:HDAOUSDC_A57797","d":[]},{"s":"UNISWAP3ETH:IDRTUSDT_B635A3.USD","d":[]},{"s":"WHITEBIT:XRPTRY","d":[]},{"s":"UNISWAP:TRNDWETH_5102F3.USD","d":[]},{"s":"UNISWAP:IPEPEWETH_9B1F19.USD","d":[]},{"s":"UNISWAP3ETH:CZWETH_7A5BEF.USD","d":[]},{"s":"UNISWAP3ETH:USDTMDT","d":[]},{"s":"UNISWAP:OASISWETH_97CE8C.USD","d":[]},{"s":"BINANCE:ASTRUSDT","d":[]},{"s":"BITGET:BGBBRL","d":[]},{"s":"BITHUMB:BIOTKRW","d":[]},{"s":"COINBASE:ICPUSD","d":[]},{"s":"TRADERJOE:CNRWAVAX_2B35C0","d":[]},{"s":"BITHUMB:GASKRW","d":[]},{"s":"COINEX:TENETUSDT","d":[]},{"s":"UNISWAP3ETH:SWETHWETH","d":[]},{"s":"GATEIO:LITHUSDT","d":[]},{"s":"UNISWAP:MEGABOTWETH_EC2895","d":[]},{"s":"UNISWAP:LEGENDWETH_A60A25","d":[]},{"s":"MEXC:KASUSDT","d":[]},{"s":"UNISWAP:ANVAWETH_3DA595.USD","d":[]},{"s":"BINANCE:OXTUSDT","d":[]},{"s":"BYBIT:SEIUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:VELAWETH_0CE541.USD","d":[]},{"s":"HITBTC:PLRUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCGMX_385B4B.USD","d":[]},{"s":"COINEX:CCDUSDT","d":[]},{"s":"POLONIEX:AVAXUSDC","d":[]},{"s":"WOONETWORK:1INCHUSDT","d":[]},{"s":"POLONIEX:SHUUSDT","d":[]},{"s":"UNISWAP3POLYGON:USDGLOUSDC_180BCF.USD","d":[]},{"s":"BINANCE:WAVESTRY","d":[]},{"s":"MEXC:KINUSDT","d":[]},{"s":"UNISWAP:SORAIWETH_1AD209","d":[]},{"s":"QUICKSWAP:SNEWMATIC_531269","d":[]},{"s":"UNISWAP3POLYGON:FRAXUSDC_BEAF71.USD","d":[]},{"s":"UNISWAP3ETH:WETHJELLY","d":[]},{"s":"BINANCE:SANDETH","d":[]},{"s":"BINANCEUS:FTMUSDT","d":[]},{"s":"GATEIO:SERSHUSDT","d":[]},{"s":"BITGET:SXPUSDT.P","d":[]},{"s":"UNISWAP3ETH:BEGWETH","d":[]},{"s":"GATEIO:BSVUSDT","d":[]},{"s":"COINEX:HOTUSDT","d":[]},{"s":"SPOOKYSWAP:SPACEWFTM_FAC555","d":[]},{"s":"BITFINEX:USTCNHT","d":[]},{"s":"UNISWAP:SEXYWETH_C88DEB.USD","d":[]},{"s":"MEXC:SPIDERUSDT","d":[]},{"s":"BITGET:GALAUSDT","d":[]},{"s":"UNISWAP:BACDAI_D4405F","d":[]},{"s":"KRAKEN:USDTUSD","d":[]},{"s":"MEXC:TBTUSDT","d":[]},{"s":"BITGET:NPTUSDT","d":[]},{"s":"TRADERJOE:420USDC_6E4D3E.USD","d":[]},{"s":"PANGOLIN:CYCLEWAVAX_51486D.USD","d":[]},{"s":"UNISWAP:RPLWETH_70EA56","d":[]},{"s":"BINANCE:KNCUSDT","d":[]},{"s":"QUICKSWAP:RONDUSDT_1A6F6A","d":[]},{"s":"BYBIT:AEVOUSDT","d":[]},{"s":"PHEMEX:HBARUSDT.P","d":[]},{"s":"MEXC:FUNDUSDT","d":[]},{"s":"UNISWAP:KUKUWETH_2FEC2A.USD","d":[]},{"s":"UNISWAP3ETH:WETHJARED","d":[]},{"s":"MEXC:GOTUSDT","d":[]},{"s":"OKX:STRKUSDT.P","d":[]},{"s":"MEXC:ETRLUSDT","d":[]},{"s":"COINEX:LADYSUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCWETH_E6FF8B.USD","d":[]},{"s":"HITBTC:WBTCUSDC","d":[]},{"s":"BITGET:IMGNAIUSDT","d":[]},{"s":"BYBIT:MINAUSDT.P","d":[]},{"s":"UNISWAP:TESOWETH_FAD04A.USD","d":[]},{"s":"MEXC:FELUSDT","d":[]},{"s":"UNISWAP:KAKUANWETH_D4B230","d":[]},{"s":"BITGET:LBRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMEVETH","d":[]},{"s":"UNISWAP3ETH:BCUTWETH","d":[]},{"s":"ZOOMEX:ZKFUSDT.P","d":[]},{"s":"PANGOLIN:ORCAWAVAX_73E6CB.USD","d":[]},{"s":"UNISWAP3ETH:VRAWETH_98409D.USD","d":[]},{"s":"UNISWAP3ETH:NOWWETH_3E9130.USD","d":[]},{"s":"POLONIEX:RLCUSDT","d":[]},{"s":"UNISWAP:PEIPEIWETH_F01E60.USD","d":[]},{"s":"HITBTC:BNTUSDC","d":[]},{"s":"UNISWAP3ETH:PASGWETH","d":[]},{"s":"WHITEBIT:1INCHUSDT","d":[]},{"s":"GATEIO:POWRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHQNT","d":[]},{"s":"UNISWAP:CONANWETH_10BFF0","d":[]},{"s":"UNISWAP:HEXUSDT_BBB9BF","d":[]},{"s":"UNISWAP3ARBITRUM:XDRAGONWETH_217BB2.USD","d":[]},{"s":"TRADERJOE:LORDWAVAX_2063B0","d":[]},{"s":"UNISWAP:DROPSWETH_9F8512.USD","d":[]},{"s":"POLONIEX:BOMEUSDT","d":[]},{"s":"BITGET:COREUSDT.P","d":[]},{"s":"UNISWAP3ETH:BLURUSDC_38FEE5.USD","d":[]},{"s":"SPOOKYSWAP:CONKIWFTM_19F7C7.USD","d":[]},{"s":"KRAKEN:CRVUSD.PM","d":[]},{"s":"UNISWAP:T2VWETH_48051C.USD","d":[]},{"s":"TRADERJOE:COQWIFPORK404WAVAX_B00C12","d":[]},{"s":"SPOOKYSWAP:SLIMEWFTM_BD6D31.USD","d":[]},{"s":"UNISWAP:ZKWETH_F24BEC.USD","d":[]},{"s":"UNISWAP3ETH:USDTERC20","d":[]},{"s":"HITBTC:AAVEETH","d":[]},{"s":"UNISWAP:PAXGWETH_9C4FE5","d":[]},{"s":"UNISWAP:WAIFUWETH_A13550.USD","d":[]},{"s":"HITBTC:ATOMUSDC","d":[]},{"s":"HITBTC:ARNXBTC","d":[]},{"s":"UNISWAP:MOLLYWETH_0B1899","d":[]},{"s":"OKX:ALPHAUSDT.P","d":[]},{"s":"UNISWAP:KIRBYWETH_28200D","d":[]},{"s":"PHEMEX:LUNCUSDT","d":[]},{"s":"UNISWAP:WCTWETH_65B16E.USD","d":[]},{"s":"UNISWAP:FUUUUWETH_32A81F","d":[]},{"s":"UNISWAP:TRUMPWETH_0D1959","d":[]},{"s":"TRADERJOE:GSDUSDC_281276","d":[]},{"s":"UNISWAP3ETH:WETHHUNDRED","d":[]},{"s":"BYBIT:NIBIUSDT","d":[]},{"s":"MEXC:RADAUSDT","d":[]},{"s":"GATEIO:BEAMUSDT","d":[]},{"s":"UNISWAP3ETH:DINGERWETH","d":[]},{"s":"BITGET:DWARSUSDT","d":[]},{"s":"GATEIO:OCTUSDT","d":[]},{"s":"WOONETWORK:GALAUSDT","d":[]},{"s":"UNISWAP3ETH:STBUUSDT","d":[]},{"s":"GATEIO:SUIUSDT.3L","d":[]},{"s":"BITRUE:DODOADA","d":[]},{"s":"HITBTC:HOTBTC","d":[]},{"s":"UNISWAP:LMEOWWETH_6C2B60","d":[]},{"s":"GATEIO:TLMUSDT","d":[]},{"s":"UNISWAP:SFIWETH_C76225.USD","d":[]},{"s":"GATEIO:CWEBUSDT","d":[]},{"s":"POLONIEX:DOGEUSD","d":[]},{"s":"UNISWAP3ETH:WETHJESUS","d":[]},{"s":"MEXC:BTCHEROUSDT","d":[]},{"s":"BTSE:MATICUSD.P","d":[]},{"s":"UNISWAP3ETH:GALWETH","d":[]},{"s":"UNISWAP3ARBITRUM:BDTWETH_8FF829.USD","d":[]},{"s":"BITHUMB:FLUXKRW","d":[]},{"s":"DELTA:DYDXUSDT.P","d":[]},{"s":"BINANCE:ERNUSDT","d":[]},{"s":"POLONIEX:XTZUSD","d":[]},{"s":"BINANCE:STXBNB","d":[]},{"s":"TRADERJOE:AGFWAVAX_B92DFF","d":[]},{"s":"BITFINEX:AXSBTC","d":[]},{"s":"WHITEBIT:XLMUSDT","d":[]},{"s":"UNISWAP3ETH:COMPAAVE","d":[]},{"s":"OKX:PEOPLEUSDT.P","d":[]},{"s":"MEXC:RAYUSDT.P","d":[]},{"s":"BLOFIN:BANDUSDT.P","d":[]},{"s":"OKX:CRVUSDT.P","d":[]},{"s":"BTSE:AVAXUSD.P","d":[]},{"s":"QUICKSWAP:PRANAUSDC_65DF89","d":[]},{"s":"GATEIO:IOIUSDT","d":[]},{"s":"UNISWAP:SNSWETH_9D07DC.USD","d":[]},{"s":"KRAKEN:ETHWEUR","d":[]},{"s":"BITGET:SWEATUSDT","d":[]},{"s":"TRADERJOE:WILLYWAVAX_AA67ED.USD","d":[]},{"s":"UNISWAP:SNEEDWETH_344709.USD","d":[]},{"s":"UNISWAP:PINUWETH_56CB10","d":[]},{"s":"UNISWAP:STARWETH_D5D481","d":[]},{"s":"UNISWAP:YEETWETH_457862","d":[]},{"s":"UNISWAP3POLYGON:MKRWETH_D00877.USD","d":[]},{"s":"UNISWAP:ALICEWETH_30BC87","d":[]},{"s":"GATEIO:BRNUSDT","d":[]},{"s":"BITGET:GMXUSDT.P","d":[]},{"s":"BINANCE:LTCTUSD","d":[]},{"s":"SPOOKYSWAP:DEUSWFTM_AF918E","d":[]},{"s":"UNISWAP:COCOWETH_ED0683.USD","d":[]},{"s":"BINANCE:SLPUSDT","d":[]},{"s":"GATEIO:BTFUSDT","d":[]},{"s":"UNISWAP3ETH:USDC1EARTH","d":[]},{"s":"HITBTC:FYPUSD","d":[]},{"s":"UNISWAP3ETH:SUDOWETH_68D01E.USD","d":[]},{"s":"POLONIEX:UPPUSDT","d":[]},{"s":"UNISWAP:SHIBWETH_114120.USD","d":[]},{"s":"MEXC:MILOUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:BOBOP_7F1C91.USD","d":[]},{"s":"BYBIT:STRKUSDT","d":[]},{"s":"UNISWAP:MEMDWETH_CC8EAE.USD","d":[]},{"s":"UNISWAP:MOPSWETH_E21040","d":[]},{"s":"POLONIEX:KUBUSDT","d":[]},{"s":"BITRUE:ICPXRP","d":[]},{"s":"BYBIT:SOLUSDC.P","d":[]},{"s":"COINBASE:ALEPHUSD","d":[]},{"s":"QUICKSWAP:ORAREUSDT_8BEBD0","d":[]},{"s":"OKX:TIAUSDT.P","d":[]},{"s":"UNISWAP3ETH:XFUNDWETH","d":[]},{"s":"GATEIO:RANKERUSDT","d":[]},{"s":"GATEIO:RAIUSDT","d":[]},{"s":"WOONETWORK:ALGOUSDT","d":[]},{"s":"GATEIO:ALUUSDT","d":[]},{"s":"DERIBIT:BTCUSDC.P","d":[]},{"s":"UNISWAP:EEFIOHM_79FE75.USD","d":[]},{"s":"BINANCE:OXTBTC","d":[]},{"s":"SPOOKYSWAP:COVERWFTM_5DC784","d":[]},{"s":"COINEX:WNCGUSDT","d":[]},{"s":"BYBIT:EOSUSD.P","d":[]},{"s":"HITBTC:CVTUSD","d":[]},{"s":"KRAKEN:CELRUSD","d":[]},{"s":"UNISWAP:DBNBWETH_1E969A","d":[]},{"s":"POLONIEX:LINKUSDT","d":[]},{"s":"HITBTC:RBISUSDT","d":[]},{"s":"COINBASE:AAVEEUR","d":[]},{"s":"UNISWAP:LBRWETH_3FC429","d":[]},{"s":"HITBTC:XEMUSDC","d":[]},{"s":"UNISWAP3ETH:VMPXWETH_D6EB9A.USD","d":[]},{"s":"QUICKSWAP:BITTWMATIC_2B8D94.USD","d":[]},{"s":"UNISWAP3ARBITRUM:BPETXPET_037C7A.USD","d":[]},{"s":"HITBTC:COMPUSDT","d":[]},{"s":"UNISWAP3POLYGON:LDOSDEX_D51AF5.USD","d":[]},{"s":"UNISWAP3ETH:DOPWETH_B71008.USD","d":[]},{"s":"UNISWAP:NTVRKWETH_DDF839.USD","d":[]},{"s":"UNISWAP3ETH:SETH2WETH_DADCF6.USD","d":[]},{"s":"UPBIT:ORBSKRW","d":[]},{"s":"UNISWAP3ETH:USDCWSTETH","d":[]},{"s":"KRAKEN:UNFIEUR","d":[]},{"s":"UNISWAP:RHCWETH_531200","d":[]},{"s":"HITBTC:XLMHIT","d":[]},{"s":"UNISWAP3ETH:USDTBRD","d":[]},{"s":"UNISWAP3ETH:WETHPIP","d":[]},{"s":"POLONIEX:GMTUSDT","d":[]},{"s":"GATEIO:MOJOUSDT","d":[]},{"s":"BINGX:ETHWUSDT.P","d":[]},{"s":"BTSE:GRTUSD","d":[]},{"s":"QUICKSWAP:MONAQUICK_82F167","d":[]},{"s":"MEXC:EPXUSDT","d":[]},{"s":"ZOOMEX:ZENUSDT.P","d":[]},{"s":"BITFINEX:APPUST","d":[]},{"s":"UNISWAP3ETH:WETHAI","d":[]},{"s":"HITBTC:PYUSDUSDT","d":[]},{"s":"UNISWAP:DOKEWETH_CAB591.USD","d":[]},{"s":"KRAKEN:BTCEUR","d":[]},{"s":"UNISWAP:BONK20WETH_94D9D7.USD","d":[]},{"s":"UNISWAP3ETH:MKRUSDC_0F9D9D.USD","d":[]},{"s":"BITGET:ETHBTC","d":[]},{"s":"MEXC:SORAUSDT","d":[]},{"s":"UNISWAP:CODEXWETH_846E72","d":[]},{"s":"UNISWAP3ETH:INDEXWETH","d":[]},{"s":"POLONIEX:WETHUSDT","d":[]},{"s":"MEXC:POKTUSDT","d":[]},{"s":"UNISWAP3ETH:CHEXWETH_D3E989.USD","d":[]},{"s":"UNISWAP3ETH:WETHSDAI","d":[]},{"s":"UNISWAP:BUBUWETH_1BC00B","d":[]},{"s":"MEXC:AISWAPUSDT","d":[]},{"s":"MEXC:GAX1USDT","d":[]},{"s":"BYBIT:ETHUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:THALESWETH_447F7B.USD","d":[]},{"s":"BINGX:STMXUSDT.PS","d":[]},{"s":"BITRUE:VETBTR","d":[]},{"s":"BITFINEX:XTPBTC","d":[]},{"s":"BYBIT:LTCUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHSTORJ","d":[]},{"s":"UNISWAP:BEASTWETH_E98D3F","d":[]},{"s":"POLONIEX:SPOODYUSDT","d":[]},{"s":"UNISWAP:MITXWETH_51FE8E.USD","d":[]},{"s":"UNISWAP3ETH:VEEWETH_426705.USD","d":[]},{"s":"UNISWAP:PAPIWETH_FE17AB.USD","d":[]},{"s":"POLONIEX:SHIBUSDT","d":[]},{"s":"KRAKEN:MATICUSD","d":[]},{"s":"UNISWAP3POLYGON:FORTUSDT_2C50A9.USD","d":[]},{"s":"PANGOLIN:MEMOWAVAX_47DD92","d":[]},{"s":"MEXC:FEARUSDT","d":[]},{"s":"MEXC:GORAUSDT","d":[]},{"s":"UNISWAP:BCNTRWETH_1A7489","d":[]},{"s":"UNISWAP:YFIMWETH_C3FA0A","d":[]},{"s":"EXMO:DASHBTC","d":[]},{"s":"UNISWAP3ETH:BOOWETH_40A800.USD","d":[]},{"s":"HITBTC:CELRUSDT","d":[]},{"s":"SPOOKYSWAP:MATICWFTM_7051C6","d":[]},{"s":"UNISWAP:INUSWETH_5EAD54.USD","d":[]},{"s":"XEXCHANGE:DEADUSDC","d":[]},{"s":"DELTA:ARBUSDT.P","d":[]},{"s":"UNISWAP3ETH:STATEWETH","d":[]},{"s":"UNISWAP:OREWETH_1069CE","d":[]},{"s":"HITBTC:SXPBTC","d":[]},{"s":"UNISWAP:BETSWETH_A4592E.USD","d":[]},{"s":"UNISWAP3ETH:OSETHUSDC_C2A679.USD","d":[]},{"s":"UNISWAP:PEPEWETH_A43FE1.USD","d":[]},{"s":"PHEMEX:CVXUSDT.P","d":[]},{"s":"BYBIT:XRPUSDT.P","d":[]},{"s":"UNISWAP3ETH:WILDWETH","d":[]},{"s":"BITGET:PLANETUSDT","d":[]},{"s":"KRAKEN:GMTEUR","d":[]},{"s":"UNISWAP3ARBITRUM:HEGICWETH_07BDCF.USD","d":[]},{"s":"UNISWAP3ETH:WETHREPV2","d":[]},{"s":"UNISWAP:QSPWETH_0A05E2.USD","d":[]},{"s":"UNISWAP3ETH:COMPRNG_565A74.USD","d":[]},{"s":"BINGX:MAVUSDT.P","d":[]},{"s":"SPOOKYSWAP:POOCHWFTM_5D898D","d":[]},{"s":"BITFINEX:IDXBTC","d":[]},{"s":"UNISWAP:VETMEWETH_30361F","d":[]},{"s":"BYBIT:ALGOBTC","d":[]},{"s":"UNISWAP3ETH:WETHBLID","d":[]},{"s":"UNISWAP:NOBODYWETH_775E4D.USD","d":[]},{"s":"BYBIT:GMTUSDT.2L","d":[]},{"s":"MEXC:ZPCUSDT","d":[]},{"s":"KRAKEN:FXSUSD.PM","d":[]},{"s":"MEXC:KAVAUSDT","d":[]},{"s":"UNISWAP:TIPJAWETH_9C625E.USD","d":[]},{"s":"BINANCE:DYDXTRY","d":[]},{"s":"UNISWAP:INFRAWETH_FDCDED","d":[]},{"s":"UNISWAP:PLANETWETH_9B20E0","d":[]},{"s":"UNISWAP3ETH:WETHGAS","d":[]},{"s":"BITGET:ADAUSDT","d":[]},{"s":"UNISWAP3ETH:GPOOLWETH","d":[]},{"s":"UNISWAP:KENNYWETH_B4AA76.USD","d":[]},{"s":"COINEX:AXSUSDT","d":[]},{"s":"GATEIO:XMRUSDT","d":[]},{"s":"UNISWAP:KAPWETH_482000.USD","d":[]},{"s":"UNISWAP3OPTIMISM:USDCSUSD_06F692.USD","d":[]},{"s":"GATEIO:PDEXUSDT","d":[]},{"s":"UNISWAP:UNITYBOTWETH_93BCF5.USD","d":[]},{"s":"GATEIO:XEMUSDT","d":[]},{"s":"GATEIO:STNDUSDT","d":[]},{"s":"QUICKSWAP:YAYOWMATIC_16590B.USD","d":[]},{"s":"BINANCE:SCETH","d":[]},{"s":"HITBTC:CHRUSDT","d":[]},{"s":"ZOOMEX:AMBUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:RNDRUSDC_F82343.USD","d":[]},{"s":"UNISWAP3ETH:SHIBA2USDT","d":[]},{"s":"TRADERJOE:ARENAWAVAX_E9A53E","d":[]},{"s":"BINANCEUS:ETHUSDT","d":[]},{"s":"KRAKEN:ALPHAUSD.PM","d":[]},{"s":"KRAKEN:GHSTBTC","d":[]},{"s":"UNISWAP3ETH:TFTDAI_7426B3.USD","d":[]},{"s":"MEXC:FTMUSDC","d":[]},{"s":"UNISWAP3ETH:WBTCAMKT","d":[]},{"s":"GATEIO:CGVUSDT","d":[]},{"s":"PHEMEX:INJUSDT.P","d":[]},{"s":"UNISWAP3ETH:1EARTHUSDC","d":[]},{"s":"HITBTC:HVNETH","d":[]},{"s":"UNISWAP3ETH:WETHCBETH","d":[]},{"s":"BYBIT:MANAUSDT.P","d":[]},{"s":"HITBTC:ASTRUSDT","d":[]},{"s":"UNISWAP3ETH:BEPROWETH_695B30.USD","d":[]},{"s":"KRAKEN:USDTUSD.PM","d":[]},{"s":"HITBTC:MIMOBTC","d":[]},{"s":"BINANCEUS:ALICEUSDT","d":[]},{"s":"COINEX:CAKEBTC","d":[]},{"s":"UNISWAP3ETH:L2WETH","d":[]},{"s":"BYBIT:AEGUSDT","d":[]},{"s":"UNISWAP:ALVAWETH_4D2BEB","d":[]},{"s":"UNISWAP:ORACLEWETH_A4D6E4","d":[]},{"s":"QUICKSWAP:REVVWMATIC_70BAC4","d":[]},{"s":"UNISWAP3POLYGON:MINDWETH_6741C1.USD","d":[]},{"s":"UNISWAP3ETH:METISWETH_1C9856.USD","d":[]},{"s":"MEXC:KATAUSDT","d":[]},{"s":"UNISWAP:ROCIUSDC_28C82C","d":[]},{"s":"BITRUE:DOTXRP","d":[]},{"s":"UNISWAP3POLYGON:EURTWMATIC_FA0C8C.USD","d":[]},{"s":"POLONIEX:BYPASSUSDT","d":[]},{"s":"BYBIT:ICPUSDT.P","d":[]},{"s":"UNISWAP:LOVEWBTC_C149D5","d":[]},{"s":"SPOOKYSWAP:AXLUSDCBOO_564F85.USD","d":[]},{"s":"PANGOLIN:CLYWAVAX_997B92.USD","d":[]},{"s":"GATEIO:ETH2USDT","d":[]},{"s":"UNISWAP:DUCKERWETH_94293B.USD","d":[]},{"s":"POLONIEX:XRPUSDC","d":[]},{"s":"WHITEBIT:PIXELUSDT","d":[]},{"s":"UNISWAP3ETH:SKYNETUSDC_963B7A.USD","d":[]},{"s":"COINEX:VITEUSDT","d":[]},{"s":"BITRUE:AVAXXRP","d":[]},{"s":"HITBTC:POLISUSD","d":[]},{"s":"UNISWAP3POLYGON:PHLWMATIC_EA2D34.USD","d":[]},{"s":"COINEX:EPXUSDT","d":[]},{"s":"UNISWAP3ETH:USDT1INCH","d":[]},{"s":"SPOOKYSWAP:DMDWFTM_F10F0E","d":[]},{"s":"KRAKEN:SNXBTC","d":[]},{"s":"UNISWAP3ARBITRUM:WAKAWETH_2CDE27.USD","d":[]},{"s":"KRAKEN:ADAUSD","d":[]},{"s":"MEXC:FRONTUSDT.P","d":[]},{"s":"GATEIO:OVOUSDT","d":[]},{"s":"BINANCE:VETETH","d":[]},{"s":"BINGX:ARKUSDT.P","d":[]},{"s":"UNISWAP:KIBAWETH_AC6776","d":[]},{"s":"UNISWAP3ETH:TREEWETH","d":[]},{"s":"UNISWAP:BIGSBWETH_BE44E5","d":[]},{"s":"UNISWAP3ETH:RSETHWETH_CB9A55.USD","d":[]},{"s":"BITGET:LDOUSDT","d":[]},{"s":"UNISWAP:DEXIOWETH_1AACE5","d":[]},{"s":"BINANCE:BNTBTC","d":[]},{"s":"HITBTC:VALUEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDACAT","d":[]},{"s":"MEXC:SMARSUSDT","d":[]},{"s":"TRADERJOE:EXPUSDTE_EBF7A3.USD","d":[]},{"s":"BINGX:XLMUSDT.PS","d":[]},{"s":"BINGX:LUNCUSDT.PS","d":[]},{"s":"COINEX:NIBIUSDT","d":[]},{"s":"UNISWAP3POLYGON:OXWETH_12BFFE.USD","d":[]},{"s":"COINBASE:AERGOUSD","d":[]},{"s":"KRAKEN:MATICUSD.PM","d":[]},{"s":"TRADERJOE:ECDWAVAX_218E6A","d":[]},{"s":"BITFINEX:XRPUST","d":[]},{"s":"UNISWAP3ETH:WETHENZF","d":[]},{"s":"UNISWAP:PAXGWETH_9C4FE5.USD","d":[]},{"s":"UNISWAP:DGMVWETH_4D7128","d":[]},{"s":"COINEX:QNTBTC","d":[]},{"s":"BITRUE:CVCUSDT","d":[]},{"s":"COINEX:AYAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPIXL","d":[]},{"s":"UNISWAP:LEGXWETH_5091D1","d":[]},{"s":"UNISWAP3ETH:STGWETH_6CE6D6.USD","d":[]},{"s":"UNISWAP:QMALLWETH_B34716","d":[]},{"s":"UNISWAP3ETH:SOULUSDT","d":[]},{"s":"QUICKSWAP:FVTWMATIC_BDED75","d":[]},{"s":"UNISWAP3ETH:CGGUSDC","d":[]},{"s":"UNISWAP:FTNWETH_53E4EC.USD","d":[]},{"s":"BINANCE:ALPINEBTC","d":[]},{"s":"POLONIEX:DACCUSDT","d":[]},{"s":"POLONIEX:SCBTC","d":[]},{"s":"UNISWAP3POLYGON:ULTWBTC_AD6291.USD","d":[]},{"s":"UNISWAP3ETH:WETHSAVM","d":[]},{"s":"TRADERJOE:ELKWAVAX_88D000","d":[]},{"s":"QUICKSWAP:KNOTUSDC_3BC397","d":[]},{"s":"KRAKEN:FARMUSD","d":[]},{"s":"GATEIO:ALAYAUSDT","d":[]},{"s":"UNISWAP:FWBWETH_0A965A","d":[]},{"s":"UNISWAP3ETH:AI.MAXWETH_232F87.USD","d":[]},{"s":"UNISWAP:MUTEWETH_0EFB42.USD","d":[]},{"s":"UNISWAP:MZEROWETH_8343CB","d":[]},{"s":"UNISWAP:UNCLWETH_43FDBE.USD","d":[]},{"s":"UNISWAP3ETH:IPETWETH","d":[]},{"s":"QUICKSWAP:DMTWETH_D15078","d":[]},{"s":"UNISWAP:VEGASWETH_20B019","d":[]},{"s":"UNISWAP3ETH:USDCWCFG","d":[]},{"s":"BYBIT:ZRXUSDT.P","d":[]},{"s":"UNISWAP:FRMWETH_92330D.USD","d":[]},{"s":"BITRUE:JOEUSDT","d":[]},{"s":"BITKUB:REALXTHB","d":[]},{"s":"EXMO:DOGEGBP","d":[]},{"s":"PHEMEX:MINAUSDT.P","d":[]},{"s":"BINGX:STGUSDT.P","d":[]},{"s":"BYBIT:QTUMUSDT","d":[]},{"s":"SPOOKYSWAP:HNRWFTM_663684","d":[]},{"s":"UNISWAP3ETH:RNDRWETH","d":[]},{"s":"UNISWAP3POLYGON:NXTTWMATIC_9F3223.USD","d":[]},{"s":"PHEMEX:SANTOSUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:PIPIWETH_CD226C.USD","d":[]},{"s":"UNISWAP:JUDGEWETH_FA0E42","d":[]},{"s":"KRAKEN:EURTUSD","d":[]},{"s":"PHEMEX:HIGHUSDT","d":[]},{"s":"UNISWAP3ETH:RNDRUSDC_6882D0.USD","d":[]},{"s":"MEXC:WTRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHENQAI","d":[]},{"s":"OKX:API3USDT.P","d":[]},{"s":"UNISWAP:0NECIV_A65653.USD","d":[]},{"s":"UNISWAP3ETH:WETHCOW","d":[]},{"s":"PANGOLIN:TSDWAVAX_67E395.USD","d":[]},{"s":"PHEMEX:PYTHUSDT","d":[]},{"s":"UNISWAP3ETH:PASGUSDC","d":[]},{"s":"TRADERJOE:EVICWETHE_8392A7","d":[]},{"s":"BISWAP:USTBUSD_9E7818","d":[]},{"s":"UNISWAP:CHSBWETH_8D9B9E","d":[]},{"s":"UNISWAP:DKWONWETH_AD096A.USD","d":[]},{"s":"BITGET:XRPUSDT","d":[]},{"s":"COINBASE:BLURUSD","d":[]},{"s":"COINEX:SCRTUSDT","d":[]},{"s":"UNISWAP:OCCWETH_14B615","d":[]},{"s":"GATEIO:FISUSDT","d":[]},{"s":"UNISWAP3ETH:OJEEWETH","d":[]},{"s":"MEXC:CGPTUSDT","d":[]},{"s":"ZOOMEX:LRCUSDT.P","d":[]},{"s":"MEXC:XFIUSDT","d":[]},{"s":"GATEIO:XYUSDT","d":[]},{"s":"OKX:BTCUSDC.P","d":[]},{"s":"HITBTC:AXSBTC","d":[]},{"s":"HITBTC:LINKETH","d":[]},{"s":"UNISWAP3ETH:WETHFRG","d":[]},{"s":"QUICKSWAP:SPORTREVV_5005A8.USD","d":[]},{"s":"UNISWAP3ETH:KCSWETH","d":[]},{"s":"UPBIT:ALGOKRW","d":[]},{"s":"BITSTAMP:MANAUSD","d":[]},{"s":"COINEX:DCUSDT","d":[]},{"s":"UNISWAP:HPNYWETH_6577F3.USD","d":[]},{"s":"MEXC:HZNUSDT","d":[]},{"s":"MEXC:FCTUSDT","d":[]},{"s":"BLOFIN:BNBUSDT.P","d":[]},{"s":"MEXC:PLCUUSDT","d":[]},{"s":"UNISWAP:NPMUSDC_4C36D2","d":[]},{"s":"HITBTC:FIROUSDT","d":[]},{"s":"UNISWAP3ETH:COCWETH","d":[]},{"s":"TRADERJOE:ROCKETWAVAX_1F89C5","d":[]},{"s":"TRADERJOE:EVBFLD_F12961.USD","d":[]},{"s":"BITSTAMP:FTMUSD","d":[]},{"s":"MEXC:LOFIUSDT","d":[]},{"s":"UNISWAP:OXNWETH_99C590","d":[]},{"s":"EXMO:BCHUSDT","d":[]},{"s":"KRAKEN:AUDJPY","d":[]},{"s":"UNISWAP:POFIWETH_4B2ACD","d":[]},{"s":"BYBIT:IDUSDT.P","d":[]},{"s":"COINEX:ALEPHUSDT","d":[]},{"s":"PHEMEX:CKBUSDT.P","d":[]},{"s":"COINEX:JULDUSDT","d":[]},{"s":"POLONIEX:NFTTRX","d":[]},{"s":"UNISWAP3ETH:KONGZBABYFLC_ECF60E.USD","d":[]},{"s":"HITBTC:APPCBTC","d":[]},{"s":"BITFINEX:MEMEBTC","d":[]},{"s":"UNISWAP3ARBITRUM:GYENUSDC_54B7FE.USD","d":[]},{"s":"BINANCE:BNTUSDT","d":[]},{"s":"HITBTC:BTRSTUSD","d":[]},{"s":"UNISWAP3OPTIMISM:OSAKWETH_91BB45.USD","d":[]},{"s":"UNISWAP:CHARTWETH_D0638B.USD","d":[]},{"s":"MEXC:ZUZALUUSDT","d":[]},{"s":"GATEIO:DXUSDT","d":[]},{"s":"GATEIO:ZSCUSDT","d":[]},{"s":"GATEIO:ALICEUSDT.3S","d":[]},{"s":"UNISWAP3ARBITRUM:WETHUSDT_C82819.USD","d":[]},{"s":"OKX:RAYUSDT.P","d":[]},{"s":"COINEX:GALAUSDC","d":[]},{"s":"COINEX:ACABTC","d":[]},{"s":"UNISWAP3ETH:BURNWETH","d":[]},{"s":"COINEX:GMTUSDC","d":[]},{"s":"BINANCE:FILETH","d":[]},{"s":"UNISWAP3ETH:RLBWETH_510100.USD","d":[]},{"s":"BITFINEX:XAGUST.P","d":[]},{"s":"UNISWAP:XWETH_60A8EA.USD","d":[]},{"s":"UNISWAP:KNTOWETH_C8357C.USD","d":[]},{"s":"BINANCE:DENTTRY","d":[]},{"s":"BITHUMB:HBARKRW","d":[]},{"s":"KRAKEN:OPUSD","d":[]},{"s":"TRADERJOE:GVILLEWAVAX_81FD7F","d":[]},{"s":"HITBTC:BOSONETH","d":[]},{"s":"HITBTC:DAPPUSDT","d":[]},{"s":"BTSE:CRVUSD","d":[]},{"s":"TRADERJOE:DFIATWAVAX_7CA8E6.USD","d":[]},{"s":"QUICKSWAP:SNPUSDC_A23EE8","d":[]},{"s":"BITHUMB:BELKRW","d":[]},{"s":"BITHUMB:WLDKRW","d":[]},{"s":"BYBIT:STRKUSDC","d":[]},{"s":"HITBTC:FTMUSDT","d":[]},{"s":"KRAKEN:AIREUR","d":[]},{"s":"BINGX:METISUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:OPWETH_FC1F32.USD","d":[]},{"s":"GATEIO:GFUSDT","d":[]},{"s":"QUICKSWAP:DMAGICWMATIC_929282","d":[]},{"s":"UNISWAP:PIXELCOINWETH_AFECD1","d":[]},{"s":"COINEX:DUSTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPUMLX","d":[]},{"s":"UNISWAP3ETH:KNINENFAI_6FFAA1.USD","d":[]},{"s":"UNISWAP3ETH:WETHSTARS","d":[]},{"s":"MEXC:STGUSDT","d":[]},{"s":"GATEIO:ZECUSDT.3S","d":[]},{"s":"POLONIEX:STPTBTC","d":[]},{"s":"UNISWAP:NFTPWETH_974EA1","d":[]},{"s":"UNISWAP3POLYGON:PAXGUSDC_CCA15D.USD","d":[]},{"s":"BYBIT:GPTUSDT","d":[]},{"s":"MEXC:RENETH","d":[]},{"s":"BITSTAMP:MATICUSD","d":[]},{"s":"KRAKEN:ETHUSDT","d":[]},{"s":"UNISWAP3ETH:USDTSGT","d":[]},{"s":"BINANCE:OGUSDT","d":[]},{"s":"UNISWAP3ETH:NFTLWETH_1BCF85.USD","d":[]},{"s":"TRADERJOE:CANSKIMBO_B442D1","d":[]},{"s":"ZOOMEX:ETHWUSDT.P","d":[]},{"s":"WHITEBIT:PENDLEUSDT","d":[]},{"s":"BITHUMB:TIAKRW","d":[]},{"s":"BYBIT:VEGAUSDT","d":[]},{"s":"UNISWAP:RGWETH_8AB0FF.USD","d":[]},{"s":"WOONETWORK:DOGEUSDT","d":[]},{"s":"QUICKSWAP:DOSEWMATIC_349026","d":[]},{"s":"COINEX:TRADEUSDT","d":[]},{"s":"UNISWAP3ETH:BVMWETH_80ED1B.USD","d":[]},{"s":"UNISWAP:CLIPPYWETH_C89E8A.USD","d":[]},{"s":"PHEMEX:SOLUSDC","d":[]},{"s":"OKX:AAVEUSDT.P","d":[]},{"s":"UNISWAP3ETH:ATOSUSDT_C73343.USD","d":[]},{"s":"BLOFIN:STRKUSDT.P","d":[]},{"s":"MEXC:SCRTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFLOOR","d":[]},{"s":"POLONIEX:FUNDTRX","d":[]},{"s":"COINEX:MEMEUSDT","d":[]},{"s":"UNISWAP3POLYGON:PANNWMATIC_D92A54.USD","d":[]},{"s":"UNISWAP3ETH:WETHPROS","d":[]},{"s":"MEXC:GOATUSDT","d":[]},{"s":"HITBTC:DOTUSDT","d":[]},{"s":"OKX:LTCUSDT.P","d":[]},{"s":"MEXC:ACHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSHRAP","d":[]},{"s":"MEXC:JULDUSDT","d":[]},{"s":"BITGET:TUPUSDT","d":[]},{"s":"ZOOMEX:1000TURBOUSDT.P","d":[]},{"s":"UNISWAP:SYNCWETH_197D70.USD","d":[]},{"s":"UNISWAP:DAFIWETH_CD4A2F.USD","d":[]},{"s":"PHEMEX:AUCTIONUSDT","d":[]},{"s":"PHEMEX:ASTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCGT","d":[]},{"s":"UNISWAP:LOCKWETH_CA9D4C.USD","d":[]},{"s":"MEXC:HZNDEXUSDT","d":[]},{"s":"UNISWAP:BRISEWETH_4FC0C4.USD","d":[]},{"s":"GEMINI:COMPUSD","d":[]},{"s":"TRADERJOE:CHEEMSXWAVAX_6B51D4.USD","d":[]},{"s":"BITFINEX:BOSONBTC","d":[]},{"s":"UNISWAP:WOOOOOWETH_1B1137","d":[]},{"s":"UNISWAP3ETH:VINUWETH","d":[]},{"s":"QUICKSWAP:IGGQUICK_2E026B","d":[]},{"s":"COINBASE:TRUUSD","d":[]},{"s":"GATEIO:MLUSDT","d":[]},{"s":"PIONEX:ENSUSDT.P","d":[]},{"s":"UNISWAP:GMFAMWETH_F932FF.USD","d":[]},{"s":"QUICKSWAP:RVLTWETH_3902B8","d":[]},{"s":"MEXC:ABONDUSDT","d":[]},{"s":"POLONIEX:NADAUSDT","d":[]},{"s":"COINBASE:MANAETH","d":[]},{"s":"BYBIT:10000WENUSDT.P","d":[]},{"s":"UNISWAP:REVOWETH_EDC25E","d":[]},{"s":"BITRUE:BATUSDT","d":[]},{"s":"GATEIO:QANXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMACKE","d":[]},{"s":"UNISWAP3ETH:FXSWETH","d":[]},{"s":"COINBASE:INDEXUSD","d":[]},{"s":"UNISWAP:DADAWETH_91CA5D.USD","d":[]},{"s":"BITFINEX:WNCGBTC","d":[]},{"s":"TRADERJOE:CHAMWAVAX_DE7E5F.USD","d":[]},{"s":"BITGET:ALTUSDT.P","d":[]},{"s":"BYBIT:MNTUSDT.P","d":[]},{"s":"BYBIT:CHZUSDT","d":[]},{"s":"UNISWAP3ETH:WETHCARD","d":[]},{"s":"HITBTC:GTBTC","d":[]},{"s":"UNISWAP3ETH:LDAOUSDT_07D831.USD","d":[]},{"s":"BINANCE:ELFBTC","d":[]},{"s":"BITHUMB:TKRW","d":[]},{"s":"BITRUE:CTKUSDT","d":[]},{"s":"UNISWAP3ETH:ZRXRNG_FA97AA.USD","d":[]},{"s":"UNISWAP3ETH:DOMIWETH","d":[]},{"s":"UNISWAP:URQAWETH_2DEEED","d":[]},{"s":"UNISWAP3ETH:WBTCPEPE","d":[]},{"s":"BLOFIN:JSTUSDT.P","d":[]},{"s":"MEXC:THOLANAUSDT","d":[]},{"s":"MEXC:ACMUSDT","d":[]},{"s":"BINANCE:ZECBTC","d":[]},{"s":"UNISWAP3ETH:PSDNWETH_0D14D6.USD","d":[]},{"s":"UNISWAP3ETH:WETHTHE","d":[]},{"s":"MEXC:MCOINUSDT","d":[]},{"s":"DERIBIT:AVAXUSDC.P","d":[]},{"s":"POLONIEX:MAVUSDT","d":[]},{"s":"UNISWAP:GUARDIANWETH_8B007C","d":[]},{"s":"COINEX:CSIXUSDT","d":[]},{"s":"UNISWAP:MPLUSDC_7B2847","d":[]},{"s":"UNISWAP:RKRWETH_B227EB","d":[]},{"s":"UNISWAP3ETH:WETHMZM","d":[]},{"s":"UNISWAP3ARBITRUM:MCBWETH_378815.USD","d":[]},{"s":"HITBTC:MKRETH","d":[]},{"s":"BITGET:GRIMACEUSDT","d":[]},{"s":"UNISWAP:FILSTUSDT_A2F6A2","d":[]},{"s":"UNISWAP3ETH:USDTEPIKO","d":[]},{"s":"SPOOKYSWAP:XRUNEWFTM_D7749B.USD","d":[]},{"s":"WHITEBIT:MANTAUSDT","d":[]},{"s":"BYBIT:AGIXUSDT.P","d":[]},{"s":"UNISWAP:WOOWETH_6ADA49.USD","d":[]},{"s":"COINEX:CKBUSDC","d":[]},{"s":"UNISWAP:AIUSWETH_53E79E.USD","d":[]},{"s":"POLONIEX:POOHUSDT","d":[]},{"s":"GATEIO:SOPUSDT","d":[]},{"s":"BYBIT:ATOMUSDT.2L","d":[]},{"s":"QUICKSWAP:AVAXWMATIC_EB477A","d":[]},{"s":"BISWAP:ETCWBNB_1CBA97.USD","d":[]},{"s":"UNISWAP3ETH:BICOWETH","d":[]},{"s":"BITGET:PEOPLEUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:IGSWETH_92F4FD.USD","d":[]},{"s":"COINBASE:SHIBGBP","d":[]},{"s":"TRADERJOE:MONKWAVAX_1B180E","d":[]},{"s":"UNISWAP:1INCHWETH_26AAD2","d":[]},{"s":"BINANCE:NFPBNB","d":[]},{"s":"HITBTC:OMGUSD","d":[]},{"s":"UNISWAP:PASSUSDT_71A1EE","d":[]},{"s":"MEXC:SOGEUSDT","d":[]},{"s":"UNISWAP:GRUSDT_169CD8","d":[]},{"s":"QUICKSWAP:ADSUSDC_85BA26","d":[]},{"s":"UNISWAP:JESUSWETH_8F1B19","d":[]},{"s":"UNISWAP:KEROWETH_F045A3.USD","d":[]},{"s":"TRADERJOE:DCAUMIM_BD9415.USD","d":[]},{"s":"UNISWAP:TOKWETH_CCE561.USD","d":[]},{"s":"UPBIT:XRPKRW","d":[]},{"s":"UNISWAP3ETH:ZZWETH_16F602.USD","d":[]},{"s":"GATEIO:INKUSDT","d":[]},{"s":"MEXC:LUNCUSDT","d":[]},{"s":"UNISWAP3ETH:CPRCWETH","d":[]},{"s":"BITRUE:SXPADA","d":[]},{"s":"HITBTC:PMABTC","d":[]},{"s":"UNISWAP3ETH:WETHOPSEC","d":[]},{"s":"GATEIO:BRCTUSDT","d":[]},{"s":"OKX:JSTUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCLAI","d":[]},{"s":"BYBIT:AGLDUSDT.P","d":[]},{"s":"POLONIEX:GFTUSDT","d":[]},{"s":"HITBTC:ETHWUSDT","d":[]},{"s":"GEMINI:BTCUSDT","d":[]},{"s":"UNISWAP:GWDWETH_BE85C8.USD","d":[]},{"s":"BITGET:ROUTEUSDT","d":[]},{"s":"GATEIO:REPUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:BTC.BWBTC_CF2F02.USD","d":[]},{"s":"BITFINEX:KARATEUSD","d":[]},{"s":"MEXC:SOILUSDT","d":[]},{"s":"MEXC:SOLANADOGEUSDT","d":[]},{"s":"BITKUB:KUBTHB","d":[]},{"s":"BITMEX:XBTUSDZ2024","d":[]},{"s":"MEXC:JUNOUSDT","d":[]},{"s":"BITGET:SHIBUSDT.P","d":[]},{"s":"KRAKEN:USDCCHF","d":[]},{"s":"GATEIO:CTKUSDT","d":[]},{"s":"GATEIO:EGLDUSDT","d":[]},{"s":"GATEIO:WWYUSDT","d":[]},{"s":"UNISWAP:STARLWETH_A5E9C9.USD","d":[]},{"s":"GATEIO:SQUIDUSDT","d":[]},{"s":"KRAKEN:YFIUSD.PM","d":[]},{"s":"UNISWAP3ETH:WSTETHUSDC_4622DF.USD","d":[]},{"s":"PANGOLIN:CRAWAVAX_960FA2","d":[]},{"s":"UNISWAP:CRACERWETH_26B9C1","d":[]},{"s":"UNISWAP3ETH:FOXYWETH","d":[]},{"s":"ZOOMEX:BSWUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHHAIR","d":[]},{"s":"MEXC:GROKCEOUSDT","d":[]},{"s":"UNISWAP3ETH:NFTXWETH","d":[]},{"s":"UNISWAP:INUWETH_9E53FA","d":[]},{"s":"COINEX:COMBOUSDT","d":[]},{"s":"BINANCE:GALAEUR","d":[]},{"s":"GATEIO:PEPEBRCUSDT","d":[]},{"s":"TRADERJOE:COOKWAVAX_3FCD1D.USD","d":[]},{"s":"SPOOKYSWAP:IBWFTM_CB10EF","d":[]},{"s":"UNISWAP3ETH:PORTALWETH_F9BC02.USD","d":[]},{"s":"BINANCE:AUCTIONUSDT","d":[]},{"s":"BITFINEX:LUNA2USD","d":[]},{"s":"COINBASE:LINKUSDT","d":[]},{"s":"UNISWAP3POLYGON:EUREAGEUR_691867.USD","d":[]},{"s":"BINGX:THETAUSDT.P","d":[]},{"s":"UNISWAP:WHITEWETH_A3B79B.USD","d":[]},{"s":"GATEIO:GGMUSDT","d":[]},{"s":"BITSTAMP:MATICEUR","d":[]},{"s":"PHEMEX:CYBERUSDT","d":[]},{"s":"BYBIT:LDOUSDT","d":[]},{"s":"MEXC:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP3ETH:CAHWETH","d":[]},{"s":"UNISWAP3ETH:WETHMHF","d":[]},{"s":"TRADERJOE:SBWAVAX_A3D2CF","d":[]},{"s":"UNISWAP:CREWETH_7262A4","d":[]},{"s":"HITBTC:IQNUSDT","d":[]},{"s":"POLONIEX:BFIUSDT","d":[]},{"s":"UNISWAP3ETH:MEVETHWETH_441ADC.USD","d":[]},{"s":"UNISWAP:PREWETH_F24895","d":[]},{"s":"BITGET:UMAUSDT.P","d":[]},{"s":"QUICKSWAP:MEMWETH_B0C446","d":[]},{"s":"XEXCHANGE:KOSONUSDC","d":[]},{"s":"UNISWAP3ETH:USDTGROW","d":[]},{"s":"UNISWAP:BLENDRWETH_56D8BB.USD","d":[]},{"s":"UNISWAP3ETH:SUPERWETH","d":[]},{"s":"BITMEX:PORTALUSDT.P","d":[]},{"s":"POLONIEX:ASRUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:HORDUSDC_5BB424.USD","d":[]},{"s":"UNISWAP3ETH:DOGPETWETH_28B58E.USD","d":[]},{"s":"QUICKSWAP:VOLTWMATIC_8975DD.USD","d":[]},{"s":"UNISWAP:HNTAIWETH_BD0473.USD","d":[]},{"s":"QUICKSWAP:NSFWUSDC_E67242","d":[]},{"s":"UNISWAP3ETH:MOMOWETH_35CDC4.USD","d":[]},{"s":"BITRUE:WELDUSDT","d":[]},{"s":"UNISWAP:GTDWETH_E98E34","d":[]},{"s":"UNISWAP:ORBTWETH_376475.USD","d":[]},{"s":"BINANCE:POLYXBTC","d":[]},{"s":"COINEX:STXUSDC","d":[]},{"s":"UNISWAP:CRMTWETH_128323.USD","d":[]},{"s":"HITBTC:ZENUSDT","d":[]},{"s":"UNISWAP3POLYGON:WLOKAUSDT_615583.USD","d":[]},{"s":"BYBIT:NEXTUSDT","d":[]},{"s":"POLONIEX:TELEPATHYUSDT","d":[]},{"s":"UNISWAP3ETH:RLCWETH_56EA00.USD","d":[]},{"s":"POLONIEX:USDDUSDC","d":[]},{"s":"BITRUE:ENJADA","d":[]},{"s":"UNISWAP:GSWAPWETH_1E9ED2.USD","d":[]},{"s":"POLONIEX:CHOWUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSOS","d":[]},{"s":"QUICKSWAP:BULLWMATIC_B82B5D.USD","d":[]},{"s":"UNISWAP:PBRWETH_CB37B0","d":[]},{"s":"WHITEBIT:AKROUSDT","d":[]},{"s":"UNISWAP:CHIHUAWETH_3E406E.USD","d":[]},{"s":"UNISWAP:RBTWETH_AAECB2.USD","d":[]},{"s":"PHEMEX:JASMYUSDT.P","d":[]},{"s":"COINBASE:DOGEEUR","d":[]},{"s":"BTSE:TRXUSD.P","d":[]},{"s":"GATEIO:NOOTUSDT","d":[]},{"s":"MEXC:FIDUSDT","d":[]},{"s":"UNISWAP:VNMWETH_044112.USD","d":[]},{"s":"POLONIEX:DONSUSDT","d":[]},{"s":"BINANCE:ARKTRY","d":[]},{"s":"UNISWAP3ETH:SKEBUSDC_2A9377.USD","d":[]},{"s":"HITBTC:BRDETH","d":[]},{"s":"UNISWAP:POLCWETH_B5BD39.USD","d":[]},{"s":"PANGOLIN:VEEUSDTE_E6069A","d":[]},{"s":"UNISWAP:TROLLSWETH_54C54E.USD","d":[]},{"s":"UNISWAP3ETH:WETHJCD","d":[]},{"s":"VERSEETH:VERSEUSDC_928DF9.USD","d":[]},{"s":"MEXC:PLCUCUSDT","d":[]},{"s":"MEXC:PERPUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPORT3","d":[]},{"s":"HITBTC:OCCETH","d":[]},{"s":"GATEIO:MTAUSDT","d":[]},{"s":"UNISWAP:ODGNWETH_3BB6DC.USD","d":[]},{"s":"UNISWAP:DERPWETH_3AFC65","d":[]},{"s":"COINEX:SMURFCATUSDT","d":[]},{"s":"COINEX:ICPUSDT","d":[]},{"s":"MEXC:HGHGUSDT","d":[]},{"s":"COINEX:ELABTC","d":[]},{"s":"POLONIEX:BTTTRX","d":[]},{"s":"TRADERJOE:FLYWAVAX_1371A6.USD","d":[]},{"s":"QUICKSWAP:PETWMATIC_3D19F9.USD","d":[]},{"s":"UNISWAP3ETH:IBETHUSDC","d":[]},{"s":"BTSE:SNXUSD.P","d":[]},{"s":"UNISWAP3ARBITRUM:DFUSX_4DA9F6.USD","d":[]},{"s":"MEXC:SUSHIUSDT","d":[]},{"s":"BYBIT:BSWUSDT.P","d":[]},{"s":"BITGET:SUIUSDT.P","d":[]},{"s":"UNISWAP:ADXWETH_D3772A","d":[]},{"s":"BINANCE:DEGOUSDT","d":[]},{"s":"MEXC:APDUSDT","d":[]},{"s":"POLONIEX:ZECUSDC","d":[]},{"s":"BYBIT:PRIMEUSDT","d":[]},{"s":"PHEMEX:ALTUSDT","d":[]},{"s":"UNISWAP:MERLINWETH_E75D23.USD","d":[]},{"s":"BITFINEX:FLRUSD","d":[]},{"s":"KRAKEN:SYNEUR","d":[]},{"s":"BINANCE:XLMBTC","d":[]},{"s":"GATEIO:WINUSDT","d":[]},{"s":"BITFINEX:DORAUSD","d":[]},{"s":"TRADERJOE:WETWAVAX_EE2500","d":[]},{"s":"MEXC:QUACKUSDT","d":[]},{"s":"UNISWAP3ETH:DAIDI","d":[]},{"s":"OKX:YFIUSD.P","d":[]},{"s":"BITGET:D3DUSDT","d":[]},{"s":"UNISWAP:MINDSWETH_8FF2FD","d":[]},{"s":"UNISWAP:PIPIWETH_DBF8B0","d":[]},{"s":"UNISWAP3ETH:WETHDONUT","d":[]},{"s":"BINANCE:WBETHUSDT","d":[]},{"s":"QUICKSWAP:MNTLVERSA_725307.USD","d":[]},{"s":"POLONIEX:ZBCUSDT","d":[]},{"s":"UNISWAP3ETH:HPOWETH","d":[]},{"s":"UNISWAP3ETH:MFERSWETH","d":[]},{"s":"SPOOKYSWAP:SALEWFTM_A02BE5","d":[]},{"s":"HITBTC:REIUSDT","d":[]},{"s":"BINANCE:LINKBNB","d":[]},{"s":"BITSTAMP:COMPUSD","d":[]},{"s":"BINANCE:FTMETH","d":[]},{"s":"BINGX:MASKUSDT.P","d":[]},{"s":"COINBASE:SNXUSD","d":[]},{"s":"GATEIO:ORIONUSDT","d":[]},{"s":"BITHUMB:MEDKRW","d":[]},{"s":"UNISWAP:FUSIONWETH_6484B5.USD","d":[]},{"s":"BISWAP:BCHWBNB_910DE0","d":[]},{"s":"MEXC:BUPUSDT","d":[]},{"s":"MEXC:W3GUSDT","d":[]},{"s":"MEXC:PARASUSDT","d":[]},{"s":"MEXC:PELUSDT","d":[]},{"s":"PIONEX:GASUSDT.P","d":[]},{"s":"TRADERJOE:RIZZWAVAX_DCDA44","d":[]},{"s":"UNISWAP:KEKWETH_420583","d":[]},{"s":"COINEX:BITCIUSDT","d":[]},{"s":"UNISWAP:LPWETH_9476F8.USD","d":[]},{"s":"UNISWAP3ETH:CELLUSDC","d":[]},{"s":"GEMINI:SNXUSD","d":[]},{"s":"BINANCE:OPFDUSD","d":[]},{"s":"UNISWAP3ETH:EZETHWETH_BE8022.USD","d":[]},{"s":"GATEIO:GALUSDT","d":[]},{"s":"UNISWAP:SPSWETH_1E6BA8.USD","d":[]},{"s":"UNISWAP3ETH:EURTUSDT","d":[]},{"s":"QUICKSWAP:MGHWMATIC_6512CE","d":[]},{"s":"TRADERJOE:TDWAVAX_3D289F","d":[]},{"s":"MEXC:LQTYUSDT.P","d":[]},{"s":"BITRUE:CHZUSDC","d":[]},{"s":"BITMEX:APTUSD.P","d":[]},{"s":"ZOOMEX:XCNUSDT.P","d":[]},{"s":"BITFINEX:TRADEUSD","d":[]},{"s":"GATEIO:AISUSDT","d":[]},{"s":"SPOOKYSWAP:BAGWFTM_A1A868","d":[]},{"s":"UNISWAP3ETH:HBOTWETH","d":[]},{"s":"UNISWAP3ETH:USDCCOMP","d":[]},{"s":"UNISWAP3POLYGON:EMONWETH_CE5A1D.USD","d":[]},{"s":"BITSTAMP:XLMEUR","d":[]},{"s":"MEXC:BUMUSDT","d":[]},{"s":"MEXC:PYMUSDT","d":[]},{"s":"BYBIT:ADAUSDC","d":[]},{"s":"HITBTC:MITXUSD","d":[]},{"s":"BINANCE:BANDBTC","d":[]},{"s":"BITGET:BTCEUR","d":[]},{"s":"MEXC:CVPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRAS","d":[]},{"s":"COINEX:XETAUSDT","d":[]},{"s":"GATEIO:BASEPTLUSDT","d":[]},{"s":"PHEMEX:RUNEUSDT.P","d":[]},{"s":"UNISWAP:PERPSWETH_989DD5","d":[]},{"s":"GATEIO:RBNUSDT","d":[]},{"s":"UNISWAP3ETH:GROWWETH_618471.USD","d":[]},{"s":"BITFINEX:KSMUSD","d":[]},{"s":"ZOOMEX:AAVEUSDT.P","d":[]},{"s":"UNISWAP:KANGALWETH_0BC442.USD","d":[]},{"s":"BINANCE:NFPTUSD","d":[]},{"s":"HITBTC:GALAUSDC","d":[]},{"s":"UNISWAP3ETH:WETHLMWR","d":[]},{"s":"BYBIT:MEMEUSDT","d":[]},{"s":"COINEX:SILLYUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:GNOMEWETH_4762A1.USD","d":[]},{"s":"BITRUE:BSWUSDT","d":[]},{"s":"HITBTC:SMARTUSD","d":[]},{"s":"TRADERJOE:KOVINWAVAX_96BBDB.USD","d":[]},{"s":"UNISWAP3ETH:DIGITWETH","d":[]},{"s":"HITBTC:MANABTC","d":[]},{"s":"UNISWAP:GAMERWETH_96E830","d":[]},{"s":"PANGOLIN:KLOWAVAX_6745D7.USD","d":[]},{"s":"UNISWAP3ETH:RUSDUSDC","d":[]},{"s":"UNISWAP3ETH:ALCXUSDC","d":[]},{"s":"COINEX:KP3RUSDT","d":[]},{"s":"UNISWAP:BXXWETH_912046.USD","d":[]},{"s":"UNISWAP:ARDVRKWETH_3BFDBF","d":[]},{"s":"BYBIT:OASUSDT","d":[]},{"s":"MEXC:NEOBTC","d":[]},{"s":"HITBTC:QIUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMNT","d":[]},{"s":"UNISWAP:POWERWETH_49F931","d":[]},{"s":"BITRUE:THETAUSDT","d":[]},{"s":"UNISWAP:NENOWETH_9AC73B.USD","d":[]},{"s":"HITBTC:ZRXBTC","d":[]},{"s":"HITBTC:XMRUSD","d":[]},{"s":"TRADERJOE:DCAUUSDTE_605AAC","d":[]},{"s":"DELTA:MANTAUSDT.P","d":[]},{"s":"MEXC:PAZUSDT","d":[]},{"s":"POLONIEX:SDAOUSDT","d":[]},{"s":"UNISWAP:STRUMPWETH_94CA40","d":[]},{"s":"GATEIO:SKLUSDT.3S","d":[]},{"s":"POLONIEX:XECUSDT","d":[]},{"s":"UNISWAP3ETH:SAVMWBTC","d":[]},{"s":"BINGX:WAXPUSDT.P","d":[]},{"s":"UNISWAP3ETH:XBASKETUSDC","d":[]},{"s":"KRAKEN:UNIBTC","d":[]},{"s":"PHEMEX:ALGOUSDT.P","d":[]},{"s":"MEXC:RPKUSDT","d":[]},{"s":"UNISWAP3POLYGON:DDAOUSDT_E1BE53.USD","d":[]},{"s":"POLONIEX:PNDCUSDT","d":[]},{"s":"GEMINI:SKLUSD","d":[]},{"s":"GATEIO:BCHUSDT","d":[]},{"s":"HITBTC:BSVUSDC","d":[]},{"s":"BITFINEX:XTZUST.P","d":[]},{"s":"BINANCEUS:RNDRUSDT","d":[]},{"s":"UNISWAP3ETH:CHAXWETH","d":[]},{"s":"UNISWAP3ETH:FPISWETH_B2DB69.USD","d":[]},{"s":"UNISWAP:OOOORWETH_BF3D80.USD","d":[]},{"s":"MEXC:CENXUSDT","d":[]},{"s":"GATEIO:DEXEUSDT","d":[]},{"s":"GATEIO:CEEKUSDT","d":[]},{"s":"MEXC:MVLUSDT","d":[]},{"s":"POLONIEX:TOKEUSDT","d":[]},{"s":"GATEIO:FARUSDT","d":[]},{"s":"UNISWAP:FELIXWETH_BAF584.USD","d":[]},{"s":"OKX:AGLDUSDT.P","d":[]},{"s":"EXMO:USDTUSD","d":[]},{"s":"POLONIEX:TRUBTC","d":[]},{"s":"UNISWAP3ETH:VETHWETH","d":[]},{"s":"UNISWAP3ETH:WETHLYRA","d":[]},{"s":"HITBTC:EVXBTC","d":[]},{"s":"COINEX:XDCUSDT","d":[]},{"s":"UNISWAP:NUMUSDC_22527F","d":[]},{"s":"POLONIEX:RIOUSDT","d":[]},{"s":"UNISWAP3ETH:LIMITWETH","d":[]},{"s":"UNISWAP3POLYGON:GNSWETH_FC469D.USD","d":[]},{"s":"HITBTC:UUUETH","d":[]},{"s":"MEXC:EMPIREUSDT","d":[]},{"s":"MEXC:OMCUSDT","d":[]},{"s":"BITGET:VVUSDT","d":[]},{"s":"UNISWAP:NGSWETH_FAE60B.USD","d":[]},{"s":"UNISWAP3ETH:USDEUSDC","d":[]},{"s":"UNISWAP:DEADMIGOSWETH_6CF061.USD","d":[]},{"s":"UNISWAP3ETH:DBIWETH_2CA1D6.USD","d":[]},{"s":"KRAKEN:UNIEUR","d":[]},{"s":"HITBTC:TRVBCH","d":[]},{"s":"BITGET:KOKUSDT","d":[]},{"s":"UNISWAP:TOKWETH_CCE561","d":[]},{"s":"UNISWAP3ETH:USDTWTK","d":[]},{"s":"TRADERJOE:BLANCMIM_9B4E1C.USD","d":[]},{"s":"MEXC:KSMUSDT.P","d":[]},{"s":"UNISWAP:POOLWETH_85CB0B","d":[]},{"s":"UNISWAP:ETHEREUMWETH_5F538E.USD","d":[]},{"s":"UNISWAP:CYBAWETH_4DE01F","d":[]},{"s":"UNISWAP:SHIBDAOWETH_5FD405.USD","d":[]},{"s":"PHEMEX:SANDUSDT","d":[]},{"s":"BINANCE:DARUSDT","d":[]},{"s":"PIONEX:MYROUSDT.P","d":[]},{"s":"UNISWAP:ANIMWETH_4646E1.USD","d":[]},{"s":"BITMEX:MYROUSDT.P","d":[]},{"s":"UNISWAP3OPTIMISM:KWENTAWETH_36E429.USD","d":[]},{"s":"BINANCE:AKROUSDT","d":[]},{"s":"UNISWAP3POLYGON:SEXYWMATIC_5F6145.USD","d":[]},{"s":"UNISWAP3ETH:WETHCSWAP","d":[]},{"s":"BITKUB:DYDXTHB","d":[]},{"s":"UNISWAP3ETH:INJWETH_4858C9.USD","d":[]},{"s":"UNISWAP3POLYGON:ICHIWBTC_1AAE2B.USD","d":[]},{"s":"UNISWAP:XTMWETH_C34DA1.USD","d":[]},{"s":"QUICKSWAP:QIWETH_8C1B40.USD","d":[]},{"s":"GATEIO:RUNEUSDT.3L","d":[]},{"s":"UNISWAP3ETH:TGOLDTUSD","d":[]},{"s":"GATEIO:METALUSDT","d":[]},{"s":"UNISWAP:AXIWETH_0F3CE8.USD","d":[]},{"s":"HITBTC:GLMUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:MSTUSDC_B3A49E.USD","d":[]},{"s":"UNISWAP:BWSMWETH_AEFF67.USD","d":[]},{"s":"KRAKEN:STORJBTC","d":[]},{"s":"BINANCE:FLMUSDT","d":[]},{"s":"UNISWAP:DORKWETH_537B8A","d":[]},{"s":"XEXCHANGE:EMRUSDC","d":[]},{"s":"UNISWAP:KOACOMBATWETH_9C14BF.USD","d":[]},{"s":"UNISWAP3ETH:ICEWETH_E6A74D.USD","d":[]},{"s":"QUICKSWAP:MOCAWETH_7849E5.USD","d":[]},{"s":"UNISWAP:SFUNDWETH_8FB8E9","d":[]},{"s":"PHEMEX:BICOUSDT","d":[]},{"s":"UNISWAP:IOENUSDT_CA9665","d":[]},{"s":"HITBTC:RSRBTC","d":[]},{"s":"UNISWAP:PEPPAWETH_442D4D.USD","d":[]},{"s":"ZOOMEX:ICPUSDT.P","d":[]},{"s":"UNISWAP3ETH:CSIXUSDT_AD0E57.USD","d":[]},{"s":"UNISWAP3ETH:WCELLWETH","d":[]},{"s":"MEXC:FIDAUSDT","d":[]},{"s":"BYBIT:XYMUSDT","d":[]},{"s":"MEXC:COVNUSDT","d":[]},{"s":"UNISWAP:CMOSBONE_6FD40F.USD","d":[]},{"s":"WHITEBIT:JSTUSDT","d":[]},{"s":"UNISWAP:ZROWETH_A5FB96","d":[]},{"s":"COINEX:WIFUSDT","d":[]},{"s":"OKX:BATUSDT.P","d":[]},{"s":"UNISWAP:PEPAWETH_6B316F","d":[]},{"s":"UNISWAP:AIPADWETH_C1F4EC","d":[]},{"s":"KRAKEN:LSKUSD.PM","d":[]},{"s":"KRAKEN:FIDAUSD","d":[]},{"s":"BYBIT:DASHUSDT.P","d":[]},{"s":"BINANCE:WOOBTC","d":[]},{"s":"HITBTC:BTTUSDT","d":[]},{"s":"UNISWAP3POLYGON:POOLWETH_88D639.USD","d":[]},{"s":"COINEX:HBARBTC","d":[]},{"s":"PHEMEX:EDUUSDT","d":[]},{"s":"ZOOMEX:BCHUSDT.P","d":[]},{"s":"MEXC:SATOXUSDT","d":[]},{"s":"BLOFIN:VRAUSDT.P","d":[]},{"s":"BTSE:COMPUSD.P","d":[]},{"s":"BYBIT:FLMUSDT.P","d":[]},{"s":"POLONIEX:ORDIUSDT","d":[]},{"s":"UNISWAP3POLYGON:1INCHWMATIC_0260C2.USD","d":[]},{"s":"UNISWAP3ETH:LICKWETH","d":[]},{"s":"MEXC:BIT1USDT","d":[]},{"s":"BYBIT:KUNCIUSDT","d":[]},{"s":"UNISWAP3ETH:MCBWETH","d":[]},{"s":"UNISWAP3ETH:WETHWSM","d":[]},{"s":"MEXC:COLTUSDT","d":[]},{"s":"SPOOKYSWAP:BASEUSDC_C06A83","d":[]},{"s":"HITBTC:EKOUSDT","d":[]},{"s":"UNISWAP3POLYGON:CRVWMATIC_4D05F2.USD","d":[]},{"s":"UNISWAP:TRUMPWETH_AC084D","d":[]},{"s":"UNISWAP:NEKOWETH_DD6614","d":[]},{"s":"BITRUE:SOLADA","d":[]},{"s":"UNISWAP:HIKARIWETH_EB1E76","d":[]},{"s":"COINEX:WIFIUSDT","d":[]},{"s":"QUICKSWAP:STMATICWMATIC_65752C","d":[]},{"s":"COINEX:STXUSDT","d":[]},{"s":"UNISWAP:MIXUSDT_88FCDD","d":[]},{"s":"QUICKSWAP:KIROWMATIC_3F245C.USD","d":[]},{"s":"ZOOMEX:THETAUSDT.P","d":[]},{"s":"UNISWAP:SANSHUWETH_A2FDB9","d":[]},{"s":"UNISWAP3ETH:XFTWETH","d":[]},{"s":"UNISWAP3ETH:SHFLUSDC","d":[]},{"s":"GATEIO:VICUSDT","d":[]},{"s":"MEXC:DUAUSDT","d":[]},{"s":"UNISWAP:MAGEWETH_95EF68","d":[]},{"s":"UNISWAP:SATASHIWETH_0FFCD5.USD","d":[]},{"s":"QUICKSWAP:QUIDDGMEE_D9ADFB.USD","d":[]},{"s":"OKX:AEVOUSDT.P","d":[]},{"s":"BINANCE:GMXBTC","d":[]},{"s":"UNISWAP3ETH:GRGWETH","d":[]},{"s":"UNISWAP3ETH:WETHOGN","d":[]},{"s":"BITRUE:ZILUSDT","d":[]},{"s":"MEXC:HELLOUSDT","d":[]},{"s":"PANGOLIN:HERMESWAVAX_C58CC1","d":[]},{"s":"MEXC:GMTUSDT.P","d":[]},{"s":"UNISWAP:REQUSDT_2B9F8F","d":[]},{"s":"UNISWAP:EPETSWETH_9A20F7","d":[]},{"s":"MEXC:COGEUSDT","d":[]},{"s":"HITBTC:CSOVUSDT","d":[]},{"s":"UNISWAP:TAILSANI_BD1976","d":[]},{"s":"UNISWAP3ETH:TRUMP404WETH_CD5BF6.USD","d":[]},{"s":"UNISWAP3ETH:UNIWETH_1D4206.USD","d":[]},{"s":"COINEX:SHDWUSDT","d":[]},{"s":"KRAKEN:NYMUSD","d":[]},{"s":"MEXC:FOGUSDT","d":[]},{"s":"BLOFIN:ARPAUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHZZ","d":[]},{"s":"KRAKEN:RARIBTC","d":[]},{"s":"BINANCE:ATAUSDT","d":[]},{"s":"MEXC:OPAIUSDT","d":[]},{"s":"UNISWAP3ETH:RSCWETH_EC2061.USD","d":[]},{"s":"GATEIO:BUSYUSDT","d":[]},{"s":"BITMEX:AEVOUSDT.P","d":[]},{"s":"KRAKEN:ETHWUSD.PM","d":[]},{"s":"MEXC:EDUUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LINKWETH_91308B.USD","d":[]},{"s":"MEXC:DWARSUSDT","d":[]},{"s":"HITBTC:EMCUSDT","d":[]},{"s":"UNISWAP3ETH:JPEGWETH","d":[]},{"s":"EXMO:ALGOUSDT","d":[]},{"s":"COINEX:RIDEUSDT","d":[]},{"s":"UNISWAP:STICKWETH_FB7927","d":[]},{"s":"UNISWAP3ETH:CJPYWETH_634BC1.USD","d":[]},{"s":"UNISWAP3ETH:RVSTWETH_C31F5C.USD","d":[]},{"s":"UNISWAP3POLYGON:DGXDG_21197E.USD","d":[]},{"s":"MEXC:LBLOCKUSDT","d":[]},{"s":"QUICKSWAP:N1WMATIC_EEC02A.USD","d":[]},{"s":"UNISWAP3ETH:WBTCRENBTC","d":[]},{"s":"UNISWAP3ETH:WETHCOVFEFE","d":[]},{"s":"GATEIO:TUSDT","d":[]},{"s":"SPOOKYSWAP:PUMPKINWFTM_A73D25.USD","d":[]},{"s":"MEXC:PHBUSDT.P","d":[]},{"s":"TRADERJOE:CREAMWAVAX_00C87C.USD","d":[]},{"s":"BITFINEX:LINKUST.P","d":[]},{"s":"UNISWAP3ETH:ICHIWBTC_6800C4.USD","d":[]},{"s":"BITSTAMP:CVXEUR","d":[]},{"s":"TRADERJOE:WORMWAVAX_10866F.USD","d":[]},{"s":"BITFINEX:TOMIBTC","d":[]},{"s":"GATEIO:TEERUSDT","d":[]},{"s":"MEXC:NULSUSDT","d":[]},{"s":"UNISWAP:DEJITARUSHIRUDOHOSHI_459AB5","d":[]},{"s":"GATEIO:BAKEUSDT","d":[]},{"s":"COINEX:ZECUSDC","d":[]},{"s":"UNISWAP:TIPWETH_EB1B26.USD","d":[]},{"s":"XEXCHANGE:UMBUSDC","d":[]},{"s":"UNISWAP:SYLOWBTC_7E2B8A.USD","d":[]},{"s":"TRADERJOE:MASSUSDC_0B26B0","d":[]},{"s":"TRADERJOE:LOSTWAVAX_9C396C","d":[]},{"s":"QUICKSWAP:DOPWETH_C8A96D.USD","d":[]},{"s":"UNISWAP:HERWETH_DE7EC7.USD","d":[]},{"s":"MEXC:SUVUSDT","d":[]},{"s":"BINGX:ZILUSDT.PS","d":[]},{"s":"UNISWAP:LEETWETH_DAD6A6.USD","d":[]},{"s":"COINBASE:ADAUSD","d":[]},{"s":"GATEIO:XVSUSDT","d":[]},{"s":"WHITEBIT:API3USDT","d":[]},{"s":"UNISWAP:XCEPTWETH_5B3BE3","d":[]},{"s":"COINEX:XCHBTC","d":[]},{"s":"GATEIO:MCRNUSDT","d":[]},{"s":"BYBIT:BTCEUR","d":[]},{"s":"XEXCHANGE:TROUSDC","d":[]},{"s":"UNISWAP:BLESWETH_187094","d":[]},{"s":"WAGYUSWAP:VSHWVLX_F8BDFB","d":[]},{"s":"UNISWAP3ETH:WETHMET","d":[]},{"s":"UNISWAP:LTXWETH_69884D.USD","d":[]},{"s":"UNISWAP:ICEWETH_0EFEA6","d":[]},{"s":"SPOOKYSWAP:PAEWFTM_2DC234.USD","d":[]},{"s":"UNISWAP3ETH:FIWETH","d":[]},{"s":"UNISWAP:7DD8BCWETH_190570.USD","d":[]},{"s":"GATEIO:CHESSUSDT","d":[]},{"s":"BITFINEX:BONKUSD","d":[]},{"s":"UNISWAP:DAPWETH_142E44.USD","d":[]},{"s":"HITBTC:SLPUSD","d":[]},{"s":"OKX:XRPUSDT.P","d":[]},{"s":"POLONIEX:SOLUSDT","d":[]},{"s":"GATEIO:CAKEUSDT.3L","d":[]},{"s":"BINANCE:ZECETH","d":[]},{"s":"MEXC:OXUSDT","d":[]},{"s":"PANGOLIN:PLNWAVAX_911AE9.USD","d":[]},{"s":"POLONIEX:SANDUSDT","d":[]},{"s":"UNISWAP3ETH:SMTWETH_1BECF1.USD","d":[]},{"s":"WHITEBIT:JSTBTC","d":[]},{"s":"BITFINEX:INJUST","d":[]},{"s":"BITGET:STORJUSDT","d":[]},{"s":"UNISWAP:SHIKWETH_0B9F5C.USD","d":[]},{"s":"POLONIEX:BCHUSD","d":[]},{"s":"UNISWAP:POOLZWETH_70A394.USD","d":[]},{"s":"GATEIO:CROUSDT.3S","d":[]},{"s":"MEXC:STCUSDT","d":[]},{"s":"UNISWAP:DIPWETH_391F7B","d":[]},{"s":"BITHUMB:CFXKRW","d":[]},{"s":"UNISWAP3POLYGON:AIPEPEWMATIC_C14316.USD","d":[]},{"s":"GATEIO:INFRAUSDT","d":[]},{"s":"UNISWAP3ETH:ISKUSDT_35BFD5.USD","d":[]},{"s":"UNISWAP3ETH:WETHBLUR","d":[]},{"s":"GATEIO:MDTUSDT","d":[]},{"s":"BITGET:BATUSDT.P","d":[]},{"s":"GATEIO:WXTUSDT","d":[]},{"s":"BINANCE:CAKEBNB","d":[]},{"s":"MEXC:USHUSDT","d":[]},{"s":"UNISWAP:RENWETH_8BD166","d":[]},{"s":"UNISWAP:FORMUSDT_31CF03","d":[]},{"s":"COINBASE:FXUSD","d":[]},{"s":"BINANCE:EGLDEUR","d":[]},{"s":"BYBIT:RVNUSDT.P","d":[]},{"s":"UNISWAP3ETH:DAOUSDC","d":[]},{"s":"UNISWAP:CELKEL_638BC0","d":[]},{"s":"UNISWAP3ETH:WETHLADYS","d":[]},{"s":"WHITEBIT:USDTGEL","d":[]},{"s":"UNISWAP:TRUMPWETH_28B498.USD","d":[]},{"s":"HITBTC:PERPBTC","d":[]},{"s":"BINGX:STRKUSDT.P","d":[]},{"s":"GATEIO:LAZIOUSDT","d":[]},{"s":"GATEIO:MATHUSDT","d":[]},{"s":"COINEX:SHUUSDT","d":[]},{"s":"QUICKSWAP:AROMAWMATIC_B3343E.USD","d":[]},{"s":"PHEMEX:BTCUSDT.P","d":[]},{"s":"BYBIT:DYDXUSDT.P","d":[]},{"s":"HITBTC:DASHEURS","d":[]},{"s":"POLONIEX:CVCBTC","d":[]},{"s":"UNISWAP:NHUBWETH_E7325B","d":[]},{"s":"QUICKSWAP:SALEWMATIC_F2F46C.USD","d":[]},{"s":"UNISWAP3ARBITRUM:HOPWETH_44CA2B.USD","d":[]},{"s":"UNISWAP:BOBOWETH_DE089C.USD","d":[]},{"s":"WHITEBIT:DOGEUSD","d":[]},{"s":"HITBTC:TNCBTC","d":[]},{"s":"MEXC:ICPUSDT.P","d":[]},{"s":"GATEIO:ZRXUSDT","d":[]},{"s":"ZOOMEX:YFIUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHMOMO","d":[]},{"s":"BITGET:LINKUSDT","d":[]},{"s":"MEXC:AAVEUSDT.P","d":[]},{"s":"UNISWAP:ESAIWETH_E4A85F","d":[]},{"s":"KRAKEN:WAVESUSD.PM","d":[]},{"s":"MEXC:ETCBTC","d":[]},{"s":"GATEIO:SUSHIUSDT.3S","d":[]},{"s":"UNISWAP3ETH:ISKUSDT","d":[]},{"s":"POLONIEX:SOLBTC","d":[]},{"s":"HITBTC:UNIUSD","d":[]},{"s":"HITBTC:BNTUSDT","d":[]},{"s":"GATEIO:MINTUSDT","d":[]},{"s":"BINANCE:MATICUSDT","d":[]},{"s":"GATEIO:STORJUSDT","d":[]},{"s":"UNISWAP:MAGNETWETH_74D936.USD","d":[]},{"s":"BITGET:AIBBUSDT","d":[]},{"s":"UNISWAP:ADSWETH_F5E875.USD","d":[]},{"s":"UNISWAP3ETH:WETHPERP","d":[]},{"s":"GATEIO:BIOPUSDT","d":[]},{"s":"GATEIO:KICKSUSDT","d":[]},{"s":"MEXC:ETCUSDT.P","d":[]},{"s":"MEXC:DOMOUSDT","d":[]},{"s":"GATEIO:DPRUSDT","d":[]},{"s":"COINEX:XNOUSDC","d":[]},{"s":"BITMEX:XBTUSDTH2024","d":[]},{"s":"MEXC:DTBOMUSDT","d":[]},{"s":"UNISWAP3ETH:NETVRWETH","d":[]},{"s":"GATEIO:BOOUSDT","d":[]},{"s":"UNISWAP3ETH:MOONBIRDFLC_247748.USD","d":[]},{"s":"UNISWAP3OPTIMISM:AIWETH_E38DEB.USD","d":[]},{"s":"GATEIO:NEARUSDT","d":[]},{"s":"QUICKSWAP:REVVQUICK_C52F4E.USD","d":[]},{"s":"POLONIEX:EOSBTC","d":[]},{"s":"BINANCE:AERGOUSDT","d":[]},{"s":"MEXC:RLYUSDT","d":[]},{"s":"UNISWAP:EVERMOONWETH_AA665A.USD","d":[]},{"s":"WHITEBIT:BICOUSDT","d":[]},{"s":"TRADERJOE:PAPERWAVAX_774350","d":[]},{"s":"KRAKEN:XLMUSD.PM","d":[]},{"s":"HITBTC:MXCUSDT","d":[]},{"s":"UNISWAP:BATWETH_B6909B.USD","d":[]},{"s":"POLONIEX:XRPBTC","d":[]},{"s":"PANGOLIN:AVAIWAVAX_6CBFB9","d":[]},{"s":"HITBTC:CKBUSD","d":[]},{"s":"UNISWAP3ETH:DAIUSDC","d":[]},{"s":"ZOOMEX:BOBAUSDT.P","d":[]},{"s":"UNISWAP:STCWETH_3B6AB2","d":[]},{"s":"TRADERJOE:SSPELLSPELL_033C3F","d":[]},{"s":"HITBTC:POWRUSD","d":[]},{"s":"UNISWAP:PEPEWETH_CE0173","d":[]},{"s":"TRADERJOE:DBYWAVAX_30556A.USD","d":[]},{"s":"UNISWAP3ETH:THEOWETH_1FC037.USD","d":[]},{"s":"MEXC:MAPUSDT","d":[]},{"s":"COINEX:AURORAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHDZHV","d":[]},{"s":"BINGX:STRKUSDT.PS","d":[]},{"s":"MEXC:VRDUSDT","d":[]},{"s":"MEXC:BENUSDT","d":[]},{"s":"UNISWAP:TRUWETH_EC6A6B","d":[]},{"s":"BINGX:RATSUSDT.P","d":[]},{"s":"QUICKSWAP:MONAUSDT_856AD5","d":[]},{"s":"BITGET:GOMININGUSDT","d":[]},{"s":"WHITEBIT:JUPUSDT","d":[]},{"s":"UNISWAP:SPARKUSDC_DB4A17","d":[]},{"s":"SPOOKYSWAP:GTRTLWTRTL_BD1228.USD","d":[]},{"s":"BTSE:BAKEUSD","d":[]},{"s":"UNISWAP:RIZZWETH_215EC2","d":[]},{"s":"WOONETWORK:TIAUSDT","d":[]},{"s":"COINBASE:AUCTIONUSD","d":[]},{"s":"KRAKEN:QNTUSD","d":[]},{"s":"UNISWAP3ETH:WETHSURE","d":[]},{"s":"MEXC:XPXUSDT","d":[]},{"s":"MEXC:CENNZUSDT","d":[]},{"s":"BINGX:RENUSDT.P","d":[]},{"s":"COINEX:GENEUSDT","d":[]},{"s":"QUICKSWAP:WMATICUSDT_604229","d":[]},{"s":"MEXC:BBFUSDT","d":[]},{"s":"DERIBIT:ETHUSD22H2024","d":[]},{"s":"POLONIEX:SSBUSDT","d":[]},{"s":"BISWAP:ZILWBNB_E41F46","d":[]},{"s":"UNISWAP3ETH:RBNWETH_94981F.USD","d":[]},{"s":"TRADERJOE:WETHEWAVAX_FE15C2","d":[]},{"s":"BINANCE:GRTUSDT","d":[]},{"s":"HITBTC:STCBTC","d":[]},{"s":"UNISWAP:GHXWETH_C6B9C3","d":[]},{"s":"PHEMEX:DOTUSDT","d":[]},{"s":"MEXC:PYRAMIDAIUSDT","d":[]},{"s":"QUICKSWAP:LUMIIIUSDT_00510E","d":[]},{"s":"UNISWAP:SHARBIWETH_5ACC53.USD","d":[]},{"s":"UNISWAP:BSTWETH_0E85FB.USD","d":[]},{"s":"QUICKSWAP:ORIOWMATIC_19568B","d":[]},{"s":"UNISWAP:SUZUMEWETH_8340A8","d":[]},{"s":"UNISWAP3OPTIMISM:PAPEROP_E9033C.USD","d":[]},{"s":"KRAKEN:SOLEUR","d":[]},{"s":"MEXC:RUSHUSDT","d":[]},{"s":"TRADERJOE:XPTPPTP_C4B712","d":[]},{"s":"BYBIT:ZETAUSDT.P","d":[]},{"s":"UNISWAP:CVWETH_F463A4","d":[]},{"s":"UNISWAP:DOJOWETH_4FF28E","d":[]},{"s":"UNISWAP3ETH:SANDWETH","d":[]},{"s":"MEXC:TONUSDT","d":[]},{"s":"UNISWAP3ETH:MEMEWETH_70CF99.USD","d":[]},{"s":"BINANCE:ONGBTC","d":[]},{"s":"MEXC:CAMLYUSDT","d":[]},{"s":"QUICKSWAP:VEGAWMATIC_4CED7D","d":[]},{"s":"WHITEBIT:NCDTUSDT","d":[]},{"s":"BLOFIN:GALAUSDT.P","d":[]},{"s":"HITBTC:SOLBTC","d":[]},{"s":"UNISWAP3ETH:JASMYWETH","d":[]},{"s":"UNISWAP:O1WETH_3A7D23.USD","d":[]},{"s":"UNISWAP3ETH:UOSWETH","d":[]},{"s":"HITBTC:SUSHIBTC","d":[]},{"s":"MEXC:BLUESUSDT","d":[]},{"s":"HITBTC:LUNBTC","d":[]},{"s":"UNISWAP3ETH:XCMWETH","d":[]},{"s":"MEXC:LRCUSDT.P","d":[]},{"s":"BITFINEX:TIAUSD","d":[]},{"s":"UNISWAP:TOSWETH_8D38A3.USD","d":[]},{"s":"HITBTC:SEELEUSDT","d":[]},{"s":"BTSE:SNXUSD","d":[]},{"s":"WAGYUSWAP:VLXPADWVLX_E0FCB9.USD","d":[]},{"s":"BINGX:METISUSDT.PS","d":[]},{"s":"BINANCE:ETHUSDC","d":[]},{"s":"BYBIT:ETHDAI","d":[]},{"s":"UNISWAP:GMEEWETH_4C0830.USD","d":[]},{"s":"UNISWAP3ETH:UNTWETH","d":[]},{"s":"UNISWAP:FRPWETH_F3C80A","d":[]},{"s":"COINEX:ZENBTC","d":[]},{"s":"BITFINEX:BGBUSD","d":[]},{"s":"COINEX:WAXPUSDC","d":[]},{"s":"UNISWAP3ETH:ICHIUSDC","d":[]},{"s":"GATEIO:ROSEUSDT.3S","d":[]},{"s":"MEXC:PETSUSDT","d":[]},{"s":"UNISWAP3ETH:SUREWETH_119F33.USD","d":[]},{"s":"BINANCE:BNBUSD.P","d":[]},{"s":"COINEX:ONTBTC","d":[]},{"s":"UNISWAP3ETH:NVIRWETH","d":[]},{"s":"COINBASE:AVAXEUR","d":[]},{"s":"UNISWAP:VLXPADWETH_CDF5AD","d":[]},{"s":"PHEMEX:XLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAEDY","d":[]},{"s":"MEXC:ALPINEUSDT","d":[]},{"s":"UNISWAP3ETH:BCDTWETH_750205.USD","d":[]},{"s":"UNISWAP:APEDWETH_877193","d":[]},{"s":"HITBTC:ACHBTC","d":[]},{"s":"BYBIT:MATICUSDT.P","d":[]},{"s":"BISWAP:TKOWBNB_DE5E03","d":[]},{"s":"BTSE:ETHUSD.P","d":[]},{"s":"UPBIT:SANDKRW","d":[]},{"s":"GATEIO:PYMUSDT","d":[]},{"s":"BINANCE:COTITRY","d":[]},{"s":"GATEIO:OKTUSDT","d":[]},{"s":"MEXC:ZKGROKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHAEGIS","d":[]},{"s":"UNISWAP:ORNWETH_6C8B0D.USD","d":[]},{"s":"UNISWAP3ETH:SANDUSDC","d":[]},{"s":"UNISWAP3ETH:SDUSDC","d":[]},{"s":"BINANCE:ANKRTRY","d":[]},{"s":"UNISWAP3ETH:WBTCFCO","d":[]},{"s":"MEXC:JOYUSDT","d":[]},{"s":"UNISWAP:IMLCWETH_B45463.USD","d":[]},{"s":"QUICKSWAP:DOLZUSDT_01E0FB","d":[]},{"s":"BITFINEX:FLRUST","d":[]},{"s":"UNISWAP3ARBITRUM:AICODEWETH_2A31B6.USD","d":[]},{"s":"UNISWAP3ETH:BLNDUSDC","d":[]},{"s":"COINEX:OMGUSDT","d":[]},{"s":"MEXC:KRIPTOUSDT","d":[]},{"s":"UNISWAP:SAKURAUSDC_C20DFC","d":[]},{"s":"UNISWAP3ETH:WETHLORDS","d":[]},{"s":"UNISWAP3ETH:SAITABITWBTC_B2C86F.USD","d":[]},{"s":"UNISWAP3ETH:TITANXWETH","d":[]},{"s":"UNISWAP:OPTIMOUSEWETH_E922D4","d":[]},{"s":"WHITEBIT:TIATRY","d":[]},{"s":"KRAKEN:MCEUR","d":[]},{"s":"BITSTAMP:DYDXEUR","d":[]},{"s":"UNISWAP:DRAGONWETH_B5A9A9.USD","d":[]},{"s":"BITGET:DAOUSDT","d":[]},{"s":"UNISWAP:CELLWETH_9C4CC8","d":[]},{"s":"UNISWAP3POLYGON:AEGWETH_2E5D26.USD","d":[]},{"s":"UNISWAP:ECWETH_71106E.USD","d":[]},{"s":"HITBTC:CWUSDT","d":[]},{"s":"HITBTC:BNKUSDT","d":[]},{"s":"COINEX:GRSBTC","d":[]},{"s":"MEXC:ASNUSDT","d":[]},{"s":"BITGET:LEVERUSDT.P","d":[]},{"s":"BINGX:SNTUSDT.PS","d":[]},{"s":"GATEIO:DOCKUSDT","d":[]},{"s":"MEXC:OCTAUSDT","d":[]},{"s":"COINEX:KSMUSDT","d":[]},{"s":"UNISWAP:ODOGEWETH_A5C85F.USD","d":[]},{"s":"PHEMEX:WAXPUSDT.P","d":[]},{"s":"QUICKSWAP:CPUSDC_5BDDA3","d":[]},{"s":"COINEX:ASTOUSDT","d":[]},{"s":"BITGET:CYCONUSDT","d":[]},{"s":"UNISWAP3ETH:WETHFXS","d":[]},{"s":"UNISWAP3ETH:VITAWETH","d":[]},{"s":"ZOOMEX:10000NFTUSDT.P","d":[]},{"s":"UNISWAP:NRGWETH_61ADA4","d":[]},{"s":"UNISWAP:DODOWETH_68FA18","d":[]},{"s":"UNISWAP:COFWETH_2B53D2","d":[]},{"s":"UNISWAP3ETH:BUSYWETH","d":[]},{"s":"UNISWAP3ETH:TGBPWETH","d":[]},{"s":"BINANCEUS:PROMUSDT","d":[]},{"s":"COINBASE:DARUSD","d":[]},{"s":"SPOOKYSWAP:MULTIWFTM_297C89.USD","d":[]},{"s":"UNISWAP:VOICEWETH_06E4C1.USD","d":[]},{"s":"BYBIT:EOSUSDT.P","d":[]},{"s":"GATEIO:XNLUSDT","d":[]},{"s":"BTSE:IDUSD","d":[]},{"s":"POLONIEX:ALPINEUSDT","d":[]},{"s":"HITBTC:DCRBTC","d":[]},{"s":"HITBTC:NWCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRSETH","d":[]},{"s":"GATEIO:ARUSDT.3S","d":[]},{"s":"GATEIO:BTCUSDT.3L","d":[]},{"s":"UNISWAP:DONUSDT_91B1B8","d":[]},{"s":"UNISWAP3ETH:MCRTWETH","d":[]},{"s":"BYBIT:MBOXUSDT","d":[]},{"s":"HITBTC:UMAUSD","d":[]},{"s":"BINANCEUS:API3USDT","d":[]},{"s":"PIONEX:LITUSDT.P","d":[]},{"s":"BYBIT:ETHWUSDT","d":[]},{"s":"GATEIO:FTTUSDT.3L","d":[]},{"s":"POLONIEX:KLIMAUSDT","d":[]},{"s":"UNISWAP3ETH:COMPRNG","d":[]},{"s":"MEXC:MAGICUSDT","d":[]},{"s":"MEXC:AIDOGEUSDT","d":[]},{"s":"POLONIEX:FOURUSDT","d":[]},{"s":"COINEX:EDENUSDT","d":[]},{"s":"WHITEBIT:ENSUSDT","d":[]},{"s":"UNISWAP3ETH:AJNAWETH_B79323.USD","d":[]},{"s":"COINBASE:LINKBTC","d":[]},{"s":"UNISWAP3ARBITRUM:LOCUSUSDC_FC8510.USD","d":[]},{"s":"QUICKSWAP:AIMXWETH_F115BD","d":[]},{"s":"PANGOLIN:COOKWAVAX_F7FF4F","d":[]},{"s":"UNISWAP3ARBITRUM:DPXUSDC_FEA0E4.USD","d":[]},{"s":"BITHUMB:STORJKRW","d":[]},{"s":"BITGET:PSTAKEUSDT","d":[]},{"s":"WHITEBIT:STORJUSDT","d":[]},{"s":"UNISWAP:ZOOMERWETH_C2C701.USD","d":[]},{"s":"QUICKSWAP:REBWMATIC_6D56CE","d":[]},{"s":"ZOOMEX:AUCTIONUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCICSA","d":[]},{"s":"GEMINI:SOLETH","d":[]},{"s":"XEXCHANGE:CHARGEDWEGLD","d":[]},{"s":"UNISWAP:K21WETH_3BF862.USD","d":[]},{"s":"UNISWAP3ETH:ANFDWETH_0CAAF6.USD","d":[]},{"s":"COINEX:DNTUSDT","d":[]},{"s":"BINANCE:MBOXBNB","d":[]},{"s":"BYBIT:GLMUSDT.P","d":[]},{"s":"UNISWAP3ETH:DIMOWETH","d":[]},{"s":"SPOOKYSWAP:FANTOMWFTM_1BE117.USD","d":[]},{"s":"MEXC:SMILEYUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUNION","d":[]},{"s":"UNISWAP:MORRAWETH_C56EC3.USD","d":[]},{"s":"COINEX:DERCUSDT","d":[]},{"s":"BINANCE:XLMUSDT","d":[]},{"s":"BYBIT:TWTUSDT.P","d":[]},{"s":"MEXC:GLINTUSDT","d":[]},{"s":"UNISWAP3OPTIMISM:GTCWETH_D0FA3B.USD","d":[]},{"s":"UNISWAP3ETH:SPLYWETH_6388FC.USD","d":[]},{"s":"BINANCE:NFPUSDT","d":[]},{"s":"TRADERJOE:TDWAVAX_7EF8E0.USD","d":[]},{"s":"UNISWAP3POLYGON:NEUYWETH_ABEBC2.USD","d":[]},{"s":"BITKUB:ATOMTHB","d":[]},{"s":"MEXC:GMBRCUSDT","d":[]},{"s":"POLONIEX:ATOMUSDT","d":[]},{"s":"QUICKSWAP:USDCUSDC_7DAB60","d":[]},{"s":"BITMEX:100BONKUSDT","d":[]},{"s":"UNISWAP:PNDCWETH_27B82B","d":[]},{"s":"BYBIT:SDUSDT","d":[]},{"s":"HITBTC:MDXUSD","d":[]},{"s":"PHEMEX:CCXUSDT","d":[]},{"s":"HITBTC:CLTUSD","d":[]},{"s":"MEXC:OWNERUSDT","d":[]},{"s":"POLONIEX:AMPUSDT","d":[]},{"s":"UNISWAP3ETH:WETHUSDT_11B815.USD","d":[]},{"s":"PANGOLIN:VEEWAVAX_D69DE4.USD","d":[]},{"s":"MEXC:NZEROUSDT","d":[]},{"s":"TRADERJOE:ABOBWAVAX_A0CEF9.USD","d":[]},{"s":"COINBASE:PRQUSD","d":[]},{"s":"MEXC:NERDUSDT","d":[]},{"s":"SPOOKYSWAP:FLORYWFTM_453E15","d":[]},{"s":"UNISWAP3ETH:PATEXUSDT_57D8D0.USD","d":[]},{"s":"COINBASE:CTSIUSD","d":[]},{"s":"COINBASE:KRLUSD","d":[]},{"s":"GATEIO:MATICUSDT.3L","d":[]},{"s":"BYBIT:XLMUSDC","d":[]},{"s":"WHITEBIT:1INCHUAH","d":[]},{"s":"UNISWAP3ETH:TONCOINUSDT_6A9C4F.USD","d":[]},{"s":"PIONEX:APEUSDT.P","d":[]},{"s":"GATEIO:DDDUSDT","d":[]},{"s":"UNISWAP:GROKBOTWETH_625FF6.USD","d":[]},{"s":"UNISWAP:SPARKOWETH_A2D563.USD","d":[]},{"s":"UNISWAP3ARBITRUM:THALESUSDC_41AAB1.USD","d":[]},{"s":"BINANCE:GTCUSDT","d":[]},{"s":"BITGET:PEPEEUR","d":[]},{"s":"PHEMEX:ILVUSDT","d":[]},{"s":"UNISWAP:PACHAWETH_4C9831","d":[]},{"s":"SPOOKYSWAP:BLOODWFTM_EE02AF.USD","d":[]},{"s":"MEXC:SHIBUSDT.P","d":[]},{"s":"GATEIO:COMBOUSDT","d":[]},{"s":"PIONEX:PENDLEUSDT.P","d":[]},{"s":"HITBTC:BTGBTC","d":[]},{"s":"UNISWAP:SPECTREWETH_8A6D95.USD","d":[]},{"s":"BITGET:KSMUSDT.P","d":[]},{"s":"UNISWAP3ETH:VLIZWETH_2E079D.USD","d":[]},{"s":"GATEIO:DAFIUSDT","d":[]},{"s":"GATEIO:MGKLUSDT","d":[]},{"s":"KRAKEN:ACAUSD","d":[]},{"s":"UNISWAP:BIRDWETH_6D76F7","d":[]},{"s":"QUICKSWAP:SAVGWMATIC_604AE4","d":[]},{"s":"HITBTC:LTCUSDT","d":[]},{"s":"UNISWAP:0KNWETH_2947DC.USD","d":[]},{"s":"ZOOMEX:LQTYUSDT.P","d":[]},{"s":"UNISWAP3ETH:CBETHWETH_840DEE.USD","d":[]},{"s":"KRAKEN:BTCPYUSD","d":[]},{"s":"POLONIEX:JSTUSDT","d":[]},{"s":"UNISWAP:HAKIWETH_F71A7D.USD","d":[]},{"s":"BITGET:MCRTUSDT","d":[]},{"s":"MEXC:BLAUSDT","d":[]},{"s":"MEXC:ARBGPTUSDT","d":[]},{"s":"UNISWAP:XENOWETH_827011.USD","d":[]},{"s":"GATEIO:INJUSDT","d":[]},{"s":"KRAKEN:LCXUSD","d":[]},{"s":"BTSE:SANDUSD","d":[]},{"s":"UNISWAP3ETH:MMTWETH","d":[]},{"s":"UNISWAP3POLYGON:AMKTWBTC_E98AD3.USD","d":[]},{"s":"UNISWAP3ETH:DEXTWETH","d":[]},{"s":"UNISWAP:HOPPYWETH_259427.USD","d":[]},{"s":"BINGX:ATAUSDT.P","d":[]},{"s":"KRAKEN:EGLDUSD.PM","d":[]},{"s":"BITHUMB:AMOKRW","d":[]},{"s":"GATEIO:SINUSDT","d":[]},{"s":"UNISWAP:BBOXWETH_7C54F6.USD","d":[]},{"s":"UNISWAP3ETH:MANAWETH_8661AE.USD","d":[]},{"s":"UNISWAP3ETH:WETHEMERALD","d":[]},{"s":"HITBTC:ZECBTC","d":[]},{"s":"BLOFIN:MYRIAUSDT.P","d":[]},{"s":"HITBTC:WAVESETH","d":[]},{"s":"UNISWAP3ETH:WETHPANDA","d":[]},{"s":"BINANCE:ADXUSDT","d":[]},{"s":"MEXC:GLFTUSDT","d":[]},{"s":"BLOFIN:RAREUSDT.P","d":[]},{"s":"UNISWAP:WEBAIWETH_7862DC.USD","d":[]},{"s":"UNISWAP3ETH:WAGMIWETH","d":[]},{"s":"UNISWAP:MORVOLWETH_E2236C.USD","d":[]},{"s":"UNISWAP:TOADSWETH_2B3DC1.USD","d":[]},{"s":"BYBIT:USTCUSDT","d":[]},{"s":"BINANCE:USDTARS","d":[]},{"s":"COINEX:QNTUSDC","d":[]},{"s":"POLONIEX:INJUSDT","d":[]},{"s":"UNISWAP3ETH:HOPWETH","d":[]},{"s":"UNISWAP:FIREWETH_F94471","d":[]},{"s":"UNISWAP3ETH:WETHCTLS","d":[]},{"s":"BITFINEX:EGLDUST.P","d":[]},{"s":"UNISWAP:BJWETH_20DDBF","d":[]},{"s":"POLONIEX:LPTUSDT","d":[]},{"s":"TRADERJOE:ASNDMIM_785A73","d":[]},{"s":"DYDX:YFIUSD.P","d":[]},{"s":"HITBTC:RADUSD","d":[]},{"s":"UNISWAP3ETH:OBOTUSDT","d":[]},{"s":"BITFINEX:XRPBTC.P","d":[]},{"s":"TRADERJOE:WOOFWAVAX_13859F.USD","d":[]},{"s":"PHEMEX:ANKRUSDT.P","d":[]},{"s":"BYBIT:PEOPLEUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:GPOUSDC_C32863.USD","d":[]},{"s":"BINANCE:MOBUSDT","d":[]},{"s":"SPOOKYSWAP:CONKDWFTM_E8EFD6","d":[]},{"s":"UNISWAP3ETH:USDTRNG","d":[]},{"s":"QUICKSWAP:VOLLARUSDT_401909","d":[]},{"s":"UNISWAP:WPEWETH_75F89F","d":[]},{"s":"UNISWAP3ETH:MUMUWETH_F9F7F1.USD","d":[]},{"s":"UNISWAP3ETH:WETHWSTFX","d":[]},{"s":"UNISWAP:XFUNDWETH_AB2D2F","d":[]},{"s":"UNISWAP:GTXWETH_FF4379.USD","d":[]},{"s":"TRADERJOE:GRAVEWAVAX_10E882","d":[]},{"s":"BINANCE:BANDTRY","d":[]},{"s":"UNISWAP3POLYGON:OXWMATIC_1D3CD0.USD","d":[]},{"s":"BITHUMB:BLURKRW","d":[]},{"s":"BINANCEUS:LAZIOUSDT","d":[]},{"s":"UNISWAP3ETH:USDCAXL","d":[]},{"s":"BITHUMB:XPRKRW","d":[]},{"s":"MEXC:ARGUSDT","d":[]},{"s":"HITBTC:MOBUSD","d":[]},{"s":"BYBIT:ZECUSDT.P","d":[]},{"s":"UNISWAP3ETH:USDCRUSD","d":[]},{"s":"GATEIO:SHIBUSDT.3L","d":[]},{"s":"UNISWAP3ETH:UBTWETH","d":[]},{"s":"DYDX:RUNEUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHAZUR","d":[]},{"s":"KRAKEN:NANOBTC","d":[]},{"s":"UNISWAP3ETH:USDTWORK","d":[]},{"s":"UNISWAP3ETH:BPROWETH_2D7BA7.USD","d":[]},{"s":"GATEIO:SOPHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHNFTC","d":[]},{"s":"UNISWAP3ETH:WETHORBK","d":[]},{"s":"UNISWAP3ETH:AGEURUSDC_7ED3F3.USD","d":[]},{"s":"UNISWAP:QUADWETH_24D26D","d":[]},{"s":"UNISWAP3ETH:CRVWETH_919FA9.USD","d":[]},{"s":"BINANCE:PENDLEUSDT","d":[]},{"s":"GATEIO:LINAUSDT","d":[]},{"s":"WOONETWORK:JUPUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:DZHVWETH_05C5BD.USD","d":[]},{"s":"BITHUMB:MIXKRW","d":[]},{"s":"POLONIEX:GHSTUSDT","d":[]},{"s":"UNISWAP3ETH:FROGEWETH_686AEE.USD","d":[]},{"s":"UNISWAP3ETH:XENWETH_2A9D2B.USD","d":[]},{"s":"BYBIT:XAVAUSDT","d":[]},{"s":"KRAKEN:GSTUSD","d":[]},{"s":"SPOOKYSWAP:VEMPWFTM_928202.USD","d":[]},{"s":"UNISWAP3ETH:RSRWETH","d":[]},{"s":"MEXC:WSGUSDT","d":[]},{"s":"TRADERJOE:KINGSHITXWAVAX_43FD4E.USD","d":[]},{"s":"PANGOLIN:KACYWAVAX_1938CE","d":[]},{"s":"SPOOKYSWAP:FR0XWFTM_579A96","d":[]},{"s":"GATEIO:ZOONUSDT","d":[]},{"s":"UNISWAP3ETH:COVALWETH","d":[]},{"s":"MEXC:PERPUSDT","d":[]},{"s":"UNISWAP:BOIWETH_C06414.USD","d":[]},{"s":"UNISWAP:PEPEWETH_CE0173.USD","d":[]},{"s":"UNISWAP3ETH:BTCPWETH","d":[]},{"s":"UNISWAP3ETH:PDIWETH","d":[]},{"s":"MEXC:DESWARUSDT","d":[]},{"s":"BITGET:STXUSDT","d":[]},{"s":"UNISWAP3ETH:IC21WETH_15E71C.USD","d":[]},{"s":"UNISWAP:BAOWETH_9973BB","d":[]},{"s":"UNISWAP3ETH:CRAZYPEPEWETH_206897.USD","d":[]},{"s":"UNISWAP:COINBTWETH_41A121","d":[]},{"s":"HITBTC:NEOEOS","d":[]},{"s":"UNISWAP3ARBITRUM:BYTEWETH_AF063B.USD","d":[]},{"s":"BITSTAMP:USDTEUR","d":[]},{"s":"BITGET:XRPUSDT.P","d":[]},{"s":"MEXC:SUPERUSDT.P","d":[]},{"s":"UNISWAP:SLAKEWETH_02D9EA.USD","d":[]},{"s":"BITGET:AIDOGEUSDT","d":[]},{"s":"UNISWAP3ETH:PREWETH_19A573.USD","d":[]},{"s":"PIONEX:BEAMXUSDT.P","d":[]},{"s":"UNISWAP:AUDIOWETH_C730EF","d":[]},{"s":"UNISWAP3ETH:NFDWETH","d":[]},{"s":"MEXC:ETKUSDT","d":[]},{"s":"BYBIT:HNTUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHAST","d":[]},{"s":"MEXC:CAGAUSDT","d":[]},{"s":"UNISWAP:CONVERGEWETH_F55D35.USD","d":[]},{"s":"MEXC:ROSXUSDT","d":[]},{"s":"BINANCE:SEIBNB","d":[]},{"s":"UNISWAP3ETH:FEITRIBE","d":[]},{"s":"BITFINEX:CHZBTC","d":[]},{"s":"BLOFIN:AUCTIONUSDT.P","d":[]},{"s":"BYBIT:RSS3USDT.P","d":[]},{"s":"GATEIO:FPFTUSDT","d":[]},{"s":"PHEMEX:1000TROLLUSDT","d":[]},{"s":"UNISWAP3ETH:GUSDUSDC","d":[]},{"s":"SPOOKYSWAP:XHNRWFTM_901B23","d":[]},{"s":"XEXCHANGE:OFEWEGLD","d":[]},{"s":"COINBASE:DASHBTC","d":[]},{"s":"UNISWAP:SATOSHIWETH_F0D86A.USD","d":[]},{"s":"UNISWAP3ETH:WETHIMGNAI","d":[]},{"s":"QUICKSWAP:DNXCUSDC_E169A6","d":[]},{"s":"BITGET:ZEROUSDT","d":[]},{"s":"COINEX:RADUSDT","d":[]},{"s":"MEXC:GDCBUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSNEK","d":[]},{"s":"BITGET:RBNUSDT","d":[]},{"s":"BINGX:HOTUSDT.P","d":[]},{"s":"COINEX:KUJIUSDT","d":[]},{"s":"MEXC:IVPAYUSDT","d":[]},{"s":"UNISWAP3ETH:WBTCERBB","d":[]},{"s":"TRADERJOE:CHAMUSDC_D6F18C","d":[]},{"s":"GATEIO:SKUUSDT","d":[]},{"s":"UNISWAP:RFIWETH_4C8341","d":[]},{"s":"UNISWAP:DREAMTSUKA_7A6F2C","d":[]},{"s":"TRADERJOE:SHEIKWAVAX_D66891","d":[]},{"s":"UNISWAP:GENWETH_1CA471.USD","d":[]},{"s":"UNISWAP:MDAIWETH_F67041.USD","d":[]},{"s":"BINANCE:TUSDUSDT","d":[]},{"s":"BITGET:CBKUSDT","d":[]},{"s":"UNISWAP:MJ404WETH_84DA03.USD","d":[]},{"s":"MEXC:USDDUSDC","d":[]},{"s":"BITRUE:MLNUSDT","d":[]},{"s":"COINEX:IRISBTC","d":[]},{"s":"GATEIO:FBXUSDT","d":[]},{"s":"GATEIO:KIBAUSDT","d":[]},{"s":"SPOOKYSWAP:BSHAREWFTM_6F6074","d":[]},{"s":"MEXC:FTNAUSDT","d":[]},{"s":"UNISWAP:XRISEWETH_4BC418","d":[]},{"s":"UNISWAP:RUFFWETH_1DC7F4.USD","d":[]},{"s":"UNISWAP:HIBAYCWETH_54C3BB","d":[]},{"s":"UNISWAP3ETH:RBNWETH","d":[]},{"s":"BITFINEX:SNXUSD","d":[]},{"s":"QUICKSWAP:FISHWMATIC_289CF2","d":[]},{"s":"BINGX:TAOUSDT.P","d":[]},{"s":"MEXC:PYTHUSDT","d":[]},{"s":"GATEIO:VAIUSDT","d":[]},{"s":"BITHUMB:UMAKRW","d":[]},{"s":"COINEX:ZRXUSDT","d":[]},{"s":"MEXC:LITTUSDT","d":[]},{"s":"PIONEX:TIAUSDT.P","d":[]},{"s":"GATEIO:KINEUSDT","d":[]},{"s":"UNISWAP3ETH:USDCBYTE","d":[]},{"s":"UNISWAP:BTKWETH_8EE85A.USD","d":[]},{"s":"BINANCE:MATICBNB","d":[]},{"s":"PANGOLIN:SPELLWAVAX_D4CBC9.USD","d":[]},{"s":"COINEX:ORBSUSDT","d":[]},{"s":"GATEIO:ATEMUSDT","d":[]},{"s":"GATEIO:BPUSDT","d":[]},{"s":"TRADERJOE:BALLSWAVAX_650679","d":[]},{"s":"UNISWAP:TIGGWETH_5C7311","d":[]},{"s":"SPOOKYSWAP:CHILLWFTM_21EEEF.USD","d":[]},{"s":"QUICKSWAP:QUICKWMATIC_019BA0","d":[]},{"s":"BYBIT:ADAUSDT.2S","d":[]},{"s":"BINANCE:MKRUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPICKLE","d":[]},{"s":"UNISWAP:ZEEWETH_2E0367.USD","d":[]},{"s":"UNISWAP3ETH:WETHJBX","d":[]},{"s":"BINANCE:LOOMBTC","d":[]},{"s":"HITBTC:ARBUSDC","d":[]},{"s":"QUICKSWAP:EROWANQUICK_631F39.USD","d":[]},{"s":"UNISWAP3POLYGON:WERACWMATIC_22AF38.USD","d":[]},{"s":"KRAKEN:IMXUSD","d":[]},{"s":"KRAKEN:BTCUSD.PM","d":[]},{"s":"UNISWAP3ETH:TITANXJAKEX_243F9F.USD","d":[]},{"s":"UNISWAP:MMUSDC_6832A0","d":[]},{"s":"UNISWAP3ETH:MPLWETH_9F41A3.USD","d":[]},{"s":"BITSTAMP:AXSUSD","d":[]},{"s":"EXMO:ETHUSD","d":[]},{"s":"UNISWAP3ETH:SISCWETH_2E4440.USD","d":[]},{"s":"MEXC:MOONSEERUSDT","d":[]},{"s":"UNISWAP3ETH:USDCDYAD","d":[]},{"s":"KRAKEN:LRCUSD.PM","d":[]},{"s":"GATEIO:RVNUSDT","d":[]},{"s":"GATEIO:CTSIUSDT","d":[]},{"s":"UNISWAP:GAMBITWETH_BA9D01","d":[]},{"s":"MEXC:SXUSDT","d":[]},{"s":"MEXC:ACAUSDT","d":[]},{"s":"COINEX:OGNUSDT","d":[]},{"s":"QUICKSWAP:PRYZWMATIC_348E52","d":[]},{"s":"UNISWAP3POLYGON:XZARUSDC_9926E6.USD","d":[]},{"s":"UNISWAP3POLYGON:USDCUSDT_3F5228.USD","d":[]},{"s":"MEXC:AINUSDT","d":[]},{"s":"MEXC:GRINUSDT","d":[]},{"s":"KRAKEN:SHIBUSD.PM","d":[]},{"s":"POLONIEX:KEKECUSDT","d":[]},{"s":"UNISWAP:OILWETH_7ACE17.USD","d":[]},{"s":"UNISWAP:NINAWETH_282B0E.USD","d":[]},{"s":"UNISWAP3ETH:SCALEWETH_E578AE.USD","d":[]},{"s":"COINEX:AXSBTC","d":[]},{"s":"BITGET:BNTUSDT","d":[]},{"s":"UNISWAP:KATAWETH_DC1D67","d":[]},{"s":"MEXC:AITAOUSDT","d":[]},{"s":"BINGX:ETHUSDT.P","d":[]},{"s":"HITBTC:FRINUSDT","d":[]},{"s":"KRAKEN:LSKUSD","d":[]},{"s":"HITBTC:POEBTC","d":[]},{"s":"UNISWAP3ETH:PLAYFIWETH","d":[]},{"s":"MEXC:SWRVUSDT","d":[]},{"s":"MEXC:PENDLEUSDT","d":[]},{"s":"QUICKSWAP:FYNUSDC_B46A13","d":[]},{"s":"BITRUE:FIDAUSDT","d":[]},{"s":"UNISWAP:YASHAWETH_3B35A9","d":[]},{"s":"UNISWAP3ETH:NABOXWETH_E574DD.USD","d":[]},{"s":"PHEMEX:10000000AIDOGEUSDT.P","d":[]},{"s":"MEXC:CHRISPUMPUSDT","d":[]},{"s":"BTSE:INJUSD","d":[]},{"s":"UNISWAP:ISHIWETH_048D31.USD","d":[]},{"s":"KRAKEN:SGBEUR","d":[]},{"s":"GATEIO:DIVERUSDT","d":[]},{"s":"HITBTC:YCCUSD","d":[]},{"s":"UNISWAP:LENDSWETH_FE7956.USD","d":[]},{"s":"UNISWAP:WG0WETH_D00ED1","d":[]},{"s":"GATEIO:THGUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRPILL","d":[]},{"s":"BYBIT:BEAMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSPX","d":[]},{"s":"UNISWAP:WFOWETH_AD00F1","d":[]},{"s":"PHEMEX:DIAUSDT","d":[]},{"s":"BYBIT:MCRTUSDT","d":[]},{"s":"HITBTC:ABBCBTC","d":[]},{"s":"UNISWAP3OPTIMISM:HAKUWETH_D35937.USD","d":[]},{"s":"UNISWAP:9527WETH_C8C1B6","d":[]},{"s":"COINEX:BNBUSDC","d":[]},{"s":"COINBASE:KAVAUSD","d":[]},{"s":"UNISWAP3ETH:VEGAWETH_B42EED.USD","d":[]},{"s":"UNISWAP:BEARWETH_9D0242","d":[]},{"s":"OKX:NEARUSDT.P","d":[]},{"s":"POLONIEX:CVTUSDT","d":[]},{"s":"POLONIEX:CVCUSDT","d":[]},{"s":"BINANCE:RLCBTC","d":[]},{"s":"HITBTC:SNCETH","d":[]},{"s":"GATEIO:SYNUSDT","d":[]},{"s":"UNISWAP:CRAZYWETH_FA0BA2.USD","d":[]},{"s":"HITBTC:SPELLUSDT","d":[]},{"s":"KRAKEN:BATUSD.PM","d":[]},{"s":"UNISWAP:ANBWETH_17202E","d":[]},{"s":"TRADERJOE:KIOOWAVAX_F3F119","d":[]},{"s":"HITBTC:THETABTC","d":[]},{"s":"PANGOLIN:HSHARESWAVAX_C132FF.USD","d":[]},{"s":"UNISWAP:SGWETH_8F1AA1","d":[]},{"s":"UNISWAP:MNDWETH_983226","d":[]},{"s":"MEXC:QNTUSDT.P","d":[]},{"s":"BITGET:ETHUSDC","d":[]},{"s":"BINANCE:XRPTRY","d":[]},{"s":"PHEMEX:ENSUSDT.P","d":[]},{"s":"SPOOKYSWAP:MUNNYWFTM_1A0119.USD","d":[]},{"s":"BITFINEX:APTUST","d":[]},{"s":"BITFINEX:COMPUSD","d":[]},{"s":"UNISWAP3ETH:UOSUSDC","d":[]},{"s":"BITFINEX:TRXUST.P","d":[]},{"s":"MEXC:DEBUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LUSDUSDC_3D18C8.USD","d":[]},{"s":"GATEIO:SCTUSDT","d":[]},{"s":"GATEIO:LUNCHUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:IBEXUSDC_682313.USD","d":[]},{"s":"SPOOKYSWAP:KALMWFTM_0A96B0","d":[]},{"s":"BINGX:BNXUSDT.PS","d":[]},{"s":"UNISWAP3ETH:MXCWETH_FA97B8.USD","d":[]},{"s":"UNISWAP3ETH:THEWETH_3ABB02.USD","d":[]},{"s":"GATEIO:B3XUSDT","d":[]},{"s":"COINEX:RENUSDC","d":[]},{"s":"GATEIO:BNXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHSES","d":[]},{"s":"PIONEX:CVXUSDT.P","d":[]},{"s":"BLOFIN:XEMUSDT.P","d":[]},{"s":"COINEX:WBTCBTC","d":[]},{"s":"POLONIEX:YFIUSDT","d":[]},{"s":"UNISWAP:CHINAWETH_5548F2","d":[]},{"s":"HITBTC:DGBETH","d":[]},{"s":"BINANCE:FLOWBTC","d":[]},{"s":"UNISWAP3ETH:CRVUSDT_224E94.USD","d":[]},{"s":"MEXC:VETUSDT","d":[]},{"s":"UNISWAP3ETH:BULLYWETH_992500.USD","d":[]},{"s":"BYBIT:ZENUSDT.P","d":[]},{"s":"UNISWAP3ETH:STTAOWETH","d":[]},{"s":"TRADERJOE:SLOTWAVAX_04FC1C","d":[]},{"s":"HITBTC:XTZUSD","d":[]},{"s":"UNISWAP3ETH:ELEMWETH_882784.USD","d":[]},{"s":"MEXC:BSWUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:UTEUSDC_D7B5BD.USD","d":[]},{"s":"BITFINEX:CHEXUSD","d":[]},{"s":"DYDX:LUNAUSD.P","d":[]},{"s":"UNISWAP3ETH:WETHBNB","d":[]},{"s":"UNISWAP:PECHUWETH_9B07FA.USD","d":[]},{"s":"UNISWAP3ETH:WHITEWETH_C5C134.USD","d":[]},{"s":"BISWAP:RACAWBNB_9C3D4F","d":[]},{"s":"PIONEX:STMXUSDT.P","d":[]},{"s":"BITRUE:SANDXRP","d":[]},{"s":"POLONIEX:BNBTRX","d":[]},{"s":"BINANCE:BANDUSDT","d":[]},{"s":"UNISWAP3ETH:USDTMATIC","d":[]},{"s":"UNISWAP3ARBITRUM:MSATWETH_E68F0F.USD","d":[]},{"s":"MEXC:CATUSDT","d":[]},{"s":"BYBIT:SATSUSDT","d":[]},{"s":"BYBIT:FTMUSDT.2S","d":[]},{"s":"UNISWAP:PVPWETH_B5BB92","d":[]},{"s":"BINANCE:RUNEFDUSD","d":[]},{"s":"BITGET:VOLTUSDT","d":[]},{"s":"UNISWAP3ETH:RPCWETH","d":[]},{"s":"UNISWAP3ETH:WETHOMI","d":[]},{"s":"UNISWAP:SHEESHAWETH_602414","d":[]},{"s":"UNISWAP:PAYWETH_583A00","d":[]},{"s":"TRADERJOE:FIEFWAVAX_939D6E.USD","d":[]},{"s":"UNISWAP:TUFWETH_7A1080","d":[]},{"s":"BISWAP:TMTBUSD_1A4F4D","d":[]},{"s":"COINEX:ICXBTC","d":[]},{"s":"UNISWAP3ETH:LUSDWETH_9663F2.USD","d":[]},{"s":"XEXCHANGE:REXYUSDC","d":[]},{"s":"BITFINEX:VETUST","d":[]},{"s":"UNISWAP3ETH:ORDSUSDC","d":[]},{"s":"COINBASE:BATETH","d":[]},{"s":"BINANCE:AUCTIONBTC","d":[]},{"s":"BITGET:XLMUSDT","d":[]},{"s":"BITHUMB:HIGHKRW","d":[]},{"s":"UNISWAP:SAINTWETH_C23B66.USD","d":[]},{"s":"GATEIO:ASSUSDT","d":[]},{"s":"UNISWAP:KOMPETEWETH_07840B","d":[]},{"s":"TRADERJOE:XAVAWAVAX_72C343","d":[]},{"s":"GATEIO:LARIXUSDT","d":[]},{"s":"UNISWAP3POLYGON:ICHIUSDC_7E02AE.USD","d":[]},{"s":"MEXC:MEERUSDT","d":[]},{"s":"UNISWAP:MINTWETH_092E79.USD","d":[]},{"s":"UNISWAP3ETH:WGKWETH","d":[]},{"s":"UNISWAP:DMINDWETH_3340FF","d":[]},{"s":"UNISWAP:BONESWETH_520889","d":[]},{"s":"SPOOKYSWAP:TAZWFTM_59AE2E.USD","d":[]},{"s":"UNISWAP3ETH:WETHESOV","d":[]},{"s":"HITBTC:RUNEUSDT","d":[]},{"s":"UNISWAP3ETH:WETHABT","d":[]},{"s":"UNISWAP3ETH:SIPHERWETH","d":[]},{"s":"HITBTC:MATICBTC","d":[]},{"s":"UNISWAP:SAFEUSDT_8B04FD","d":[]},{"s":"GATEIO:NFTBUSDT","d":[]},{"s":"UNISWAP3POLYGON:BOMDAI_B25AA3.USD","d":[]},{"s":"UNISWAP3POLYGON:LINKSNX_50B544.USD","d":[]},{"s":"UNISWAP:FEDAIWETH_374A83","d":[]},{"s":"POLONIEX:UMAUSDT","d":[]},{"s":"UNISWAP:GMWETH_24F930.USD","d":[]},{"s":"BTSE:COMPUSD","d":[]},{"s":"UNISWAP3ETH:OSETHUSDC","d":[]},{"s":"KRAKEN:API3USD","d":[]},{"s":"QUICKSWAP:GNSDAI_6E53CB","d":[]},{"s":"POLONIEX:MATICBTC","d":[]},{"s":"UNISWAP:VITALIKWETH_6F3EC8","d":[]},{"s":"UNISWAP:LINQWETH_A8A837","d":[]},{"s":"COINBASE:CRVGBP","d":[]},{"s":"HITBTC:RIFUSDT","d":[]},{"s":"UNISWAP3POLYGON:GMTWMATIC_B12104.USD","d":[]},{"s":"UNISWAP:GATSBYWETH_C37ECC","d":[]},{"s":"BITSTAMP:APEUSD","d":[]},{"s":"KRAKEN:PEPEEUR","d":[]},{"s":"POLONIEX:ETHUSDT","d":[]},{"s":"UNISWAP3ETH:AUDDUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:PSMUSDC_A137BE.USD","d":[]},{"s":"PHEMEX:ASTRUSDT","d":[]},{"s":"MEXC:DKAUSDT","d":[]},{"s":"UNISWAP3ETH:WETHLOVE","d":[]},{"s":"UNISWAP:BIDEN2024WETH_5AE423.USD","d":[]},{"s":"TRADERJOE:NFTARTWAVAX_4604C1.USD","d":[]},{"s":"UNISWAP3ETH:TRXUSDC_8759F1.USD","d":[]},{"s":"UNISWAP:PREMEWETH_E6B7E5","d":[]},{"s":"UNISWAP3ETH:GOHMWETH","d":[]},{"s":"BLOFIN:XMRUSDT.P","d":[]},{"s":"BITGET:TREEBUSDT","d":[]},{"s":"MEXC:VNNUSDT","d":[]},{"s":"GEMINI:ZBCUSD","d":[]},{"s":"MEXC:METAUSDT","d":[]},{"s":"UNISWAP3ETH:WOOOWETH_ADFB8E.USD","d":[]},{"s":"KRAKEN:OCEANUSD.PM","d":[]},{"s":"UNISWAP:NONOWETH_1FBBD8.USD","d":[]},{"s":"HITBTC:CVTUSDT","d":[]},{"s":"MEXC:SWAPUSDT","d":[]},{"s":"UNISWAP:EMTRGWETH_837F68","d":[]},{"s":"BITFINEX:XDCUST","d":[]},{"s":"WHITEBIT:EOSUSDT.P","d":[]},{"s":"UNISWAP:REVVUSDC_ACBF3C","d":[]},{"s":"GATEIO:EGAMEUSDT","d":[]},{"s":"BINANCEUS:QNTUSDT","d":[]},{"s":"COINEX:BSWUSDT","d":[]},{"s":"UNISWAP:LQTYWETH_B13201.USD","d":[]},{"s":"HITBTC:RPZXBCH","d":[]},{"s":"COINEX:MINABTC","d":[]},{"s":"BINGX:BLURUSDT.P","d":[]},{"s":"TRADERJOE:WAVAXUSDC_F4003F.USD","d":[]},{"s":"BINGX:MAVUSDT.PS","d":[]},{"s":"COINEX:WOOFUSDT","d":[]},{"s":"HITBTC:ZRXUSD","d":[]},{"s":"BISWAP:XRPWBNB_5DC30B.USD","d":[]},{"s":"BYBIT:ATOMUSDT.P","d":[]},{"s":"QUICKSWAP:SANDASTRAFER_6B0ED1.USD","d":[]},{"s":"BITGET:VSTAUSDT","d":[]},{"s":"GATEIO:SKLUSDT","d":[]},{"s":"BITGET:HEXUSDT","d":[]},{"s":"UNISWAP:ECHOWETH_D634A5","d":[]},{"s":"BITSTAMP:EURCVUSDT","d":[]},{"s":"UNISWAP:GUISEWETH_62931A.USD","d":[]},{"s":"UNISWAP3ETH:WETHRSC","d":[]},{"s":"UNISWAP3POLYGON:PARUSDC_FA22D2.USD","d":[]},{"s":"KRAKEN:LTCAUD","d":[]},{"s":"XEXCHANGE:XBONKUSDC","d":[]},{"s":"MEXC:SELOUSDT","d":[]},{"s":"GATEIO:TRCLUSDT","d":[]},{"s":"HITBTC:RPLUSDT","d":[]},{"s":"TRADERJOE:TIMEWAVAX_F64E1C","d":[]},{"s":"COINEX:EMPUSDT","d":[]},{"s":"BINANCE:LINKUSDC","d":[]},{"s":"UNISWAP:ZKITTYWETH_CF4451","d":[]},{"s":"GATEIO:HTUSDT","d":[]},{"s":"BINGX:STARLUSDT.PS","d":[]},{"s":"BITFINEX:APPBTC","d":[]},{"s":"GATEIO:DIMOUSDT","d":[]},{"s":"BITGET:SOLOUSDT","d":[]},{"s":"POLONIEX:SEEUUSDT","d":[]},{"s":"COINEX:JUPUSDT","d":[]},{"s":"COINBASE:OPUSDT","d":[]},{"s":"GATEIO:KNOTUSDT","d":[]},{"s":"UNISWAP3ETH:VDGWETH","d":[]},{"s":"BITRUE:NEOUSDC","d":[]},{"s":"UNISWAP3OPTIMISM:MAIUSDC_AE7880.USD","d":[]},{"s":"BINGX:WLDUSDT.PS","d":[]},{"s":"UPBIT:HUNTKRW","d":[]},{"s":"QUICKSWAP:STARWMATIC_7256EA","d":[]},{"s":"BITGET:DCKUSDT","d":[]},{"s":"MEXC:RILLAUSDT","d":[]},{"s":"UNISWAP3POLYGON:SANDWETH_3B1280.USD","d":[]},{"s":"UNISWAP3ETH:VMINTUSDT_593DA5.USD","d":[]},{"s":"UNISWAP3ARBITRUM:KUKOWETH_22E92B.USD","d":[]},{"s":"UNISWAP3ETH:REPV2WETH","d":[]},{"s":"UNISWAP3ETH:WETHRENQ","d":[]},{"s":"UNISWAP3ETH:SPORKWETH_EF3997.USD","d":[]},{"s":"KRAKEN:TRUEUR","d":[]},{"s":"UNISWAP:RIORUSD_06ED87.USD","d":[]},{"s":"BINANCE:SEIUSDT","d":[]},{"s":"GATEIO:APTUSDT.3L","d":[]},{"s":"POLONIEX:ZRXETH","d":[]},{"s":"UNISWAP3POLYGON:ATOMDAI_029712.USD","d":[]},{"s":"SPOOKYSWAP:TGOLDWFTM_874AFD.USD","d":[]},{"s":"UNISWAP:CLAWWETH_2DF91C.USD","d":[]},{"s":"UNISWAP3ETH:ALTUSDC_F368EA.USD","d":[]},{"s":"HITBTC:ADABTC","d":[]},{"s":"POLONIEX:BVMUSDT","d":[]},{"s":"UNISWAP3ETH:XIWETH","d":[]},{"s":"UNISWAP3ETH:TBANKWETH_0F88A9.USD","d":[]},{"s":"QUICKSWAP:SPORTWMATIC_46C753","d":[]},{"s":"GATEIO:DILIUSDT","d":[]},{"s":"COINBASE:FLOWUSDT","d":[]},{"s":"BYBIT:ETCUSDT.P","d":[]},{"s":"UNISWAP:TRADWETH_311916.USD","d":[]},{"s":"QUICKSWAP:SAVGWMATIC_604AE4.USD","d":[]},{"s":"BITMEX:GASUSDT.P","d":[]},{"s":"BINANCE:THETAFDUSD","d":[]},{"s":"UNISWAP3ETH:RBXWETH_71D091.USD","d":[]},{"s":"BITGET:PUMLXUSDT","d":[]},{"s":"BITFINEX:XMRBTC","d":[]},{"s":"QUICKSWAP:YLDWETH_3E3665.USD","d":[]},{"s":"UNISWAP:GOLD1WETH_C277C0.USD","d":[]},{"s":"MEXC:XPLAUSDT","d":[]},{"s":"QUICKSWAP:CVOLUSDC_1DD009","d":[]},{"s":"UNISWAP3ETH:SHARESWETH","d":[]},{"s":"HITBTC:MATICUSD","d":[]},{"s":"UNISWAP:WENWETH_CF099E.USD","d":[]},{"s":"PHEMEX:JUVUSDT","d":[]},{"s":"UNISWAP:CAFEWETH_EE47D4.USD","d":[]},{"s":"UNISWAP3ETH:ZCHFUSDT","d":[]},{"s":"BINGX:KASUSDT.PS","d":[]},{"s":"COINEX:1INCHUSDT","d":[]},{"s":"MEXC:CAPSUSDT","d":[]},{"s":"HITBTC:XTZETH","d":[]},{"s":"BINGX:BLURUSDT.PS","d":[]},{"s":"COINEX:CQTUSDT","d":[]},{"s":"UNISWAP3ETH:USDEUSDT","d":[]},{"s":"COINEX:EPIKUSDT","d":[]},{"s":"KRAKEN:MATICGBP","d":[]},{"s":"UNISWAP:DFIUSDC_D23921","d":[]},{"s":"UNISWAP:PEPINUWETH_5EF564","d":[]},{"s":"UNISWAP3POLYGON:USDVUSDC_B87755.USD","d":[]},{"s":"BINANCE:AEVOUSDT","d":[]},{"s":"GATEIO:ALPHAUSDT","d":[]},{"s":"TRADERJOE:FXSWAVAX_53942D.USD","d":[]},{"s":"PIONEX:SXPUSDT.P","d":[]},{"s":"BLOFIN:ANKRUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHPENGU","d":[]},{"s":"UNISWAP:MONKEWETH_23610E.USD","d":[]},{"s":"UNISWAP3ETH:DAIMATIC","d":[]},{"s":"UNISWAP:PPIZZAWETH_CD6653","d":[]},{"s":"WOONETWORK:YGGUSDT","d":[]},{"s":"UNISWAP3ETH:DENTWETH","d":[]},{"s":"BYBIT:PSTAKEUSDT","d":[]},{"s":"BINANCE:ROSEETH","d":[]},{"s":"UNISWAP:WPCWETH_C790B0.USD","d":[]},{"s":"GATEIO:SCUSDT","d":[]},{"s":"BITGET:FIDAUSDT","d":[]},{"s":"SPOOKYSWAP:COFFINWFTM_473F32","d":[]},{"s":"BINANCE:BNBBTC","d":[]},{"s":"MEXC:ALPACAUSDT.P","d":[]},{"s":"POLONIEX:WNCGUSDT","d":[]},{"s":"XEXCHANGE:XLHUSDC","d":[]},{"s":"UNISWAP:KEVINWETH_898461","d":[]},{"s":"UNISWAP:REDDITWETH_B77C22","d":[]},{"s":"BINANCE:CYBERBNB","d":[]},{"s":"COINEX:LYRAUSDT","d":[]},{"s":"KRAKEN:ANKRUSD","d":[]},{"s":"MEXC:MERLININUUSDT","d":[]},{"s":"UNISWAP3ETH:USDCEMAID","d":[]},{"s":"BTSE:OCEANUSD","d":[]},{"s":"MEXC:VINUUSDT","d":[]},{"s":"UNISWAP:TOUGHWETH_FBD068.USD","d":[]},{"s":"WHITEBIT:BALUSDT","d":[]},{"s":"UNISWAP:BAMWETH_DC8101.USD","d":[]},{"s":"GATEIO:GARIUSDT","d":[]},{"s":"GATEIO:POOLUSDT","d":[]},{"s":"UNISWAP3ETH:FMCWETH_BFCAE9.USD","d":[]},{"s":"COINEX:SKLUSDT","d":[]},{"s":"UNISWAP3ETH:FRICWETH","d":[]},{"s":"MEXC:ETHPADUSDT","d":[]},{"s":"UNISWAP3ETH:0N1WETH_C9325D.USD","d":[]},{"s":"UNISWAP3ETH:TRIASWETH_3E87D4.USD","d":[]},{"s":"BINGX:CYBERUSDT.PS","d":[]},{"s":"MEXC:X7CUSDT","d":[]},{"s":"KRAKEN:NANOUSD","d":[]},{"s":"UNISWAP:JOYUSDC_3A3A06","d":[]},{"s":"QUICKSWAP:VEGAWMATIC_4CED7D.USD","d":[]},{"s":"UNISWAP3ETH:USDCSPOT","d":[]},{"s":"UNISWAP3ETH:BAGWETH","d":[]},{"s":"UNISWAP3POLYGON:PROFITWETH_E5E70C.USD","d":[]},{"s":"MEXC:COREUMUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBSSB","d":[]},{"s":"UNISWAP:THEPEPEWETH_95C4B4","d":[]},{"s":"BITGET:UPUSDT","d":[]},{"s":"BLOFIN:RLCUSDT.P","d":[]},{"s":"UNISWAP:BAGWETH_C15E41.USD","d":[]},{"s":"MEXC:DERPDEXUSDT","d":[]},{"s":"TRADERJOE:KINGSHITWAVAX_51746E","d":[]},{"s":"BITGET:SNXUSDT.P","d":[]},{"s":"UNISWAP3ETH:OSAKWETH","d":[]},{"s":"EXMO:XRPUSDT","d":[]},{"s":"BINANCE:BCHUSDH2024","d":[]},{"s":"BITRUE:VINUUSDT","d":[]},{"s":"UNISWAP3ETH:VEXTUSDT","d":[]},{"s":"UNISWAP3POLYGON:CGGWETH_E3901D.USD","d":[]},{"s":"UNISWAP3ETH:PIXEWETH","d":[]},{"s":"UNISWAP:TETWETH_EFDF4D","d":[]},{"s":"BITFINEX:ZETABTC","d":[]},{"s":"UNISWAP3ETH:WETHLINK","d":[]},{"s":"UNISWAP:NHIWETH_8FE15B","d":[]},{"s":"UNISWAP:ULTIMATEBOTWETH_C60CC8.USD","d":[]},{"s":"HITBTC:REVVUSDT","d":[]},{"s":"WHITEBIT:SOLUSDT","d":[]},{"s":"BINANCEUS:MATICBTC","d":[]},{"s":"TRADERJOE:KOVINKIMBO_19C17C.USD","d":[]},{"s":"MEXC:BPRIVAUSDT","d":[]},{"s":"UNISWAP:KONOWETH_974BFC","d":[]},{"s":"BYBIT:FTMUSDT.P","d":[]},{"s":"KRAKEN:NMRUSD","d":[]},{"s":"PIONEX:MANAUSDT.P","d":[]},{"s":"BITRUE:ETCETH","d":[]},{"s":"COINBASE:MDTUSD","d":[]},{"s":"PANGOLIN:YDRWAVAX_0EAEEC.USD","d":[]},{"s":"POLONIEX:MUSKXUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWTF","d":[]},{"s":"HITBTC:HUBETH","d":[]},{"s":"MEXC:SFPUSDT.P","d":[]},{"s":"UNISWAP:OMIKAMIUSDC_06CD62","d":[]},{"s":"BITSTAMP:UNIBTC","d":[]},{"s":"UNISWAP:DOLANWETH_0A6BEF","d":[]},{"s":"UNISWAP3POLYGON:UNIWMATIC_50CAD4.USD","d":[]},{"s":"ZOOMEX:FLMUSDT.P","d":[]},{"s":"UNISWAP:KDOEWETH_DD8F50","d":[]},{"s":"QUICKSWAP:GHSTWETH_CCB9D2.USD","d":[]},{"s":"UNISWAP3ETH:TFTWETH_5DCC0E.USD","d":[]},{"s":"UNISWAP3ETH:NFAIWETH","d":[]},{"s":"UNISWAP:KEXWETH_1BFFFB","d":[]},{"s":"MEXC:ORDIIUSDT","d":[]},{"s":"UNISWAP:VBTCWETH_CFDCD6","d":[]},{"s":"UNISWAP:KITTYWETH_969AF8","d":[]},{"s":"UNISWAP:HODLWETH_AE771F.USD","d":[]},{"s":"UNISWAP3ETH:WETHUFO","d":[]},{"s":"UNISWAP3ETH:AXLUSDC","d":[]},{"s":"UNISWAP:BTCWETH_4B398F.USD","d":[]},{"s":"MEXC:BULUSDT","d":[]},{"s":"BINANCE:ZENBTC","d":[]},{"s":"UNISWAP3ETH:GTCUSDC","d":[]},{"s":"UNISWAP3ARBITRUM:NSWAPWETH_686213.USD","d":[]},{"s":"UNISWAP3ETH:COMPWETH_559893.USD","d":[]},{"s":"UNISWAP3ETH:WETHDUST","d":[]},{"s":"UNISWAP3ETH:AIGFWETH_ECB461.USD","d":[]},{"s":"BINGX:GRTUSDT.P","d":[]},{"s":"ZOOMEX:SCUSDT.P","d":[]},{"s":"UNISWAP:KABOWETH_E4D227","d":[]},{"s":"UNISWAP3ETH:KELDAI","d":[]},{"s":"BITFINEX:THETAUST","d":[]},{"s":"UNISWAP3ARBITRUM:MAGICWETH_F44F17.USD","d":[]},{"s":"UNISWAP:SIWETH_5D8A31.USD","d":[]},{"s":"UNISWAP3ETH:USDTRADAR","d":[]},{"s":"WHITEBIT:ATOMUSDT.P","d":[]},{"s":"POLONIEX:AEVOUSDT","d":[]},{"s":"UNISWAP:TAMAWETH_E20745","d":[]},{"s":"HITBTC:ETCETH","d":[]},{"s":"COINEX:TURTUSDT","d":[]},{"s":"GATEIO:XETAUSDT","d":[]},{"s":"HITBTC:XMRTUSD","d":[]},{"s":"BINANCE:DGBUSDT","d":[]},{"s":"TRADERJOE:ABRUSDCE_3F881E","d":[]},{"s":"UNISWAP:ROUTEWETH_92CC43","d":[]},{"s":"BINGX:BADGERUSDT.P","d":[]},{"s":"UNISWAP:ETHPADWETH_04B6BE.USD","d":[]},{"s":"HITBTC:NUTBTC","d":[]},{"s":"POLONIEX:BTCUSDT","d":[]},{"s":"UNISWAP3ETH:VIRTUALWETH","d":[]},{"s":"UNISWAP3ETH:WBAIWETH_4E5320.USD","d":[]},{"s":"UNISWAP:FIFTYWETH_F0E2B0","d":[]},{"s":"COINEX:SAMOUSDT","d":[]},{"s":"KRAKEN:ATOMUSD","d":[]},{"s":"UNISWAP3ETH:USDTXRUN","d":[]},{"s":"COINEX:XLMUSDT","d":[]},{"s":"COINEX:RVNUSDT","d":[]},{"s":"BITGET:APEUSDT.P","d":[]},{"s":"POLONIEX:NAVXUSDT","d":[]},{"s":"UNISWAP3ETH:PEPESSHIB_EB8C73.USD","d":[]},{"s":"BITSTAMP:BATEUR","d":[]},{"s":"WAGYUSWAP:WVLXBUSD_8E2B76","d":[]},{"s":"POLONIEX:ETHBTC","d":[]},{"s":"UNISWAP:CHINGWETH_2ADA17.USD","d":[]},{"s":"UNISWAP3ETH:ASXWETH","d":[]},{"s":"OKX:LRCUSDT.P","d":[]},{"s":"BITHUMB:STRAXKRW","d":[]},{"s":"GATEIO:SNKUSDT","d":[]},{"s":"BLOFIN:FITFIUSDT.P","d":[]},{"s":"UNISWAP3ETH:CNVWETH","d":[]},{"s":"UNISWAP3ETH:PEPEXLWETH_D94A87.USD","d":[]},{"s":"WHITEBIT:CLVUSDT","d":[]},{"s":"UNISWAP:BETTEDWETH_098B61.USD","d":[]},{"s":"GATEIO:IMPTUSDT","d":[]},{"s":"BINGX:LAIUSDT.PS","d":[]},{"s":"BINANCE:FDUSDUSDT","d":[]},{"s":"UNISWAP3ETH:OVRWETH_C3F6B8.USD","d":[]},{"s":"UNISWAP:JUANWETH_C7074A","d":[]},{"s":"MEXC:IDUSDT.P","d":[]},{"s":"COINEX:ARKUSDT","d":[]},{"s":"ZOOMEX:ETHUSDT.P","d":[]},{"s":"MEXC:SEILORUSDT","d":[]},{"s":"GATEIO:LGXUSDT","d":[]},{"s":"UNISWAP:AURORAWETH_629D22","d":[]},{"s":"MEXC:ALGOUSDC","d":[]},{"s":"GATEIO:BRWLUSDT","d":[]},{"s":"HITBTC:ONTETH","d":[]},{"s":"UNISWAP3ETH:POINTSWETH_A42481.USD","d":[]},{"s":"MEXC:LYXUSDT","d":[]},{"s":"GATEIO:ENJUSDT","d":[]},{"s":"MEXC:AKITAUSDT","d":[]},{"s":"UNISWAP3ETH:GENEWETH_A99660.USD","d":[]},{"s":"POLONIEX:OGNUSDT","d":[]},{"s":"UNISWAP3ETH:WETHJASMY","d":[]},{"s":"BYBIT:TOMIUSDT","d":[]},{"s":"UNISWAP:RYOSHIWETH_92FFE7","d":[]},{"s":"BINGX:PENDLEUSDT.PS","d":[]},{"s":"MEXC:VCUSDT","d":[]},{"s":"UNISWAP:GCCWETH_0D7E86.USD","d":[]},{"s":"SPOOKYSWAP:FANGWFTM_19DCE7","d":[]},{"s":"UNISWAP:CIAWETH_5FC109","d":[]},{"s":"BYBIT:ZRXUSDT","d":[]},{"s":"UNISWAP:UFIWETH_9123D8.USD","d":[]},{"s":"BITFINEX:LEOUSD","d":[]},{"s":"MEXC:ARKUSDT.P","d":[]},{"s":"BITGET:INJUSDT","d":[]},{"s":"BITFINEX:EGLDBTC","d":[]},{"s":"UNISWAP:CHADWETH_8CCBF3","d":[]},{"s":"UNISWAP:REVVSAND_5D95BB","d":[]},{"s":"BITKUB:SNXTHB","d":[]},{"s":"UNISWAP3POLYGON:SWOPUSDC_C2A310.USD","d":[]},{"s":"QUICKSWAP:WPPCUSDC_9231A2","d":[]},{"s":"COINEX:TARAUSDT","d":[]},{"s":"UNISWAP3ETH:SPXWETH_00ED26.USD","d":[]},{"s":"UNISWAP3ETH:JUSTICEWETH_FE7AFF.USD","d":[]},{"s":"UNISWAP3POLYGON:LDOUSDC_D84665.USD","d":[]},{"s":"TRADERJOE:BETSWAVAX_4D8BC9.USD","d":[]},{"s":"BITGET:SYSUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGMEE","d":[]},{"s":"UNISWAP3ETH:ENQAIWETH_E4E86C.USD","d":[]},{"s":"SPOOKYSWAP:PEPEWFTM_CD1361.USD","d":[]},{"s":"BYBIT:XAIUSDT.P","d":[]},{"s":"UPBIT:ARKKRW","d":[]},{"s":"BITGET:PHBUSDT","d":[]},{"s":"UNISWAP3ETH:BAGWETH_AF6323.USD","d":[]},{"s":"GATEIO:MKRUSDT.3S","d":[]},{"s":"MEXC:K21USDT","d":[]},{"s":"UNISWAP3ETH:OXWETH_2CAD29.USD","d":[]},{"s":"BTSE:GRTUSD.P","d":[]},{"s":"BITSTAMP:GRTUSD","d":[]},{"s":"GATEIO:XCHUSDT","d":[]},{"s":"SPOOKYSWAP:FAMEUSDC_755904","d":[]},{"s":"WHITEBIT:DOTUSDT","d":[]},{"s":"BLOFIN:AXSUSDT.P","d":[]},{"s":"MEXC:BTMUSDT","d":[]},{"s":"UNISWAP3ETH:PASUSDC","d":[]},{"s":"COINBASE:MATICUSD","d":[]},{"s":"SPOOKYSWAP:NFTWUSDC_96E6A6","d":[]},{"s":"QUICKSWAP:VISIONWETH_47BE4B","d":[]},{"s":"UNISWAP3ETH:CPUWETH","d":[]},{"s":"PANGOLIN:WBTCWAVAX_7A6131","d":[]},{"s":"HITBTC:SWFTCUSD","d":[]},{"s":"UNISWAP:HOBBESWETH_9CCA66.USD","d":[]},{"s":"PHEMEX:TURBOUSDT","d":[]},{"s":"UNISWAP:WPEBHNY_9EC96D.USD","d":[]},{"s":"UNISWAP3OPTIMISM:NEXTUSDC_4E5ABE.USD","d":[]},{"s":"WAGYUSWAP:PLSPADWVLX_60447B.USD","d":[]},{"s":"UNISWAP:DIEWETH_D1C9CB","d":[]},{"s":"UNISWAP:NSFWWETH_90C1B1","d":[]},{"s":"POLONIEX:GLMUSD","d":[]},{"s":"GATEIO:VANRYUSDT","d":[]},{"s":"GATEIO:AAVEUSDT.3S","d":[]},{"s":"WOONETWORK:PYTHUSDT","d":[]},{"s":"MEXC:XAUTUSDT","d":[]},{"s":"UNISWAP:HATIUSDC_DD3932","d":[]},{"s":"UNISWAP:TABSXWETH_20A9D6.USD","d":[]},{"s":"BITFINEX:ADAUSD","d":[]},{"s":"UNISWAP:GUSTAWETH_9DAEB7","d":[]},{"s":"BITGET:GFUSDT","d":[]},{"s":"GATEIO:VLXUSDT","d":[]},{"s":"BYBIT:JASMYUSDT.P","d":[]},{"s":"UNISWAP:XAMPWETH_6C35C4.USD","d":[]},{"s":"BITFINEX:APEBTC","d":[]},{"s":"TRADERJOE:MELTWAVAX_2923A6.USD","d":[]},{"s":"MEXC:ITHEUMUSDT","d":[]},{"s":"BITHUMB:JUPKRW","d":[]},{"s":"UNISWAP3ETH:AAAWETH","d":[]},{"s":"TRADERJOE:BIOFIWAVAX_52FC7C.USD","d":[]},{"s":"HITBTC:CVXUSDT","d":[]},{"s":"UNISWAP:WSIENNAWETH_B8207F","d":[]},{"s":"BITGET:SEIUSDT","d":[]},{"s":"BLOFIN:AXLUSDT.P","d":[]},{"s":"GATEIO:KINGUSDT","d":[]},{"s":"MEXC:GHUBUSDT","d":[]},{"s":"UNISWAP:BULLETWETH_0D0A17","d":[]},{"s":"UNISWAP3ETH:METWETH","d":[]},{"s":"GATEIO:SENATEUSDT","d":[]},{"s":"MEXC:RVNUSDT.P","d":[]},{"s":"HITBTC:BLURUSDC","d":[]},{"s":"PHEMEX:CRVUSDT.P","d":[]},{"s":"QUICKSWAP:PLOTQUICK_5278A5.USD","d":[]},{"s":"UNISWAP:KELFTXTOKEN_BA75FB","d":[]},{"s":"HITBTC:MOVRUSDT","d":[]},{"s":"POLONIEX:KP3RUSDT","d":[]},{"s":"BITSTAMP:DGLDUSD","d":[]},{"s":"GATEIO:MNTUSDT","d":[]},{"s":"GATEIO:NIIUSDT","d":[]},{"s":"COINEX:BRETTUSDT","d":[]},{"s":"UNISWAP3ETH:SDUSDC_C72ABB.USD","d":[]},{"s":"UPBIT:HBARKRW","d":[]},{"s":"UNISWAP:PMONWETH_BF4FF0","d":[]},{"s":"UNISWAP3ETH:WETHDAI_C2E9F2.USD","d":[]},{"s":"QUICKSWAP:KRILLUSDC_6405EB","d":[]},{"s":"UNISWAP3POLYGON:ELEWMATIC_CA5D44.USD","d":[]},{"s":"WHITEBIT:GALUSDT","d":[]},{"s":"UNISWAP:HEMULEWETH_672FEF","d":[]},{"s":"UNISWAP3ETH:WSBWETH","d":[]},{"s":"HITBTC:FIROETH","d":[]},{"s":"BINANCE:BICOBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ARBUSDT_97BCA4.USD","d":[]},{"s":"KRAKEN:ICXUSD.PM","d":[]},{"s":"UNISWAP:EACCWETH_5874C7","d":[]},{"s":"UNISWAP:XFUNDWETH_AB2D2F.USD","d":[]},{"s":"WHITEBIT:ARKMBTC","d":[]},{"s":"BLOFIN:MDTUSDT.P","d":[]},{"s":"GATEIO:SLKUSDT","d":[]},{"s":"BYBIT:METHETH","d":[]},{"s":"COINEX:SCBTC","d":[]},{"s":"UNISWAP:TIDALUSDC_B43542","d":[]},{"s":"WHITEBIT:BTCGBP","d":[]},{"s":"PHEMEX:XRPUSDT","d":[]},{"s":"GATEIO:NUXUSDT","d":[]},{"s":"COINEX:IOTXUSDT","d":[]},{"s":"MEXC:WALVUSDT","d":[]},{"s":"KRAKEN:UNFIUSD","d":[]},{"s":"UNISWAP:FX1WETH_87B958","d":[]},{"s":"BINANCE:FORBTC","d":[]},{"s":"HITBTC:YCCBTC","d":[]},{"s":"UNISWAP:COPIWETH_57FC98","d":[]},{"s":"ZOOMEX:STMXUSDT.P","d":[]},{"s":"BITFINEX:ZECUST.P","d":[]},{"s":"UNISWAP3ETH:BUSDWETH","d":[]},{"s":"SPOOKYSWAP:SCREAMWFTM_30872E.USD","d":[]},{"s":"BITGET:AUDIOUSDT","d":[]},{"s":"COINBASE:RNDREUR","d":[]},{"s":"UNISWAP:BLUESPARROWUSDC_FA4A64","d":[]},{"s":"UNISWAP3ETH:WETHQKNTL","d":[]},{"s":"BITFINEX:JASMYUSD","d":[]},{"s":"UNISWAP3ARBITRUM:CRAZYRABBITWETH_2F8C3B.USD","d":[]},{"s":"COINBASE:ILVUSD","d":[]},{"s":"UNISWAP:SATOSHIWETH_F0D86A","d":[]},{"s":"UNISWAP3ETH:MEMAGXWETH_797462.USD","d":[]},{"s":"BITGET:BNXUSDT","d":[]},{"s":"UNISWAP:CLOUDWETH_01B464","d":[]},{"s":"UNISWAP:AIMBOTWETH_E05D09.USD","d":[]},{"s":"BITGET:SXPUSDT","d":[]},{"s":"KRAKEN:GBPUSD","d":[]},{"s":"UNISWAP3POLYGON:RIBUSDT_3D5DC7.USD","d":[]},{"s":"HITBTC:CWUSD","d":[]},{"s":"GEMINI:BTCUSD","d":[]},{"s":"UNISWAP:XWETH_A56B47.USD","d":[]},{"s":"BINANCE:SUPERUSDT","d":[]},{"s":"BYBIT:KSMUSDT.P","d":[]},{"s":"GATEIO:BTCUSDT.3S","d":[]},{"s":"BINANCEUS:XLMUSDT","d":[]},{"s":"UNISWAP3ETH:USDTREVV","d":[]},{"s":"UNISWAP:CLNWLDWETH_2D3308","d":[]},{"s":"UNISWAP:BNSDWETH_76333B","d":[]},{"s":"UNISWAP3POLYGON:XOCUSDC_B5C416.USD","d":[]},{"s":"BITRUE:LRCBTC","d":[]},{"s":"MEXC:COFUSDT","d":[]},{"s":"COINEX:NOSUSDT","d":[]},{"s":"COINEX:SUNDAEUSDT","d":[]},{"s":"MEXC:GROKGPTUSDT","d":[]},{"s":"UNISWAP:SENDEXWETH_619A6B.USD","d":[]},{"s":"SPOOKYSWAP:RNDMWFTM_0FFED9","d":[]},{"s":"PANGOLIN:JEWELWAVAX_9AA76A.USD","d":[]},{"s":"UNISWAP3ARBITRUM:WBTCWETH_03A3BE.USD","d":[]},{"s":"COINEX:DOGEUSDT","d":[]},{"s":"BITGET:MASKUSDT.P","d":[]},{"s":"UNISWAP:PETERWETH_7050C2.USD","d":[]},{"s":"UNISWAP3ETH:WETHWTON","d":[]},{"s":"GATEIO:METOUSDT","d":[]},{"s":"GATEIO:AVAUSDT","d":[]},{"s":"HITBTC:REVBTC","d":[]},{"s":"GATEIO:UOSUSDT","d":[]},{"s":"UNISWAP:GZTWETH_4759C6.USD","d":[]},{"s":"UNISWAP:WAGWETH_2F4042.USD","d":[]},{"s":"QUICKSWAP:LDOWMATIC_A0F330","d":[]},{"s":"UNISWAP3ETH:RNDUSDC","d":[]},{"s":"BITGET:LOKAUSDT","d":[]},{"s":"UNISWAP:VRARENAWETH_F1EF98","d":[]},{"s":"PANGOLIN:OOEWAVAX_E44EF6","d":[]},{"s":"MEXC:TGMTUSDT","d":[]},{"s":"UNISWAP3ETH:SNXUSDC","d":[]},{"s":"HITBTC:BETHUSDT","d":[]},{"s":"UNISWAP:OTTOWETH_04CEC6.USD","d":[]},{"s":"BITGET:GTAIUSDT","d":[]},{"s":"BITGET:AAVEUSDT.P","d":[]},{"s":"BITMEX:KLAYUSD.P","d":[]},{"s":"GATEIO:ADXUSDT","d":[]},{"s":"POLONIEX:TROLLUSDT","d":[]},{"s":"BINANCE:ENSUSD.P","d":[]},{"s":"SPOOKYSWAP:SPELLWFTM_78F82C","d":[]},{"s":"UNISWAP:DGIWETH_E15255","d":[]},{"s":"BINANCE:INJETH","d":[]},{"s":"HITBTC:LSKUSD","d":[]},{"s":"BISWAP:ETHBTCB_6216E0.USD","d":[]},{"s":"BITGET:CVTXUSDT","d":[]},{"s":"BITFINEX:COMPBTC","d":[]},{"s":"UNISWAP3ETH:PENGUWETH_0DDCF8.USD","d":[]},{"s":"UNISWAP:GROKXWETH_9C4486.USD","d":[]},{"s":"UNISWAP:XCADUSDT_6F118E","d":[]},{"s":"PHEMEX:LOOKSUSDT","d":[]},{"s":"OKX:MANAUSD.P","d":[]},{"s":"HITBTC:SNXBTC","d":[]},{"s":"BITMEX:STRKUSDT.P","d":[]},{"s":"UNISWAP:GMFAMWETH_F932FF","d":[]},{"s":"GATEIO:WALVUSDT","d":[]},{"s":"EXMO:WAVESBTC","d":[]},{"s":"BITFINEX:BOSONUSD","d":[]},{"s":"UNISWAP:ZCASHWETH_5D1DD0.USD","d":[]},{"s":"HITBTC:XLMUSDC","d":[]},{"s":"UNISWAP3POLYGON:GIDDYUSDC_6717F1.USD","d":[]},{"s":"SPOOKYSWAP:WLANDWFTM_CEC487.USD","d":[]},{"s":"MEXC:JANUSDT","d":[]},{"s":"UNISWAP:DEXEWETH_11CB9E.USD","d":[]},{"s":"UNISWAP:WALLYWETH_A2376A","d":[]},{"s":"UNISWAP3ETH:WETHZPX","d":[]},{"s":"UNISWAP3ARBITRUM:RETHWETH_4CEB19.USD","d":[]},{"s":"UNISWAP:SOLANAWETH_41F50F.USD","d":[]},{"s":"UNISWAP3ETH:WTAOWETH_433A00.USD","d":[]},{"s":"BINANCE:XVSBNB","d":[]},{"s":"UNISWAP3ETH:WETHWMT","d":[]},{"s":"COINEX:LINKUSDC","d":[]},{"s":"GATEIO:DMSUSDT","d":[]},{"s":"BITFINEX:BESTBTC","d":[]},{"s":"BINANCEUS:CELOUSDT","d":[]},{"s":"BLOFIN:ARKUSDT.P","d":[]},{"s":"UNISWAP3ETH:HEXUSDC","d":[]},{"s":"COINBASE:HONEYUSD","d":[]},{"s":"GATEIO:ALYUSDT","d":[]},{"s":"BITSTAMP:LINKGBP","d":[]},{"s":"POLONIEX:LUNCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPRIMEETH","d":[]},{"s":"UNISWAP3ETH:USDCPOP","d":[]},{"s":"UNISWAP:KEKWETH_4735EB","d":[]},{"s":"UNISWAP:FSWWETH_E275EB.USD","d":[]},{"s":"HITBTC:CSOVBTC","d":[]},{"s":"UNISWAP:CHARTWETH_960D22","d":[]},{"s":"QUICKSWAP:UFTWETH_AEF2B4","d":[]},{"s":"UNISWAP:UNISTAKEWETH_78B952","d":[]},{"s":"MEXC:JGNUSDT","d":[]},{"s":"BITSTAMP:HBAREUR","d":[]},{"s":"MEXC:ANDRUSDT","d":[]},{"s":"BITHUMB:FLZKRW","d":[]},{"s":"MEXC:RAMADAMUSDT","d":[]},{"s":"HITBTC:ATMUSDT","d":[]},{"s":"BINGX:LUNAUSDT.P","d":[]},{"s":"GATEIO:LIFEUSDT","d":[]},{"s":"UNISWAP3ETH:JAYWETH","d":[]},{"s":"UNISWAP:GMBTWETH_A87D83","d":[]},{"s":"POLONIEX:CTCUSDT","d":[]},{"s":"UNISWAP3ETH:FMBUSDT","d":[]},{"s":"UNISWAP3ETH:FOTTIEWETH","d":[]},{"s":"BITRUE:LINKUSDC","d":[]},{"s":"HITBTC:FXSUSDC","d":[]},{"s":"KRAKEN:BALBTC","d":[]},{"s":"MEXC:MAVUSDT","d":[]},{"s":"MEXC:ASTOUSDT","d":[]},{"s":"HITBTC:KSMUSDT","d":[]},{"s":"UNISWAP3ETH:SPELLBOOKFLC_4B3054.USD","d":[]},{"s":"GATEIO:ELECUSDT","d":[]},{"s":"QUICKSWAP:MNTLUSDC_5E1878","d":[]},{"s":"UNISWAP3ETH:SWFTCWETH","d":[]},{"s":"MEXC:CDXUSDT","d":[]},{"s":"BYBIT:SNXUSDT.P","d":[]},{"s":"UNISWAP:DZILLAWETH_57D84F.USD","d":[]},{"s":"COINEX:WINUSDC","d":[]},{"s":"QUICKSWAP:BQTWMATIC_827C59.USD","d":[]},{"s":"UNISWAP3ETH:WETHSAMA","d":[]},{"s":"HITBTC:KINUSDT","d":[]},{"s":"TRADERJOE:BFGUSDC_FF45A7.USD","d":[]},{"s":"UNISWAP:SCAPEWETH_BFE799.USD","d":[]},{"s":"UNISWAP3ETH:WETHAJNA","d":[]},{"s":"BTSE:OPUSD.P","d":[]},{"s":"MEXC:AGROUSDT","d":[]},{"s":"BINANCE:CITYTRY","d":[]},{"s":"GATEIO:ASWUSDT","d":[]},{"s":"UNISWAP:SDAOUSDT_3A9255","d":[]},{"s":"UNISWAP3ETH:DAIRAI","d":[]},{"s":"MEXC:HIBSUSDT","d":[]},{"s":"BITFINEX:FTMUST.P","d":[]},{"s":"MEXC:DFCUSDT","d":[]},{"s":"UNISWAP3ETH:NAVIWETH","d":[]},{"s":"UNISWAP3ETH:MTOWETH_60A6B2.USD","d":[]},{"s":"COINEX:PIVXBTC","d":[]},{"s":"UNISWAP:NARCOWETH_CA7C24.USD","d":[]},{"s":"GATEIO:KAVAUSDT.3L","d":[]},{"s":"HITBTC:NRGUSD","d":[]},{"s":"UNISWAP:CRAZYWETH_FA0BA2","d":[]},{"s":"BLOFIN:UNFIUSDT.P","d":[]},{"s":"MEXC:CWARUSDT","d":[]},{"s":"HITBTC:REPUSDT","d":[]},{"s":"UNISWAP:LKRWETH_670C0F.USD","d":[]},{"s":"QUICKSWAP:CYCWMATIC_6EA885","d":[]},{"s":"UNISWAP3ETH:PETHOSWETH","d":[]},{"s":"UNISWAP3ETH:WEWEWETH","d":[]},{"s":"UNISWAP:BETSWETH_5A5552","d":[]},{"s":"WHITEBIT:ALGOBTC","d":[]},{"s":"KRAKEN:ADXEUR","d":[]},{"s":"COINEX:BTRSTUSDT","d":[]},{"s":"UNISWAP:HINAWETH_05CB3F.USD","d":[]},{"s":"TRADERJOE:DZHVWAVAX_523A04.USD","d":[]},{"s":"EXMO:EOSBTC","d":[]},{"s":"UNISWAP:FOFOWETH_3A2271.USD","d":[]},{"s":"UNISWAP:OBXWETH_1ED39E","d":[]},{"s":"UNISWAP3ETH:WETHKON","d":[]},{"s":"MEXC:MEVUSDT","d":[]},{"s":"UNISWAP:PATNUTWETH_7F00AC","d":[]},{"s":"UNISWAP3ETH:MATICWETH_99C755.USD","d":[]},{"s":"MEXC:SBRUSDT","d":[]},{"s":"POLONIEX:REKTUSDT","d":[]},{"s":"TRADERJOE:ISAWAVAX_9155F4.USD","d":[]},{"s":"OKX:RONUSDT.P","d":[]},{"s":"MEXC:CEEKUSDT.P","d":[]},{"s":"UNISWAP:LGCYWETH_DFEA03.USD","d":[]},{"s":"COINEX:POLSUSDT","d":[]},{"s":"UNISWAP:SUPERWETH_25647E.USD","d":[]},{"s":"GATEIO:PONDUSDT","d":[]},{"s":"UNISWAP:WOJAKWETH_0F23D4","d":[]},{"s":"TRADERJOE:RSTWAVAX_648C21.USD","d":[]},{"s":"UNISWAP:CAWETH_20623D.USD","d":[]},{"s":"UNISWAP3ETH:MKRRNG_A82656.USD","d":[]},{"s":"HITBTC:AGIXUSDT","d":[]},{"s":"QUICKSWAP:CXETHWETH_DA7CD7.USD","d":[]},{"s":"SPOOKYSWAP:KYRIOSWFTM_2A7011","d":[]},{"s":"BTSE:KASUSD.P","d":[]},{"s":"UNISWAP3ETH:DEVVEWETH","d":[]},{"s":"BITGET:OASUSDT","d":[]},{"s":"KRAKEN:EOSUSDT","d":[]},{"s":"GATEIO:SPURSUSDT","d":[]},{"s":"MEXC:DUELUSDT","d":[]},{"s":"BITGET:USTCUSDT","d":[]},{"s":"KRAKEN:USDTGBP","d":[]},{"s":"GATEIO:RUNEUSDT.3S","d":[]},{"s":"BINANCE:NULSUSDT","d":[]},{"s":"BYBIT:C98USDT","d":[]},{"s":"UNISWAP3ETH:OMNIWETH_37A981.USD","d":[]},{"s":"UNISWAP3ETH:WETHLSETH","d":[]},{"s":"WHITEBIT:TRXUSDT","d":[]},{"s":"BITHUMB:OASKRW","d":[]},{"s":"BYBIT:COREUSDT","d":[]},{"s":"POLONIEX:OCEANUSDT","d":[]},{"s":"UNISWAP:GLCHWETH_1037FA.USD","d":[]},{"s":"COINBASE:BTCGBP","d":[]},{"s":"BINANCE:LOOMTRY","d":[]},{"s":"BITMEX:DFIUSDT.P","d":[]},{"s":"UNISWAP:2DAIWETH_539B4D","d":[]},{"s":"OKX:EOSUSD.P","d":[]},{"s":"SPOOKYSWAP:BSHAREWFTM_6F6074.USD","d":[]},{"s":"UNISWAP:STRONGXWETH_2418A8","d":[]},{"s":"WOONETWORK:PIXELUSDT","d":[]},{"s":"QUICKSWAP:REVVASTRAFER_6FE68F","d":[]},{"s":"POLONIEX:MEOWUSDT","d":[]},{"s":"POLONIEX:GMXUSDD","d":[]},{"s":"UNISWAP:AGIXUSDT_4BB092","d":[]},{"s":"WAGYUSWAP:PENTUSDT_51229B","d":[]},{"s":"MEXC:BONDUSDT","d":[]},{"s":"UNISWAP3ETH:AAVEWETH","d":[]},{"s":"UNISWAP:GUCCIWETH_EB416A.USD","d":[]},{"s":"KRAKEN:EOSUSD","d":[]},{"s":"KRAKEN:BLUREUR","d":[]},{"s":"UNISWAP3ETH:WETHJAM","d":[]},{"s":"KRAKEN:USDJPY","d":[]},{"s":"ZOOMEX:REEFUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHNFTE","d":[]},{"s":"PIONEX:EOSUSDT.P","d":[]},{"s":"BLOFIN:LEVERUSDT.P","d":[]},{"s":"UNISWAP:BZAIWETH_C33C95","d":[]},{"s":"GATEIO:MOMAUSDT","d":[]},{"s":"MEXC:WGTUSDT","d":[]},{"s":"UNISWAP3ETH:TENETWETH_07952B.USD","d":[]},{"s":"MEXC:BSCYFIUSDT","d":[]},{"s":"WHITEBIT:USDTPLN","d":[]},{"s":"MEXC:UNMUSDT","d":[]},{"s":"GATEIO:PAYUSDT","d":[]},{"s":"MEXC:SAROSUSDT","d":[]},{"s":"UNISWAP:UNOWETH_90F1BD","d":[]},{"s":"COINEX:FOXUSDT","d":[]},{"s":"UNISWAP3ETH:OHMPOHM_097DB2.USD","d":[]},{"s":"BITGET:KP3RUSDT","d":[]},{"s":"KRAKEN:SYNUSD","d":[]},{"s":"TRADERJOE:NEWOWAVAX_393158","d":[]},{"s":"QUICKSWAP:SHIBPLUSWMATIC_99A243.USD","d":[]},{"s":"UNISWAP3ETH:TAONUWETH","d":[]},{"s":"UNISWAP3ETH:ONDOWETH_D0F292.USD","d":[]},{"s":"UNISWAP3ETH:WETHBEG","d":[]},{"s":"UNISWAP:WIKWETH_2308B6.USD","d":[]},{"s":"MEXC:FISUSDT","d":[]},{"s":"GATEIO:GGGUSDT","d":[]},{"s":"UNISWAP:WAGMIWETH_D6C2AF.USD","d":[]},{"s":"BYBIT:ONDOUSDT.P","d":[]},{"s":"MEXC:AVTMUSDT","d":[]},{"s":"XEXCHANGE:PROTEOWEGLD","d":[]},{"s":"WOONETWORK:SNXUSDT","d":[]},{"s":"MEXC:GTAIUSDT","d":[]},{"s":"COINEX:PORTOUSDT","d":[]},{"s":"UNISWAP3POLYGON:DAIUSDT_254AA3.USD","d":[]},{"s":"POLONIEX:FERCUSDT","d":[]},{"s":"UNISWAP3ETH:WETHMETH","d":[]},{"s":"HITBTC:FILUSD","d":[]},{"s":"POLONIEX:GLMUSDT","d":[]},{"s":"BYBIT:MBSUSDT","d":[]},{"s":"HITBTC:ALGOUSDT","d":[]},{"s":"BINANCE:FIROBTC","d":[]},{"s":"UNISWAP:BABYSHIAWETH_1635D1.USD","d":[]},{"s":"BITGET:BIGTIMEUSDT","d":[]},{"s":"XEXCHANGE:EPUNKSUSDC","d":[]},{"s":"MEXC:ANKRUSDT","d":[]},{"s":"QUICKSWAP:COMBOWETH_A7C475.USD","d":[]},{"s":"PANGOLIN:BNBWAVAX_F776EF.USD","d":[]},{"s":"UNISWAP:OHMIWETH_41A3CD","d":[]},{"s":"UNISWAP3ETH:BRORAD_011066.USD","d":[]},{"s":"BLOFIN:OMUSDT.P","d":[]},{"s":"UNISWAP:BARCWETH_216387.USD","d":[]},{"s":"BINGX:LPTUSDT.P","d":[]},{"s":"QUICKSWAP:EMONWAVY_61DAB2","d":[]},{"s":"XEXCHANGE:MIDUSDC","d":[]},{"s":"GATEIO:MOONEYUSDT","d":[]},{"s":"ZOOMEX:NFPUSDT.P","d":[]},{"s":"HITBTC:ARUSDT","d":[]},{"s":"UNISWAP:CRAMERWETH_397973","d":[]},{"s":"UNISWAP3ETH:WETHMGMI","d":[]},{"s":"ZOOMEX:HIFIUSDT.P","d":[]},{"s":"BITMEX:CYBERUSDT.P","d":[]},{"s":"UNISWAP:DAOWETH_7DD3F5","d":[]},{"s":"BINGX:ACEUSDT.PS","d":[]},{"s":"GATEIO:DOTUSDT.5S","d":[]},{"s":"TRADERJOE:WAVAXUSDT_BB4646","d":[]},{"s":"UNISWAP3ETH:WETH404CATS","d":[]},{"s":"UNISWAP:RDDTWETH_283E00.USD","d":[]},{"s":"BITGET:XUIUSDT","d":[]},{"s":"MEXC:BDPUSDT","d":[]},{"s":"UNISWAP:GDTUSDT_F76B60","d":[]},{"s":"BITGET:0X0USDT","d":[]},{"s":"UNISWAP3ETH:IMOONWETH","d":[]},{"s":"HITBTC:XVSBTC","d":[]},{"s":"GEMINI:DOGEUSD","d":[]},{"s":"BINGX:CETUSUSDT.P","d":[]},{"s":"BITSTAMP:ALGOEUR","d":[]},{"s":"BITSTAMP:CTSIUSD","d":[]},{"s":"PHEMEX:JASMYUSDT","d":[]},{"s":"TRADERJOE:HYHYWAVAX_38A5E9","d":[]},{"s":"QUICKSWAP:TELWMATIC_9B5C71.USD","d":[]},{"s":"BYBIT:POKTUSDT","d":[]},{"s":"UNISWAP3ETH:WETHBIGTIME","d":[]},{"s":"SPOOKYSWAP:ICEDOGEWFTM_13597C.USD","d":[]},{"s":"PHEMEX:ENJUSDC","d":[]},{"s":"MEXC:MENGOUSDT","d":[]},{"s":"BITSTAMP:CTSIEUR","d":[]},{"s":"PANGOLIN:APEINWAVAX_8DED94.USD","d":[]},{"s":"BYBIT:LITUSDT.P","d":[]},{"s":"UNISWAP3ETH:PSYOPWETH_42D403.USD","d":[]},{"s":"UNISWAP:VEILWETH_AC9AE0","d":[]},{"s":"COINEX:HIGHUSDT","d":[]},{"s":"KRAKEN:BCHUSDT","d":[]},{"s":"UNISWAP:MACHINAWETH_BFC7E1.USD","d":[]},{"s":"SPOOKYSWAP:SLIMEWFTM_BD6D31","d":[]},{"s":"UNISWAP3ETH:VPPWETH","d":[]},{"s":"COINEX:ARRRBTC","d":[]},{"s":"GATEIO:ACMUSDT","d":[]},{"s":"SPOOKYSWAP:DUOWFTM_5C2AA2.USD","d":[]},{"s":"BINANCE:BCHUSD.P","d":[]},{"s":"UNISWAP3POLYGON:BALWETH_4FE126.USD","d":[]},{"s":"UNISWAP:STRAYWETH_6ECBFB","d":[]},{"s":"UNISWAP:WAGIEBOTWETH_0D5E7B","d":[]},{"s":"UNISWAP3ETH:FINALEWETH_DFDE79.USD","d":[]},{"s":"UNISWAP:3D3DWETH_888999.USD","d":[]},{"s":"GATEIO:TTUSDT","d":[]},{"s":"POLONIEX:OMGBTC","d":[]},{"s":"WAGYUSWAP:BNBWAG_133F31","d":[]},{"s":"COINEX:BOTTOUSDT","d":[]},{"s":"COINEX:XPRTBTC","d":[]},{"s":"UNISWAP:TABSXWETH_20A9D6","d":[]},{"s":"UNISWAP3ETH:ICSAHDRN_4676B7.USD","d":[]},{"s":"BITGET:ALPINEUSDT","d":[]},{"s":"UNISWAP3ETH:INSTRNG_D81E56.USD","d":[]},{"s":"UNISWAP3ETH:MCADEUSDT_A10920.USD","d":[]},{"s":"UNISWAP:CBUNNYWETH_BECBCB","d":[]},{"s":"COINBASE:XRPEUR","d":[]},{"s":"UNISWAP:CMBOTWETH_0CA1BB.USD","d":[]},{"s":"UNISWAP3ETH:WETHREN","d":[]},{"s":"MEXC:AGLDUSDT.P","d":[]},{"s":"COINEX:RPKUSDT","d":[]},{"s":"MEXC:ALUUSDT","d":[]},{"s":"UNISWAP3ETH:COFFEEWETH","d":[]},{"s":"WOONETWORK:LTCUSDT","d":[]},{"s":"UNISWAP:AW3WETH_060CF8","d":[]},{"s":"HITBTC:EKOETH","d":[]},{"s":"UNISWAP:TPUWETH_C2FCDB","d":[]},{"s":"TRADERJOE:YYAVAXWETHE_DFF447.USD","d":[]},{"s":"UNISWAP:CATBOYWETH_E6F65D.USD","d":[]},{"s":"UNISWAP3ETH:WETHBVM","d":[]},{"s":"BINANCEUS:MATICUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:SOHIWETH_B38A39.USD","d":[]},{"s":"HONEYSWAPPOLYGON:WETHAAVE","d":[]},{"s":"COINEX:QUICKUSDT","d":[]},{"s":"UNISWAP:COMBOWETH_040BEF","d":[]},{"s":"UNISWAP3ARBITRUM:VKAWETH_7C0673.USD","d":[]},{"s":"UNISWAP:JOTCHUAWETH_26BE65","d":[]},{"s":"UNISWAP3ETH:DAWGSWETH","d":[]},{"s":"UNISWAP:LEAGUEWETH_4251B1","d":[]},{"s":"UNISWAP:BONDLYWETH_4D3138","d":[]},{"s":"HITBTC:CVNXETH","d":[]},{"s":"GATEIO:SWRVUSDT","d":[]},{"s":"MEXC:SHIBAINUXUSDT","d":[]},{"s":"HITBTC:YFIUSD","d":[]},{"s":"UNISWAP3ETH:TOYBOXWETH_25B84A.USD","d":[]},{"s":"TRADERJOE:FRAXWAVAX_862905","d":[]},{"s":"QUICKSWAP:SPINWMATIC_5A6861","d":[]},{"s":"UNISWAP:RBETWETH_7A47D6.USD","d":[]},{"s":"UNISWAP3POLYGON:SOILUSDT_11BCC5.USD","d":[]},{"s":"UNISWAP3ETH:NXRAUSDT_5EAFEF.USD","d":[]},{"s":"BINANCE:MASKUSDT","d":[]},{"s":"BITMEX:AXLUSDT.P","d":[]},{"s":"UNISWAP3ETH:CPRCWETH_5662DA.USD","d":[]},{"s":"UNISWAP:PAALWETH_2A6C34","d":[]},{"s":"UNISWAP3ETH:PORKWETH_331399.USD","d":[]},{"s":"BYBIT:DLCUSDT","d":[]},{"s":"UNISWAP:TPUWETH_927689","d":[]},{"s":"MEXC:YGGUSDT","d":[]},{"s":"UNISWAP3ETH:LUSDWETH_2746F8.USD","d":[]},{"s":"UNISWAP:DADAWETH_CEBBF0","d":[]},{"s":"TRADERJOE:BTCBWAVAX_2FD813.USD","d":[]},{"s":"BLOFIN:DATAUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:USDCUSDT_6F9199.USD","d":[]},{"s":"UNISWAP:EXOTIXWETH_63DE8D.USD","d":[]},{"s":"UNISWAP3ETH:WETHBASEDAI","d":[]},{"s":"PANGOLIN:ACREUSDTE_B448A6","d":[]},{"s":"UNISWAP:TGCWETH_85AA97","d":[]},{"s":"HITBTC:AVAXUSD","d":[]},{"s":"GEMINI:CUBEUSD","d":[]},{"s":"COINEX:CHZUSDT","d":[]},{"s":"QUICKSWAP:DMAUSDT_807CE1","d":[]},{"s":"UNISWAP:BGBGWETH_CA5311.USD","d":[]},{"s":"POLONIEX:WRXUSDT","d":[]},{"s":"UNISWAP3ETH:SLOPYWETH_7F94AE.USD","d":[]},{"s":"BITGET:SNXUSDT","d":[]},{"s":"UNISWAP3ARBITRUM:LUSDDAI_3C2192.USD","d":[]},{"s":"COINEX:IOSTUSDC","d":[]},{"s":"TRADERJOE:3QFDWAVAX_7B5E30.USD","d":[]},{"s":"UNISWAP3ETH:USDCSTETH","d":[]},{"s":"UNISWAP3POLYGON:STMATICUSDC_26770C.USD","d":[]},{"s":"UNISWAP3ETH:WETHFRIC","d":[]},{"s":"UNISWAP:SHIB2WETH_224796.USD","d":[]},{"s":"UNISWAP:CMWETH_D5C468","d":[]},{"s":"UNISWAP3ETH:WETHALEPH","d":[]},{"s":"POLONIEX:GMEONETHUSDT","d":[]},{"s":"BYBIT:INSPUSDT","d":[]},{"s":"HITBTC:FXSUSDT","d":[]},{"s":"UNISWAP3ETH:WETHWTAO","d":[]},{"s":"UNISWAP3ETH:PLSXUSDC_BDC476.USD","d":[]},{"s":"UNISWAP3ETH:GREENWETH","d":[]},{"s":"POLONIEX:XMRBTC","d":[]},{"s":"GATEIO:LFWUSDT","d":[]},{"s":"WOONETWORK:BTCUSDC","d":[]},{"s":"UNISWAP3POLYGON:CIOTXWMATIC_AF948C.USD","d":[]},{"s":"ZOOMEX:LEVERUSDT.P","d":[]},{"s":"UNISWAP3ETH:DOLLARADSWETH","d":[]},{"s":"MEXC:ONDOUSDT","d":[]},{"s":"UNISWAP3ETH:USDCGLM","d":[]},{"s":"ZOOMEX:DARUSDT.P","d":[]},{"s":"WOONETWORK:SOLUSDT","d":[]},{"s":"PIONEX:EGLDUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:SPACEUSDC_171DAB.USD","d":[]},{"s":"QUICKSWAP:GIBWMATIC_DE5A12","d":[]},{"s":"BLOFIN:CETUSUSDT.P","d":[]},{"s":"BITFINEX:XTZUST","d":[]},{"s":"UNISWAP3ARBITRUM:SSMOLMAGIC_DCBDDA.USD","d":[]},{"s":"COINEX:DODOUSDT","d":[]},{"s":"BLOFIN:BLURUSDT.P","d":[]},{"s":"KRAKEN:FILUSD","d":[]},{"s":"BYBIT:DAIUSDT","d":[]},{"s":"UNISWAP:YESNOWETH_C894E4.USD","d":[]},{"s":"POLONIEX:DOMOUSDT","d":[]},{"s":"PIONEX:KNCUSDT.P","d":[]},{"s":"TRADERJOE:PAPERINK_16C57F.USD","d":[]},{"s":"OKX:APEUSDT.P","d":[]},{"s":"UNISWAP:HOODWETH_9DD2BB","d":[]},{"s":"WHITEBIT:BLURUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHSISC","d":[]},{"s":"KRAKEN:USDCUSD.PM","d":[]},{"s":"HITBTC:HTBTC","d":[]},{"s":"BINANCE:RAREUSDT","d":[]},{"s":"UNISWAP:XOXWETH_A32F2C.USD","d":[]},{"s":"MEXC:LKPUSDT","d":[]},{"s":"UNISWAP:SNAKEWETH_0513DC.USD","d":[]},{"s":"GATEIO:KAIUSDT","d":[]},{"s":"UNISWAP3ETH:ASTWETH","d":[]},{"s":"MEXC:ONGUSDT","d":[]},{"s":"BINANCE:XLMEUR","d":[]},{"s":"BINGX:ANKRUSDT.P","d":[]},{"s":"GATEIO:DMAILUSDT","d":[]},{"s":"UNISWAP3POLYGON:GYSRWMATIC_DCC2F1.USD","d":[]},{"s":"UNISWAP:SXSWETH_8EFF34","d":[]},{"s":"POLONIEX:MEMEMEUSDT","d":[]},{"s":"WHITEBIT:ORBSUSDT","d":[]},{"s":"KRAKEN:TLMUSD","d":[]},{"s":"SPOOKYSWAP:KNGFUUWFTM_F704F5","d":[]},{"s":"SPOOKYSWAP:SPAWFTM_1FECC6.USD","d":[]},{"s":"UNISWAP3ETH:USDCGAL","d":[]},{"s":"UPBIT:HPOKRW","d":[]},{"s":"KRAKEN:LTCBTC","d":[]},{"s":"COINEX:NIMBTC","d":[]},{"s":"UNISWAP3ETH:MLHWETH","d":[]},{"s":"COINEX:HNTUSDT","d":[]},{"s":"GEMINI:UMAUSD","d":[]},{"s":"UNISWAP:MKRDAI_517F9D","d":[]},{"s":"BINANCE:SCUSDT","d":[]},{"s":"PHEMEX:BNTUSDT.P","d":[]},{"s":"TRADERJOE:ALOTWAVAX_1D07AB.USD","d":[]},{"s":"BYBIT:MBLUSDT.P","d":[]},{"s":"UNISWAP:XRISEWETH_4BC418.USD","d":[]},{"s":"BINANCE:WLDUSDT","d":[]},{"s":"UNISWAP3ETH:AAVECOMP","d":[]},{"s":"TRADERJOE:MICROWAVAX_397C86","d":[]},{"s":"UNISWAP3ETH:ECOXWETH","d":[]},{"s":"HITBTC:ALCXUSDT","d":[]},{"s":"GATEIO:DMLGUSDT","d":[]},{"s":"BINANCE:ZENUSDT","d":[]},{"s":"MEXC:BAXBTC","d":[]},{"s":"UNISWAP:ETFWETH_762636.USD","d":[]},{"s":"UNISWAP:SNMWETH_E2DBEB","d":[]},{"s":"TRADERJOE:ZJOEJOE_CF80E3.USD","d":[]},{"s":"GATEIO:PNKUSDT","d":[]},{"s":"UNISWAP:FEGWETH_854373.USD","d":[]},{"s":"UNISWAP:WILDWETH_CAA004.USD","d":[]},{"s":"MEXC:BCHUSDT.P","d":[]},{"s":"UNISWAP3ETH:TBTCWBTC","d":[]},{"s":"UNISWAP:INNOVAWETH_3A41B1.USD","d":[]},{"s":"PHEMEX:1000SATSUSDT.P","d":[]},{"s":"KRAKEN:JTOUSD.PM","d":[]},{"s":"UNISWAP3ETH:LEOXUSDC","d":[]},{"s":"UNISWAP3ETH:SOVWETH_031817.USD","d":[]},{"s":"BINANCE:ATOMUSDT","d":[]},{"s":"MEXC:XPRUSDT","d":[]},{"s":"BITGET:DYMUSDT.P","d":[]},{"s":"MEXC:UNIUSDT","d":[]},{"s":"BITFINEX:XTZBTC","d":[]},{"s":"BINANCE:OPTUSD","d":[]},{"s":"PIONEX:HIFIUSDT.P","d":[]},{"s":"UNISWAP:GRUMPYCATWETH_CAE69E.USD","d":[]},{"s":"BINANCE:API3TRY","d":[]},{"s":"HITBTC:BTTUSDC","d":[]},{"s":"UNISWAP:XPWETH_353A70.USD","d":[]},{"s":"QUICKSWAP:NFTBSWMATIC_9646F7","d":[]},{"s":"PANGOLIN:PLNWAVAX_911AE9","d":[]},{"s":"COINEX:LBCUSDT","d":[]},{"s":"UNISWAP3ETH:USDCARB","d":[]},{"s":"POLONIEX:RXTUSDT","d":[]},{"s":"SPOOKYSWAP:MORPHUSDC_3425B1","d":[]},{"s":"WHITEBIT:SUSHIUAH","d":[]},{"s":"UNISWAP3ETH:OLASUSDT_41480B.USD","d":[]},{"s":"UNISWAP3ETH:WOMBATWETH","d":[]},{"s":"UNISWAP3ETH:USDTSHMU","d":[]},{"s":"UNISWAP3POLYGON:VVTUSDC_B093EE.USD","d":[]},{"s":"UNISWAP:DPIWETH_4D5EF5","d":[]},{"s":"BYBIT:ACHUSDT","d":[]},{"s":"GATEIO:MMPROUSDT","d":[]},{"s":"UNISWAP3ETH:PKFWETH_4BF528.USD","d":[]},{"s":"UNISWAP:SSWETH_92F468.USD","d":[]},{"s":"UNISWAP:KEKOWETH_95F989.USD","d":[]},{"s":"MEXC:ZBCUSDT","d":[]},{"s":"MEXC:PERCUSDT","d":[]},{"s":"UNISWAP:GEKKOWETH_DA2D09","d":[]},{"s":"MEXC:UPCUSDT","d":[]},{"s":"UNISWAP3POLYGON:RMVWMATIC_AFC262.USD","d":[]},{"s":"COINEX:EVMOSBTC","d":[]},{"s":"UNISWAP3ARBITRUM:ASTRADAOWETH_BA0A07.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LINKWETH_468B88.USD","d":[]},{"s":"QUICKSWAP:QUICKWMATIC_019BA0.USD","d":[]},{"s":"UNISWAP3ETH:UNCXWETH","d":[]},{"s":"UNISWAP:SOLARWETH_C21CD7","d":[]},{"s":"UNISWAP:POHMPPEA3_3CCAF5.USD","d":[]},{"s":"UNISWAP:THUMBWETH_99B4D2","d":[]},{"s":"UNISWAP3POLYGON:ERIDUWMATIC_28F682.USD","d":[]},{"s":"TRADERJOE:BOGUSDCE_5F83E3","d":[]},{"s":"QUICKSWAP:OJAWMATIC_344454.USD","d":[]},{"s":"UNISWAP:MAIWETH_769505","d":[]},{"s":"KRAKEN:AVAXUSD","d":[]},{"s":"WOONETWORK:VOYAUSDT","d":[]},{"s":"GATEIO:BORINGUSDT","d":[]},{"s":"ZOOMEX:FTMUSDT.P","d":[]},{"s":"UNISWAP:PEPECWETH_A193FB","d":[]},{"s":"GATEIO:SAMOUSDT","d":[]},{"s":"KRAKEN:LINKJPY","d":[]},{"s":"COINEX:TOSHIUSDT","d":[]},{"s":"BLOFIN:SKLUSDT.P","d":[]},{"s":"MEXC:DPXUSDT","d":[]},{"s":"POLONIEX:ACH1USDT","d":[]},{"s":"MEXC:LOONGUSDT","d":[]},{"s":"GATEIO:CTRCUSDT","d":[]},{"s":"COINEX:FIROUSDT","d":[]},{"s":"HITBTC:ORNUSDT","d":[]},{"s":"MEXC:VTHOUSDT.P","d":[]},{"s":"QUICKSWAP:FORUSDT_63113F","d":[]},{"s":"UNISWAP3ETH:API3WETH_495864.USD","d":[]},{"s":"UNISWAP:OUCHIUSDC_9262A1","d":[]},{"s":"MEXC:STATUSDT","d":[]},{"s":"UNISWAP3ETH:GROWWETH","d":[]},{"s":"UNISWAP3ETH:OLYUSDT","d":[]},{"s":"BITFINEX:BTCJPY","d":[]},{"s":"TRADERJOE:FLOTWAVAX_1C7050","d":[]},{"s":"MEXC:HIVEUSDT","d":[]},{"s":"UNISWAP3ETH:GLMDAI","d":[]},{"s":"KRAKEN:BTCUSD.MM2024","d":[]},{"s":"UNISWAP:GZTWETH_4759C6","d":[]},{"s":"BITGET:DUELUSDT","d":[]},{"s":"SPOOKYSWAP:PARTIALWFTM_E78C2B","d":[]},{"s":"XEXCHANGE:HODLUSDC","d":[]},{"s":"GATEIO:DEUSUSDT","d":[]},{"s":"MEXC:SHIAUSDT","d":[]},{"s":"UNISWAP:MINTWETH_092E79","d":[]},{"s":"GATEIO:FORTHUSDT","d":[]},{"s":"UNISWAP3ETH:BUGSWETH_402B2D.USD","d":[]},{"s":"UNISWAP:SGWETH_8F1AA1.USD","d":[]},{"s":"MEXC:CLSUSDT","d":[]},{"s":"MEXC:SHIB2USDT","d":[]},{"s":"BITFINEX:SOLUSD","d":[]},{"s":"BITFINEX:1INCHBTC","d":[]},{"s":"MEXC:WAXLUSDT","d":[]},{"s":"UNISWAP:PAWTHWETH_800A45.USD","d":[]},{"s":"QUICKSWAP:STACKWETH_EFF9DF","d":[]},{"s":"UNISWAP:CAESARWETH_E48EB5.USD","d":[]},{"s":"HITBTC:SNTUSD","d":[]},{"s":"KRAKEN:XRPGBP","d":[]},{"s":"UNISWAP3ARBITRUM:XCORNUSDC_BF7751.USD","d":[]},{"s":"HITBTC:SCRTUSD","d":[]},{"s":"MEXC:ATORUSDT","d":[]},{"s":"UNISWAP:EQXWETH_09062C","d":[]},{"s":"UNISWAP:XRP20WETH_CD09B7","d":[]},{"s":"UNISWAP:1MILWETH_BEE123.USD","d":[]},{"s":"BITRUE:DYDXUSDC","d":[]},{"s":"BITHUMB:OSMOKRW","d":[]},{"s":"BITGET:NEARUSDC","d":[]},{"s":"UNISWAP:DOGE1WETH_4DAD25","d":[]},{"s":"HITBTC:XTZBTC","d":[]},{"s":"TRADERJOE:PEFIWAVAX_B78C82.USD","d":[]},{"s":"COINBASE:ATOMUSD","d":[]},{"s":"UNISWAP3ARBITRUM:FLASHWETH_F2D315.USD","d":[]},{"s":"UNISWAP:NEXWETH_D767DA","d":[]},{"s":"TRADERJOE:LINKEWAVAX_6F3A0C","d":[]},{"s":"UNISWAP:CORWETH_DE26D7.USD","d":[]},{"s":"UNISWAP3ETH:CANDYUSDT_E7120E.USD","d":[]},{"s":"UNISWAP:SPOOLDAI_F3B675","d":[]},{"s":"UNISWAP:LENDWETH_AB3F9B","d":[]},{"s":"TRADERJOE:DWCWAVAX_BE39C0","d":[]},{"s":"UNISWAP:LANDSWETH_AB62C6.USD","d":[]},{"s":"MEXC:TRIVIAUSDT","d":[]},{"s":"UNISWAP3ETH:USDCWFLOW","d":[]},{"s":"HITBTC:UTKETH","d":[]},{"s":"WHITEBIT:YFIIUSDT","d":[]},{"s":"BINANCE:ENJTRY","d":[]},{"s":"HITBTC:PMAETH","d":[]},{"s":"BITFINEX:ETH2XUST","d":[]},{"s":"GATEIO:SLMUSDT","d":[]},{"s":"COINEX:XYMUSDT","d":[]},{"s":"WHITEBIT:DYMUSDT.P","d":[]},{"s":"GATEIO:MMUSDT","d":[]},{"s":"WAGYUSWAP:MATICWAG_DBBCBF","d":[]},{"s":"DELTA:1INCHUSDT.P","d":[]},{"s":"GATEIO:ETHWUSDT","d":[]},{"s":"BITGET:JOEUSDT","d":[]},{"s":"UNISWAP3POLYGON:OPXUSDT_A50837.USD","d":[]},{"s":"BITGET:AGLDUSDT.P","d":[]},{"s":"HITBTC:LUNCBTC","d":[]},{"s":"UNISWAP3ETH:USDCYGG","d":[]},{"s":"UNISWAP:ARNXMWETH_7CA514.USD","d":[]},{"s":"GATEIO:MPLUSDT","d":[]},{"s":"BITGET:BONKUSDT","d":[]},{"s":"UNISWAP3ETH:WETHPKF","d":[]},{"s":"BYBIT:BLZUSDT.P","d":[]},{"s":"BINANCE:CHZFDUSD","d":[]},{"s":"BISWAP:TRXWBNB_16DA0C.USD","d":[]},{"s":"BINANCE:BTCUSDH2024","d":[]},{"s":"GATEIO:AAGUSDT","d":[]},{"s":"HITBTC:UTTBTC","d":[]},{"s":"COINEX:ONTUSDT","d":[]},{"s":"MEXC:CWEBUSDT","d":[]},{"s":"UNISWAP3ETH:TRUDWETH","d":[]},{"s":"MEXC:BONKUSDT","d":[]},{"s":"TRADERJOE:ASNDMIM_785A73.USD","d":[]},{"s":"SPOOKYSWAP:KYRIOSWFTM_2A7011.USD","d":[]},{"s":"COINBASE:BICOUSD","d":[]},{"s":"UNISWAP3ETH:VOLTAUSDT_7F8266.USD","d":[]},{"s":"UNISWAP:BCATWETH_0AFD65.USD","d":[]},{"s":"TRADERJOE:MUUSDTE_594CAA","d":[]},{"s":"BINANCE:GALAETH","d":[]},{"s":"MEXC:SANDUSDT.P","d":[]},{"s":"HITBTC:GNXBTC","d":[]},{"s":"SPOOKYSWAP:STABLEUSDC_9210AD","d":[]},{"s":"GATEIO:EPXUSDT","d":[]},{"s":"COINBASE:ANKRUSD","d":[]},{"s":"QUICKSWAP:VABWMATIC_80EE26","d":[]},{"s":"BITFINEX:LINKUSD","d":[]},{"s":"UNISWAP:TRUMPWETH_F266AC","d":[]},{"s":"BITGET:LQTYUSDT.P","d":[]},{"s":"BINANCEUS:BCHUSDT","d":[]},{"s":"TRADERJOE:UNIXWAVAX_5F8D03.USD","d":[]},{"s":"UNISWAP:VSGWETH_844A5C.USD","d":[]},{"s":"COINBASE:SWFTCUSD","d":[]},{"s":"UNISWAP:ARCWETH_47082A","d":[]},{"s":"UNISWAP:AGIWETH_498C00","d":[]},{"s":"WHITEBIT:CYBERUSDT","d":[]},{"s":"HITBTC:ZILUSD","d":[]},{"s":"GATEIO:GXAUSDT","d":[]},{"s":"UNISWAP:UWONWETH_56DC58.USD","d":[]},{"s":"UNISWAP:TOSHIWETH_CAACAC.USD","d":[]},{"s":"QUICKSWAP:RVLTWETH_5EFDBC","d":[]},{"s":"UNISWAP:BGPTWETH_A00100.USD","d":[]},{"s":"QUICKSWAP:TIMEWETH_86FD28.USD","d":[]},{"s":"BITMEX:OPUSD","d":[]},{"s":"UNISWAP3POLYGON:LDOSNX_97E1DB.USD","d":[]},{"s":"BINANCE:AAVEUSD.P","d":[]},{"s":"UNISWAP3ETH:OLASWETH","d":[]},{"s":"BITFINEX:HMTUST","d":[]},{"s":"UPBIT:HIVEKRW","d":[]},{"s":"UNISWAP3OPTIMISM:KROMOP_6EF7B1.USD","d":[]},{"s":"PIONEX:MANTAUSDT.P","d":[]},{"s":"BINANCE:ELFUSDT","d":[]},{"s":"UNISWAP3ETH:MUMUWETH","d":[]},{"s":"GATEIO:DINOUSDT","d":[]},{"s":"SPOOKYSWAP:USDVWFTM_E670C4","d":[]},{"s":"UNISWAP:SHILWETH_2C8666","d":[]},{"s":"KRAKEN:AVAXUSD.PM","d":[]},{"s":"COINBASE:SEIUSD","d":[]},{"s":"QUICKSWAP:SPORTGMEE_0A6707.USD","d":[]},{"s":"UNISWAP3ARBITRUM:DPXWETH_B52781.USD","d":[]},{"s":"TRADERJOE:DOMIWAVAX_5B9FAF","d":[]},{"s":"UNISWAP3ARBITRUM:FUCWETH_0B0E41.USD","d":[]},{"s":"UNISWAP3ETH:HEMULEWETH_EBAB69.USD","d":[]},{"s":"UNISWAP3ARBITRUM:DOGMUSKWETH_09CEA5.USD","d":[]},{"s":"BYBIT:TIAUSDT","d":[]},{"s":"COINEX:LATBTC","d":[]},{"s":"UNISWAP3ARBITRUM:CRYSTALWETH_84436A.USD","d":[]},{"s":"BITSTAMP:LINKBTC","d":[]},{"s":"UNISWAP3ETH:CONWETH","d":[]},{"s":"UNISWAP3ETH:SWTHWETH_C995DA.USD","d":[]},{"s":"UNISWAP:SMBRWETH_088480","d":[]},{"s":"UNISWAP:TOADWETH_D80046.USD","d":[]},{"s":"WAGYUSWAP:AVAXWAG_F20C64.USD","d":[]},{"s":"POLONIEX:CLDUSDT","d":[]},{"s":"POLONIEX:RAYUSDT","d":[]},{"s":"BINANCE:ETCBNB","d":[]},{"s":"UNISWAP3ARBITRUM:XSOYUSDC_FE73B3.USD","d":[]},{"s":"ZOOMEX:SFPUSDT.P","d":[]},{"s":"HITBTC:TONCOINUSD","d":[]},{"s":"UNISWAP:IMLCWETH_B45463","d":[]},{"s":"BLOFIN:QIUSDT.P","d":[]},{"s":"UNISWAP3ETH:DAMMUSDC_9481B3.USD","d":[]},{"s":"GATEIO:SYSUSDT","d":[]},{"s":"UNISWAP3ETH:XDEFIWETH_779241.USD","d":[]},{"s":"BLOFIN:KNCUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:FANXWMATIC_92D648.USD","d":[]},{"s":"BITGET:SMLUSDT","d":[]},{"s":"MEXC:EVRYUSDT","d":[]},{"s":"KRAKEN:SUPEREUR","d":[]},{"s":"QUICKSWAP:RBCUSDT_07C6F1","d":[]},{"s":"BITFINEX:NEXOUST","d":[]},{"s":"UNISWAP3ETH:WMINIMAUSDT_8E427A.USD","d":[]},{"s":"UNISWAP3ETH:SCHAPWETH_A53D37.USD","d":[]},{"s":"HITBTC:ARDRUSD","d":[]},{"s":"GATEIO:WLKNUSDT","d":[]},{"s":"BLOFIN:BCHUSDT.P","d":[]},{"s":"MEXC:PLAYUSDT","d":[]},{"s":"QUICKSWAP:LICREKT_C1507C","d":[]},{"s":"UNISWAP:UNLEASHWETH_F64E49","d":[]},{"s":"TRADERJOE:DZHVWAVAX_523A04","d":[]},{"s":"HITBTC:REQUSDT","d":[]},{"s":"UNISWAP:ETFWETH_39D297","d":[]},{"s":"TRADERJOE:HPTWAVAX_12A91D","d":[]},{"s":"BITRUE:AVAXUSDC","d":[]},{"s":"UNISWAP3ETH:USDCHEX","d":[]},{"s":"TRADERJOE:MEATWAVAX_60B881","d":[]},{"s":"UNISWAP3ETH:NYMUSDT","d":[]},{"s":"BINGX:MAGICUSDT.P","d":[]},{"s":"QUICKSWAP:DMTWETH_871FF6.USD","d":[]},{"s":"MEXC:PIINSUSDT","d":[]},{"s":"UNISWAP3ETH:APEUSDC","d":[]},{"s":"GATEIO:TNCUSDT","d":[]},{"s":"UNISWAP3ETH:RAILWETH_283780.USD","d":[]},{"s":"COINEX:MONABTC","d":[]},{"s":"QUICKSWAP:RINGWMATIC_610A90.USD","d":[]},{"s":"UNISWAP3ETH:PPPPPEAS_89B35C.USD","d":[]},{"s":"POLONIEX:SIXUSDT","d":[]},{"s":"UNISWAP:PUDGWETH_6F7271.USD","d":[]},{"s":"BINANCEUS:OGNUSDT","d":[]},{"s":"COINEX:WRLDUSDT","d":[]},{"s":"UNISWAP3ETH:ALTWETH_8F413A.USD","d":[]},{"s":"HITBTC:HBARUSDT","d":[]},{"s":"GATEIO:SATSUSDT","d":[]},{"s":"WHITEBIT:ADXUSDT","d":[]},{"s":"KRAKEN:ADXUSD","d":[]},{"s":"BLOFIN:PHBUSDT.P","d":[]},{"s":"UNISWAP3POLYGON:ORETRORETRO_670CB5.USD","d":[]},{"s":"TRADERJOE:BNBWAVAX_EB8EB6","d":[]},{"s":"UNISWAP:PEEPWETH_FDD0F1","d":[]},{"s":"BINGX:WAVESUSDT.P","d":[]},{"s":"UNISWAP:DEGENWETH_E0FE04.USD","d":[]},{"s":"KRAKEN:XTZBTC","d":[]},{"s":"COINEX:HIVEUSDT","d":[]},{"s":"BINANCE:LOKABTC","d":[]},{"s":"GATEIO:WSMUSDT","d":[]},{"s":"COINEX:XYOUSDT","d":[]},{"s":"BITGET:SPURSUSDT","d":[]},{"s":"UNISWAP:RACAWETH_521274.USD","d":[]},{"s":"BYBIT:RENUSDT","d":[]},{"s":"BINANCEUS:SOLBTC","d":[]},{"s":"MEXC:FILUSDC","d":[]},{"s":"GATEIO:VELOUSDT","d":[]},{"s":"UNISWAP:211800WETH_E06F13","d":[]},{"s":"WHITEBIT:ETHTRY","d":[]},{"s":"COINBASE:CHZUSD","d":[]},{"s":"BITHUMB:REQKRW","d":[]},{"s":"UNISWAP3POLYGON:TXAUUSDC_6488AD.USD","d":[]},{"s":"UNISWAP3POLYGON:FIREUSDT_496B7C.USD","d":[]},{"s":"MEXC:GROKSUSDT","d":[]},{"s":"KRAKEN:ARBUSD.PM","d":[]},{"s":"UNISWAP3ETH:ECOTERRAWETH","d":[]},{"s":"UNISWAP3ETH:WETHBUSD_4FF7E1.USD","d":[]},{"s":"UNISWAP3ETH:SAITOWETH","d":[]},{"s":"KRAKEN:MASKUSD.PM","d":[]},{"s":"MEXC:TRXUSDC","d":[]},{"s":"UNISWAP3ETH:WETHGAPE","d":[]},{"s":"UNISWAP3ETH:WBTCUNI","d":[]},{"s":"UNISWAP:AURAWETH_6C350E.USD","d":[]},{"s":"MEXC:WOOUSDT","d":[]},{"s":"PIONEX:BCHUSDT.P","d":[]},{"s":"UNISWAP:DOGE20WETH_07F03A","d":[]},{"s":"GATEIO:WICCUSDT","d":[]},{"s":"UNISWAP:EMOTIWETH_F6CD17","d":[]},{"s":"BITMEX:BNBUSD.P","d":[]},{"s":"KRAKEN:DOGEBTC","d":[]},{"s":"UNISWAP3ETH:DAITEAM","d":[]},{"s":"MEXC:SENSOUSDT","d":[]},{"s":"PHEMEX:KLAYUSDT.P","d":[]},{"s":"UNISWAP3ETH:WETHBOO","d":[]},{"s":"BITMEX:FLRUSD.P","d":[]},{"s":"UNISWAP3ETH:LUSDUSDC_4E0924.USD","d":[]},{"s":"UNISWAP3ETH:WETHTRUTH","d":[]},{"s":"UNISWAP:XDEXUSDC_FAF477","d":[]},{"s":"UNISWAP:WAGERWETH_E01ABD","d":[]},{"s":"QUICKSWAP:LUPUSLIC_2320AF.USD","d":[]},{"s":"UNISWAP3ETH:CHRWETH_1CC053.USD","d":[]},{"s":"BITMEX:ETHUSDT","d":[]},{"s":"UNISWAP3ETH:WETHRETH","d":[]},{"s":"TRADERJOE:YYAVAXWETHE_DFF447","d":[]},{"s":"UNISWAP:GWDWETH_BE85C8","d":[]},{"s":"POLONIEX:BRETTUSDT","d":[]},{"s":"UNISWAP:XCNWETH_859F70.USD","d":[]},{"s":"SPOOKYSWAP:TSHARETOMB_44CA5E","d":[]},{"s":"UNISWAP:UXOSWETH_DB1B4A.USD","d":[]},{"s":"SPOOKYSWAP:WSPPFUSDT_25FDBF.USD","d":[]},{"s":"BITFINEX:XRDUSD","d":[]},{"s":"GEMINI:SUSHIUSD","d":[]},{"s":"POLONIEX:SOSUSDT","d":[]},{"s":"BINGX:API3USDT.PS","d":[]},{"s":"UNISWAP:HARAMWETH_1C3115.USD","d":[]},{"s":"UNISWAP3ARBITRUM:LILAIWETH_38F29A.USD","d":[]},{"s":"HITBTC:RENUSDC","d":[]},{"s":"HITBTC:POWRBTC","d":[]},{"s":"BISWAP:THOREUMWBNB_D822E1","d":[]},{"s":"UNISWAP3ETH:CRVUSDC_9445BD.USD","d":[]},{"s":"PHEMEX:TUSDT","d":[]},{"s":"UNISWAP:BNTWETH_3FD4CF","d":[]},{"s":"QUICKSWAP:DAIWETH_4A3558.USD","d":[]},{"s":"UNISWAP:LOVEPEPE_AEA41A","d":[]},{"s":"BYBIT:RIFUSDT.P","d":[]},{"s":"GATEIO:FTTUSDT","d":[]},{"s":"UNISWAP3ETH:BOSONWETH_18ADBC.USD","d":[]},{"s":"BITHUMB:OXTKRW","d":[]},{"s":"POLONIEX:CCROWDUSDT","d":[]},{"s":"UNISWAP:GRINCHWETH_7D3806.USD","d":[]},{"s":"UNISWAP3ETH:BBTCWETH","d":[]},{"s":"UNISWAP:HEXUSDC_F6DCDC","d":[]},{"s":"UNISWAP3ETH:MAXIHEX_2AE451.USD","d":[]},{"s":"GATEIO:NFTYUSDT","d":[]},{"s":"UNISWAP:NDSUSDT_44437E","d":[]},{"s":"UNISWAP3POLYGON:XSGDUSDC_9BCEF8.USD","d":[]},{"s":"UNISWAP:BTCETFUSDT_65271D","d":[]},{"s":"UNISWAP:RKRWETH_B227EB.USD","d":[]},{"s":"UNISWAP:PATHWETH_870519.USD","d":[]},{"s":"UNISWAP:DPXWETH_F64AF0.USD","d":[]},{"s":"COINBASE:BTCUSDT","d":[]},{"s":"MEXC:DATAUSDT.P","d":[]},{"s":"GATEIO:ONTUSDT.3S","d":[]},{"s":"BINGX:XAIUSDT.P","d":[]},{"s":"TRADERJOE:SNOWAVAXWAVAX_705432.USD","d":[]},{"s":"HITBTC:STMXUSDT","d":[]},{"s":"UNISWAP3ETH:DYDXUSDC","d":[]},{"s":"MEXC:GENEDAOUSDT","d":[]},{"s":"UNISWAP3POLYGON:MIMUSDC_99799D.USD","d":[]},{"s":"UPBIT:RLYBTC","d":[]},{"s":"SUSHISWAP:MOVEWETH_87B918","d":[]},{"s":"PANCAKESWAP:LVMBUSD_712A9E","d":[]},{"s":"KUCOIN:CFXUSDT.2S","d":[]},{"s":"BINANCE:FLMUSD","d":[]},{"s":"KUCOIN:AVAXUSDT.3S","d":[]},{"s":"PANCAKESWAP:SFCVPC_EA5810.USD","d":[]},{"s":"PANCAKESWAP:JXUSDT_3BB004","d":[]},{"s":"PANCAKESWAP:BSCXWBNB_47C42B.USD","d":[]},{"s":"BINANCE:ZECUSD","d":[]},{"s":"PANCAKESWAP:AKBWBNB_23C626","d":[]},{"s":"PANCAKESWAP:DIFIWBNB_DEB7DE.USD","d":[]},{"s":"SUSHISWAP:PUNKWETH_0463A0","d":[]},{"s":"KUCOIN:XYMUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:WETHWMATIC_C4E595","d":[]},{"s":"UPBIT:XLMBTC","d":[]},{"s":"PANCAKESWAP:ARKMWBNB_15714B.USD","d":[]},{"s":"PANCAKESWAP:FETTHOREUM_92CF99.USD","d":[]},{"s":"PANCAKESWAP:ANWUSDT_5AB8EF","d":[]},{"s":"HONEYSWAP:UNILINK_2341B4.USD","d":[]},{"s":"KUCOIN:AGIXUSDT","d":[]},{"s":"PANCAKESWAP:WWINMMUSD_0AE640.USD","d":[]},{"s":"PANCAKESWAP:ETNWBNB_9118E0","d":[]},{"s":"BINANCE:MOBUSD","d":[]},{"s":"PANCAKESWAP:LFGBUSD_1B70BC","d":[]},{"s":"SUSHISWAP:SPCWETH_E36499.USD","d":[]},{"s":"PANCAKESWAP:BLCWBNB_D92ED6.USD","d":[]},{"s":"PANCAKESWAP:METOBUSD_6D913B","d":[]},{"s":"SUSHISWAP:YFIWETH_088EE5.USD","d":[]},{"s":"PANCAKESWAP:CMXUSDT_950FC2","d":[]},{"s":"PANCAKESWAP:XGROWBNB_DC6125","d":[]},{"s":"BINANCE:STXUSD","d":[]},{"s":"PANCAKESWAP:312USDT_94E0A8","d":[]},{"s":"PANCAKESWAP:EGCWBNB_D254A3","d":[]},{"s":"PANCAKESWAP:FILWBNB_D9BCCB.USD","d":[]},{"s":"PANCAKESWAP:ZYAWBNB_B2ECB3.USD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_4578FC","d":[]},{"s":"PANCAKESWAP:BDWBNB_F84AED.USD","d":[]},{"s":"PANCAKESWAP:DFYWBNB_52DF67.USD","d":[]},{"s":"PANCAKESWAP:CUBEBWBNB_4A8273","d":[]},{"s":"OKX:SNXUSDT","d":[]},{"s":"PANCAKESWAP:WKDWBNB_F19F17","d":[]},{"s":"KUCOIN:CASBTC","d":[]},{"s":"HONEYSWAP:BTCTRADEUSDC_5F7C3D","d":[]},{"s":"PANCAKESWAP:AERFAUSDT_5AA9EF","d":[]},{"s":"PANCAKESWAP:KAPEUSDT_C2A26D","d":[]},{"s":"PANCAKESWAP:SURGEWBNB_419A21.USD","d":[]},{"s":"PANCAKESWAP:LIQWBNB_23C75A","d":[]},{"s":"PANCAKESWAP:BABYPIGWBNB_386023","d":[]},{"s":"PANCAKESWAP:NPCWBNB_D2E2C4","d":[]},{"s":"PANCAKESWAP:DXOBUSD_468EF4","d":[]},{"s":"PANCAKESWAP:NFTWBNB_0ECC84","d":[]},{"s":"UPBIT:GALBTC","d":[]},{"s":"PANCAKESWAP:UMBWBNB_FFD8EE.USD","d":[]},{"s":"KUCOIN:XRPUSDT.3S","d":[]},{"s":"PANCAKESWAP:TRPWBNB_6E8EEB","d":[]},{"s":"PANCAKESWAP:WOJWBNB_0290BB.USD","d":[]},{"s":"PANCAKESWAP:VOLTWBNB_487BFE","d":[]},{"s":"PANCAKESWAP:CALOWBNB_67FB2B","d":[]},{"s":"PANCAKESWAP:ECWBNB_8E2BBE","d":[]},{"s":"PANCAKESWAP:PLTWBNB_26CBC1","d":[]},{"s":"PANCAKESWAP:RLDWBNB_19AAD7.USD","d":[]},{"s":"PANCAKESWAP:SHENSHOUYUAN_A77BF2","d":[]},{"s":"PANCAKESWAP:POKERFIWBNB_F0107B","d":[]},{"s":"OKX:SPELLUSDT","d":[]},{"s":"PANCAKESWAP:BABYINUUSDT_0700D9","d":[]},{"s":"PANCAKESWAP:FIWABUSD_4311ED","d":[]},{"s":"HONEYSWAP:LINKHNY_60D0EC","d":[]},{"s":"PANCAKESWAP:OTUSDT_360B3C","d":[]},{"s":"PANCAKESWAP:OMPUSDT_2B90E6","d":[]},{"s":"PANCAKESWAP:IRYDEWBNB_86246A.USD","d":[]},{"s":"SUSHISWAP:LYRAWETH_52DAC0","d":[]},{"s":"PANCAKESWAP:N1WBNB_905D85.USD","d":[]},{"s":"KUCOIN:TSUGTUSDT","d":[]},{"s":"PANCAKESWAP:YAMAWBNB_4C41D5","d":[]},{"s":"OKX:STCUSDT","d":[]},{"s":"KUCOIN:ATEMUSDT","d":[]},{"s":"PANCAKESWAP:MOOWBNB_284C46.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DAIWETH_6FF62B.USD","d":[]},{"s":"PANCAKESWAP:FISTZGL_417429.USD","d":[]},{"s":"PANCAKESWAP:SLTWBNB_07971A.USD","d":[]},{"s":"PANCAKESWAP:CNSWBNB_50605A.USD","d":[]},{"s":"PANCAKESWAP:MELBWBNB_BC4B12.USD","d":[]},{"s":"PANCAKESWAP:SDTWBNB_0FEEE9","d":[]},{"s":"PANCAKESWAP:LYCUSDT_D49598","d":[]},{"s":"PANCAKESWAP:ZKCWBNB_7CD01A.USD","d":[]},{"s":"PANCAKESWAP:NINKYSOULS_E235F3.USD","d":[]},{"s":"PANCAKESWAP:TRTWBNB_44A490.USD","d":[]},{"s":"PANCAKESWAP:IDWBNB_5A5766","d":[]},{"s":"PANCAKESWAP:MARTIANDOGEWBNB_185BF3.USD","d":[]},{"s":"KUCOIN:STXBTC","d":[]},{"s":"PANCAKESWAP:DEBTBLOX_AABBB0","d":[]},{"s":"KUCOIN:DEGOETH","d":[]},{"s":"PANCAKESWAP:MBASWBNB_CAE173","d":[]},{"s":"OKX:NFTUSDT","d":[]},{"s":"PANCAKESWAP:BOTUSDT_8DE6DA","d":[]},{"s":"SUSHISWAP:ONEBTCWBTC_D22708.USD","d":[]},{"s":"PANCAKESWAP:SHEESHAWBNB_B31ECB.USD","d":[]},{"s":"PANCAKESWAP:40V2WBNB_9DEEF2.USD","d":[]},{"s":"PANCAKESWAP:OPYWBNB_AB0864","d":[]},{"s":"PANCAKESWAP:GUARDWBNB_72CB71","d":[]},{"s":"PANCAKESWAP:2049WBNB_BE8DC5","d":[]},{"s":"PANCAKESWAP:OASIUSDT_6218D0","d":[]},{"s":"SUSHISWAP:BANKWETH_938625.USD","d":[]},{"s":"PANCAKESWAP:LEVEWBNB_810A53","d":[]},{"s":"HONEYSWAP:STAKEAGVE_A3E904","d":[]},{"s":"PANCAKESWAP:MTCUSDT_383F54","d":[]},{"s":"SUSHISWAP:WSTETHDAI_C55781","d":[]},{"s":"PANCAKESWAP:XMASGROKWBNB_5AA59D","d":[]},{"s":"PANCAKESWAP:SCROOGEWBNB_2553C7.USD","d":[]},{"s":"KUCOIN:HIGAZERSUSDT","d":[]},{"s":"PANCAKESWAP:SHIBAIWBNB_78035F.USD","d":[]},{"s":"HONEYSWAP:PSPGNO_F63494.USD","d":[]},{"s":"HONEYSWAP:VBUCKWXDAI_44E102","d":[]},{"s":"UPBIT:STMXBTC","d":[]},{"s":"PANCAKESWAP:SECUSDT_FED3FC","d":[]},{"s":"HONEYSWAP:WXDAIDAI_0F2D04","d":[]},{"s":"PANCAKESWAP:YOSTEPWBNB_505661","d":[]},{"s":"PANCAKESWAP:SWDBETH_4A931B","d":[]},{"s":"KUCOIN:MANUSDT","d":[]},{"s":"BINANCE:MAVUSD","d":[]},{"s":"PANCAKESWAP:DTCWBNB_9FB18E.USD","d":[]},{"s":"PANCAKESWAP:GUTPOW_26D0CE","d":[]},{"s":"PANCAKESWAP:BITCOINFBTCF_F06F0D.USD","d":[]},{"s":"SUSHISWAP:IDLEWETH_A7F11E","d":[]},{"s":"PANCAKESWAP:PMTUSDT_CE3146","d":[]},{"s":"PANCAKESWAP:ULTGGWBNB_AD5994.USD","d":[]},{"s":"PANCAKESWAP:AISUPERWALLETWBNB_6147CF.USD","d":[]},{"s":"UPBIT:SBDBTC","d":[]},{"s":"KUCOIN:OPUSDT","d":[]},{"s":"KUCOIN:TLOSUSDT","d":[]},{"s":"PANCAKESWAP:KODAWBNB_FC5BA1","d":[]},{"s":"PANCAKESWAP:BURNWBNB_98451C.USD","d":[]},{"s":"PANCAKESWAP:OMNIWARSWBNB_D7F673","d":[]},{"s":"PANCAKESWAP:GALAWBNB_8DD5FC.USD","d":[]},{"s":"KUCOIN:MANTAUSDT","d":[]},{"s":"PANCAKESWAP:ZROWBNB_9D8D17","d":[]},{"s":"PANCAKESWAP:HKBRC20_12BA09","d":[]},{"s":"SUSHISWAP:STZWETH_7058CD.USD","d":[]},{"s":"PANCAKESWAP:KCALETH_235D2A","d":[]},{"s":"PANCAKESWAP:SANCWBNB_F81250.USD","d":[]},{"s":"PANCAKESWAP:BEERWBNB_B319DE","d":[]},{"s":"PANCAKESWAP:POWAWBNB_4C4C67.USD","d":[]},{"s":"PANCAKESWAP:SWIRLXWBNB_4A7517.USD","d":[]},{"s":"PANCAKESWAP:PETOWBNB_ADE6A7.USD","d":[]},{"s":"PANCAKESWAP:AHGWBNB_ED7ABD","d":[]},{"s":"KUCOIN:MCUSDT","d":[]},{"s":"PANCAKESWAP:SFTYWBNB_A08581","d":[]},{"s":"SUSHISWAP:FOLDWETH_A914A9","d":[]},{"s":"PANCAKESWAP:STEPDWBNB_E9E883","d":[]},{"s":"PANCAKESWAP:BYXWBNB_3D9E67","d":[]},{"s":"KUCOIN:PATEXUSDT","d":[]},{"s":"PANCAKESWAP:PORSCHEUSDT_E2B9C3","d":[]},{"s":"OKX:SUNUSDT","d":[]},{"s":"PANCAKESWAP:COREDAOUSDT_148AD8","d":[]},{"s":"PANCAKESWAP:HDFLWBNB_BA3CFD","d":[]},{"s":"PANCAKESWAP:BTTBUSD_B7E73D","d":[]},{"s":"PANCAKESWAP:AFIBWBNB_F69092","d":[]},{"s":"SUSHISWAP:SWINGBYWETH_4A9C7B","d":[]},{"s":"PANCAKESWAP:DOKENWBNB_C37E6E","d":[]},{"s":"OKX:RACAUSDT","d":[]},{"s":"PANCAKESWAP:BEERWBNB_B319DE.USD","d":[]},{"s":"PANCAKESWAP:STANWBNB_3E9DB9","d":[]},{"s":"PANCAKESWAP:MILKYWAYWBNB_140C70.USD","d":[]},{"s":"SUSHISWAP:IMXWETH_18CD89","d":[]},{"s":"HONEYSWAP:LINKWBTC_8F8BA7","d":[]},{"s":"PANCAKESWAP:SUPDOGWBNB_6096BD","d":[]},{"s":"OKX:AVIVEUSDT","d":[]},{"s":"HONEYSWAP:BAOHNY_8FA501.USD","d":[]},{"s":"KUCOIN:USDDUSDT","d":[]},{"s":"PANCAKESWAP:WORMWBNB_F1BE99","d":[]},{"s":"PANCAKESWAP:MOONSTARWBNB_CA0D13.USD","d":[]},{"s":"PANCAKESWAP:AISTARLINKUSDT_A50DC0","d":[]},{"s":"PANCAKESWAP:UCWBNB_920969.USD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_0DDA01","d":[]},{"s":"PANCAKESWAP:ELYSWBNB_420E63.USD","d":[]},{"s":"PANCAKESWAP:SHIBWBNB_6B7B35","d":[]},{"s":"PANCAKESWAP:ASTROWBNB_F0C298","d":[]},{"s":"PANCAKESWAP:DOGEWBNB_AC109C","d":[]},{"s":"KUCOIN:COMBOUSDT","d":[]},{"s":"PANCAKESWAP:RWAWBNB_4C4B04","d":[]},{"s":"BINANCE:STEEMUSD","d":[]},{"s":"PANCAKESWAP:UCONUSDT_EADFF7","d":[]},{"s":"KUCOIN:JASMYUSDC","d":[]},{"s":"KUCOIN:GMTUSDT.3L","d":[]},{"s":"PANCAKESWAP:RYDAOWBNB_70BE74.USD","d":[]},{"s":"PANCAKESWAP:BKASPAWBNB_D8000A.USD","d":[]},{"s":"KUCOIN:NGLBTC","d":[]},{"s":"PANCAKESWAP:NWTDAOWBNB_7E7825.USD","d":[]},{"s":"KUCOIN:KAIUSDT","d":[]},{"s":"PANCAKESWAP:XJTUSDT_543417","d":[]},{"s":"PANCAKESWAP:PAPADOGEWBNB_260370","d":[]},{"s":"PANCAKESWAP:CKPWBNB_01B1AF.USD","d":[]},{"s":"KUCOIN:HIRENGAUSDT","d":[]},{"s":"PANCAKESWAP:PEPEKIWBNB_3EB25E.USD","d":[]},{"s":"PANCAKESWAP:DODOWBNB_A9986F","d":[]},{"s":"PANCAKESWAP:6827USDT_57528D","d":[]},{"s":"PANCAKESWAP:NBMWBNB_E56926.USD","d":[]},{"s":"PANCAKESWAP:FDAOWBNB_819C3B","d":[]},{"s":"PANCAKESWAP:DCOUSDT_813CFB","d":[]},{"s":"PANCAKESWAP:HLRWBNB_858586.USD","d":[]},{"s":"SUSHISWAP:RAREWETH_24E2AD.USD","d":[]},{"s":"PANCAKESWAP:BKPTWBNB_C57997.USD","d":[]},{"s":"PANCAKESWAP:4SHENSHOU_5D6354","d":[]},{"s":"PANCAKESWAP:WINBUSD_6A445C","d":[]},{"s":"PANCAKESWAP:GUILDBUSD_FCDAE8","d":[]},{"s":"PANCAKESWAP:YBK20WBNB_0C48F5","d":[]},{"s":"HONEYSWAP:USDCWXDAI_481758.USD","d":[]},{"s":"HONEYSWAP:WBNBWXDAI_ADE590.USD","d":[]},{"s":"PANCAKESWAP:AIPIN_249853.USD","d":[]},{"s":"KUCOIN:SCPTUSDT","d":[]},{"s":"PANCAKESWAP:BSCETFWBNB_B97782.USD","d":[]},{"s":"PANCAKESWAP:SATTWBNB_A1B5E5","d":[]},{"s":"PANCAKESWAP:MEGALANDWBNB_394FE1.USD","d":[]},{"s":"PANCAKESWAP:BOULPIKWBNB_7EF5B1.USD","d":[]},{"s":"KUCOIN:ZKFUSDT","d":[]},{"s":"PANCAKESWAP:PYOWBNB_BE9407","d":[]},{"s":"PANCAKESWAP:CEEKWBNB_046A9B.USD","d":[]},{"s":"SUSHISWAPPOLYGON:SALEWMATIC_5A2BA6","d":[]},{"s":"PANCAKESWAP:MARVINWBNB_D234C7.USD","d":[]},{"s":"HONEYSWAP:USDCWXDAI_481758","d":[]},{"s":"OKX:ORBUSDT","d":[]},{"s":"PANCAKESWAP:FINEWBNB_540D0F.USD","d":[]},{"s":"PANCAKESWAP:WZNNWBNB_E6B03F","d":[]},{"s":"PANCAKESWAP:EVERETHWBNB_7F5A01.USD","d":[]},{"s":"PANCAKESWAP:SFTYWBNB_A08581.USD","d":[]},{"s":"PANCAKESWAP:FSXUWBNB_4FE89A.USD","d":[]},{"s":"PANCAKESWAP:METABOTWBNB_DA5043","d":[]},{"s":"PANCAKESWAP:BTLUSDT_612B0D","d":[]},{"s":"PANCAKESWAP:UFARMWBNB_6B19A3.USD","d":[]},{"s":"KUCOIN:SIDUSUSDT","d":[]},{"s":"PANCAKESWAP:SHENZHOUWBNB_CC2453.USD","d":[]},{"s":"PANCAKESWAP:BURN20WBNB_863E1B","d":[]},{"s":"PANCAKESWAP:BUXWBNB_222C3C.USD","d":[]},{"s":"PANCAKESWAP:OREOWBNB_FA5939","d":[]},{"s":"PANCAKESWAP:RISKMOONWBNB_55DDDD.USD","d":[]},{"s":"PANCAKESWAP:LONGWBNB_5A97B3","d":[]},{"s":"PANCAKESWAP:AXSWBNB_C2D00D.USD","d":[]},{"s":"PANCAKESWAP:MSPCUSDT_877E08","d":[]},{"s":"PANCAKESWAP:SUNUSDT_0BB6CD","d":[]},{"s":"PANCAKESWAP:NEBULAWBNB_6C519D.USD","d":[]},{"s":"PANCAKESWAP:IDNABUSD_C1BCDC","d":[]},{"s":"KUCOIN:NIMUSDT","d":[]},{"s":"BINANCE:ICXUSDT.P","d":[]},{"s":"PANCAKESWAP:CAROUSDT_D01785","d":[]},{"s":"PANCAKESWAP:KODAWBNB_FC5BA1.USD","d":[]},{"s":"PANCAKESWAP:WEAVEBUSD_566180","d":[]},{"s":"PANCAKESWAP:CLUBUSDT_22AA9F","d":[]},{"s":"KUCOIN:SQUADUSDT","d":[]},{"s":"PANCAKESWAP:ZAFIWBNB_0E983E","d":[]},{"s":"PANCAKESWAP:CQGSD_4A9014","d":[]},{"s":"HONEYSWAP:MOMMIESWETH_B941E0","d":[]},{"s":"PANCAKESWAP:FLOKIWBNB_5BBBB4","d":[]},{"s":"PANCAKESWAP:GODZWBNB_6E226B","d":[]},{"s":"SUSHISWAP:REVVWETH_C92699.USD","d":[]},{"s":"HONEYSWAP:MATICHNY_60729C.USD","d":[]},{"s":"PANCAKESWAP:BTBWBNB_A99582","d":[]},{"s":"PANCAKESWAP:OCTAWBNB_42E32B","d":[]},{"s":"PANCAKESWAP:PXTWBNB_EBC0DB","d":[]},{"s":"KUCOIN:BLURUSDT","d":[]},{"s":"PANCAKESWAP:MRUNWBNB_C33113.USD","d":[]},{"s":"PANCAKESWAP:AXLWBNB_43AAF7","d":[]},{"s":"SUSHISWAP:LONUSDT_55D31F","d":[]},{"s":"PANCAKESWAP:POKERFIWBNB_CB984D","d":[]},{"s":"PANCAKESWAP:CGUUSDT_CFBD5B","d":[]},{"s":"PANCAKESWAP:FBOXWBNB_95DE02","d":[]},{"s":"PANCAKESWAP:BABBCBUSD_D01D33","d":[]},{"s":"PANCAKESWAP:BUNNYWBNB_5AFEF8","d":[]},{"s":"PANCAKESWAP:LSTWBNB_C2740A","d":[]},{"s":"PANCAKESWAP:CXLMWBNB_015334.USD","d":[]},{"s":"PANCAKESWAP:NXUSDT_9E0D9A","d":[]},{"s":"PANCAKESWAP:EOTHWBNB_AA2314","d":[]},{"s":"OKX:BATUSDT","d":[]},{"s":"SUSHISWAP:UMAWETH_001B64.USD","d":[]},{"s":"PANCAKESWAP:CUBBNBSMARTCHAINHIVE_BB98F4","d":[]},{"s":"OKX:SOLUSDT","d":[]},{"s":"PANCAKESWAP:PWROSEWBNB_AF8AB5","d":[]},{"s":"PANCAKESWAP:EFBWBNB_D3D1BA","d":[]},{"s":"OKX:GOGUSDT","d":[]},{"s":"KUCOIN:AZEROUSDT","d":[]},{"s":"PANCAKESWAP:VTRWBNB_61D930.USD","d":[]},{"s":"PANCAKESWAP:BANKP2PGOLDWBNB_F936A7.USD","d":[]},{"s":"PANCAKESWAP:FNGWBNB_3407E1","d":[]},{"s":"KUCOIN:STORJUSDT","d":[]},{"s":"PANCAKESWAP:ESHAREWBNB_50A7BA","d":[]},{"s":"PANCAKESWAP:HONKWBNB_567331","d":[]},{"s":"PANCAKESWAP:AIRWBNB_27DD0B.USD","d":[]},{"s":"PANCAKESWAP:JOHOUSDT_74D0F0","d":[]},{"s":"PANCAKESWAP:GHSPWBNB_2ED9EC","d":[]},{"s":"PANCAKESWAP:WEBOOWBNB_E2F1BF.USD","d":[]},{"s":"PANCAKESWAP:BTBSWBNB_BBBD82.USD","d":[]},{"s":"PANCAKESWAP:FAMEWBNB_612D69.USD","d":[]},{"s":"SUSHISWAP:FLOATWETH_481DDA","d":[]},{"s":"PANCAKESWAP:APCUSDT_3DE032","d":[]},{"s":"SUSHISWAP:BIFIWETH_0BEC54","d":[]},{"s":"PANCAKESWAP:AIPADWBNB_252BE5.USD","d":[]},{"s":"PANCAKESWAP:RULEWBNB_464930","d":[]},{"s":"PANCAKESWAP:TCGCOINWBNB_AF1334.USD","d":[]},{"s":"BINANCE:BONDUSD","d":[]},{"s":"PANCAKESWAP:1ARTWBNB_3A8153","d":[]},{"s":"HONEYSWAP:DEXPWXDAI_1E2634","d":[]},{"s":"PANCAKESWAP:MTCUSDT_511F73","d":[]},{"s":"HONEYSWAP:DPIWETH_8FA52A","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_4F5958","d":[]},{"s":"PANCAKESWAP:IBOXWBNB_188563","d":[]},{"s":"PANCAKESWAP:PITWBNB_2828C6.USD","d":[]},{"s":"HONEYSWAP:RSURFWXDAI_51B9F4.USD","d":[]},{"s":"PANCAKESWAP:DYPWBNB_3FBCA1","d":[]},{"s":"PANCAKESWAP:METAXBUSD_4EC25A","d":[]},{"s":"KUCOIN:MINDUSDT","d":[]},{"s":"PANCAKESWAP:CRACERWBNB_B42683.USD","d":[]},{"s":"PANCAKESWAP:BJSSWBNB_E7A947","d":[]},{"s":"BINANCE:GMXUSD","d":[]},{"s":"BINANCE:ONDOUSDT.P","d":[]},{"s":"OKX:ARGUSDT","d":[]},{"s":"PANCAKESWAP:SISWBNB_E3F381.USD","d":[]},{"s":"PANCAKESWAP:BTSCRWWBNB_CFEBB9","d":[]},{"s":"PANCAKESWAP:H4GWBNB_6E61B5.USD","d":[]},{"s":"OKX:ALPHAUSDT","d":[]},{"s":"PANCAKESWAP:TIMENUSDT_77E271","d":[]},{"s":"PANCAKESWAP:CELAWBNB_D45746.USD","d":[]},{"s":"PANCAKESWAP:MNGWBNB_105573","d":[]},{"s":"PANCAKESWAP:LONGWBNB_63264B","d":[]},{"s":"PANCAKESWAP:MGTWBNB_6E30B2","d":[]},{"s":"KUCOIN:NAVXUSDT","d":[]},{"s":"KUCOIN:NEOBTC","d":[]},{"s":"BINANCE:AXLUSD","d":[]},{"s":"PANCAKESWAP:MRHBWBNB_31F5CB","d":[]},{"s":"PANCAKESWAP:AWTWBNB_4B578B","d":[]},{"s":"OKX:MASKUSDT","d":[]},{"s":"PANCAKESWAP:BINSWBNB_82118D.USD","d":[]},{"s":"HONEYSWAP:ACDAI_F9970A","d":[]},{"s":"PANCAKESWAP:STATELLITETROLLWBNB_1D24B5.USD","d":[]},{"s":"PANCAKESWAP:BSCANT3WBNB_FD5CB1","d":[]},{"s":"PANCAKESWAP:DETAWBNB_E3A0B1","d":[]},{"s":"PANCAKESWAP:BCLUBWBNB_97B078","d":[]},{"s":"SUSHISWAPPOLYGON:SFIWETH_7C07CE.USD","d":[]},{"s":"BINANCE:ROSEUSD","d":[]},{"s":"SUSHISWAP:ROOKWETH_F13EEF.USD","d":[]},{"s":"SUSHISWAP:AUCTIONWETH_0F8086","d":[]},{"s":"PANCAKESWAP:HAKAWBNB_3CDD9D.USD","d":[]},{"s":"PANCAKESWAP:HBWBNB_E9E288","d":[]},{"s":"PANCAKESWAP:WDZOOWBNB_D6251B","d":[]},{"s":"PANCAKESWAP:UNOWBNB_F26E78.USD","d":[]},{"s":"HONEYSWAP:WXDAIUSDC_01F4A4","d":[]},{"s":"PANCAKESWAP:CSIXWBNB_990403.USD","d":[]},{"s":"PANCAKESWAP:CURVEWBNB_6F18BB.USD","d":[]},{"s":"KUCOIN:SINUSDT","d":[]},{"s":"PANCAKESWAP:MIGGYWBNB_E8941A","d":[]},{"s":"HONEYSWAP:WETCUSDT_CAB096","d":[]},{"s":"PANCAKESWAP:RHYTHMWBNB_F49547.USD","d":[]},{"s":"PANCAKESWAP:HOLOWBNB_2C8D77.USD","d":[]},{"s":"PANCAKESWAP:VIPWBNB_3B2255.USD","d":[]},{"s":"UPBIT:SCBTC","d":[]},{"s":"PANCAKESWAP:PPNAWBNB_CF8991.USD","d":[]},{"s":"PANCAKESWAP:SDAOWBNB_1D0ACF","d":[]},{"s":"KUCOIN:MONIUSDT","d":[]},{"s":"PANCAKESWAP:SMTYWBNB_EA585B","d":[]},{"s":"PANCAKESWAP:BABYGEMINIWBNB_B3E3A9.USD","d":[]},{"s":"PANCAKESWAP:ARBWBNB_F76258.USD","d":[]},{"s":"PANCAKESWAP:OASISWBNB_188EDA","d":[]},{"s":"PANCAKESWAP:BNUWBNB_3CDCBE","d":[]},{"s":"PANCAKESWAP:DFIWBNB_2BD6FA","d":[]},{"s":"PANCAKESWAP:CCUSDT_067D69","d":[]},{"s":"PANCAKESWAP:LUNAWBNB_EB8D08","d":[]},{"s":"PANCAKESWAP:CEOWBNB_6F9B7D","d":[]},{"s":"PANCAKESWAP:RABBITKINGWBNB_E51F18.USD","d":[]},{"s":"PANCAKESWAP:CTTWBNB_EDEE3E","d":[]},{"s":"PANCAKESWAP:AIRWBNB_E9A965.USD","d":[]},{"s":"PANCAKESWAP:TR8WBNB_4C49F7","d":[]},{"s":"PANCAKESWAP:MIDAIWBNB_770AD4.USD","d":[]},{"s":"PANCAKESWAP:PRESALEWBNB_EEAB5A","d":[]},{"s":"PANCAKESWAP:ETLUSDT_CA478D","d":[]},{"s":"HONEYSWAP:MOMMIESWETH_B941E0.USD","d":[]},{"s":"PANCAKESWAP:MSGOWBNB_6DEE5C","d":[]},{"s":"HONEYSWAP:XGTWXDAI_B2B15D.USD","d":[]},{"s":"KUCOIN:KONOUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:GRIMWEEDAURUM_89176D.USD","d":[]},{"s":"PANCAKESWAP:CFAUSDT_65EEA7","d":[]},{"s":"PANCAKESWAP:SHENSHOUUSDT_338E23","d":[]},{"s":"KUCOIN:CUDOSBTC","d":[]},{"s":"PANCAKESWAP:FORTUNEWBNB_EADFCB.USD","d":[]},{"s":"PANCAKESWAP:BNBDWBNB_909F02.USD","d":[]},{"s":"KUCOIN:API3USDT","d":[]},{"s":"KUCOIN:ETHBTC","d":[]},{"s":"PANCAKESWAP:GPAYUSDT_1C0832","d":[]},{"s":"PANCAKESWAP:WPCKUSDT_1C4973","d":[]},{"s":"BINANCE:ARPAUSD","d":[]},{"s":"PANCAKESWAP:ANTTWBNB_4E1E37","d":[]},{"s":"BINANCE:DODOUSD","d":[]},{"s":"PANCAKESWAP:MSGOWBNB_6DEE5C.USD","d":[]},{"s":"HONEYSWAP:BIDHNY_23DE74","d":[]},{"s":"PANCAKESWAP:GMIWBNB_58D4B6.USD","d":[]},{"s":"PANCAKESWAP:FALCON9SWBNB_3A0F06","d":[]},{"s":"PANCAKESWAP:FAMBUSD_03DB7A","d":[]},{"s":"SUSHISWAPPOLYGON:KLIMABCT_9803C7","d":[]},{"s":"PANCAKESWAP:BREWLABSWBNB_C9CC65","d":[]},{"s":"KUCOIN:MMUSDT","d":[]},{"s":"PANCAKESWAP:TRUNKWBNB_C979B1.USD","d":[]},{"s":"BINANCE:BADGERUSD","d":[]},{"s":"OKX:USDCEUR","d":[]},{"s":"OKCOIN:ETHUSD","d":[]},{"s":"BINANCE:PAXGUSD","d":[]},{"s":"PANCAKESWAP:CRACERWBNB_B42683","d":[]},{"s":"PANCAKESWAP:FCCWBNB_E7ABCC","d":[]},{"s":"PANCAKESWAP:MONSTAWBNB_55C49D","d":[]},{"s":"KUCOIN:NKNBTC","d":[]},{"s":"PANCAKESWAP:WDZOOWBNB_D6251B.USD","d":[]},{"s":"PANCAKESWAP:POODLWBNB_12FC9D.USD","d":[]},{"s":"PANCAKESWAP:DGEBUSD_C2C85E","d":[]},{"s":"PANCAKESWAP:EUSWBNB_CBD672.USD","d":[]},{"s":"KUCOIN:DOGEUSDT.3L","d":[]},{"s":"PANCAKESWAP:BRCTUSDT_25229D","d":[]},{"s":"PANCAKESWAP:CUREWBNB_98164B","d":[]},{"s":"PANCAKESWAP:SRWBNB_349DAB","d":[]},{"s":"PANCAKESWAP:WLCWBNB_69ED0D","d":[]},{"s":"PANCAKESWAP:2024WBNB_F21EDB","d":[]},{"s":"PANCAKESWAP:SUPERWBNB_AB69C5","d":[]},{"s":"PANCAKESWAP:BHBDBNBSMARTCHAINHIVE_625E67.USD","d":[]},{"s":"PANCAKESWAP:CTZNBUSD_39978C","d":[]},{"s":"PANCAKESWAP:SPLASHWBNB_F1492F.USD","d":[]},{"s":"PANCAKESWAP:DIABUSD_1CB2EC","d":[]},{"s":"PANCAKESWAP:MNZBUSD_E157F7","d":[]},{"s":"PANCAKESWAP:TWEPWBNB_D41E2A","d":[]},{"s":"PANCAKESWAP:ETCSWBNB_1D8209.USD","d":[]},{"s":"PANCAKESWAP:ANUBISWBNB_652D95","d":[]},{"s":"PANCAKESWAP:OBTWBNB_2EBAA4.USD","d":[]},{"s":"PANCAKESWAP:CSTWBNB_C971FF.USD","d":[]},{"s":"KUCOIN:CRPTBTC","d":[]},{"s":"PANCAKESWAP:NGTUSDT_412184","d":[]},{"s":"PANCAKESWAP:BNTWBNB_94DE01.USD","d":[]},{"s":"PANCAKESWAP:BFCUSDT_56E5F6","d":[]},{"s":"PANCAKESWAP:ALUWBNB_3C7E71","d":[]},{"s":"OKX:IMXUSDT","d":[]},{"s":"PANCAKESWAP:GDUSDT_688E8C","d":[]},{"s":"PANCAKESWAP:APIWBNB_1ABD90","d":[]},{"s":"PANCAKESWAP:XJGWBNB_466061.USD","d":[]},{"s":"PANCAKESWAP:ESNCBUSD_D6CE54","d":[]},{"s":"PANCAKESWAP:RUNELONGWBNB_FD6D13","d":[]},{"s":"PANCAKESWAP:MYSMYEX_938352.USD","d":[]},{"s":"PANCAKESWAP:GROKWBNB_683323","d":[]},{"s":"PANCAKESWAP:SHIBAIWBNB_9CE2D7.USD","d":[]},{"s":"PANCAKESWAP:PUBEWBNB_F51BF7.USD","d":[]},{"s":"PANCAKESWAP:TMTUSDT_A8F697","d":[]},{"s":"HONEYSWAP:HNYWETH_89E2F3.USD","d":[]},{"s":"PANCAKESWAP:MTFWBNB_D06F58","d":[]},{"s":"PANCAKESWAP:BRGWBNB_EB5FCB.USD","d":[]},{"s":"PANCAKESWAP:MGGBUSD_709EE9","d":[]},{"s":"SUSHISWAPPOLYGON:NHTUSDT_E427B6","d":[]},{"s":"PANCAKESWAP:BTAFWBNB_7AC443.USD","d":[]},{"s":"KUCOIN:GALUSDT","d":[]},{"s":"PANCAKESWAP:NINKYWBNB_E6DB48.USD","d":[]},{"s":"SUSHISWAP:FVTWETH_96335E.USD","d":[]},{"s":"PANCAKESWAP:MARS4BUSD_30D2AE","d":[]},{"s":"KUCOIN:HIMAYCUSDT","d":[]},{"s":"PANCAKESWAP:F2CBUSD_B6696E","d":[]},{"s":"PANCAKESWAP:RTOWBNB_1A6AA7.USD","d":[]},{"s":"PANCAKESWAP:ZADAWBNB_FDECA1","d":[]},{"s":"PANCAKESWAP:BABYMUSKWBNB_D86E98.USD","d":[]},{"s":"KUCOIN:LTCETH","d":[]},{"s":"PANCAKESWAP:SRPUSDT_66556C","d":[]},{"s":"PANCAKESWAP:WFXCWBNB_F92F24.USD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_3182DF.USD","d":[]},{"s":"PANCAKESWAP:CSDETH_6555A0.USD","d":[]},{"s":"PANCAKESWAP:TYUSDT_64B3CF","d":[]},{"s":"PANCAKESWAP:TRNDZWBNB_00E1EF.USD","d":[]},{"s":"PANCAKESWAP:AWYWBNB_D2CC3C.USD","d":[]},{"s":"SUSHISWAP:KP3RLDO_79E0D4.USD","d":[]},{"s":"PANCAKESWAP:RFIBUSD_24C562","d":[]},{"s":"PANCAKESWAP:BCTWBNB_1D33FC","d":[]},{"s":"PANCAKESWAP:MDOWBNB_079790.USD","d":[]},{"s":"PANCAKESWAP:PALLABUSD_960802","d":[]},{"s":"PANCAKESWAP:EARNWBNB_8FCCFC.USD","d":[]},{"s":"HONEYSWAP:CHSBWXDAI_AA9137.USD","d":[]},{"s":"PANCAKESWAP:POCBUSD_7DD868","d":[]},{"s":"PANCAKESWAP:MARIOWBNB_6EF30F","d":[]},{"s":"PANCAKESWAP:SETAWBNB_BBFD50","d":[]},{"s":"PANCAKESWAP:VSLWBNB_6AC9CC.USD","d":[]},{"s":"PANCAKESWAP:WSWAPWBNB_717C5C","d":[]},{"s":"SUSHISWAP:IQWETH_9D4508","d":[]},{"s":"PANCAKESWAP:LIOWBNB_636AD6.USD","d":[]},{"s":"SUSHISWAP:YVECRVDAOWETH_10B471.USD","d":[]},{"s":"PANCAKESWAP:AOGBUSD_88C9BF","d":[]},{"s":"PANCAKESWAP:TAUWBNB_59A566","d":[]},{"s":"HONEYSWAP:VITAWETH_0AF1BB","d":[]},{"s":"BINANCE:CHZUSDT.P","d":[]},{"s":"PANCAKESWAP:NOBFWBNB_4E46BA.USD","d":[]},{"s":"PANCAKESWAP:JFIVEWBNB_1D5924.USD","d":[]},{"s":"SUSHISWAPPOLYGON:WMATICUSDT_55FF76","d":[]},{"s":"PANCAKESWAP:HACHIKOWBNB_A4EBA9.USD","d":[]},{"s":"PANCAKESWAP:ANKRBNBANKR_8028AC","d":[]},{"s":"KUCOIN:ZILUSDC","d":[]},{"s":"KUCOIN:PRQUSDT","d":[]},{"s":"KUCOIN:BOLTBTC","d":[]},{"s":"PANCAKESWAP:GAINWBNB_8809C4.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DHTWETH_A375D2.USD","d":[]},{"s":"PANCAKESWAP:FIGMAWBNB_EFFF4A.USD","d":[]},{"s":"PANCAKESWAP:SPBUSDT_35CE56","d":[]},{"s":"PANCAKESWAP:BONDWBNB_5A2192","d":[]},{"s":"PANCAKESWAP:DINOWBNB_ACE95B","d":[]},{"s":"PANCAKESWAP:CATSHIRAWBNB_0FF54B.USD","d":[]},{"s":"PANCAKESWAP:HOODWBNB_04E5FD.USD","d":[]},{"s":"PANCAKESWAP:XAIGPTUSDT_EDC18E","d":[]},{"s":"PANCAKESWAP:DHRWBNB_0CB1B9","d":[]},{"s":"PANCAKESWAP:PCGWBNB_1229E3","d":[]},{"s":"PANCAKESWAP:SWAPWBNB_44A4F4","d":[]},{"s":"PANCAKESWAP:OKCBNO_4EA16B","d":[]},{"s":"SUSHISWAPPOLYGON:QIMIMATIC_96F723.USD","d":[]},{"s":"PANCAKESWAP:GUSDTUSDT_90B640","d":[]},{"s":"PANCAKESWAP:HMCWBNB_6ED10A.USD","d":[]},{"s":"PANCAKESWAP:QBITWBNB_E39C55","d":[]},{"s":"PANCAKESWAP:QMXWBNB_01274E","d":[]},{"s":"OKX:OKBUSDT","d":[]},{"s":"OKX:KINEUSDT","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_F2C35B.USD","d":[]},{"s":"PANCAKESWAP:BDDKWBNB_39ED45","d":[]},{"s":"PANCAKESWAP:BTC30USDT_421F5F","d":[]},{"s":"SUSHISWAP:BMILLYWETH_5DBF4A","d":[]},{"s":"PANCAKESWAP:BIFIWBNB_D132D2.USD","d":[]},{"s":"PANCAKESWAP:GAMIWBNB_C06C4B.USD","d":[]},{"s":"PANCAKESWAP:BYXWBNB_3D9E67.USD","d":[]},{"s":"UPBIT:CHRBTC","d":[]},{"s":"HONEYSWAP:UNIV2WXDAI_1B2A1E","d":[]},{"s":"OKX:ETHEUR","d":[]},{"s":"BINANCE:IOSTUSD","d":[]},{"s":"PANCAKESWAP:BBANKWBNB_538E61","d":[]},{"s":"PANCAKESWAP:HAREWBNB_CCD53B","d":[]},{"s":"SUSHISWAP:BTC2XFLIWBTC_164FE0","d":[]},{"s":"PANCAKESWAP:GROKWBNB_0436F4","d":[]},{"s":"PANCAKESWAP:MTMWBNB_C1A0CF","d":[]},{"s":"PANCAKESWAP:VWBNB_330D52.USD","d":[]},{"s":"PANCAKESWAP:ARKWBNB_679237.USD","d":[]},{"s":"KUCOIN:DOTUSDT","d":[]},{"s":"PANCAKESWAP:ETEWBNB_B4F23E.USD","d":[]},{"s":"PANCAKESWAP:CALIXWBNB_28C20D","d":[]},{"s":"PANCAKESWAP:BFLOKIWBNB_0A4842.USD","d":[]},{"s":"KUCOIN:JASMYUSDT.3S","d":[]},{"s":"PANCAKESWAP:METOWBNB_59A3D9","d":[]},{"s":"BINANCE:TWTUSD","d":[]},{"s":"PANCAKESWAP:BLUEWBNB_36756D.USD","d":[]},{"s":"PANCAKESWAP:DISWBNB_67F18F","d":[]},{"s":"PANCAKESWAP:CSHIPBUSD_252D3F","d":[]},{"s":"PANCAKESWAP:KTPUSDT_505235","d":[]},{"s":"PANCAKESWAP:ZAPWBNB_EDE402.USD","d":[]},{"s":"PANCAKESWAP:YESWBNB_0C8754.USD","d":[]},{"s":"PANCAKESWAP:CHESSWBNB_6FD3E8.USD","d":[]},{"s":"PANCAKESWAP:RCMWBNB_DC0C87","d":[]},{"s":"PANCAKESWAP:TRUMPPEPEWBNB_9D588C.USD","d":[]},{"s":"PANCAKESWAP:DCOINWBNB_E16D2F.USD","d":[]},{"s":"PANCAKESWAP:PKEYSWBNB_573C28","d":[]},{"s":"SUSHISWAP:BMILLYWETH_5DBF4A.USD","d":[]},{"s":"PANCAKESWAP:ETHPADWBNB_FE4819","d":[]},{"s":"SUSHISWAPPOLYGON:FXSFRAX_DF45B5","d":[]},{"s":"PANCAKESWAP:RACAWBNB_C016F9","d":[]},{"s":"PANCAKESWAP:SPACEPIUSDC_C736D8","d":[]},{"s":"PANCAKESWAP:DOGEXUSDT_4C1705","d":[]},{"s":"BINANCE:AXSUSDT.P","d":[]},{"s":"PANCAKESWAP:DAOUSDT_38A4BB","d":[]},{"s":"KUCOIN:USTCUSDC","d":[]},{"s":"KUCOIN:CCDUSDT","d":[]},{"s":"HONEYSWAP:UNCXHNY_6780AF","d":[]},{"s":"KUCOIN:ICPBTC","d":[]},{"s":"BINANCE:BCHUSDT.P","d":[]},{"s":"BINANCE:SUIUSDC.P","d":[]},{"s":"SUSHISWAPPOLYGON:NDEFIWETH_1534D7.USD","d":[]},{"s":"PANCAKESWAP:CZWBNB_616735","d":[]},{"s":"PANCAKESWAP:SQFWBNB_01233A","d":[]},{"s":"PANCAKESWAP:BICWBNB_F4332E.USD","d":[]},{"s":"OKX:KISHUUSDT","d":[]},{"s":"PANCAKESWAP:XTMWBNB_780516.USD","d":[]},{"s":"PANCAKESWAP:IFBUSD_7B4682","d":[]},{"s":"PANCAKESWAP:EMPETH_84821B","d":[]},{"s":"PANCAKESWAP:AIGUSDT_2B0198","d":[]},{"s":"PANCAKESWAP:JNUSDT_E4C874","d":[]},{"s":"PANCAKESWAP:W3CUSDT_5585DD","d":[]},{"s":"PANCAKESWAP:SUSHIETH_16AFC4","d":[]},{"s":"PANCAKESWAP:MOONERWBNB_653DB3","d":[]},{"s":"PANCAKESWAP:EDEWBNB_A8CD0C.USD","d":[]},{"s":"PANCAKESWAP:BFWBNB_EF06C9","d":[]},{"s":"SUSHISWAP:MOONCATWETH_0AA1E8","d":[]},{"s":"PANCAKESWAP:DAOBUSD_C5D5E5","d":[]},{"s":"OKX:GALAUSDC","d":[]},{"s":"KUCOIN:ETCUSDT","d":[]},{"s":"PANCAKESWAP:GMTWBNB_E9DE58","d":[]},{"s":"PANCAKESWAP:VCWBNB_E46E97.USD","d":[]},{"s":"PANCAKESWAP:FREEWBNB_24721E","d":[]},{"s":"PANCAKESWAP:ACCWBNB_286820","d":[]},{"s":"SUSHISWAP:NFTLWETH_F79321","d":[]},{"s":"PANCAKESWAP:YUANXIAOWBNB_11F8CB","d":[]},{"s":"PANCAKESWAP:GORGEOUSWBNB_D35AF8.USD","d":[]},{"s":"PANCAKESWAP:FTWBNB_9BCC45.USD","d":[]},{"s":"HONEYSWAP:XBRICKDONUT_466D88","d":[]},{"s":"PANCAKESWAP:NMSPUSDT_371F56","d":[]},{"s":"KUCOIN:KICKSUSDT","d":[]},{"s":"PANCAKESWAP:ABICBUSD_D1A5F1","d":[]},{"s":"PANCAKESWAP:UMTWBNB_CDD403.USD","d":[]},{"s":"HONEYSWAP:BALWBTC_C119C4.USD","d":[]},{"s":"OKX:LTCUSDT29H2024","d":[]},{"s":"HONEYSWAP:DONUTXMOON_413D75.USD","d":[]},{"s":"PANCAKESWAP:FRZSSCOINWBNB_FE06AF.USD","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_BD5666","d":[]},{"s":"KUCOIN:MPLXUSDT","d":[]},{"s":"PANCAKESWAP:OMNIAUSDT_889577","d":[]},{"s":"HONEYSWAP:HEXDONUT_41D921.USD","d":[]},{"s":"PANCAKESWAP:GTJWBNB_BBF3DB.USD","d":[]},{"s":"BINANCE:ARUSD","d":[]},{"s":"UPBIT:ASTRBTC","d":[]},{"s":"PANCAKESWAP:BABYPANDORAWBNB_417FED.USD","d":[]},{"s":"KUCOIN:RUNEUSDC","d":[]},{"s":"UPBIT:CITYBTC","d":[]},{"s":"PANCAKESWAP:TRXUSDT_1F7DF5","d":[]},{"s":"SUSHISWAP:BAOWETH_0EEE7F","d":[]},{"s":"PANCAKESWAP:XQUOKWBNB_8E6531","d":[]},{"s":"PANCAKESWAP:AFCWBNB_578ABB","d":[]},{"s":"PANCAKESWAP:TWDOWBNB_C31116","d":[]},{"s":"PANCAKESWAP:WODEUSDT_A6A3A4","d":[]},{"s":"PANCAKESWAP:ERIWBNB_492B97","d":[]},{"s":"PANCAKESWAP:BLXWBNB_4BB203.USD","d":[]},{"s":"PANCAKESWAP:BONKFORKWBNB_1D7720.USD","d":[]},{"s":"PANCAKESWAP:DFSMWBNB_68E02E.USD","d":[]},{"s":"KUCOIN:FTMBTC","d":[]},{"s":"PANCAKESWAP:MTBBUSD_D94DF9","d":[]},{"s":"PANCAKESWAP:10363FWBNB_BC8ED9","d":[]},{"s":"OKX:MILOUSDT","d":[]},{"s":"PANCAKESWAP:WEB2WBNB_AB416E","d":[]},{"s":"PANCAKESWAP:CMPWBNB_F70F55","d":[]},{"s":"KUCOIN:ORCUSDT","d":[]},{"s":"HONEYSWAP:GMLUUSDC_068D12","d":[]},{"s":"HONEYSWAP:XGTHNY_ADA20E","d":[]},{"s":"PANCAKESWAP:FFLWBNB_337B6C","d":[]},{"s":"PANCAKESWAP:CLOUDWBNB_A91431.USD","d":[]},{"s":"PANCAKESWAP:ARTYUSDT_CBB86A","d":[]},{"s":"PANCAKESWAP:DEBTNATG_0A2110","d":[]},{"s":"PANCAKESWAP:YZZUSDT_6B78C0","d":[]},{"s":"KUCOIN:CKBBTC","d":[]},{"s":"PANCAKESWAP:ENERGYYYLM_CB2E06.USD","d":[]},{"s":"PANCAKESWAP:BCATWBNB_043626","d":[]},{"s":"PANCAKESWAP:JFHWBNB_953696","d":[]},{"s":"SUSHISWAP:SDLLINK_D27B7D","d":[]},{"s":"PANCAKESWAP:GQBUSD_72121D","d":[]},{"s":"SUSHISWAP:RLCWETH_75382C","d":[]},{"s":"HONEYSWAP:DEXPWETH_7935D1","d":[]},{"s":"PANCAKESWAP:PEPEGPTWBNB_C8FFEC.USD","d":[]},{"s":"PANCAKESWAP:LUNADAOUSDT_B667D7","d":[]},{"s":"PANCAKESWAP:7STARUSDT_F0D5D6","d":[]},{"s":"HONEYSWAP:HODLXCOMB_6F38E5","d":[]},{"s":"PANCAKESWAP:TIGERUSDT_234FE1","d":[]},{"s":"PANCAKESWAP:GTJWBNB_BBF3DB","d":[]},{"s":"PANCAKESWAP:VIZSLASWAPWBNB_8D3CF6.USD","d":[]},{"s":"PANCAKESWAP:WOLFUSDT_FF1967","d":[]},{"s":"KUCOIN:STCUSDT","d":[]},{"s":"KUCOIN:NTRNUSDT","d":[]},{"s":"HONEYSWAP:AMISUSDT_E7BDA4","d":[]},{"s":"PANCAKESWAP:DMLGBUSD_11CAF3","d":[]},{"s":"PANCAKESWAP:BCMWBNB_4B01C8","d":[]},{"s":"PANCAKESWAP:MBEPROWBNB_E52B96","d":[]},{"s":"KUCOIN:POLSBTC","d":[]},{"s":"PANCAKESWAP:COREFIWBNB_D8CFC6","d":[]},{"s":"PANCAKESWAP:DRFWBNB_58DD5F","d":[]},{"s":"KUCOIN:SEIDOWNUSDT","d":[]},{"s":"PANCAKESWAP:DCTUSDT_F864DE","d":[]},{"s":"PANCAKESWAP:MINIONBUSD_675B21","d":[]},{"s":"PANCAKESWAP:GITUSDT_566C08","d":[]},{"s":"KUCOIN:IOSTUSDT","d":[]},{"s":"OKX:ORDIUSDT","d":[]},{"s":"PANCAKESWAP:VENOMAIUSDT_5CA34A","d":[]},{"s":"PANCAKESWAP:SVRWBNB_982AA7.USD","d":[]},{"s":"UPBIT:REIBTC","d":[]},{"s":"KUCOIN:ETHWUSDT","d":[]},{"s":"PANCAKESWAP:PEELBUSD_25BFD3","d":[]},{"s":"PANCAKESWAP:SNMWBNB_42EE09","d":[]},{"s":"PANCAKESWAP:KITTYKINGWBNB_01B617.USD","d":[]},{"s":"PANCAKESWAP:NMSPBUSD_EFF6A1","d":[]},{"s":"SUSHISWAP:MATICWETH_7F8F7D.USD","d":[]},{"s":"PANCAKESWAP:VOOLACOINBTCB_AA98EC","d":[]},{"s":"PANCAKESWAP:BURNCALORIEWBNB_1FD3AC.USD","d":[]},{"s":"PANCAKESWAP:GODBUSD_4BFD06","d":[]},{"s":"PANCAKESWAP:PLANETWBNB_25E176","d":[]},{"s":"PANCAKESWAP:IRENAWBNB_DDD165","d":[]},{"s":"OKX:WNCGUSDT","d":[]},{"s":"KUCOIN:UPOUSDT","d":[]},{"s":"PANCAKESWAP:KOLWBNB_EF0F80.USD","d":[]},{"s":"UPBIT:MINABTC","d":[]},{"s":"PANCAKESWAP:VRGWWBNB_1F46EC","d":[]},{"s":"UPBIT:CBKBTC","d":[]},{"s":"PANCAKESWAP:RYSUSDT_5D8E07","d":[]},{"s":"PANCAKESWAP:WSHIBWBNB_B3438C.USD","d":[]},{"s":"KUCOIN:CAPPBTC","d":[]},{"s":"PANCAKESWAP:BITBTCBTCB_601E4F","d":[]},{"s":"PANCAKESWAP:BONKINUWBNB_8FA420","d":[]},{"s":"PANCAKESWAP:BBCUSDT_B90C77","d":[]},{"s":"BINANCE:RVNUSDT.P","d":[]},{"s":"PANCAKESWAP:NOBFWBNB_4E46BA","d":[]},{"s":"PANCAKESWAP:RBCGUSDT_85C69F","d":[]},{"s":"KUCOIN:BSVBTC","d":[]},{"s":"BINANCE:ALPHAUSDT.P","d":[]},{"s":"HONEYSWAP:DAIWXDAI_182190.USD","d":[]},{"s":"HONEYSWAP:HNYHOPR_39417D.USD","d":[]},{"s":"PANCAKESWAP:MARSDOGEWBNB_C251C3","d":[]},{"s":"PANCAKESWAP:GMEWBNB_0CA7F4.USD","d":[]},{"s":"PANCAKESWAP:CATGIRLWBNB_252C6E.USD","d":[]},{"s":"KUCOIN:WMTUSDT","d":[]},{"s":"PANCAKESWAP:PIXELWBNB_E5E847.USD","d":[]},{"s":"PANCAKESWAP:VITWBNB_74D058","d":[]},{"s":"PANCAKESWAP:RISUWBNB_26793A","d":[]},{"s":"PANCAKESWAP:DOGECOINWBNB_3041B5.USD","d":[]},{"s":"PANCAKESWAP:LUPINWBNB_C7E542","d":[]},{"s":"PANCAKESWAP:WLCETH_69BC1B.USD","d":[]},{"s":"PANCAKESWAP:SMBRWBNB_D6F7A0","d":[]},{"s":"HONEYSWAP:RENWXDAI_0B0013.USD","d":[]},{"s":"PANCAKESWAP:AIWBNB_D3CFB2","d":[]},{"s":"KUCOIN:TRADEUSDT","d":[]},{"s":"OKX:BADGERUSDT","d":[]},{"s":"KUCOIN:ONEUSDT","d":[]},{"s":"PANCAKESWAP:YFSXWBNB_A3F064.USD","d":[]},{"s":"PANCAKESWAP:LUCKYRABBITUSDT_67497B","d":[]},{"s":"HONEYSWAP:GRTHNY_BA31E6.USD","d":[]},{"s":"PANCAKESWAP:METAFLIPWBNB_F7A681.USD","d":[]},{"s":"PANCAKESWAP:SPYWBNB_19E3AD","d":[]},{"s":"PANCAKESWAP:DOLLOWBNB_780368.USD","d":[]},{"s":"PANCAKESWAP:SUBJECT3WBNB_ECE574.USD","d":[]},{"s":"PANCAKESWAP:MEMEALWBNB_22A40B","d":[]},{"s":"PANCAKESWAP:MOONLIGHTWBNB_C183FC","d":[]},{"s":"PANCAKESWAP:MHBUSDT_AF5041","d":[]},{"s":"PANCAKESWAP:SAFEUSDT_400DB1","d":[]},{"s":"PANCAKESWAP:CREMATWBNB_DE592A.USD","d":[]},{"s":"PANCAKESWAP:WADDUPWBNB_98AD00","d":[]},{"s":"PANCAKESWAP:METAWBNB_18C1C8.USD","d":[]},{"s":"PANCAKESWAP:TRDCWBNB_4AF7FB.USD","d":[]},{"s":"KUCOIN:JSTUSDT","d":[]},{"s":"PANCAKESWAP:HOSWBNB_1A0BC9.USD","d":[]},{"s":"PANCAKESWAP:PMDUSDT_35C058","d":[]},{"s":"PANCAKESWAP:VBONEWBNB_8E5347.USD","d":[]},{"s":"PANCAKESWAP:FINEWBNB_C309A6.USD","d":[]},{"s":"BINANCE:CTKUSDT.P","d":[]},{"s":"PANCAKESWAP:ETCSZGL_A7E388.USD","d":[]},{"s":"PANCAKESWAP:ASNWBNB_81882E","d":[]},{"s":"PANCAKESWAP:CAPSWBNB_9BAFEE","d":[]},{"s":"PANCAKESWAP:BNUWBNB_3CDCBE.USD","d":[]},{"s":"PANCAKESWAP:ANTEXUSDT_34943E","d":[]},{"s":"SUSHISWAP:SYNWETH_4A86C0","d":[]},{"s":"PANCAKESWAP:VPANDAUSDT_65AD90","d":[]},{"s":"HONEYSWAP:GIVWXDAI_B7189A.USD","d":[]},{"s":"PANCAKESWAP:CSIXCAKE_43C2AB","d":[]},{"s":"KUCOIN:AFGUSDT","d":[]},{"s":"PANCAKESWAP:METFIWBNB_6E6EDB.USD","d":[]},{"s":"PANCAKESWAP:VIPWBNB_3B2255","d":[]},{"s":"PANCAKESWAP:ARENACAKE_FCC860","d":[]},{"s":"PANCAKESWAP:LVLWBNB_70F167.USD","d":[]},{"s":"PANCAKESWAP:PAIDWBNB_4E8D14.USD","d":[]},{"s":"PANCAKESWAP:WEMPWBNB_419445.USD","d":[]},{"s":"OKX:EOSUSDT28M2024","d":[]},{"s":"PANCAKESWAP:ANGELWBNB_3CA42E.USD","d":[]},{"s":"PANCAKESWAP:DRIPDEBT_4E25B6","d":[]},{"s":"PANCAKESWAP:UVTWBNB_C7E067","d":[]},{"s":"HONEYSWAP:PANWETH_497A9D.USD","d":[]},{"s":"OKX:XRPUSDT22H2024","d":[]},{"s":"PANCAKESWAP:CERESUSDT_BE5214","d":[]},{"s":"PANCAKESWAP:PEECOINWBNB_F81DC7","d":[]},{"s":"BINANCE:WIFUSDT.P","d":[]},{"s":"BINANCE:ARUSDT.P","d":[]},{"s":"OKX:EOSBTC","d":[]},{"s":"PANCAKESWAP:POCOWBNB_ADDF6D","d":[]},{"s":"BINANCE:AUCTIONUSD","d":[]},{"s":"PANCAKESWAP:FIREWBNB_08B52D","d":[]},{"s":"PANCAKESWAP:SSDWBNB_98C8FC","d":[]},{"s":"OKX:VSYSUSDT","d":[]},{"s":"KUCOIN:XNLUSDT","d":[]},{"s":"PANCAKESWAP:HERWBNB_44A4DB.USD","d":[]},{"s":"UPBIT:AVAXBTC","d":[]},{"s":"PANCAKESWAP:AMWAYWBNB_EDFDA4","d":[]},{"s":"HONEYSWAP:CARHNY_80EE54.USD","d":[]},{"s":"PANCAKESWAP:DYBWBNB_E1805D.USD","d":[]},{"s":"PANCAKESWAP:CTRWBNB_7956F3.USD","d":[]},{"s":"PANCAKESWAP:SPCWBNB_63B012.USD","d":[]},{"s":"KUCOIN:TIMEETH","d":[]},{"s":"PANCAKESWAP:TURTUSDT_5F4768","d":[]},{"s":"PANCAKESWAP:TGWBNB_D29287.USD","d":[]},{"s":"PANCAKESWAP:BOBOJIWBNB_3B39F0","d":[]},{"s":"PANCAKESWAP:VITWBNB_74D058.USD","d":[]},{"s":"KUCOIN:MLSUSDT","d":[]},{"s":"PANCAKESWAP:AFPWBNB_FCD8AB","d":[]},{"s":"PANCAKESWAP:BSCXBUSD_A32A98","d":[]},{"s":"PANCAKESWAP:TLOSWBNB_3EDB06","d":[]},{"s":"PANCAKESWAP:WALBTWBNB_BFF97D","d":[]},{"s":"OKX:APMUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:IDLEWETH_5518A3","d":[]},{"s":"KUCOIN:FORTUSDT","d":[]},{"s":"PANCAKESWAP:WOOWBNB_89EE04","d":[]},{"s":"KUCOIN:HIENS3USDT","d":[]},{"s":"PANCAKESWAP:MASKCZDAOUSDT_C1C302","d":[]},{"s":"PANCAKESWAP:PEPECEOWBNB_72E58A","d":[]},{"s":"PANCAKESWAP:DOGEBLUEWBNB_EB77ED","d":[]},{"s":"PANCAKESWAP:SCARWBNB_C2B30A","d":[]},{"s":"PANCAKESWAP:ETCS20WBNB_39C42D","d":[]},{"s":"HONEYSWAP:MCDCWXDAI_D743FA.USD","d":[]},{"s":"PANCAKESWAP:CHICKENWBNB_26148A.USD","d":[]},{"s":"PANCAKESWAP:PHMUSDT_C96BB5","d":[]},{"s":"KUCOIN:HYVEUSDT","d":[]},{"s":"PANCAKESWAP:WSWAPWBNB_717C5C.USD","d":[]},{"s":"KUCOIN:OXTBTC","d":[]},{"s":"PANCAKESWAP:HEARIFYAIWBNB_2415FF","d":[]},{"s":"PANCAKESWAP:LUSDUSDT_B9E573","d":[]},{"s":"PANCAKESWAP:BTCPIUSDT_CD75B5","d":[]},{"s":"KUCOIN:GMEEUSDT","d":[]},{"s":"HONEYSWAP:WXHOPRWXDAI_82BFB0.USD","d":[]},{"s":"BINANCE:BSVUSDT.P","d":[]},{"s":"PANCAKESWAP:CHEERSUSDT_AFB7CB","d":[]},{"s":"PANCAKESWAP:DNTWBNB_72F960","d":[]},{"s":"PANCAKESWAP:ZGHUSDT_DACCF0","d":[]},{"s":"UPBIT:DGBBTC","d":[]},{"s":"PANCAKESWAP:QUANTICWBNB_00D32E.USD","d":[]},{"s":"BINANCE:TRBUSD","d":[]},{"s":"PANCAKESWAP:MEMEXUSDT_BC0BAE","d":[]},{"s":"PANCAKESWAP:PANDAUSDT_028DE1","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_74321E","d":[]},{"s":"PANCAKESWAP:PANDAIUSDT_46E15B","d":[]},{"s":"PANCAKESWAP:LYNKUSDT_066367","d":[]},{"s":"PANCAKESWAP:TTWBNB_FA72A5","d":[]},{"s":"PANCAKESWAP:TTXWBNB_6486F3","d":[]},{"s":"BINANCE:GLMUSD","d":[]},{"s":"PANCAKESWAP:NDUSDT_C16318","d":[]},{"s":"PANCAKESWAP:GVCUSDT_84D26A","d":[]},{"s":"PANCAKESWAP:SMPFWBNB_04EC43.USD","d":[]},{"s":"PANCAKESWAP:VPADWBNB_6BE665.USD","d":[]},{"s":"KUCOIN:AVAETH","d":[]},{"s":"PANCAKESWAP:PALWORLDWBNB_D735AF","d":[]},{"s":"PANCAKESWAP:GDOGEWBNB_694D14.USD","d":[]},{"s":"PANCAKESWAP:LUNAWBNB_EB8D08.USD","d":[]},{"s":"PANCAKESWAP:ADOWBNB_113096","d":[]},{"s":"PANCAKESWAP:BTYCUSDT_3770AC","d":[]},{"s":"PANCAKESWAP:VIZSLASWAPLGC_06979D","d":[]},{"s":"BINANCE:XVSUSDT.P","d":[]},{"s":"PANCAKESWAP:WLCWBNB_F7BDEC.USD","d":[]},{"s":"PANCAKESWAP:RITEBUSD_CD216F","d":[]},{"s":"PANCAKESWAP:SUIWBNB_46E7F5.USD","d":[]},{"s":"PANCAKESWAP:GENIBUSD_4E241E","d":[]},{"s":"PANCAKESWAP:SCTUSDT_15C767","d":[]},{"s":"PANCAKESWAP:LOFWBNB_4E7150","d":[]},{"s":"PANCAKESWAP:BONEWBNB_0693CA","d":[]},{"s":"PANCAKESWAP:YESCAKE_1DC021.USD","d":[]},{"s":"PANCAKESWAP:VOOLACOINETH_810EE8.USD","d":[]},{"s":"HONEYSWAP:HNYWXDAI_4505B2.USD","d":[]},{"s":"PANCAKESWAP:APCWBNB_2B844E.USD","d":[]},{"s":"PANCAKESWAP:SPACEPIBTCPI_BCA91E","d":[]},{"s":"SUSHISWAP:GOVIWETH_7E6782","d":[]},{"s":"PANCAKESWAP:BANDWBNB_168B27","d":[]},{"s":"KUCOIN:SUSHIUSDT.3L","d":[]},{"s":"PANCAKESWAP:FTMWBNB_F567A6.USD","d":[]},{"s":"PANCAKESWAP:CTAUSDT_CC7A9B","d":[]},{"s":"PANCAKESWAP:FLOKICEO20WBNB_D2C998.USD","d":[]},{"s":"PANCAKESWAP:WORLDWBNB_1E97EB.USD","d":[]},{"s":"PANCAKESWAP:VCGWBNB_AE3691","d":[]},{"s":"PANCAKESWAP:SPOWBNB_AD1661","d":[]},{"s":"SUSHISWAP:PIPTWETH_04E024.USD","d":[]},{"s":"OKX:JPGUSDT","d":[]},{"s":"SUSHISWAP:ANGLEAGEUR_1F4C76.USD","d":[]},{"s":"PANCAKESWAP:FNGWBNB_3407E1.USD","d":[]},{"s":"KUCOIN:RNDRDOWNUSDT","d":[]},{"s":"HONEYSWAP:SUSHIWXDAI_86189E.USD","d":[]},{"s":"KUCOIN:FXETH","d":[]},{"s":"PANCAKESWAP:FAIWBNB_E5BF81","d":[]},{"s":"PANCAKESWAP:BFCWBNB_1664FC","d":[]},{"s":"SUSHISWAP:BANDWETH_A75F7C","d":[]},{"s":"PANCAKESWAP:FDUSDT_1BB76E","d":[]},{"s":"PANCAKESWAP:RZSWBNB_4AC190","d":[]},{"s":"PANCAKESWAP:BBCUSDT_10B00E","d":[]},{"s":"PANCAKESWAP:NFTSWBNB_DBF75D.USD","d":[]},{"s":"PANCAKESWAP:ARI10WBNB_BF1C91","d":[]},{"s":"SUSHISWAPPOLYGON:IBBTCWBTC_8F8E95.USD","d":[]},{"s":"PANCAKESWAP:DGSWBNB_14BA9D","d":[]},{"s":"PANCAKESWAP:IHCWBNB_639469.USD","d":[]},{"s":"PANCAKESWAP:TGGUSDT_3EFA3B","d":[]},{"s":"PANCAKESWAP:BLITZBUSD_000D27","d":[]},{"s":"PANCAKESWAP:VTVWBNB_D9713B","d":[]},{"s":"PANCAKESWAP:WLCWBNB_F07E48.USD","d":[]},{"s":"PANCAKESWAP:ACKBUSD_EC4FA9","d":[]},{"s":"PANCAKESWAP:CHESSUSDC_147297","d":[]},{"s":"KUCOIN:WLDUSDT","d":[]},{"s":"PANCAKESWAP:ACCUSDT_A8A73D","d":[]},{"s":"PANCAKESWAP:XTMWBNB_0C2393","d":[]},{"s":"PANCAKESWAP:XENDWBNB_CECFC2.USD","d":[]},{"s":"SUSHISWAP:MTAWETH_663242.USD","d":[]},{"s":"PANCAKESWAP:DIAOSWCW_6E30DB.USD","d":[]},{"s":"KUCOIN:WILDUSDT","d":[]},{"s":"PANCAKESWAP:THSUSDT_BB0E81","d":[]},{"s":"PANCAKESWAP:TLMWBNB_E6B421","d":[]},{"s":"PANCAKESWAP:RPGBUSD_55CDB1","d":[]},{"s":"HONEYSWAP:BADGERHNY_E88D50","d":[]},{"s":"PANCAKESWAP:SHLWBNB_A6EECC","d":[]},{"s":"PANCAKESWAP:HYWBNB_E7ABF9.USD","d":[]},{"s":"PANCAKESWAP:LEVIANTHANPEPE_9F3047.USD","d":[]},{"s":"PANCAKESWAP:BRCSTUSDT_E288EE","d":[]},{"s":"PANCAKESWAP:PEPEFLOKIWBNB_8DD26D","d":[]},{"s":"PANCAKESWAP:GBCWBNB_7A7A0A.USD","d":[]},{"s":"PANCAKESWAP:BURNDOGEWBNB_EC4690","d":[]},{"s":"PANCAKESWAP:SFLWBNB_50C707.USD","d":[]},{"s":"PANCAKESWAP:GMETAUSDT_54B313","d":[]},{"s":"PANCAKESWAP:SAFETOKENWBNB_1A9AA2.USD","d":[]},{"s":"KUCOIN:AGIXUPUSDT","d":[]},{"s":"BINANCE:COMBOUSDT.P","d":[]},{"s":"OKX:LTCUSDT","d":[]},{"s":"OKX:HBAREUR","d":[]},{"s":"PANCAKESWAP:PLTWBNB_4786EE","d":[]},{"s":"KUCOIN:OCEANETH","d":[]},{"s":"PANCAKESWAP:SLGOWBNB_1BC4DC","d":[]},{"s":"PANCAKESWAP:STMBUSD_A97A70","d":[]},{"s":"PANCAKESWAP:UMBWBNB_FFD8EE","d":[]},{"s":"KUCOIN:FLRUSDC","d":[]},{"s":"KUCOIN:ORBSBTC","d":[]},{"s":"PANCAKESWAP:QUACKWBNB_2681D0.USD","d":[]},{"s":"SUSHISWAP:BENJIPROS_5DE14F.USD","d":[]},{"s":"PANCAKESWAP:DELUSDT_77802E","d":[]},{"s":"PANCAKESWAP:EFTWBNB_00A531","d":[]},{"s":"PANCAKESWAP:KISEKIWBNB_1F8C44.USD","d":[]},{"s":"PANCAKESWAP:LCEOWBNB_844EA8.USD","d":[]},{"s":"PANCAKESWAP:CMUSDT_243623","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_CE2552","d":[]},{"s":"HONEYSWAP:LINKHNY_60D0EC.USD","d":[]},{"s":"PANCAKESWAP:TOKWBNB_EA7EA2","d":[]},{"s":"HONEYSWAP:MACWXDAI_4A0E1D","d":[]},{"s":"PANCAKESWAP:OWLBUSD_306E10","d":[]},{"s":"KUCOIN:NAVIUSDT","d":[]},{"s":"PANCAKESWAP:SWEEPWBNB_928FF7.USD","d":[]},{"s":"PANCAKESWAP:GECWBNB_05B8F2.USD","d":[]},{"s":"PANCAKESWAP:SFUNDWBNB_33338C.USD","d":[]},{"s":"HONEYSWAP:HIVESHAREWXDAI_35ADA6.USD","d":[]},{"s":"KUCOIN:TIAUSDT","d":[]},{"s":"PANCAKESWAP:BDDKWBNB_39ED45.USD","d":[]},{"s":"OKX:BLURUSDT","d":[]},{"s":"PANCAKESWAP:WOMBUSD_E68D05","d":[]},{"s":"PANCAKESWAP:ROSNWBNB_5548BD.USD","d":[]},{"s":"HONEYSWAP:CREAMWETH_3EE2C6","d":[]},{"s":"PANCAKESWAP:TRUMPINUWBNB_52BFAF","d":[]},{"s":"BINANCE:DOTUSD","d":[]},{"s":"PANCAKESWAP:XOXWBNB_8D3279","d":[]},{"s":"PANCAKESWAP:SHOOTERBUSD_ED43DD","d":[]},{"s":"OKX:DOGEEUR","d":[]},{"s":"PANCAKESWAP:YDOGEWBNB_4B2A8B","d":[]},{"s":"PANCAKESWAP:ETHWBNB_74E471","d":[]},{"s":"KUCOIN:GLMRUSDT","d":[]},{"s":"PANCAKESWAP:BURNCALORIEWBNB_1FD3AC","d":[]},{"s":"KUCOIN:HBBUSDT","d":[]},{"s":"PANCAKESWAP:POOLZWBNB_77214C","d":[]},{"s":"BINANCE:ADAUSD","d":[]},{"s":"PANCAKESWAP:CLSBUSD_30041F","d":[]},{"s":"PANCAKESWAP:BCGWBNB_2C9492","d":[]},{"s":"PANCAKESWAP:TBACWBNB_DD2DE4","d":[]},{"s":"BINANCE:NTRNUSD","d":[]},{"s":"PANCAKESWAP:PLYBUSD_B9C375","d":[]},{"s":"KUCOIN:FRMUSDT","d":[]},{"s":"PANCAKESWAP:BECHWBNB_F1A006.USD","d":[]},{"s":"PANCAKESWAP:HOKKWBNB_E504A7.USD","d":[]},{"s":"PANCAKESWAP:ERAWBNB_53A63A.USD","d":[]},{"s":"PANCAKESWAP:COMTWBNB_EFB9D1.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FRAXUSDC_9E20A8","d":[]},{"s":"PANCAKESWAP:CHIBUSD_335D50","d":[]},{"s":"BINANCE:GMTUSD","d":[]},{"s":"PANCAKESWAP:DSHAREWBNB_5998AF.USD","d":[]},{"s":"PANCAKESWAP:LITEUSDT_78A3E5","d":[]},{"s":"PANCAKESWAP:ABRUSDT_A05A4F","d":[]},{"s":"OKX:ETHUSD27U2024","d":[]},{"s":"OKX:IOSTUSDT","d":[]},{"s":"PANCAKESWAP:WASABIWBNB_4AF56F.USD","d":[]},{"s":"KUCOIN:FRONTUSDT","d":[]},{"s":"PANCAKESWAP:ZWZWBNB_39E4A9.USD","d":[]},{"s":"KUCOIN:KSMBTC","d":[]},{"s":"HONEYSWAP:SBCWXDAI_A17E60.USD","d":[]},{"s":"PANCAKESWAP:EMOJIWBNB_E90D4A.USD","d":[]},{"s":"KUCOIN:DOTUSDT.3L","d":[]},{"s":"PANCAKESWAP:ENTUSDT_D0988B","d":[]},{"s":"KUCOIN:STNDUSDT","d":[]},{"s":"PANCAKESWAP:STARWBNB_F95010.USD","d":[]},{"s":"PANCAKESWAP:HMNGWBNB_472D5D.USD","d":[]},{"s":"PANCAKESWAP:CRIMSONWBNB_CE505D","d":[]},{"s":"PANCAKESWAP:BENTLEYWBNB_689D47","d":[]},{"s":"PANCAKESWAP:STVUSDT_DCD77B","d":[]},{"s":"SUSHISWAPPOLYGON:DDAOWETH_FC0677.USD","d":[]},{"s":"PANCAKESWAP:VCEWBNB_98936C.USD","d":[]},{"s":"HONEYSWAP:RXDAIWXDAI_4E8EB7.USD","d":[]},{"s":"KUCOIN:ONEBTC","d":[]},{"s":"KUCOIN:PANDORAUSDT","d":[]},{"s":"PANCAKESWAP:ALPACABUSD_7752E1","d":[]},{"s":"PANCAKESWAP:STRIPWBNB_1EFA95.USD","d":[]},{"s":"BINANCE:1000LUNCUSDT.P","d":[]},{"s":"PANCAKESWAP:BOGBUSDT_5A1AA3","d":[]},{"s":"PANCAKESWAP:DRFWBNB_58DD5F.USD","d":[]},{"s":"BINANCE:AVAUSD","d":[]},{"s":"PANCAKESWAP:UPBNBWBNB_747078.USD","d":[]},{"s":"PANCAKESWAP:FEEDWBNB_CF3ED0","d":[]},{"s":"PANCAKESWAP:SQDWBNB_2E7776.USD","d":[]},{"s":"KUCOIN:NWCUSDT","d":[]},{"s":"PANCAKESWAP:ULTRAWBNB_48BAC9.USD","d":[]},{"s":"PANCAKESWAP:BFWBNB_72AA5F","d":[]},{"s":"KUCOIN:KLVBTC","d":[]},{"s":"PANCAKESWAP:7WBNB_B89F7F","d":[]},{"s":"PANCAKESWAP:ASUNAWBNB_7B8595.USD","d":[]},{"s":"OKX:CRVBTC","d":[]},{"s":"PANCAKESWAP:QBGGUSDT_D699DD","d":[]},{"s":"PANCAKESWAP:CTKWBNB_460B41.USD","d":[]},{"s":"HONEYSWAP:UBTHNY_B0C406","d":[]},{"s":"BINANCE:BLURUSD","d":[]},{"s":"PANCAKESWAP:OURFAITHUSDT_779419","d":[]},{"s":"PANCAKESWAP:BTTEUSDT_A88BED","d":[]},{"s":"HONEYSWAP:STAKEHNY_298C73","d":[]},{"s":"PANCAKESWAP:DINOSAURWBNB_2F04D4.USD","d":[]},{"s":"PANCAKESWAP:ILUSWBNB_14F500.USD","d":[]},{"s":"UPBIT:DOTBTC","d":[]},{"s":"PANCAKESWAP:DRAGONGROKWBNB_D3BC4A.USD","d":[]},{"s":"OKX:ZILUSDC","d":[]},{"s":"PANCAKESWAP:TONEWBNB_D5BD7A.USD","d":[]},{"s":"PANCAKESWAP:XJG20WBNB_225CA3","d":[]},{"s":"PANCAKESWAP:SHDOGUSDC_B8D95E","d":[]},{"s":"HONEYSWAP:HIVEWATERGRT_665497","d":[]},{"s":"PANCAKESWAP:MUSKSORAUSDT_610079","d":[]},{"s":"OKX:LDOEUR","d":[]},{"s":"PANCAKESWAP:GHWWBNB_1A90DC","d":[]},{"s":"PANCAKESWAP:PERIWBNB_B68EBC","d":[]},{"s":"HONEYSWAP:BASEHNY_F50600.USD","d":[]},{"s":"KUCOIN:CEEKUSDT","d":[]},{"s":"OKX:MDTUSDT","d":[]},{"s":"PANCAKESWAP:WHYWBNB_2B7757.USD","d":[]},{"s":"PANCAKESWAP:GALEONWBNB_09BA3F.USD","d":[]},{"s":"PANCAKESWAP:DODOWBNB_A9986F.USD","d":[]},{"s":"PANCAKESWAP:PERRYBUSD_F067B5","d":[]},{"s":"PANCAKESWAP:TRXYES_436D00","d":[]},{"s":"PANCAKESWAP:BCOINWBNB_2EEBE0.USD","d":[]},{"s":"OKX:ETHBRL","d":[]},{"s":"OKX:ZBCUSDT","d":[]},{"s":"PANCAKESWAP:YAYAWBNB_8FCC3F.USD","d":[]},{"s":"PANCAKESWAP:INSRWBNB_915600.USD","d":[]},{"s":"PANCAKESWAP:SHIAWBNB_E7649C.USD","d":[]},{"s":"KUCOIN:AERGOUSDT","d":[]},{"s":"PANCAKESWAP:2024WBNB_010749.USD","d":[]},{"s":"PANCAKESWAP:SPACWBNB_5F8F59","d":[]},{"s":"OKX:PYTHUSDT","d":[]},{"s":"PANCAKESWAP:BAITWBNB_BAA8FA","d":[]},{"s":"PANCAKESWAP:AISWBNB_01BB9C","d":[]},{"s":"PANCAKESWAP:SIUUSDT_E73294","d":[]},{"s":"OKX:LTCUSD22H2024","d":[]},{"s":"PANCAKESWAP:SEAWBNB_737046","d":[]},{"s":"UPBIT:MVLBTC","d":[]},{"s":"OKX:LTCETH","d":[]},{"s":"SUSHISWAP:EDENWETH_82DBC2.USD","d":[]},{"s":"PANCAKESWAP:MANIAUSDT_089101","d":[]},{"s":"PANCAKESWAP:ALEOWBNB_771AF3","d":[]},{"s":"PANCAKESWAP:PSWAPWBNB_E55072","d":[]},{"s":"HONEYSWAP:BFEDWETH_DA6976.USD","d":[]},{"s":"KUCOIN:TLMETH","d":[]},{"s":"PANCAKESWAP:EVOWBNB_829AF4.USD","d":[]},{"s":"PANCAKESWAP:STKBNBWBNB_AA2527.USD","d":[]},{"s":"BINANCE:DOTUSDT.P","d":[]},{"s":"OKX:FTMUSDC","d":[]},{"s":"PANCAKESWAP:BFTWBNB_99C2D5","d":[]},{"s":"PANCAKESWAP:VPCUSDT_32222F","d":[]},{"s":"OKX:DYDXEUR","d":[]},{"s":"PANCAKESWAP:BNCHWBNB_6A0CE6.USD","d":[]},{"s":"PANCAKESWAP:VEXWBNB_899F01","d":[]},{"s":"PANCAKESWAP:OKSEBUSD_1DF6C8","d":[]},{"s":"PANCAKESWAP:CNYDWBNB_1E14FC.USD","d":[]},{"s":"PANCAKESWAP:TIPWBNB_DEC742","d":[]},{"s":"PANCAKESWAP:LUTIONWBNB_54D7E9.USD","d":[]},{"s":"PANCAKESWAP:PCDUSDT_2E1093","d":[]},{"s":"PANCAKESWAP:DUGWBNB_685D32.USD","d":[]},{"s":"PANCAKESWAP:LUNGWBNB_0F0084.USD","d":[]},{"s":"PANCAKESWAP:USDTDWBNB_F9CB25.USD","d":[]},{"s":"PANCAKESWAP:MILOWBNB_C78153","d":[]},{"s":"PANCAKESWAP:SPOLWBNB_C44604","d":[]},{"s":"PANCAKESWAP:CBANKWBNB_8F6054.USD","d":[]},{"s":"KUCOIN:LOOMUSDT","d":[]},{"s":"PANCAKESWAP:ERGUSDT_0B6356","d":[]},{"s":"PANCAKESWAP:ERT7USDT_8ACACC","d":[]},{"s":"PANCAKESWAP:VBONEWBNB_B00D67.USD","d":[]},{"s":"PANCAKESWAP:ACSWETH_806E91.USD","d":[]},{"s":"PANCAKESWAP:TWTWBNB_3DCB17.USD","d":[]},{"s":"PANCAKESWAP:FQSWBNB_669845.USD","d":[]},{"s":"PANCAKESWAP:KABOSUWBNB_49B355.USD","d":[]},{"s":"PANCAKESWAP:COCOUSDT_93E335","d":[]},{"s":"PANCAKESWAP:AUTOWBNB_5657CA.USD","d":[]},{"s":"PANCAKESWAP:AIGUSDT_032B4B","d":[]},{"s":"PANCAKESWAP:DOWSWBNB_6D611E.USD","d":[]},{"s":"OKX:CQTUSDT","d":[]},{"s":"PANCAKESWAP:FTXUSDT_EA22E2","d":[]},{"s":"PANCAKESWAP:FFTWBNB_D83A5C","d":[]},{"s":"PANCAKESWAP:XWAPWBNB_F7C848.USD","d":[]},{"s":"PANCAKESWAP:PEPEBNBWBNB_F45EF0.USD","d":[]},{"s":"PANCAKESWAP:GEMSWBNB_0CA409.USD","d":[]},{"s":"KUCOIN:BMXUSDT","d":[]},{"s":"PANCAKESWAP:SORAWBNB_BC91C6","d":[]},{"s":"PANCAKESWAP:LSTWBNB_C2740A.USD","d":[]},{"s":"PANCAKESWAP:PEGWBNB_E20401.USD","d":[]},{"s":"SUSHISWAP:CIGWETH_22B15C","d":[]},{"s":"PANCAKESWAP:FOMOBFCWBNB_05F00F.USD","d":[]},{"s":"BINANCE:YFIUSD","d":[]},{"s":"PANCAKESWAP:FLOKIWBNB_231D9E","d":[]},{"s":"PANCAKESWAP:PLXWBNB_63730F","d":[]},{"s":"PANCAKESWAP:GEMGWBNB_2F2EF9.USD","d":[]},{"s":"KUCOIN:BNBUSDT.3L","d":[]},{"s":"PANCAKESWAP:TIPWBNB_9E5050.USD","d":[]},{"s":"OKX:ZILUSDT","d":[]},{"s":"PANCAKESWAP:SMSSWBNB_00ECA3","d":[]},{"s":"PANCAKESWAP:MPCWBNB_EF59AB","d":[]},{"s":"PANCAKESWAP:BBTCUSDT_DEB196","d":[]},{"s":"PANCAKESWAP:TANGYUANYYLM_C1D6DA","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_583140.USD","d":[]},{"s":"PANCAKESWAP:DREAMSWBNB_EB9748","d":[]},{"s":"KUCOIN:CTIUSDT","d":[]},{"s":"PANCAKESWAP:HORDBUSD_F7734F","d":[]},{"s":"PANCAKESWAP:KGTWBNB_C5654E.USD","d":[]},{"s":"PANCAKESWAP:IMWBNB_442A29.USD","d":[]},{"s":"HONEYSWAP:ALBCHNY_1A7EF9.USD","d":[]},{"s":"PANCAKESWAP:S2KWBNB_16ECBB","d":[]},{"s":"PANCAKESWAP:LAIUSDT_8146FB","d":[]},{"s":"PANCAKESWAP:QXCWBNB_2F26D0.USD","d":[]},{"s":"PANCAKESWAP:PACOCACAKE_2B0571.USD","d":[]},{"s":"PANCAKESWAP:LONGSHENWBNB_D94BC1.USD","d":[]},{"s":"PANCAKESWAP:AIUSDT_BCF5D8","d":[]},{"s":"BINANCE:ANTUSDT.P","d":[]},{"s":"SUSHISWAP:MARS4WETH_B50580.USD","d":[]},{"s":"PANCAKESWAP:ELMONWBNB_58C341","d":[]},{"s":"PANCAKESWAP:ZMBEWBNB_4DBAF6","d":[]},{"s":"SUSHISWAP:MIMWETH_07D569","d":[]},{"s":"PANCAKESWAP:ASGUSDT_AD7CE4","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_C2352C.USD","d":[]},{"s":"PANCAKESWAP:VSUSDT_B8B412","d":[]},{"s":"KUCOIN:EGOUSDT","d":[]},{"s":"PANCAKESWAP:BNBCKCAKE_57C719","d":[]},{"s":"PANCAKESWAP:SHIBDAOWBNB_24D325.USD","d":[]},{"s":"PANCAKESWAP:SHREWWBNB_E16826","d":[]},{"s":"KUCOIN:STCBTC","d":[]},{"s":"HONEYSWAP:AGVEUSDT_F1CA51","d":[]},{"s":"PANCAKESWAP:LIGHTWBNB_D469F2","d":[]},{"s":"PANCAKESWAP:BEBEWBNB_0CD77F","d":[]},{"s":"OKX:EOSUSD22H2024","d":[]},{"s":"PANCAKESWAP:DGMOONWBNB_2DD97B.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_5A0601.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_A6667B","d":[]},{"s":"PANCAKESWAP:TLBUSDT_2055A3","d":[]},{"s":"PANCAKESWAP:FENGWBNB_2B63DB.USD","d":[]},{"s":"KUCOIN:FTMUSDT","d":[]},{"s":"UPBIT:ONITBTC","d":[]},{"s":"BINANCE:ICPUSD","d":[]},{"s":"PANCAKESWAP:TOMUSDT_75531E","d":[]},{"s":"SUSHISWAPPOLYGON:FITWBTC_DFE1C5.USD","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_D3B216.USD","d":[]},{"s":"PANCAKESWAP:CSPIN_35CAEC","d":[]},{"s":"PANCAKESWAP:BTCBZW_249839","d":[]},{"s":"SUSHISWAP:RAILRENBTC_519854","d":[]},{"s":"PANCAKESWAP:SENBUSD_4212FF","d":[]},{"s":"PANCAKESWAP:STACKWBNB_17E921.USD","d":[]},{"s":"PANCAKESWAP:BTC20WBNB_3A13F6.USD","d":[]},{"s":"UPBIT:TUSDBTC","d":[]},{"s":"PANCAKESWAP:ETEETH_6DC325","d":[]},{"s":"PANCAKESWAP:BLUCWBNB_4F3353","d":[]},{"s":"PANCAKESWAP:THCWBNB_62BE15.USD","d":[]},{"s":"PANCAKESWAP:LSWAPWBNB_49E6B1","d":[]},{"s":"OKX:ETHTRY","d":[]},{"s":"PANCAKESWAP:XWUSDT_20F07B","d":[]},{"s":"PANCAKESWAP:CHONKWBNB_D4FB81","d":[]},{"s":"PANCAKESWAP:WEWBNB_27E748.USD","d":[]},{"s":"PANCAKESWAP:AMPLWBNB_A141E5","d":[]},{"s":"PANCAKESWAP:LUSDNMT_BB1891.USD","d":[]},{"s":"PANCAKESWAP:SANDBUSD_587EAE","d":[]},{"s":"PANCAKESWAP:LSRWBNB_4412D3.USD","d":[]},{"s":"PANCAKESWAP:BITETH_BC000C","d":[]},{"s":"PANCAKESWAP:USDTUSDT_D8FE0A","d":[]},{"s":"PANCAKESWAP:NFSUSDT_FB3753","d":[]},{"s":"PANCAKESWAP:SENSEIWBNB_9CC839.USD","d":[]},{"s":"PANCAKESWAP:KALMCAKE_B84ADF","d":[]},{"s":"PANCAKESWAP:LAFITEUSDT_D9F84C","d":[]},{"s":"BINANCE:OCEANUSDT.P","d":[]},{"s":"PANCAKESWAP:BAITWBNB_BAA8FA.USD","d":[]},{"s":"KUCOIN:ALGOUSDT","d":[]},{"s":"PANCAKESWAP:THCWBNB_62BE15","d":[]},{"s":"UPBIT:SUNBTC","d":[]},{"s":"HONEYSWAP:MACWXDAI_4A0E1D.USD","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_AF3820.USD","d":[]},{"s":"PANCAKESWAP:SLRUSDT_62DD40","d":[]},{"s":"PANCAKESWAP:KEXWBNB_446A08.USD","d":[]},{"s":"PANCAKESWAP:MCTBUSD_F26B58","d":[]},{"s":"PANCAKESWAP:BETUWBNB_E6F4DF.USD","d":[]},{"s":"PANCAKESWAP:VLTBUSD_A7541D","d":[]},{"s":"PANCAKESWAP:FIFIWBNB_BA65EF.USD","d":[]},{"s":"PANCAKESWAP:PALMWBNB_044066.USD","d":[]},{"s":"PANCAKESWAP:CILIWBNB_670562.USD","d":[]},{"s":"HONEYSWAP:DIGGHNY_F6B37E","d":[]},{"s":"PANCAKESWAP:MNSTRSWBNB_6097DB.USD","d":[]},{"s":"PANCAKESWAP:FEGWBNB_93D708.USD","d":[]},{"s":"PANCAKESWAP:NLCUSDT_9D53AB","d":[]},{"s":"PANCAKESWAP:GAMEBUSD_505784","d":[]},{"s":"BINANCE:OGNUSDT.P","d":[]},{"s":"PANCAKESWAP:XWBNB_E88531.USD","d":[]},{"s":"KUCOIN:GTCBTC","d":[]},{"s":"PANCAKESWAP:PEPIWBNB_50AD9A","d":[]},{"s":"UPBIT:ARDRBTC","d":[]},{"s":"PANCAKESWAP:DATBOIWBNB_35411A.USD","d":[]},{"s":"PANCAKESWAP:DORWBNB_B22DB2","d":[]},{"s":"KUCOIN:VISIONUSDT","d":[]},{"s":"PANCAKESWAP:HNTRBUSD_6E67F1","d":[]},{"s":"KUCOIN:LAIUSDT","d":[]},{"s":"PANCAKESWAP:SDAOBUSD_3D12E4","d":[]},{"s":"PANCAKESWAP:FINEWBNB_C309A6","d":[]},{"s":"PANCAKESWAP:BPCBUSD_385591","d":[]},{"s":"OKX:OKBETH","d":[]},{"s":"KUCOIN:SFUNDUSDT","d":[]},{"s":"PANCAKESWAP:PEPESWAPWBNB_4DEB21.USD","d":[]},{"s":"PANCAKESWAP:WAHGWBNB_C6270D.USD","d":[]},{"s":"PANCAKESWAP:DNHWBNB_BFB0E0.USD","d":[]},{"s":"KUCOIN:HNTUSDT","d":[]},{"s":"OKX:TURBOUSDT","d":[]},{"s":"PANCAKESWAP:KRACWBNB_E5A036.USD","d":[]},{"s":"PANCAKESWAP:H2WBNB_37C880.USD","d":[]},{"s":"UPBIT:AAVEBTC","d":[]},{"s":"PANCAKESWAP:AETHERGAMESUSDT_B6E34C","d":[]},{"s":"PANCAKESWAP:SISCWBNB_A5BC58","d":[]},{"s":"PANCAKESWAP:3E669FWBNB_7BED35.USD","d":[]},{"s":"PANCAKESWAP:LSDTCZUSD_A98F8B.USD","d":[]},{"s":"OKX:OPUSDC","d":[]},{"s":"PANCAKESWAP:SATWBNB_54E29A.USD","d":[]},{"s":"KUCOIN:ISSPUSDT","d":[]},{"s":"PANCAKESWAP:HDDWBNB_7635F1.USD","d":[]},{"s":"KUCOIN:TRXKCS","d":[]},{"s":"PANCAKESWAP:CBCWBNB_D4C99B","d":[]},{"s":"PANCAKESWAP:AITWBNB_84DBC3.USD","d":[]},{"s":"PANCAKESWAP:PUPPYPEPEWBNB_D4C89E","d":[]},{"s":"PANCAKESWAP:DEXUSDT_1921D1","d":[]},{"s":"BINANCE:ETCUSDT.P","d":[]},{"s":"PANCAKESWAP:STARUSDT_BB1FDC","d":[]},{"s":"PANCAKESWAP:WORUSDT_D72347","d":[]},{"s":"PANCAKESWAP:HAPPYDOGEWBNB_5DFF64.USD","d":[]},{"s":"PANCAKESWAP:ZILLAWBNB_CC241A.USD","d":[]},{"s":"PANCAKESWAP:WEB4WBNB_FC5A25.USD","d":[]},{"s":"PANCAKESWAP:WCWBNB_693D93","d":[]},{"s":"SUSHISWAP:LDOWETH_C558F6.USD","d":[]},{"s":"PANCAKESWAP:FIUBUSD_92B2A7","d":[]},{"s":"PANCAKESWAP:NPLYUSDT_A11DCD","d":[]},{"s":"PANCAKESWAP:MEPCAKE_6B5FD8.USD","d":[]},{"s":"SUSHISWAP:DTOWETH_0C657C.USD","d":[]},{"s":"KUCOIN:BTCEUR","d":[]},{"s":"BINANCE:RVNUSD","d":[]},{"s":"PANCAKESWAP:PIXWBNB_A9566F.USD","d":[]},{"s":"PANCAKESWAP:EQXWBNB_802EDC.USD","d":[]},{"s":"PANCAKESWAP:LDDWBNB_D0B76A","d":[]},{"s":"PANCAKESWAP:BRKLBUSD_0E537B","d":[]},{"s":"HONEYSWAP:WETCWETH_5F710A.USD","d":[]},{"s":"PANCAKESWAP:FISTWBNB_73424D.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_845E2D.USD","d":[]},{"s":"PANCAKESWAP:UPCOINWBNB_095F73","d":[]},{"s":"PANCAKESWAP:LIQWBNB_1F04BF","d":[]},{"s":"KUCOIN:DOGEUSDC","d":[]},{"s":"PANCAKESWAP:MILK2WBNB_9E8A0A.USD","d":[]},{"s":"OKX:GARIUSDT","d":[]},{"s":"PANCAKESWAP:ECPWBNB_0E2C2F.USD","d":[]},{"s":"PANCAKESWAP:SNFDAOUSDT_E74422","d":[]},{"s":"PANCAKESWAP:OPULBUSD_15BE66","d":[]},{"s":"PANCAKESWAP:ADCWBNB_DFD778.USD","d":[]},{"s":"PANCAKESWAP:METFIUSDT_69A8E2","d":[]},{"s":"PANCAKESWAP:VTVWBNB_D34147.USD","d":[]},{"s":"PANCAKESWAP:YFOUSDT_35AE92","d":[]},{"s":"SUSHISWAP:BENJIPROS_5DE14F","d":[]},{"s":"KUCOIN:BTCUSDT.3L","d":[]},{"s":"KUCOIN:HIFRIENDSUSDT","d":[]},{"s":"PANCAKESWAP:CSROADWBNB_152E16","d":[]},{"s":"PANCAKESWAP:GROKJESUSWBNB_6EDBA9.USD","d":[]},{"s":"KUCOIN:CQTUSDT","d":[]},{"s":"SUSHISWAP:DTOWETH_0C657C","d":[]},{"s":"PANCAKESWAP:SPACESWBNB_2C8C90","d":[]},{"s":"PANCAKESWAP:LIFTWBNB_3853FE","d":[]},{"s":"PANCAKESWAP:GULLWBNB_192373.USD","d":[]},{"s":"PANCAKESWAP:KAKIUSDT_380442","d":[]},{"s":"PANCAKESWAP:UMIWBNB_AF49F3","d":[]},{"s":"PANCAKESWAP:TUSDBUSD_2E28B9","d":[]},{"s":"PANCAKESWAP:DAWBNB_2BADFB","d":[]},{"s":"PANCAKESWAP:ROTTOWBNB_F8A99E.USD","d":[]},{"s":"PANCAKESWAP:BASWBNB_91F3B2","d":[]},{"s":"PANCAKESWAP:MVUWBNB_6173A8","d":[]},{"s":"BINANCE:KLAYUSD","d":[]},{"s":"PANCAKESWAP:ZTXWBNB_11805F","d":[]},{"s":"PANCAKESWAP:JINDWBNB_8EAFED.USD","d":[]},{"s":"PANCAKESWAP:FTTBUSDT_FD6C69","d":[]},{"s":"HONEYSWAP:MDZAWXDAI_AA32BB.USD","d":[]},{"s":"PANCAKESWAP:MTUSDT_89DFEC","d":[]},{"s":"BINANCE:PORTOUSD","d":[]},{"s":"PANCAKESWAP:PLOTBUSD_0151D2","d":[]},{"s":"PANCAKESWAP:UBXSWBNB_0DC9D9.USD","d":[]},{"s":"PANCAKESWAP:XDOGEWBNB_B0FC90.USD","d":[]},{"s":"PANCAKESWAP:WGPTUSDT_5A596E","d":[]},{"s":"SUSHISWAPPOLYGON:GNOMEWETH_C1214B.USD","d":[]},{"s":"BINANCE:APEUSDT.P","d":[]},{"s":"PANCAKESWAP:WECOWBNB_3DB79A.USD","d":[]},{"s":"KUCOIN:DOCKBTC","d":[]},{"s":"PANCAKESWAP:PHXWBNB_2C3A0A.USD","d":[]},{"s":"PANCAKESWAP:DAHWBNB_27052C","d":[]},{"s":"PANCAKESWAP:ACCUSDT_F5536B","d":[]},{"s":"PANCAKESWAP:OLOGYWBNB_C3602D.USD","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_615D78","d":[]},{"s":"SUSHISWAP:APWWETH_53162D","d":[]},{"s":"PANCAKESWAP:W3WWBNB_FE9EA6","d":[]},{"s":"PANCAKESWAP:TKOWBNB_496A8B.USD","d":[]},{"s":"PANCAKESWAP:KBXETFUSDT_9029AF","d":[]},{"s":"PANCAKESWAP:YESETH_F1EC08.USD","d":[]},{"s":"KUCOIN:IRONUSDT","d":[]},{"s":"PANCAKESWAP:SFPWBNB_CBE2CF.USD","d":[]},{"s":"PANCAKESWAP:FRZWBNB_81E356.USD","d":[]},{"s":"PANCAKESWAP:DFLUSDT_3558C4","d":[]},{"s":"PANCAKESWAP:ULTIWBNB_C80815","d":[]},{"s":"KUCOIN:SILLYUSDT","d":[]},{"s":"PANCAKESWAP:STICWBNB_086ECF.USD","d":[]},{"s":"PANCAKESWAP:GROWDEBT_9C2DE8.USD","d":[]},{"s":"PANCAKESWAP:WLCWBNB_2AB096","d":[]},{"s":"OKX:HCUSDT","d":[]},{"s":"KUCOIN:TIAUPUSDT","d":[]},{"s":"PANCAKESWAP:ARBWBNB_F76258","d":[]},{"s":"PANCAKESWAP:SDOGEWBNB_8B808B.USD","d":[]},{"s":"PANCAKESWAP:UIVUSDT_FC9869","d":[]},{"s":"PANCAKESWAP:PINKIEWBNB_E94241","d":[]},{"s":"PANCAKESWAP:XTOWBNB_987393","d":[]},{"s":"PANCAKESWAP:LIONWBNB_DD9E44.USD","d":[]},{"s":"PANCAKESWAP:BIFAWBNB_E5E7DD","d":[]},{"s":"SUSHISWAP:SUSDWETH_F1F85B.USD","d":[]},{"s":"PANCAKESWAP:NNXWBNB_F2BF55.USD","d":[]},{"s":"PANCAKESWAP:EBTTUSDT_696A18","d":[]},{"s":"PANCAKESWAP:ORBSBUSD_B87B85","d":[]},{"s":"PANCAKESWAP:WOWUSDT_C23E7C","d":[]},{"s":"PANCAKESWAP:SPITZFLOKI_D38694","d":[]},{"s":"HONEYSWAP:STAKELINK_F57CB0","d":[]},{"s":"PANCAKESWAP:WAIBUSD_C2B068","d":[]},{"s":"PANCAKESWAP:TTUSDT_D6CAB8","d":[]},{"s":"PANCAKESWAP:BTCBMG_E35489.USD","d":[]},{"s":"PANCAKESWAP:OASISWBNB_188EDA.USD","d":[]},{"s":"PANCAKESWAP:GOW39WBNB_33A8BA.USD","d":[]},{"s":"PANCAKESWAP:KKTUSDT_A70A62","d":[]},{"s":"PANCAKESWAP:TIFIWBNB_B62BB2.USD","d":[]},{"s":"PANCAKESWAP:BTCETFWBNB_2B8D0B","d":[]},{"s":"PANCAKESWAP:BEFEBONKWBNB_D64DEA.USD","d":[]},{"s":"PANCAKESWAP:LOVELYWBNB_BEE4B8","d":[]},{"s":"OKX:XTZUSDT","d":[]},{"s":"HONEYSWAP:FOXHNY_8A0BEE","d":[]},{"s":"PANCAKESWAP:ANJIWBNB_C87D18.USD","d":[]},{"s":"HONEYSWAP:SUSHIUSDT_53C8F9","d":[]},{"s":"PANCAKESWAP:LOABUSD_FF1E16","d":[]},{"s":"PANCAKESWAP:SMWBNB_395EBF.USD","d":[]},{"s":"PANCAKESWAP:UIGIWBNB_DC1C4A","d":[]},{"s":"PANCAKESWAP:WEWBNB_27E748","d":[]},{"s":"PANCAKESWAP:BFHTWBNB_C1CD86.USD","d":[]},{"s":"PANCAKESWAP:MILKYWAYWBNB_140C70","d":[]},{"s":"KUCOIN:WIFUSDT","d":[]},{"s":"PANCAKESWAP:OPCWBNB_ABF153","d":[]},{"s":"SUSHISWAP:WETHDAI_C3D03E","d":[]},{"s":"PANCAKESWAP:DNTWBNB_72F960.USD","d":[]},{"s":"PANCAKESWAP:MRCRWBNB_739052","d":[]},{"s":"PANCAKESWAP:DIGIWBNB_C2868E.USD","d":[]},{"s":"PANCAKESWAP:CAPUSDT_EF2058","d":[]},{"s":"SUSHISWAP:IOTXUSDT_868D96","d":[]},{"s":"PANCAKESWAP:KWTWBNB_EFE47F.USD","d":[]},{"s":"PANCAKESWAP:ELIXIRWBNB_14C384.USD","d":[]},{"s":"PANCAKESWAP:MEBUSDT_9B2240","d":[]},{"s":"SUSHISWAP:SHXWETH_EA59A3.USD","d":[]},{"s":"PANCAKESWAP:TCPWBNB_3AC78E.USD","d":[]},{"s":"PANCAKESWAP:QUINTWBNB_639BF1.USD","d":[]},{"s":"PANCAKESWAP:WNFTCBUSD_852291","d":[]},{"s":"PANCAKESWAP:PMRWBNB_DD7D78","d":[]},{"s":"PANCAKESWAP:WLCWBNB_2AB096.USD","d":[]},{"s":"PANCAKESWAP:GEMGWBNB_2F2EF9","d":[]},{"s":"BINANCE:INJUSD","d":[]},{"s":"PANCAKESWAP:BBONKWBNB_CDCAED.USD","d":[]},{"s":"PANCAKESWAP:KINGWBNB_785E2B","d":[]},{"s":"KUCOIN:CTCUSDT","d":[]},{"s":"PANCAKESWAP:BLUCWBNB_4F3353.USD","d":[]},{"s":"PANCAKESWAP:GTHWBNB_3A26CC.USD","d":[]},{"s":"SUSHISWAP:XWETH_C2CE29","d":[]},{"s":"BINANCE:TRXUSD","d":[]},{"s":"PANCAKESWAP:PTOOLSWBNB_2C1998","d":[]},{"s":"PANCAKESWAP:MSPWBNB_BBBF50.USD","d":[]},{"s":"PANCAKESWAP:BROWBNB_662F03.USD","d":[]},{"s":"HONEYSWAP:RENWXDAI_0B0013","d":[]},{"s":"PANCAKESWAP:LANDUSDT_B8E277","d":[]},{"s":"PANCAKESWAP:MSTWBNB_C6931C","d":[]},{"s":"PANCAKESWAP:SFILWBNB_32D4C7","d":[]},{"s":"PANCAKESWAP:BUMBLEWBNB_754D2D","d":[]},{"s":"PANCAKESWAP:IDMWBNB_99D284","d":[]},{"s":"SUSHISWAPPOLYGON:CPTCWMATIC_7CF69A.USD","d":[]},{"s":"BINANCE:JUPUSDT.P","d":[]},{"s":"PANCAKESWAP:ULEWBNB_718CEC","d":[]},{"s":"KUCOIN:ALEXUSDT","d":[]},{"s":"PANCAKESWAP:LAUNCHWBNB_6B3183","d":[]},{"s":"PANCAKESWAP:AIDOGEWBNB_399A35.USD","d":[]},{"s":"PANCAKESWAP:MARSWBNB_811C5A","d":[]},{"s":"PANCAKESWAP:KALIWBNB_980357.USD","d":[]},{"s":"PANCAKESWAP:VXPSWBNB_891326","d":[]},{"s":"PANCAKESWAP:CSOWBNB_08C758","d":[]},{"s":"PANCAKESWAP:RABBITKINGWBNB_74F437.USD","d":[]},{"s":"UPBIT:GTCBTC","d":[]},{"s":"BINANCE:MANTAUSDT.P","d":[]},{"s":"PANCAKESWAP:DRAGONKINGWBNB_DB5370.USD","d":[]},{"s":"OKX:MASKUSDC","d":[]},{"s":"PANCAKESWAP:RMOONWBNB_449F3D.USD","d":[]},{"s":"PANCAKESWAP:DEPOBUSD_CEE0DA","d":[]},{"s":"PANCAKESWAP:BNBHWBNB_AD178E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:PMONWMATIC_BB2100.USD","d":[]},{"s":"PANCAKESWAP:ORBITWBNB_B91D38","d":[]},{"s":"PANCAKESWAP:RITEUSDT_3A07BC","d":[]},{"s":"PANCAKESWAP:TGBSWBNB_779A0E","d":[]},{"s":"PANCAKESWAP:AMTWBNB_DFA41B","d":[]},{"s":"PANCAKESWAP:CHECOINWBNB_194850.USD","d":[]},{"s":"PANCAKESWAP:PUSSWBNB_0E10EA.USD","d":[]},{"s":"OKX:HBARUSDT","d":[]},{"s":"PANCAKESWAP:LITTBUSD_DAC57D","d":[]},{"s":"PANCAKESWAP:USCUSDT_842D76","d":[]},{"s":"PANCAKESWAP:ASNUSDT_5C10BD","d":[]},{"s":"PANCAKESWAP:SWIRLXWBNB_4A7517","d":[]},{"s":"BINANCE:ENJUSD","d":[]},{"s":"KUCOIN:PEPEDOWNUSDT","d":[]},{"s":"PANCAKESWAP:AEVOUSDT_7BA2CC","d":[]},{"s":"PANCAKESWAP:FRTWBNB_2F82C2","d":[]},{"s":"PANCAKESWAP:PAWSWBNB_A4C438","d":[]},{"s":"BINANCE:ZENUSD","d":[]},{"s":"PANCAKESWAP:STCUSDT_4E857D","d":[]},{"s":"BINANCE:CYBERUSDT.P","d":[]},{"s":"PANCAKESWAP:FLOKIWBNB_161B40.USD","d":[]},{"s":"PANCAKESWAP:REGENTWBNB_CF8822","d":[]},{"s":"PANCAKESWAP:FWCWBNB_32DEA0.USD","d":[]},{"s":"HONEYSWAP:WATERBRIGHT_A84126","d":[]},{"s":"PANCAKESWAP:LANDWBNB_468CDE.USD","d":[]},{"s":"PANCAKESWAP:PEPEDASHAIWBNB_9026B3","d":[]},{"s":"KUCOIN:REAPUSDT","d":[]},{"s":"KUCOIN:REQETH","d":[]},{"s":"PANCAKESWAP:MVCWBNB_F99030.USD","d":[]},{"s":"PANCAKESWAP:RDNTWBNB_346575","d":[]},{"s":"BINANCE:RAREUSD","d":[]},{"s":"PANCAKESWAP:PNBWBNB_B06327","d":[]},{"s":"PANCAKESWAP:DEBTBEV_F5E2AD","d":[]},{"s":"PANCAKESWAP:BIMUSDT_807FE1","d":[]},{"s":"PANCAKESWAP:POLYPADWBNB_45A38A.USD","d":[]},{"s":"PANCAKESWAP:QTMETH_A51385","d":[]},{"s":"PANCAKESWAP:FSLONGWBNB_BCC1D6.USD","d":[]},{"s":"PANCAKESWAP:IVIUSDT_3F01D9","d":[]},{"s":"PANCAKESWAP:FRAGBUSD_C0AAD9","d":[]},{"s":"PANCAKESWAP:CHIBAWBNB_639F71","d":[]},{"s":"PANCAKESWAP:SYNCBRAINWBNB_4ABFCA","d":[]},{"s":"OKX:SLNUSDT","d":[]},{"s":"KUCOIN:DYMUSDT","d":[]},{"s":"PANCAKESWAP:OPTCMWBNB_083DF7","d":[]},{"s":"PANCAKESWAP:ALPHAWBNB_482EFF","d":[]},{"s":"PANCAKESWAP:BYXWBNB_26C6DB","d":[]},{"s":"PANCAKESWAP:SQFWBNB_01233A.USD","d":[]},{"s":"PANCAKESWAP:MPTUSDT_B2728C","d":[]},{"s":"PANCAKESWAP:BABYSORAWBNB_D93881.USD","d":[]},{"s":"PANCAKESWAP:BTFBTCB_C5E273","d":[]},{"s":"OKX:AAVEBTC","d":[]},{"s":"PANCAKESWAP:USMXWBNB_DB0B7E","d":[]},{"s":"PANCAKESWAP:POWWBNB_BEF294","d":[]},{"s":"PANCAKESWAP:VTVWBNB_D9713B.USD","d":[]},{"s":"PANCAKESWAP:SOLOWBNB_3A921F.USD","d":[]},{"s":"PANCAKESWAP:FCCWBNB_DCD20C","d":[]},{"s":"KUCOIN:TURTUSDT","d":[]},{"s":"PANCAKESWAP:BNRVWBNB_3F9A13.USD","d":[]},{"s":"KUCOIN:UQCETH","d":[]},{"s":"PANCAKESWAP:DOGSWBNB_055C9E.USD","d":[]},{"s":"PANCAKESWAP:IPOWBNB_F6F41D","d":[]},{"s":"PANCAKESWAP:XCMWBNB_560B7D.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FXSFRAX_D53A56.USD","d":[]},{"s":"PANCAKESWAP:TAUMWBNB_E6C0DC.USD","d":[]},{"s":"PANCAKESWAP:FIROWBNB_D4DE57","d":[]},{"s":"KUCOIN:PELUSDT","d":[]},{"s":"HONEYSWAP:RSRWXDAI_5AE763.USD","d":[]},{"s":"KUCOIN:RFDUSDT","d":[]},{"s":"PANCAKESWAP:BTSCRWWBNB_CFEBB9.USD","d":[]},{"s":"PANCAKESWAP:ONEPIECEWBNB_AC7AFD.USD","d":[]},{"s":"PANCAKESWAP:QJDAOUSDT_85C834","d":[]},{"s":"PANCAKESWAP:ZBCCAKE_269043","d":[]},{"s":"PANCAKESWAP:DYUSDT_CA2B79","d":[]},{"s":"PANCAKESWAP:REVOWBNB_388B28.USD","d":[]},{"s":"PANCAKESWAP:WBIDUSDT_0794BE","d":[]},{"s":"PANCAKESWAP:DRAGONMATIC_39B45A.USD","d":[]},{"s":"PANCAKESWAP:NANAWBNB_BCF8B5.USD","d":[]},{"s":"PANCAKESWAP:PENDLEKOL_7F56DD","d":[]},{"s":"PANCAKESWAP:UNBNO_A68C29","d":[]},{"s":"KUCOIN:FLOKIUSDC","d":[]},{"s":"SUSHISWAP:OHMDAI_055475","d":[]},{"s":"PANCAKESWAP:CAKEBUSD_804678","d":[]},{"s":"PANCAKESWAP:BABYLONGWBNB_2F26F5","d":[]},{"s":"PANCAKESWAP:NRWUSDT_C8D3FD","d":[]},{"s":"PANCAKESWAP:TRXYES_436D00.USD","d":[]},{"s":"PANCAKESWAP:EVERSAFUWBNB_A6C395.USD","d":[]},{"s":"UPBIT:RAYBTC","d":[]},{"s":"SUSHISWAP:GOGWETH_5C596C.USD","d":[]},{"s":"UPBIT:FILBTC","d":[]},{"s":"HONEYSWAP:AMISWETH_460270.USD","d":[]},{"s":"SUSHISWAPPOLYGON:SUSHIWETH_B58464","d":[]},{"s":"PANCAKESWAP:ZIGTHOREUM_37FFB7.USD","d":[]},{"s":"PANCAKESWAP:DORWBNB_E8B38B.USD","d":[]},{"s":"KUCOIN:OXTUSDT","d":[]},{"s":"BINANCE:STORJUSDT.P","d":[]},{"s":"PANCAKESWAP:ZKEVMWBNB_FCF4E8","d":[]},{"s":"PANCAKESWAP:WARCWBNB_56210C.USD","d":[]},{"s":"PANCAKESWAP:HODLWBNB_D519E4.USD","d":[]},{"s":"HONEYSWAP:BODHNY_B74C67.USD","d":[]},{"s":"BINANCE:EOSUSDT.P","d":[]},{"s":"PANCAKESWAP:SORAPANDAWBNB_19623D","d":[]},{"s":"PANCAKESWAP:GVTBUSD_912DA0","d":[]},{"s":"SUSHISWAPPOLYGON:IDLEWETH_5518A3.USD","d":[]},{"s":"PANCAKESWAP:CGVWBNB_FD22BC","d":[]},{"s":"KUCOIN:IZIUSDT","d":[]},{"s":"KUCOIN:SLNUSDT","d":[]},{"s":"PANCAKESWAP:REDLUNAWBNB_7E0C81","d":[]},{"s":"BINANCE:FETUSD","d":[]},{"s":"OKX:XLMBTC","d":[]},{"s":"PANCAKESWAP:RGENBUSD_447FF4","d":[]},{"s":"PANCAKESWAP:OSCARWBNB_D03419.USD","d":[]},{"s":"PANCAKESWAP:CHEERSBUSD_EE244C","d":[]},{"s":"PANCAKESWAP:HGPTWBNB_AB7A80.USD","d":[]},{"s":"PANCAKESWAP:KEKEWBNB_0AD478.USD","d":[]},{"s":"PANCAKESWAP:CRYPTOFLOKIWBNB_09644B","d":[]},{"s":"PANCAKESWAP:GCAKEWBNB_5DDA08.USD","d":[]},{"s":"PANCAKESWAP:FRLONGWBNB_EA2D50.USD","d":[]},{"s":"PANCAKESWAP:STARUSDT_A33478","d":[]},{"s":"PANCAKESWAP:CCDSWBNB_61F354.USD","d":[]},{"s":"PANCAKESWAP:EOSWBNB_B6E34B","d":[]},{"s":"SUSHISWAP:DFXWETH_BE7137.USD","d":[]},{"s":"PANCAKESWAP:LGTUSDT_D150D4","d":[]},{"s":"OKX:LTCUSDT27U2024","d":[]},{"s":"PANCAKESWAP:FANHUAWBNB_0B39EB","d":[]},{"s":"PANCAKESWAP:DOGEWBNB_1D51F1","d":[]},{"s":"BINANCE:ASTUSD","d":[]},{"s":"PANCAKESWAP:EFTWBNB_EBDA2E","d":[]},{"s":"PANCAKESWAP:XVSWBNB_7EB5D8","d":[]},{"s":"PANCAKESWAP:OKYWBNB_0D8F6B.USD","d":[]},{"s":"PANCAKESWAP:FGDSCK_973C89.USD","d":[]},{"s":"PANCAKESWAP:GROOMERWBNB_7AF71A.USD","d":[]},{"s":"PANCAKESWAP:BANKP2PGOLDWBNB_F936A7","d":[]},{"s":"PANCAKESWAP:BURNZMOVEZ_E9EA76.USD","d":[]},{"s":"PANCAKESWAP:SSPWBNB_9C6DA6.USD","d":[]},{"s":"PANCAKESWAP:XAKITAWBNB_796C54","d":[]},{"s":"BINANCE:FRONTUSD","d":[]},{"s":"PANCAKESWAP:ORBITWBNB_B91D38.USD","d":[]},{"s":"BINANCE:VOXELUSD","d":[]},{"s":"PANCAKESWAP:KLKLFIST_8C9CBF","d":[]},{"s":"PANCAKESWAP:GMMWBNB_CA532C.USD","d":[]},{"s":"PANCAKESWAP:SORAAIWBNB_3A77A5.USD","d":[]},{"s":"PANCAKESWAP:BTCBWBNB_7561EE.USD","d":[]},{"s":"KUCOIN:HIGHUSDT","d":[]},{"s":"PANCAKESWAP:PIKAUSDT_93AA42","d":[]},{"s":"KUCOIN:XRPUSDT.3L","d":[]},{"s":"PANCAKESWAP:TGTWBNB_651352","d":[]},{"s":"PANCAKESWAP:SNAPWBNB_4979F7","d":[]},{"s":"HONEYSWAP:RAREWXDAI_5805BB","d":[]},{"s":"BINANCE:COMPUSDT.P","d":[]},{"s":"PANCAKESWAP:CSIXWBNB_990403","d":[]},{"s":"PANCAKESWAP:PEPECZWBNB_1B1763.USD","d":[]},{"s":"PANCAKESWAP:IRENAWBNB_DDD165.USD","d":[]},{"s":"PANCAKESWAP:BTNTV2WBNB_33EC58","d":[]},{"s":"PANCAKESWAP:BGSWBNB_9DA8F4","d":[]},{"s":"PANCAKESWAP:PONKEPEPEWBNB_52403D.USD","d":[]},{"s":"PANCAKESWAP:ENFTWBNB_E225F2","d":[]},{"s":"PANCAKESWAP:SUPERGROKWBNB_1D5AC6","d":[]},{"s":"OKX:BANDUSDT","d":[]},{"s":"BINANCE:ALTUSD","d":[]},{"s":"PANCAKESWAP:LCWBNB_B14059.USD","d":[]},{"s":"PANCAKESWAP:SPOONWBNB_BAB520.USD","d":[]},{"s":"PANCAKESWAP:PEPIWBNB_5DCED7","d":[]},{"s":"PANCAKESWAP:CMCCWBNB_E7617F","d":[]},{"s":"PANCAKESWAP:ANTUSDT_5790EC","d":[]},{"s":"KUCOIN:TLMUSDT","d":[]},{"s":"PANCAKESWAP:SCATSWBNB_990103.USD","d":[]},{"s":"KUCOIN:DFYNUSDT","d":[]},{"s":"PANCAKESWAP:EARNXWBNB_E1331F.USD","d":[]},{"s":"PANCAKESWAP:SLWBNB_09609F","d":[]},{"s":"PANCAKESWAP:MIMIWBNB_B00AEF","d":[]},{"s":"PANCAKESWAP:NMTUSDC_118E37","d":[]},{"s":"PANCAKESWAP:MSPACEWBNB_D0A297","d":[]},{"s":"BINANCE:HOOKUSD","d":[]},{"s":"BINANCE:FTMUSDT.P","d":[]},{"s":"SUSHISWAPPOLYGON:MANAWETH_C48AE8","d":[]},{"s":"PANCAKESWAP:CBPBUSD_67449F","d":[]},{"s":"PANCAKESWAP:RISUWBNB_26793A.USD","d":[]},{"s":"PANCAKESWAP:DOGEMOBWBNB_153056.USD","d":[]},{"s":"SUSHISWAP:AMPLWETH_CB2286.USD","d":[]},{"s":"PANCAKESWAP:FORTUNEWBNB_EADFCB","d":[]},{"s":"PANCAKESWAP:PRESALEWBNB_EEAB5A.USD","d":[]},{"s":"PANCAKESWAP:BSRWBNB_E1C69A.USD","d":[]},{"s":"PANCAKESWAP:SHDOGSSNFT_A7F7A5","d":[]},{"s":"BINANCE:MBOXUSD","d":[]},{"s":"PANCAKESWAP:SHAUNWBNB_F82C6D.USD","d":[]},{"s":"PANCAKESWAP:A4MWBNB_E60B66","d":[]},{"s":"PANCAKESWAP:FIFIWBNB_BA65EF","d":[]},{"s":"KUCOIN:RFOXUSDT","d":[]},{"s":"PANCAKESWAP:ORBSWBNB_079645","d":[]},{"s":"PANCAKESWAP:KERMITWBNB_5B5ED5.USD","d":[]},{"s":"PANCAKESWAP:AVITAWBNB_970DDE.USD","d":[]},{"s":"PANCAKESWAP:PRIDEUSDT_973B77","d":[]},{"s":"SUSHISWAP:DOGEPWETH_9D0BEE.USD","d":[]},{"s":"SUSHISWAPPOLYGON:RAIDERWMATIC_2E7D64.USD","d":[]},{"s":"PANCAKESWAP:NPTWBNB_B34EA6.USD","d":[]},{"s":"OKX:BCHUSDT","d":[]},{"s":"KUCOIN:XLMBTC","d":[]},{"s":"PANCAKESWAP:SPACEPIWBNB_A73AD8.USD","d":[]},{"s":"PANCAKESWAP:TIMESERIESWBNB_C614F8","d":[]},{"s":"PANCAKESWAP:JEFFWBNB_E3EB1E.USD","d":[]},{"s":"PANCAKESWAP:MBTWBNB_C9854B.USD","d":[]},{"s":"KUCOIN:QRDOETH","d":[]},{"s":"PANCAKESWAP:DONSWBNB_CADBF7","d":[]},{"s":"PANCAKESWAP:BNBJUSDT_DFB14A","d":[]},{"s":"PANCAKESWAP:MLNXWBNB_1C9ABA","d":[]},{"s":"KUCOIN:CASUSDT","d":[]},{"s":"PANCAKESWAP:DALIWBNB_11A319","d":[]},{"s":"SUSHISWAP:BDIWETH_8D782C.USD","d":[]},{"s":"PANCAKESWAP:PLACEUSDT_A89E7F","d":[]},{"s":"BINANCE:1000PEPEUSDC.P","d":[]},{"s":"PANCAKESWAP:KCALWBNB_D1F59C","d":[]},{"s":"PANCAKESWAP:FNDZWBNB_5E2C18.USD","d":[]},{"s":"PANCAKESWAP:LILFLOKIWBNB_042F08.USD","d":[]},{"s":"HONEYSWAP:STAKEHNY_298C73.USD","d":[]},{"s":"PANCAKESWAP:FBDWBNB_41EE71.USD","d":[]},{"s":"KUCOIN:HIPENGUINSUSDT","d":[]},{"s":"PANCAKESWAP:HELMETWBNB_C869A9","d":[]},{"s":"PANCAKESWAP:BVCWBNB_6FD075.USD","d":[]},{"s":"PANCAKESWAP:GEMINIWBNB_CD10ED","d":[]},{"s":"PANCAKESWAP:PIFWBNB_FF64FD","d":[]},{"s":"PANCAKESWAP:QILINUSDT_ECA19F","d":[]},{"s":"SUSHISWAP:BPTWETH_570242.USD","d":[]},{"s":"PANCAKESWAP:KEKIWBNB_4F2697.USD","d":[]},{"s":"PANCAKESWAP:JJWBNB_1ACA57","d":[]},{"s":"HONEYSWAP:WCETHWXDAI_489F4A","d":[]},{"s":"OKX:MOVRUSDT","d":[]},{"s":"PANCAKESWAP:EARNXWBNB_E1331F","d":[]},{"s":"PANCAKESWAP:TRIBEXWBNB_20A056.USD","d":[]},{"s":"PANCAKESWAP:SNAPWBNB_4979F7.USD","d":[]},{"s":"HONEYSWAP:WATERHNY_D1A978","d":[]},{"s":"PANCAKESWAP:TOPSUSDT_2E523C","d":[]},{"s":"PANCAKESWAP:CDUSDT_F3DC1A","d":[]},{"s":"PANCAKESWAP:WALVWBNB_A0F983","d":[]},{"s":"PANCAKESWAP:EMPESHARE_2FA500","d":[]},{"s":"SUSHISWAP:DPIWETH_34B13F","d":[]},{"s":"PANCAKESWAP:GLORYWBNB_FEB4C1","d":[]},{"s":"PANCAKESWAP:7WBNB_B89F7F.USD","d":[]},{"s":"KUCOIN:FRAUSDT","d":[]},{"s":"PANCAKESWAP:PUPUSDT_94E9CE","d":[]},{"s":"PANCAKESWAP:FLUXWBNB_F1CA29","d":[]},{"s":"PANCAKESWAP:SHENZHOUWBNB_CC2453","d":[]},{"s":"OKX:ADAUSDT","d":[]},{"s":"PANCAKESWAP:MKLUSDT_C3DC47","d":[]},{"s":"PANCAKESWAP:BBKUSDT_9CD255","d":[]},{"s":"KUCOIN:PERPUSDT","d":[]},{"s":"UPBIT:PYTHBTC","d":[]},{"s":"KUCOIN:FILUSDT","d":[]},{"s":"PANCAKESWAP:SAMWBNB_ED7489.USD","d":[]},{"s":"PANCAKESWAP:BEATLESUSDT_E32DE8","d":[]},{"s":"PANCAKESWAP:GMETAUSDT_2723CD","d":[]},{"s":"PANCAKESWAP:BTNCBUSD_771D61","d":[]},{"s":"PANCAKESWAP:RUNBUSD_E6F7D1","d":[]},{"s":"KUCOIN:KNCETH","d":[]},{"s":"PANCAKESWAP:TGWBNB_D29287","d":[]},{"s":"KUCOIN:USDTGBP","d":[]},{"s":"PANCAKESWAP:NFDCWBNB_5A02BF","d":[]},{"s":"PANCAKESWAP:CRSWBNB_298815","d":[]},{"s":"PANCAKESWAP:FOXWBNB_A454ED.USD","d":[]},{"s":"PANCAKESWAP:MAMMATIC_14786A.USD","d":[]},{"s":"PANCAKESWAP:ZOOBUSD_D5D00B","d":[]},{"s":"PANCAKESWAP:ETHFIUSDT_62A75B","d":[]},{"s":"BINANCE:ALPINEUSD","d":[]},{"s":"SUSHISWAP:BMIWETH_538132","d":[]},{"s":"PANCAKESWAP:BUXWBNB_222C3C","d":[]},{"s":"OKX:LONUSDT","d":[]},{"s":"PANCAKESWAP:BABYMARIOWBNB_914BE5","d":[]},{"s":"PANCAKESWAP:GVSWBNB_1BF0C4","d":[]},{"s":"PANCAKESWAP:SHIBAIWBNB_2DEB89.USD","d":[]},{"s":"PANCAKESWAP:GECWBNB_05B8F2","d":[]},{"s":"PANCAKESWAP:AALTOWBNB_4FEA74.USD","d":[]},{"s":"KUCOIN:AEVOUSDT","d":[]},{"s":"PANCAKESWAP:DRTUSDT_034A1A","d":[]},{"s":"HONEYSWAP:PRTCLEWXDAI_A527DB","d":[]},{"s":"BINANCE:1000SATSUSDT.P","d":[]},{"s":"PANCAKESWAP:TAPTWBNB_B5AFE0","d":[]},{"s":"PANCAKESWAP:SBGUUSDT_B711CB","d":[]},{"s":"KUCOIN:SHILLUSDT","d":[]},{"s":"PANCAKESWAP:HAZEWBNB_F0176F","d":[]},{"s":"PANCAKESWAP:FILSTUSDT_ECF6AA","d":[]},{"s":"PANCAKESWAP:QBTWBNB_67EFEF","d":[]},{"s":"PANCAKESWAP:SWASHUSDT_D0FFF9","d":[]},{"s":"PANCAKESWAP:RPGBUSD_A9C815","d":[]},{"s":"UPBIT:ATOMBTC","d":[]},{"s":"PANCAKESWAP:AOCOWBNB_BB33CA.USD","d":[]},{"s":"PANCAKESWAP:MOONTOKENWBNB_C87678","d":[]},{"s":"HONEYSWAP:HNYMR_3D31CA","d":[]},{"s":"HONEYSWAP:LINKUSDT_B31863","d":[]},{"s":"PANCAKESWAP:ZGLCSROAD_F671D5.USD","d":[]},{"s":"PANCAKESWAP:PWTWBNB_FF27CB.USD","d":[]},{"s":"SUSHISWAP:REVVPROS_821808.USD","d":[]},{"s":"PANCAKESWAP:GULLWBNB_192373","d":[]},{"s":"PANCAKESWAP:BLAZEXWBNB_0032CE","d":[]},{"s":"PANCAKESWAP:UTUWBNB_BC6050.USD","d":[]},{"s":"PANCAKESWAP:BABYCATWBNB_57F41E.USD","d":[]},{"s":"PANCAKESWAP:ACWBNB_2CDECD","d":[]},{"s":"PANCAKESWAP:FRTCWBNB_5908EE","d":[]},{"s":"PANCAKESWAP:TANGYUANYYLM_C1D6DA.USD","d":[]},{"s":"PANCAKESWAP:DOGEWBNB_AC109C.USD","d":[]},{"s":"PANCAKESWAP:UPBNBWBNB_747078","d":[]},{"s":"PANCAKESWAP:AEGUSDT_B54397","d":[]},{"s":"OKX:WAXPUSDT","d":[]},{"s":"PANCAKESWAP:MANYWBNB_37C61D","d":[]},{"s":"PANCAKESWAP:PAWTHWBNB_0BABBB.USD","d":[]},{"s":"KUCOIN:OGVUSDT","d":[]},{"s":"BINANCE:AMBUSD","d":[]},{"s":"KUCOIN:LINKUSDT.3S","d":[]},{"s":"BINANCE:AGLDUSD","d":[]},{"s":"KUCOIN:PDEXUSDT","d":[]},{"s":"PANCAKESWAP:HPCWBNB_655D04.USD","d":[]},{"s":"PANCAKESWAP:XFTWBNB_AD217E","d":[]},{"s":"PANCAKESWAP:BCATWBNB_91E5DE.USD","d":[]},{"s":"BINANCE:DCRUSD","d":[]},{"s":"PANCAKESWAP:BLTWBNB_34D95D","d":[]},{"s":"SUSHISWAP:ILSIWETH_753F33","d":[]},{"s":"SUSHISWAP:PWINGWETH_BE1E98","d":[]},{"s":"PANCAKESWAP:CELLWBNB_061550","d":[]},{"s":"PANCAKESWAP:SHENLONGUSDT_371932","d":[]},{"s":"KUCOIN:MATICUSDC","d":[]},{"s":"PANCAKESWAP:HIBUSD_7D9A46","d":[]},{"s":"SUSHISWAP:SNXWETH_A1D7B2","d":[]},{"s":"PANCAKESWAP:BOSSWBNB_64E51E.USD","d":[]},{"s":"KUCOIN:BTCUSDC","d":[]},{"s":"KUCOIN:FLOKIUSDT","d":[]},{"s":"KUCOIN:CWARUSDT","d":[]},{"s":"PANCAKESWAP:1LONGWBNB_44BF2B","d":[]},{"s":"SUSHISWAP:WMEMOUSDC_2F0D18","d":[]},{"s":"KUCOIN:XENUSDT","d":[]},{"s":"OKX:BTCUSD31K2024","d":[]},{"s":"PANCAKESWAP:REVAWBNB_861859.USD","d":[]},{"s":"PANCAKESWAP:PROTUSDT_7EED2D","d":[]},{"s":"PANCAKESWAP:DOGWBNB_ED87D7","d":[]},{"s":"PANCAKESWAP:QUIDDPROS_1766F2","d":[]},{"s":"PANCAKESWAP:FTCWBNB_C47579.USD","d":[]},{"s":"PANCAKESWAP:LCTWBNB_64B266","d":[]},{"s":"SUSHISWAP:BAYCWETH_D829DE.USD","d":[]},{"s":"PANCAKESWAP:RETWBNB_416B11.USD","d":[]},{"s":"SUSHISWAP:BGANWETH_C6045A","d":[]},{"s":"PANCAKESWAP:SEAMLESSWBNB_0482BE","d":[]},{"s":"SUSHISWAPPOLYGON:DFXWETH_9AD5CD.USD","d":[]},{"s":"PANCAKESWAP:BSGWBNB_055A29","d":[]},{"s":"KUCOIN:ATOMUSDC","d":[]},{"s":"PANCAKESWAP:BITSTAKEWBNB_CD1546.USD","d":[]},{"s":"PANCAKESWAP:EGOLDBUSD_F646AA","d":[]},{"s":"PANCAKESWAP:LAZIOWBNB_11C0B2.USD","d":[]},{"s":"KUCOIN:ELFBTC","d":[]},{"s":"PANCAKESWAP:SOWBNB_79C852","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_8C1334.USD","d":[]},{"s":"OKX:UNIUSDC","d":[]},{"s":"HONEYSWAP:CLNYGIV_6E7749.USD","d":[]},{"s":"SUSHISWAP:LDOWETH_C558F6","d":[]},{"s":"PANCAKESWAP:MTCUSDT_9191AE","d":[]},{"s":"PANCAKESWAP:XMBWBNB_9AD9F9.USD","d":[]},{"s":"PANCAKESWAP:LYCCWBNB_BFD77B.USD","d":[]},{"s":"BINANCE:SNTUSDT.P","d":[]},{"s":"PANCAKESWAP:HUMAIWBNB_3D6AAC.USD","d":[]},{"s":"SUSHISWAPPOLYGON:NCTKLIMA_B2D0D5","d":[]},{"s":"PANCAKESWAP:PIXWBNB_A9566F","d":[]},{"s":"PANCAKESWAP:XPBWBNB_5C6DEF.USD","d":[]},{"s":"HONEYSWAP:ALBCWBTC_21C210.USD","d":[]},{"s":"PANCAKESWAP:GHSIWBNB_8EE253","d":[]},{"s":"BINANCE:PYTHUSDT.P","d":[]},{"s":"BINANCE:PENDLEUSDT.P","d":[]},{"s":"PANCAKESWAP:CT4USDT_50D768","d":[]},{"s":"PANCAKESWAP:AFROWBNB_55E5C2.USD","d":[]},{"s":"BINANCE:ALPACAUSD","d":[]},{"s":"PANCAKESWAP:XBNBUSD_AB73B1","d":[]},{"s":"PANCAKESWAP:UMTWBNB_CDD403","d":[]},{"s":"PANCAKESWAP:MBOXWBNB_8FA596","d":[]},{"s":"PANCAKESWAP:SPACEPIBTCPI_BCA91E.USD","d":[]},{"s":"PANCAKESWAP:ROCKETWBNB_16131B.USD","d":[]},{"s":"PANCAKESWAP:N2USDT_8A505E","d":[]},{"s":"PANCAKESWAP:XDOGEWBNB_B0FC90","d":[]},{"s":"PANCAKESWAP:AIPEPEWBNB_47E20E","d":[]},{"s":"PANCAKESWAP:LTYBUSD_95F69E","d":[]},{"s":"PANCAKESWAP:RBNBWBNB_BDC8EE.USD","d":[]},{"s":"PANCAKESWAP:RDTWBNB_3B1BE5.USD","d":[]},{"s":"PANCAKESWAP:CMPWBNB_F70F55.USD","d":[]},{"s":"KUCOIN:OGNBTC","d":[]},{"s":"PANCAKESWAP:BLEOWBNB_0BCA6E","d":[]},{"s":"PANCAKESWAP:KIRBYWBNB_68F8A4","d":[]},{"s":"PANCAKESWAP:ZMBEWBNB_4DBAF6.USD","d":[]},{"s":"PANCAKESWAP:BURNLONGWBNB_6AF123","d":[]},{"s":"PANCAKESWAP:BODAV2WBNB_2A9A4A.USD","d":[]},{"s":"PANCAKESWAP:DRAWBNB_A050B0.USD","d":[]},{"s":"PANCAKESWAP:XCVBUSD_D39F05","d":[]},{"s":"SUSHISWAP:AMPWETH_15E86E.USD","d":[]},{"s":"PANCAKESWAP:DRINKSUSDT_66EE84","d":[]},{"s":"PANCAKESWAP:PMYBUSD_972014","d":[]},{"s":"PANCAKESWAP:SUREWBNB_B1AD8C","d":[]},{"s":"PANCAKESWAP:GAINWBNB_8809C4","d":[]},{"s":"PANCAKESWAP:DEXTWBNB_4B729D.USD","d":[]},{"s":"PANCAKESWAP:IGTSFO_74E378","d":[]},{"s":"PANCAKESWAP:WDCWBNB_D8530F","d":[]},{"s":"HONEYSWAP:BALWETH_848049.USD","d":[]},{"s":"PANCAKESWAP:SQUIDWBNB_683C42.USD","d":[]},{"s":"PANCAKESWAP:CRXWBNB_0E2121.USD","d":[]},{"s":"PANCAKESWAP:OREWBNB_A2CF1E","d":[]},{"s":"HONEYSWAP:GHOWETH_A8142D","d":[]},{"s":"HONEYSWAP:MEWWXDAI_04C944.USD","d":[]},{"s":"PANCAKESWAP:TWITTERXWBNB_E824C6","d":[]},{"s":"PANCAKESWAP:CHERBUSD_A4802E","d":[]},{"s":"PANCAKESWAP:ARTIWBNB_F8C332","d":[]},{"s":"PANCAKESWAP:VOOLACOINETH_810EE8","d":[]},{"s":"PANCAKESWAP:SAFELIGHTWBNB_899BF5.USD","d":[]},{"s":"KUCOIN:ALICEUSDT","d":[]},{"s":"PANCAKESWAP:RDRBUSD_E9E315","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_8E82CF","d":[]},{"s":"PANCAKESWAP:GMETABUSD_5393F6","d":[]},{"s":"PANCAKESWAP:RGNWBNB_0C1800.USD","d":[]},{"s":"PANCAKESWAP:2MOONUSDT_5C3091","d":[]},{"s":"HONEYSWAP:HNYMIVA_E7DED5.USD","d":[]},{"s":"PANCAKESWAP:RVZWBNB_F0BD21.USD","d":[]},{"s":"PANCAKESWAP:EFTWBNB_7865AD.USD","d":[]},{"s":"PANCAKESWAP:LYKAWBNB_871842","d":[]},{"s":"OKX:BSVUSDC","d":[]},{"s":"PANCAKESWAP:HAMWBNB_99BF9C.USD","d":[]},{"s":"BINANCE:GALUSD","d":[]},{"s":"PANCAKESWAP:CILIWBNB_670562","d":[]},{"s":"KUCOIN:USDDTRX","d":[]},{"s":"PANCAKESWAP:PS1WBNB_41138B.USD","d":[]},{"s":"PANCAKESWAP:TEJBUSD_21ADAD","d":[]},{"s":"PANCAKESWAP:OTXWBNB_5831EE","d":[]},{"s":"PANCAKESWAP:TCPWBNB_3AC78E","d":[]},{"s":"PANCAKESWAP:EACCUSDT_09BA98","d":[]},{"s":"PANCAKESWAP:ALDUSDT_A5B96C","d":[]},{"s":"HONEYSWAP:BUSDWBTC_00BCDD","d":[]},{"s":"PANCAKESWAP:HKTUSDT_4243C4","d":[]},{"s":"HONEYSWAP:HODLWXDAI_18B2B7.USD","d":[]},{"s":"BINANCE:RUNEUSDT.P","d":[]},{"s":"HONEYSWAP:MOMMIESWXDAI_B3557B","d":[]},{"s":"PANCAKESWAP:MBHWBNB_F9B89C.USD","d":[]},{"s":"PANCAKESWAP:MESOUSDT_F0669C","d":[]},{"s":"PANCAKESWAP:FAFAFAWBNB_ED7EE0","d":[]},{"s":"KUCOIN:MTSUSDT","d":[]},{"s":"PANCAKESWAP:NYTBUSD_6DCB37","d":[]},{"s":"KUCOIN:WOOUSDT","d":[]},{"s":"PANCAKESWAP:LUTOWBNB_A0445E.USD","d":[]},{"s":"HONEYSWAP:CRVWXDAI_8EBFC0.USD","d":[]},{"s":"KUCOIN:H2OUSDT","d":[]},{"s":"KUCOIN:KCSETH","d":[]},{"s":"PANCAKESWAP:PWDWBNB_F5E222.USD","d":[]},{"s":"PANCAKESWAP:JCWBNB_63AB51","d":[]},{"s":"KUCOIN:MAPBTC","d":[]},{"s":"KUCOIN:FRONTBTC","d":[]},{"s":"SUSHISWAPPOLYGON:IXTWMATIC_014AC2","d":[]},{"s":"PANCAKESWAP:SFOUSDT_4088E1","d":[]},{"s":"PANCAKESWAP:TASTEWBNB_75C7C7.USD","d":[]},{"s":"PANCAKESWAP:PRZSWBNB_E2F4A4.USD","d":[]},{"s":"PANCAKESWAP:CMDWBNB_BB6B96.USD","d":[]},{"s":"PANCAKESWAP:CSRWBNB_FC29FF.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GAIAUSDC_ACD50F","d":[]},{"s":"OKX:BTCUSD29H2024","d":[]},{"s":"PANCAKESWAP:ESWBNB_72B9C5.USD","d":[]},{"s":"PANCAKESWAP:BATRIWBNB_C7943A","d":[]},{"s":"PANCAKESWAP:BGGWBNB_703C6A.USD","d":[]},{"s":"PANCAKESWAP:KINGMYROWBNB_614B75.USD","d":[]},{"s":"PANCAKESWAP:NXWBNB_007F51","d":[]},{"s":"PANCAKESWAP:AMTDAOUSDT_C327DA","d":[]},{"s":"PANCAKESWAP:BNBSWBNB_EC531E","d":[]},{"s":"PANCAKESWAP:BNKUSDT_8F1E6B","d":[]},{"s":"PANCAKESWAP:RENMINEWBNB_63E105.USD","d":[]},{"s":"PANCAKESWAP:PIPIWBNB_E101EF.USD","d":[]},{"s":"PANCAKESWAP:MONSTAWBNB_55C49D.USD","d":[]},{"s":"KUCOIN:WESTUSDT","d":[]},{"s":"PANCAKESWAP:MINAWBNB_510B7A.USD","d":[]},{"s":"OKX:CELOUSDT","d":[]},{"s":"PANCAKESWAP:GSGUSDT_E9F2F4","d":[]},{"s":"PANCAKESWAP:SLNUSDT_7E0987","d":[]},{"s":"PANCAKESWAP:SHGWBNB_4A482B","d":[]},{"s":"KUCOIN:HICLONEXUSDT","d":[]},{"s":"PANCAKESWAP:VOLTWBNB_487BFE.USD","d":[]},{"s":"PANCAKESWAP:AWYWBNB_D2CC3C","d":[]},{"s":"PANCAKESWAP:BITWBNB_DB0F7E.USD","d":[]},{"s":"PANCAKESWAP:ZGLONGWBNB_FE9E72","d":[]},{"s":"PANCAKESWAP:FTSWBNB_C69F21","d":[]},{"s":"PANCAKESWAP:MOSWBNB_FBE9BE","d":[]},{"s":"PANCAKESWAP:KINDERINUWBNB_C0D1B2","d":[]},{"s":"HONEYSWAP:AGVEGMLU_FBE6CA","d":[]},{"s":"PANCAKESWAP:AZWWBNB_B867AE","d":[]},{"s":"HONEYSWAP:SHIBWETH_478AC0.USD","d":[]},{"s":"PANCAKESWAP:DEFIWBNB_DF4F40.USD","d":[]},{"s":"PANCAKESWAP:KOGEWBNB_26DE6C.USD","d":[]},{"s":"BINANCE:ENSUSD","d":[]},{"s":"SUSHISWAP:WIZARDWETH_0A2F9B","d":[]},{"s":"PANCAKESWAP:RBKUSDT_18A0B7","d":[]},{"s":"PANCAKESWAP:RDBWBNB_02F0AC","d":[]},{"s":"OKX:ETHUSDC","d":[]},{"s":"PANCAKESWAP:ETHBTCB_7380E1.USD","d":[]},{"s":"HONEYSWAP:AAVEHNY_FCDF77","d":[]},{"s":"PANCAKESWAP:BTCMPWBNB_29F24A","d":[]},{"s":"PANCAKESWAP:FTX20USDT_F4CA94","d":[]},{"s":"PANCAKESWAP:BABYTRUMPWBNB_D7B361.USD","d":[]},{"s":"PANCAKESWAP:MUVWBNB_856CAA","d":[]},{"s":"PANCAKESWAP:ZODIWBNB_DC0A12","d":[]},{"s":"SUSHISWAP:SILUSDC_0B5D2C","d":[]},{"s":"PANCAKESWAP:PEPEPADWBNB_45AE9D","d":[]},{"s":"PANCAKESWAP:KWUSDT_0E0803","d":[]},{"s":"PANCAKESWAP:KINGBWBNB_B9AF31","d":[]},{"s":"HONEYSWAP:AGVEDAI_370563","d":[]},{"s":"PANCAKESWAP:BABYDOGEWBNB_C736CA.USD","d":[]},{"s":"PANCAKESWAP:BURNLONGWBNB_6AF123.USD","d":[]},{"s":"PANCAKESWAP:SQUIDGROWWBNB_261FCC","d":[]},{"s":"OKX:YGGUSDT","d":[]},{"s":"HONEYSWAP:GRTWETH_F7CC77.USD","d":[]},{"s":"PANCAKESWAP:DARKBUSD_B5D7CC","d":[]},{"s":"KUCOIN:SANDUSDT.3S","d":[]},{"s":"PANCAKESWAP:BBADGERBTCB_10F461","d":[]},{"s":"SUSHISWAP:BADGERWBTC_110492.USD","d":[]},{"s":"KUCOIN:CVXUSDT","d":[]},{"s":"PANCAKESWAP:SPXWBNB_CD0079.USD","d":[]},{"s":"PANCAKESWAP:MCAUSDT_05D5AC","d":[]},{"s":"PANCAKESWAP:DCIPWBNB_4799B0.USD","d":[]},{"s":"PANCAKESWAP:SHELDUSDT_115099","d":[]},{"s":"PANCAKESWAP:WATCHDOWBNB_76A398.USD","d":[]},{"s":"HONEYSWAP:UNIWXDAI_2D341B","d":[]},{"s":"PANCAKESWAP:QIWBNB_F924E6.USD","d":[]},{"s":"PANCAKESWAP:NEROWBNB_EC5B53","d":[]},{"s":"PANCAKESWAP:BANWBNB_82E038.USD","d":[]},{"s":"PANCAKESWAP:HMNGWBNB_81A86A.USD","d":[]},{"s":"BINANCE:RADUSD","d":[]},{"s":"PANCAKESWAP:RYOSHIWBNB_255493.USD","d":[]},{"s":"PANCAKESWAP:SAMZUGAWBNB_1F8373.USD","d":[]},{"s":"PANCAKESWAP:ROCKETBUSDWBNB_B8D128","d":[]},{"s":"PANCAKESWAP:BANKWBNB_65BAAE.USD","d":[]},{"s":"HONEYSWAP:LINKWXDAI_10E0A7","d":[]},{"s":"PANCAKESWAP:BOGWBNB_DD901F.USD","d":[]},{"s":"PANCAKESWAP:CCRUSDT_86B32F","d":[]},{"s":"PANCAKESWAP:WOOPWBNB_2AE94A","d":[]},{"s":"PANCAKESWAP:MBKCUSDT_E4E250","d":[]},{"s":"BINANCE:ETHUSDC.P","d":[]},{"s":"PANCAKESWAP:AFPWBNB_FCD8AB.USD","d":[]},{"s":"SUSHISWAP:WBTCWETH_CEFF51","d":[]},{"s":"PANCAKESWAP:BOBOJIWBNB_3B39F0.USD","d":[]},{"s":"PANCAKESWAP:ISTEPBUSD_F5ADD5","d":[]},{"s":"PANCAKESWAP:FANHUAWBNB_04DC11","d":[]},{"s":"PANCAKESWAP:GOWBNB_5B8CFF","d":[]},{"s":"PANCAKESWAP:ETERNALWBNB_BD26E0","d":[]},{"s":"SUSHISWAP:DAOWETH_96F5B7.USD","d":[]},{"s":"PANCAKESWAP:GUCCIPEPEWBNB_ECB27A.USD","d":[]},{"s":"PANCAKESWAP:PERIWBNB_B68EBC.USD","d":[]},{"s":"PANCAKESWAP:GHSIWBNB_8EE253.USD","d":[]},{"s":"KUCOIN:AURORAUSDT","d":[]},{"s":"PANCAKESWAP:LEOWBNB_A747E2","d":[]},{"s":"PANCAKESWAP:ZWZWBNB_39E4A9","d":[]},{"s":"SUSHISWAPPOLYGON:WETHWMATIC_C4E595.USD","d":[]},{"s":"PANCAKESWAP:TEDWBNB_2F5890.USD","d":[]},{"s":"PANCAKESWAP:MAUBWBNB_B679E0.USD","d":[]},{"s":"PANCAKESWAP:SAFESTWBNB_26F2C1.USD","d":[]},{"s":"KUCOIN:VEMPUSDC","d":[]},{"s":"PANCAKESWAP:BSCSWBNB_9A590A","d":[]},{"s":"PANCAKESWAP:BSCZEEDUSDT_E91840","d":[]},{"s":"PANCAKESWAP:LFWBNB_3BCBA4","d":[]},{"s":"PANCAKESWAP:BSCXWBNB_20781B.USD","d":[]},{"s":"KUCOIN:DCRBTC","d":[]},{"s":"PANCAKESWAP:SLAMWBNB_60B852","d":[]},{"s":"PANCAKESWAP:YFSXWBNB_A3F064","d":[]},{"s":"BINANCE:KMDUSD","d":[]},{"s":"KUCOIN:PYTHUSDT","d":[]},{"s":"PANCAKESWAP:SCARWBNB_C2B30A.USD","d":[]},{"s":"SUSHISWAP:IBEURWETH_A2D81B.USD","d":[]},{"s":"KUCOIN:DASHETH","d":[]},{"s":"PANCAKESWAP:PPCUSDC_1298E7","d":[]},{"s":"HONEYSWAP:RXDAIWXDAI_4E8EB7","d":[]},{"s":"PANCAKESWAP:PEPEITOPEPE_708577","d":[]},{"s":"PANCAKESWAP:TBBUSDT_387B8F","d":[]},{"s":"PANCAKESWAP:BLACKWBNB_5C5487","d":[]},{"s":"HONEYSWAP:HUSDWXDAI_D7B890","d":[]},{"s":"OKX:DIAUSDT","d":[]},{"s":"PANCAKESWAP:TIPBUSD_08BB14","d":[]},{"s":"PANCAKESWAP:DOGEKINGUSDT_5ED406","d":[]},{"s":"PANCAKESWAP:MDBWBNB_32A9D8.USD","d":[]},{"s":"PANCAKESWAP:COINSCOPEWBNB_AD1BA3.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GNOMEWETH_C1214B","d":[]},{"s":"PANCAKESWAP:GSDUSDT_D79B5D","d":[]},{"s":"PANCAKESWAP:MOONCAKE_8B83FD.USD","d":[]},{"s":"PANCAKESWAP:SSRUSDT_08A21B","d":[]},{"s":"PANCAKESWAP:JETSWBNB_CAA8CB.USD","d":[]},{"s":"KUCOIN:BTCDOWNUSDT","d":[]},{"s":"PANCAKESWAP:SWITCCUSDT_CAF971","d":[]},{"s":"PANCAKESWAP:SQUADCAKE_54CD9D.USD","d":[]},{"s":"PANCAKESWAP:KLDWBNB_8483D0","d":[]},{"s":"KUCOIN:COTIBTC","d":[]},{"s":"PANCAKESWAP:SHLWBNB_A6EECC.USD","d":[]},{"s":"BINANCE:SUIUSDT.P","d":[]},{"s":"PANCAKESWAP:TMTBBDY_81FE0F.USD","d":[]},{"s":"PANCAKESWAP:8BITWBNB_99574D","d":[]},{"s":"KUCOIN:SHIBUSDT.2S","d":[]},{"s":"PANCAKESWAP:MBHWBNB_F9B89C","d":[]},{"s":"PANCAKESWAP:SPXWBNB_CD0079","d":[]},{"s":"HONEYSWAP:HIVEWATERGNO_435A3A.USD","d":[]},{"s":"PANCAKESWAP:THINGWBNB_0534AB.USD","d":[]},{"s":"BINANCE:ETHWUSDT.P","d":[]},{"s":"PANCAKESWAP:PRPWBNB_A9FB76.USD","d":[]},{"s":"PANCAKESWAP:BBTFWBNB_B826CF","d":[]},{"s":"PANCAKESWAP:RJVWBNB_03AFA7.USD","d":[]},{"s":"HONEYSWAP:WATERGIV_E96ADB","d":[]},{"s":"PANCAKESWAP:ATXWBNB_3FA30A","d":[]},{"s":"KUCOIN:DAOUSDT","d":[]},{"s":"PANCAKESWAP:COQPEPEXWBNB_D0C66A","d":[]},{"s":"PANCAKESWAP:ADAMWBNB_C97210","d":[]},{"s":"OKX:PERPUSDT","d":[]},{"s":"HONEYSWAP:HEXHNY_E82659.USD","d":[]},{"s":"KUCOIN:MANAUSDT.3S","d":[]},{"s":"KUCOIN:LAYERBTC","d":[]},{"s":"PANCAKESWAP:BTC2009USDT_AC8E2B","d":[]},{"s":"SUSHISWAP:IMXWETH_18CD89.USD","d":[]},{"s":"OKX:BTCTRY","d":[]},{"s":"PANCAKESWAP:PPMWBNB_6FBA41","d":[]},{"s":"PANCAKESWAP:ASXWBNB_9F0FAA","d":[]},{"s":"PANCAKESWAP:HTXWBNB_44FEE9","d":[]},{"s":"HONEYSWAP:MANAXCOMB_FD2082.USD","d":[]},{"s":"PANCAKESWAP:MBDBUSD_850403","d":[]},{"s":"KUCOIN:BNCUSDT","d":[]},{"s":"PANCAKESWAP:MILPWBNB_8211FF.USD","d":[]},{"s":"PANCAKESWAP:BETUWBNB_E6F4DF","d":[]},{"s":"HONEYSWAP:DAIWXDAI_182190","d":[]},{"s":"PANCAKESWAP:EGGWBNB_D1B59D.USD","d":[]},{"s":"HONEYSWAP:GIVWXDAI_B7189A","d":[]},{"s":"HONEYSWAP:FLURYWXDAI_867003.USD","d":[]},{"s":"PANCAKESWAP:WORLDCOINWBNB_63C8D2","d":[]},{"s":"PANCAKESWAP:QXXCGRV_E0725F.USD","d":[]},{"s":"HONEYSWAP:CRVGNO_AC16C7","d":[]},{"s":"PANCAKESWAP:TTCWBNB_2B9921.USD","d":[]},{"s":"OKX:GALFTUSDT","d":[]},{"s":"PANCAKESWAP:BOREDPEPEWBNB_A056BD.USD","d":[]},{"s":"PANCAKESWAP:CAFWBNB_0551CE","d":[]},{"s":"PANCAKESWAP:SPACOINDOGE_53AAF6","d":[]},{"s":"KUCOIN:ENJBTC","d":[]},{"s":"PANCAKESWAP:CUBICWBNB_DF6823.USD","d":[]},{"s":"PANCAKESWAP:KBXUSDT_0D2589","d":[]},{"s":"PANCAKESWAP:XEDWBNB_A7A0B6.USD","d":[]},{"s":"PANCAKESWAP:SSSWBNB_5A24B5.USD","d":[]},{"s":"PANCAKESWAP:SBGUSDT_6BBA8C","d":[]},{"s":"OKX:YFIUSDT","d":[]},{"s":"PANCAKESWAP:SPACEWBNB_62616F","d":[]},{"s":"PANCAKESWAP:PAWSWBNB_A4C438.USD","d":[]},{"s":"PANCAKESWAP:HTDBUSD_0C3B12","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_2E6397","d":[]},{"s":"PANCAKESWAP:SORAWBNB_293DE7","d":[]},{"s":"PANCAKESWAP:LFCUSDT_D98637","d":[]},{"s":"PANCAKESWAP:BIDZWBNB_A5F328.USD","d":[]},{"s":"PANCAKESWAP:DEBTBLOX_AABBB0.USD","d":[]},{"s":"PANCAKESWAP:1USEWBNB_932D56","d":[]},{"s":"PANCAKESWAP:VPADWBNB_6BE665","d":[]},{"s":"SUSHISWAP:RAILRENBTC_519854.USD","d":[]},{"s":"PANCAKESWAP:ETEUSDT_A67DC7","d":[]},{"s":"OKX:MXCUSDT","d":[]},{"s":"PANCAKESWAP:NABOXWBNB_21805A.USD","d":[]},{"s":"KUCOIN:CWSUSDT","d":[]},{"s":"KUCOIN:UOSBTC","d":[]},{"s":"PANCAKESWAP:AITECHUSDT_87ACDD","d":[]},{"s":"HONEYSWAP:LTIWXDAI_64AC1A","d":[]},{"s":"PANCAKESWAP:MOONBOYTROLLWBNB_86939E.USD","d":[]},{"s":"PANCAKESWAP:SAFESTWBNB_26F2C1","d":[]},{"s":"PANCAKESWAP:4JNETWBNB_A9BEBE","d":[]},{"s":"KUCOIN:RUNEUSDT","d":[]},{"s":"PANCAKESWAP:HERABUSD_BCABBA","d":[]},{"s":"BINANCE:BATUSD","d":[]},{"s":"PANCAKESWAP:DNBWBNB_770A0B.USD","d":[]},{"s":"PANCAKESWAP:LBLOCKWBNB_CFC23F","d":[]},{"s":"PANCAKESWAP:MOONPOTWBNB_C8F72E.USD","d":[]},{"s":"PANCAKESWAP:BSWBNB_724F37","d":[]},{"s":"PANCAKESWAP:AVATUSDT_352A91","d":[]},{"s":"OKX:XRPUSD27U2024","d":[]},{"s":"PANCAKESWAP:GIAWBNB_5D57C8","d":[]},{"s":"PANCAKESWAP:GHRTWBNB_F79043.USD","d":[]},{"s":"PANCAKESWAP:MYRODRAGONWBNB_F7B56E.USD","d":[]},{"s":"PANCAKESWAP:KWTWBNB_EFE47F","d":[]},{"s":"PANCAKESWAP:MARSWBNB_BB478F","d":[]},{"s":"PANCAKESWAP:SDAOUSDT_A5D510","d":[]},{"s":"HONEYSWAP:WETHELK_3A5631.USD","d":[]},{"s":"PANCAKESWAP:PDXWBNB_182CA5","d":[]},{"s":"PANCAKESWAP:ROCKETWBNB_16131B","d":[]},{"s":"PANCAKESWAP:BVVWBNB_964E7F","d":[]},{"s":"PANCAKESWAP:DATADOGEUSDT_6E816F","d":[]},{"s":"PANCAKESWAP:FLUXWBNB_F1CA29.USD","d":[]},{"s":"BINANCE:JTOUSDT.P","d":[]},{"s":"PANCAKESWAP:TONCOINSPITZ_62382C","d":[]},{"s":"PANCAKESWAP:METISWBNB_69AFE5","d":[]},{"s":"PANCAKESWAP:BABYSORAWBNB_CC812A","d":[]},{"s":"HONEYSWAP:RSRWXDAI_5AE763","d":[]},{"s":"PANCAKESWAP:LUCKYWBNB_3000DD","d":[]},{"s":"BINANCE:AVAXUSDT.P","d":[]},{"s":"PANCAKESWAP:KARENWBNB_BD9797.USD","d":[]},{"s":"PANCAKESWAP:FLOVWBNB_0B21B5.USD","d":[]},{"s":"KUCOIN:XYOETH","d":[]},{"s":"PANCAKESWAP:BRANDWBNB_004089.USD","d":[]},{"s":"PANCAKESWAP:CXPADWBNB_02127E","d":[]},{"s":"PANCAKESWAP:BOGWBNB_DD901F","d":[]},{"s":"PANCAKESWAP:VALASWBNB_829F54","d":[]},{"s":"PANCAKESWAP:SAFEMOOWBNB_5957C1.USD","d":[]},{"s":"SUSHISWAP:PUNKWETH_0463A0.USD","d":[]},{"s":"PANCAKESWAP:LANDWBNB_468CDE","d":[]},{"s":"OKX:ETCUSD28M2024","d":[]},{"s":"PANCAKESWAP:LULUWBNB_2A7C97","d":[]},{"s":"PANCAKESWAP:GROKDRAGONWBNB_62E901","d":[]},{"s":"PANCAKESWAP:SMARSWBNB_6F9A04.USD","d":[]},{"s":"PANCAKESWAP:J9BCUSDT_DBFB2B","d":[]},{"s":"KUCOIN:FTMUSDT.3L","d":[]},{"s":"PANCAKESWAP:GALAXYGLC_BCE674","d":[]},{"s":"PANCAKESWAP:QQWBNB_17BC51.USD","d":[]},{"s":"PANCAKESWAP:MMPROWBNB_8FD7B2.USD","d":[]},{"s":"PANCAKESWAP:SPIDERMANWBNB_62BDD9","d":[]},{"s":"SUSHISWAPPOLYGON:HNYUSDC_5B14B9","d":[]},{"s":"OKX:STXUSDC","d":[]},{"s":"HONEYSWAP:EWTBWETH_7CB5BF","d":[]},{"s":"PANCAKESWAP:CATCOINWBNB_67046E.USD","d":[]},{"s":"PANCAKESWAP:TRXBUSD_B5D108","d":[]},{"s":"KUCOIN:KCSBTC","d":[]},{"s":"KUCOIN:ADXUSDT","d":[]},{"s":"PANCAKESWAP:GHCWBNB_9682EC","d":[]},{"s":"PANCAKESWAP:VTLUSDT_D74C2A","d":[]},{"s":"PANCAKESWAP:VRTWBNB_EF5212.USD","d":[]},{"s":"SUSHISWAPPOLYGON:SXUSDC_CB05BF","d":[]},{"s":"PANCAKESWAP:PORKEWBNB_AB9578.USD","d":[]},{"s":"PANCAKESWAP:BTCBSQUID_44CD68.USD","d":[]},{"s":"PANCAKESWAP:DKSWBNB_8D6031.USD","d":[]},{"s":"PANCAKESWAP:WCHIETH_8EEE2D.USD","d":[]},{"s":"PANCAKESWAP:SORAWBNB_4C8249","d":[]},{"s":"SUSHISWAP:WIZARDWETH_0A2F9B.USD","d":[]},{"s":"PANCAKESWAP:AGISPCWBNB_30F02C.USD","d":[]},{"s":"PANCAKESWAP:FLOSHIDOWBNB_982D5D.USD","d":[]},{"s":"PANCAKESWAP:BNFISTUSDT_4BD1CE","d":[]},{"s":"KUCOIN:DCRUSDT","d":[]},{"s":"PANCAKESWAP:EQXWBNB_802EDC","d":[]},{"s":"PANCAKESWAP:OMNIAWBNB_ECE1BD","d":[]},{"s":"PANCAKESWAP:SUTERWBNB_2D5DB8.USD","d":[]},{"s":"KUCOIN:OMGBTC","d":[]},{"s":"OKX:XNOUSDT","d":[]},{"s":"PANCAKESWAP:ECWBNB_8E2BBE.USD","d":[]},{"s":"PANCAKESWAP:PMGWBNB_1851CF.USD","d":[]},{"s":"PANCAKESWAP:WLXUSDT_41B273","d":[]},{"s":"PANCAKESWAP:GAIWBNB_AC0B12.USD","d":[]},{"s":"PANCAKESWAP:MOSBTCB_302AF8","d":[]},{"s":"PANCAKESWAP:CTKWBNB_460B41","d":[]},{"s":"PANCAKESWAP:CELTUSDT_63DAFF","d":[]},{"s":"SUSHISWAP:UFTWETH_C4B26B","d":[]},{"s":"SUSHISWAPPOLYGON:SUSHIWETH_B58464.USD","d":[]},{"s":"PANCAKESWAP:TINCWBNB_0D5B9A.USD","d":[]},{"s":"PANCAKESWAP:BRCWBNB_059136.USD","d":[]},{"s":"PANCAKESWAP:MONDAYWBNB_1F39D0.USD","d":[]},{"s":"PANCAKESWAP:BUNIWBNB_A03DD9","d":[]},{"s":"PANCAKESWAP:BONFIREWBNB_D3F478","d":[]},{"s":"PANCAKESWAP:XPTWBNB_395B40","d":[]},{"s":"PANCAKESWAP:BTTYWBNB_8D2BE6.USD","d":[]},{"s":"PANCAKESWAP:NLIFEWBNB_56971E","d":[]},{"s":"PANCAKESWAP:LAEEBWBNB_C59181.USD","d":[]},{"s":"KUCOIN:PROMUSDT","d":[]},{"s":"PANCAKESWAP:TOKENWBNB_05616B.USD","d":[]},{"s":"PANCAKESWAP:SPACESWBNB_2C8C90.USD","d":[]},{"s":"KUCOIN:SUSHIUSDT.3S","d":[]},{"s":"SUSHISWAPPOLYGON:GOHMWETH_1549E0.USD","d":[]},{"s":"PANCAKESWAP:100XWBNB_349A11.USD","d":[]},{"s":"PANCAKESWAP:SPEWBNB_D659C4.USD","d":[]},{"s":"PANCAKESWAP:BFCWBNB_1664FC.USD","d":[]},{"s":"PANCAKESWAP:ETHBETH_99D865.USD","d":[]},{"s":"PANCAKESWAP:DUSKWBNB_678EDB.USD","d":[]},{"s":"PANCAKESWAP:CTIWBNB_4508EF","d":[]},{"s":"PANCAKESWAP:PUSHDOGEUSDT_EA94A1","d":[]},{"s":"PANCAKESWAP:BTCDOGUSDT_14B407","d":[]},{"s":"PANCAKESWAP:SOMWBNB_237665","d":[]},{"s":"PANCAKESWAP:DSUNWBNB_03CB3F.USD","d":[]},{"s":"PANCAKESWAP:RUBLWBNB_37AF09.USD","d":[]},{"s":"KUCOIN:EOSUSDT","d":[]},{"s":"PANCAKESWAP:1AMDWBNB_EB821D.USD","d":[]},{"s":"PANCAKESWAP:INSURWBNB_D01BF2.USD","d":[]},{"s":"PANCAKESWAP:YESWBNB_F5581D","d":[]},{"s":"PANCAKESWAP:CANDYBUSD_91DB63","d":[]},{"s":"SUSHISWAP:DERIUSDT_A3DFBF","d":[]},{"s":"OKX:ICEUSDT","d":[]},{"s":"PANCAKESWAP:SYLWBNB_1B96E2.USD","d":[]},{"s":"UPBIT:IMXBTC","d":[]},{"s":"PANCAKESWAP:LEMONWBNB_C40D25.USD","d":[]},{"s":"PANCAKESWAP:COFBUSDT_E0568B","d":[]},{"s":"HONEYSWAP:PUNKWXDAI_8AF213.USD","d":[]},{"s":"PANCAKESWAP:2024WBNB_F253A5.USD","d":[]},{"s":"UPBIT:STRAXBTC","d":[]},{"s":"SUSHISWAP:SPCWETH_E36499","d":[]},{"s":"PANCAKESWAP:JKBUSD_2FB645","d":[]},{"s":"OKX:SNXUSDC","d":[]},{"s":"KUCOIN:EWTKCS","d":[]},{"s":"BINANCE:LSKUSDT.P","d":[]},{"s":"PANCAKESWAP:DKSWBNB_8D6031","d":[]},{"s":"OKX:BZZUSDT","d":[]},{"s":"PANCAKESWAP:PSBBUSD_CB9ABF","d":[]},{"s":"PANCAKESWAP:PEPEPWBNB_F713BD.USD","d":[]},{"s":"PANCAKESWAP:ZMTWBNB_030576","d":[]},{"s":"OKX:WXTUSDT","d":[]},{"s":"PANCAKESWAP:GECUSDT_AF65C6","d":[]},{"s":"PANCAKESWAP:ODYSWBNB_F0FD83","d":[]},{"s":"PANCAKESWAP:STCWBNB_FF0232.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_0C2C1C","d":[]},{"s":"PANCAKESWAP:LOVEWBNB_026B85.USD","d":[]},{"s":"PANCAKESWAP:ZBCUSDT_DBC6A7","d":[]},{"s":"PANCAKESWAP:PAPA2049WBNB_067D25.USD","d":[]},{"s":"PANCAKESWAP:HYPCWBNB_BC5092","d":[]},{"s":"PANCAKESWAP:UNICNUSDT_4BEFE0","d":[]},{"s":"SUSHISWAPPOLYGON:POLYCUBPHBD_8A3F44.USD","d":[]},{"s":"PANCAKESWAP:AIGCUSDT_29B46E","d":[]},{"s":"PANCAKESWAP:ULABWBNB_CA05CE.USD","d":[]},{"s":"PANCAKESWAP:RUBUSD_4C6E53","d":[]},{"s":"PANCAKESWAP:LCWBNB_B14059","d":[]},{"s":"KUCOIN:HIAZUKIUSDT","d":[]},{"s":"PANCAKESWAP:TBCCWBNB_D65B21","d":[]},{"s":"HONEYSWAP:NODEWETH_D8562E.USD","d":[]},{"s":"PANCAKESWAP:BBTFWBNB_B826CF.USD","d":[]},{"s":"OKX:AZYUSDT","d":[]},{"s":"HONEYSWAP:HNYGNO_E1344F","d":[]},{"s":"PANCAKESWAP:FQSWBNB_669845","d":[]},{"s":"KUCOIN:SAVMUSDT","d":[]},{"s":"PANCAKESWAP:OFEWBNB_F6912F.USD","d":[]},{"s":"PANCAKESWAP:WBFCUSDT_5843C4","d":[]},{"s":"SUSHISWAP:YGGWETH_99B42F","d":[]},{"s":"PANCAKESWAP:VACAYWBNB_67D9FD.USD","d":[]},{"s":"PANCAKESWAP:USTBUSD_05FAF5","d":[]},{"s":"PANCAKESWAP:LORDZWBNB_339D3D.USD","d":[]},{"s":"KUCOIN:JAMETH","d":[]},{"s":"OKX:LEOUSDT","d":[]},{"s":"PANCAKESWAP:EPTARR_ADF74C.USD","d":[]},{"s":"PANCAKESWAP:OSEABUSD_BAC9D5","d":[]},{"s":"PANCAKESWAP:FGDWBNB_ED2EC7","d":[]},{"s":"PANCAKESWAP:11UPWBNB_DC80BF.USD","d":[]},{"s":"KUCOIN:BNBKCS","d":[]},{"s":"OKX:NEOBTC","d":[]},{"s":"PANCAKESWAP:SENSIWBNB_BC7F6D","d":[]},{"s":"SUSHISWAPPOLYGON:SFIWETH_7C07CE","d":[]},{"s":"HONEYSWAP:BRIGHTWETH_A69F95","d":[]},{"s":"OKX:BTCEUR","d":[]},{"s":"PANCAKESWAP:TIFWBNB_059C82.USD","d":[]},{"s":"PANCAKESWAP:GHNYWBNB_352008.USD","d":[]},{"s":"PANCAKESWAP:YYDSWBNB_1EDB26.USD","d":[]},{"s":"KUCOIN:VETUSDT","d":[]},{"s":"SUSHISWAP:COMPWETH_31503D","d":[]},{"s":"PANCAKESWAP:BSCMWBNB_6DD966","d":[]},{"s":"SUSHISWAPPOLYGON:RUUFWETH_61F1D8.USD","d":[]},{"s":"HONEYSWAP:USDCGNO_42F741","d":[]},{"s":"PANCAKESWAP:YESGOUSDT_6D5765","d":[]},{"s":"PANCAKESWAP:MMPROBUSD_656AA2","d":[]},{"s":"UPBIT:ARKBTC","d":[]},{"s":"PANCAKESWAP:KITTYWBNB_7705B3.USD","d":[]},{"s":"PANCAKESWAP:WSGWBNB_37FF7D.USD","d":[]},{"s":"PANCAKESWAP:DRAGONUSDT_43609E","d":[]},{"s":"PANCAKESWAP:LONGSHENWBNB_D94BC1","d":[]},{"s":"KUCOIN:XEMBTC","d":[]},{"s":"PANCAKESWAP:JTSWBNB_9A217E.USD","d":[]},{"s":"PANCAKESWAP:HAKAWBNB_3CDD9D","d":[]},{"s":"KUCOIN:VERSEUSDT","d":[]},{"s":"PANCAKESWAP:PXTWBNB_EBC0DB.USD","d":[]},{"s":"PANCAKESWAP:FARAWBNB_FFD50F","d":[]},{"s":"PANCAKESWAP:ETHUSDT_531FEB","d":[]},{"s":"KUCOIN:XMRUSDT","d":[]},{"s":"PANCAKESWAP:SWINGBYWBNB_4FD6D3","d":[]},{"s":"PANCAKESWAP:UTXOUSDT_20E7C7","d":[]},{"s":"HONEYSWAP:TEQUILAXCOMB_D53B85.USD","d":[]},{"s":"PANCAKESWAP:BNBDWBNB_909F02","d":[]},{"s":"PANCAKESWAP:BABYLONGWBNB_0FA6E3.USD","d":[]},{"s":"PANCAKESWAP:KINGUWBNB_E4CCF8.USD","d":[]},{"s":"PANCAKESWAP:RZSWBNB_4AC190.USD","d":[]},{"s":"PANCAKESWAP:MYRODRAGONWBNB_F7B56E","d":[]},{"s":"PANCAKESWAP:AMAZINGTEAMWBNB_D3C896","d":[]},{"s":"PANCAKESWAP:EFXWBNB_AF1DB0","d":[]},{"s":"HONEYSWAP:WBTCUSDT_0A7C11","d":[]},{"s":"PANCAKESWAP:TYCOONBUSD_330714","d":[]},{"s":"PANCAKESWAP:ADSWBNB_0BC8C5","d":[]},{"s":"KUCOIN:KEYBTC","d":[]},{"s":"PANCAKESWAP:UNWWBNB_5CF693","d":[]},{"s":"PANCAKESWAP:FBXUSDT_9F0767","d":[]},{"s":"HONEYSWAP:ALBCHNY_1A7EF9","d":[]},{"s":"BINANCE:IMXUSD","d":[]},{"s":"BINANCE:GRTUSDT.P","d":[]},{"s":"KUCOIN:AVAXUSDC","d":[]},{"s":"PANCAKESWAP:LUNAPADWBNB_48C866","d":[]},{"s":"PANCAKESWAP:OREWBNB_BE133C","d":[]},{"s":"PANCAKESWAP:CMAIWBNB_C14E98","d":[]},{"s":"PANCAKESWAP:XPBUSD_E0CECC","d":[]},{"s":"PANCAKESWAP:ASYUSDT_EA5F35","d":[]},{"s":"PANCAKESWAP:DARAWBNB_B50642","d":[]},{"s":"PANCAKESWAP:DHVBUSD_72BA00","d":[]},{"s":"PANCAKESWAP:SHIBKILLERWBNB_6657F5.USD","d":[]},{"s":"PANCAKESWAP:ANYMTLXBUSD_396E34","d":[]},{"s":"PANCAKESWAP:STANWBNB_3E9DB9.USD","d":[]},{"s":"PANCAKESWAP:SHUWBNB_EFFB1C.USD","d":[]},{"s":"BINANCE:PIXELUSDT.P","d":[]},{"s":"SUSHISWAP:TORNWETH_B27017.USD","d":[]},{"s":"PANCAKESWAP:SOLOWBNB_F4796D.USD","d":[]},{"s":"PANCAKESWAP:BURNDOGEWBNB_EC4690.USD","d":[]},{"s":"BINANCE:CRVUSDT.P","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_04B56A.USD","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_4F5958.USD","d":[]},{"s":"PANCAKESWAP:CBIWBNB_1AE9DE.USD","d":[]},{"s":"PANCAKESWAP:MOONPOTWBNB_C8F72E","d":[]},{"s":"PANCAKESWAP:TDGWBNB_794470.USD","d":[]},{"s":"PANCAKESWAP:MINTUSDT_C2B729","d":[]},{"s":"PANCAKESWAP:DIFIWBNB_77F8C1.USD","d":[]},{"s":"PANCAKESWAP:METAMOONWBNB_083C79.USD","d":[]},{"s":"PANCAKESWAP:GCAKEWBNB_5DDA08","d":[]},{"s":"PANCAKESWAP:SQUAWBNB_C70734","d":[]},{"s":"PANCAKESWAP:KEYWBNB_930361.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DMAGICWMATIC_8F1DBE.USD","d":[]},{"s":"PANCAKESWAP:IBIKSWBNB_734CCC.USD","d":[]},{"s":"PANCAKESWAP:THCWBNB_2FA22A","d":[]},{"s":"PANCAKESWAP:XPROWBNB_6BB64C.USD","d":[]},{"s":"PANCAKESWAP:LIGHTWBNB_B1FEF3.USD","d":[]},{"s":"PANCAKESWAP:LEOWBNB_012BFA","d":[]},{"s":"PANCAKESWAP:EFTWBNB_00A531.USD","d":[]},{"s":"UPBIT:RNDRBTC","d":[]},{"s":"PANCAKESWAP:ADAMWBNB_C97210.USD","d":[]},{"s":"PANCAKESWAP:BTCSTWBNB_B2678C.USD","d":[]},{"s":"HONEYSWAP:DOGEHNY_009D7F.USD","d":[]},{"s":"PANCAKESWAP:MINIBTCWBNB_D0DB39","d":[]},{"s":"PANCAKESWAP:MASUSDT_7A118D","d":[]},{"s":"BINANCE:ADAUSDT.P","d":[]},{"s":"HONEYSWAP:HODLHNY_E3C571","d":[]},{"s":"PANCAKESWAP:PIXOUSDT_A0BBF6","d":[]},{"s":"PANCAKESWAP:RYIUWBNB_B9AD1F","d":[]},{"s":"PANCAKESWAP:SHIBELONWBNB_55FB2A.USD","d":[]},{"s":"PANCAKESWAP:KUYBUSD_5D862D","d":[]},{"s":"OKX:OMIUSDT","d":[]},{"s":"PANCAKESWAP:MSPACEWBNB_D0A297.USD","d":[]},{"s":"PANCAKESWAP:LUFFYWBNB_D6DF60.USD","d":[]},{"s":"PANCAKESWAP:ATLPUSDT_0F2B93","d":[]},{"s":"PANCAKESWAP:NEKOWBNB_0CB9CF","d":[]},{"s":"PANCAKESWAP:SEONWBNB_F40583","d":[]},{"s":"PANCAKESWAP:GBKWBNB_1C90E8","d":[]},{"s":"PANCAKESWAP:POWERBUSD_8D4C58","d":[]},{"s":"PANCAKESWAP:DOGEWHALEWBNB_1815AA","d":[]},{"s":"PANCAKESWAP:KELWBNB_F38963.USD","d":[]},{"s":"PANCAKESWAP:FENOMYWBNB_7302AA","d":[]},{"s":"KUCOIN:VIDTUSDT","d":[]},{"s":"PANCAKESWAP:ZAXWBNB_D9096C.USD","d":[]},{"s":"KUCOIN:NUMUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:MANAWETH_C48AE8.USD","d":[]},{"s":"PANCAKESWAP:DARWBNB_062F88.USD","d":[]},{"s":"PANCAKESWAP:COINSALEWBNB_A3B23C","d":[]},{"s":"PANCAKESWAP:MIXBUSD_7618FD","d":[]},{"s":"PANCAKESWAP:BTCBWBNB_61EB78.USD","d":[]},{"s":"PANCAKESWAP:FINABUSD_6DB23B","d":[]},{"s":"HONEYSWAP:SUCWXDAI_F522A3","d":[]},{"s":"PANCAKESWAP:HIGHERWBNB_5F8DA6","d":[]},{"s":"HONEYSWAP:DEXPAGVE_EE8480.USD","d":[]},{"s":"PANCAKESWAP:BLPWBNB_DF7CE4","d":[]},{"s":"PANCAKESWAP:METAGOLDWBNB_747F4C.USD","d":[]},{"s":"PANCAKESWAP:DAHWBNB_27052C.USD","d":[]},{"s":"HONEYSWAP:STKAGVEWXDAI_08C9B2.USD","d":[]},{"s":"HONEYSWAP:UBTHNY_B0C406.USD","d":[]},{"s":"PANCAKESWAP:DRFUSDT_F03011","d":[]},{"s":"PANCAKESWAP:ETHIMO_FA44D7.USD","d":[]},{"s":"BINANCE:CHESSUSD","d":[]},{"s":"PANCAKESWAP:FWCLWBNB_CB9D83","d":[]},{"s":"PANCAKESWAP:DQQWBNB_0671E6.USD","d":[]},{"s":"HONEYSWAP:DEXPDAI_5495A5","d":[]},{"s":"OKX:SWEATUSDT","d":[]},{"s":"PANCAKESWAP:NABOXBUSD_29B4AB","d":[]},{"s":"PANCAKESWAP:RPGUSDT_03A815","d":[]},{"s":"OKX:CHZUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:WFILWETH_21EF14","d":[]},{"s":"KUCOIN:NGLUSDT","d":[]},{"s":"HONEYSWAP:MATICDAI_27DC6F","d":[]},{"s":"PANCAKESWAP:MRLWBNB_B11743","d":[]},{"s":"BINANCE:ACHUSDT.P","d":[]},{"s":"OKX:TAKIUSDT","d":[]},{"s":"PANCAKESWAP:HTDAOWBNB_B27F4D.USD","d":[]},{"s":"PANCAKESWAP:GLBWBNB_E7FDD0.USD","d":[]},{"s":"PANCAKESWAP:FABRICWBNB_1B4271.USD","d":[]},{"s":"PANCAKESWAP:LAIKAWBNB_BAA69E","d":[]},{"s":"OKX:CFXUSDT","d":[]},{"s":"PANCAKESWAP:WOIDWBNB_72ED04","d":[]},{"s":"PANCAKESWAP:PTMUSDT_FB0E91","d":[]},{"s":"PANCAKESWAP:WIRTUALBUSD_8A4A39","d":[]},{"s":"PANCAKESWAP:KENNELWBNB_4C2A7C.USD","d":[]},{"s":"PANCAKESWAP:FISTWBNB_EA30D4.USD","d":[]},{"s":"PANCAKESWAP:CBDWBNB_A13403.USD","d":[]},{"s":"PANCAKESWAP:CSRWBNB_FC29FF","d":[]},{"s":"BINANCE:FIOUSD","d":[]},{"s":"PANCAKESWAP:AAWBNB_B5AAD7","d":[]},{"s":"BINANCE:AGLDUSDT.P","d":[]},{"s":"PANCAKESWAP:AIAIWBNB_A1718B.USD","d":[]},{"s":"PANCAKESWAP:LANDWBNB_13F80C.USD","d":[]},{"s":"KUCOIN:ZELIXUSDT","d":[]},{"s":"PANCAKESWAP:ZKLWBNB_A528AA","d":[]},{"s":"UPBIT:QTUMBTC","d":[]},{"s":"PANCAKESWAP:EBAWBNB_89EFBF.USD","d":[]},{"s":"PANCAKESWAP:AETUSDT_C8D259","d":[]},{"s":"PANCAKESWAP:WETHWBNB_D5F81B.USD","d":[]},{"s":"PANCAKESWAP:SLGOWBNB_1BC4DC.USD","d":[]},{"s":"PANCAKESWAP:MLZWBNB_4F664D","d":[]},{"s":"PANCAKESWAP:FRZSSCOINWBNB_FE06AF","d":[]},{"s":"KUCOIN:NOIABTC","d":[]},{"s":"PANCAKESWAP:WLCETH_69BC1B","d":[]},{"s":"KUCOIN:GASBTC","d":[]},{"s":"HONEYSWAP:WATERFOX_FD30E3.USD","d":[]},{"s":"SUSHISWAP:CTXWETH_2A9316","d":[]},{"s":"PANCAKESWAP:FISHWWBNB_F6A2C8.USD","d":[]},{"s":"PANCAKESWAP:PLGUSDT_F3DD31","d":[]},{"s":"PANCAKESWAP:DPETWBNB_2B34DE","d":[]},{"s":"PANCAKESWAP:CCUSDT_176B3C","d":[]},{"s":"PANCAKESWAP:PANDAIBUSD_2B5799","d":[]},{"s":"PANCAKESWAP:DXRWBNB_27185C.USD","d":[]},{"s":"SUSHISWAP:ROOKWETH_F13EEF","d":[]},{"s":"PANCAKESWAP:AOCOUSDT_657ACE","d":[]},{"s":"PANCAKESWAP:REDLUNAWBNB_7E0C81.USD","d":[]},{"s":"PANCAKESWAP:BLAUSDT_704EBE","d":[]},{"s":"PANCAKESWAP:CANNAGROWWBNB_6C91D0","d":[]},{"s":"PANCAKESWAP:SUPERGROKWBNB_1D5AC6.USD","d":[]},{"s":"PANCAKESWAP:CATSUSDT_5577AD","d":[]},{"s":"PANCAKESWAP:MGPUSDT_6DF595","d":[]},{"s":"PANCAKESWAP:HGKUSDT_1DF1DE","d":[]},{"s":"PANCAKESWAP:OMWBNB_49837A","d":[]},{"s":"PANCAKESWAP:LTCWBNB_71B01E","d":[]},{"s":"PANCAKESWAP:ROOUSDT_4ED4BF","d":[]},{"s":"KUCOIN:GAFIUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:IXTWMATIC_014AC2.USD","d":[]},{"s":"PANCAKESWAP:MOONRABBITWBNB_11A560.USD","d":[]},{"s":"BINANCE:MAVIAUSDT.P","d":[]},{"s":"PANCAKESWAP:QATARWBNB_F39DB1","d":[]},{"s":"PANCAKESWAP:SAFETOKENWBNB_1A9AA2","d":[]},{"s":"PANCAKESWAP:ALPHAWBNB_ACF47C","d":[]},{"s":"KUCOIN:XMRBTC","d":[]},{"s":"HONEYSWAP:UNCXWXDAI_40E931","d":[]},{"s":"PANCAKESWAP:HOTVWBNB_CBE4CC","d":[]},{"s":"PANCAKESWAP:KUNCIUSDT_07852D","d":[]},{"s":"BINANCE:ONTUSD","d":[]},{"s":"SUSHISWAP:RADARWETH_559EBE","d":[]},{"s":"PANCAKESWAP:PHOENIXJTS_4313D6","d":[]},{"s":"PANCAKESWAP:ONEWBNB_9D2296","d":[]},{"s":"PANCAKESWAP:ZCTUSDT_AAD1FA","d":[]},{"s":"PANCAKESWAP:VINUSDT_CF470B","d":[]},{"s":"PANCAKESWAP:DHUSDT_CA5737","d":[]},{"s":"PANCAKESWAP:RHYTHMWBNB_F49547","d":[]},{"s":"PANCAKESWAP:TRZBUSD_67BA8B","d":[]},{"s":"PANCAKESWAP:PFTWBNB_34DB3E","d":[]},{"s":"PANCAKESWAP:FISHWWBNB_F6A2C8","d":[]},{"s":"PANCAKESWAP:PACOCACAKE_2B0571","d":[]},{"s":"HONEYSWAP:PAXGWETH_D756E0","d":[]},{"s":"OKX:PEPEUSDT","d":[]},{"s":"PANCAKESWAP:AQUARIWBNB_1CE05B","d":[]},{"s":"PANCAKESWAP:SPACWBNB_F4B2E7.USD","d":[]},{"s":"KUCOIN:ZILBTC","d":[]},{"s":"BINANCE:SYNUSD","d":[]},{"s":"KUCOIN:BSWUSDT","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_E71D71","d":[]},{"s":"PANCAKESWAP:GLMWETH_0AB5E2","d":[]},{"s":"PANCAKESWAP:UMAREUMWBNB_56D780","d":[]},{"s":"PANCAKESWAP:GROKTETHERWBNB_CADDBC.USD","d":[]},{"s":"OKX:LAMBUSDT","d":[]},{"s":"KUCOIN:EOSCUSDT","d":[]},{"s":"PANCAKESWAP:GERMANYUSDT_7DE3DA","d":[]},{"s":"HONEYSWAP:SUCHNY_0E9090","d":[]},{"s":"PANCAKESWAP:QOPROWBNB_D7D52D","d":[]},{"s":"PANCAKESWAP:MILEUSDT_96C15B","d":[]},{"s":"BINANCE:CHZUSD","d":[]},{"s":"PANCAKESWAP:FURUSDC_2FD1A7","d":[]},{"s":"PANCAKESWAP:PAPAWBNB_6F92F5","d":[]},{"s":"PANCAKESWAP:ICEWBNB_E0C4BE.USD","d":[]},{"s":"KUCOIN:VRAUSDC","d":[]},{"s":"HONEYSWAP:FCLWXDAI_E8ECF5","d":[]},{"s":"PANCAKESWAP:VERVEWBNB_E42A45.USD","d":[]},{"s":"KUCOIN:UNIUSDT.3S","d":[]},{"s":"KUCOIN:QNTUSDT","d":[]},{"s":"PANCAKESWAP:AIBTWBNB_9A0233.USD","d":[]},{"s":"PANCAKESWAP:MDOWBNB_079790","d":[]},{"s":"PANCAKESWAP:HIBIKIWBNB_54AD5D","d":[]},{"s":"OKX:REPUSDT","d":[]},{"s":"PANCAKESWAP:ETUSDT_8E952E","d":[]},{"s":"PANCAKESWAP:LUSWBNB_081040.USD","d":[]},{"s":"KUCOIN:EPIKUSDT","d":[]},{"s":"BINANCE:APEUSD","d":[]},{"s":"PANCAKESWAP:MTVTWBNB_0A2F32.USD","d":[]},{"s":"PANCAKESWAP:XJGWBNB_466061","d":[]},{"s":"PANCAKESWAP:OLEUSDC_44F508","d":[]},{"s":"PANCAKESWAP:WNDRWBNB_C96107","d":[]},{"s":"BINANCE:PENDLEUSD","d":[]},{"s":"UPBIT:DAIBTC","d":[]},{"s":"PANCAKESWAP:TREEWBNB_62BB4B.USD","d":[]},{"s":"KUCOIN:DYDXUSDT","d":[]},{"s":"BINANCE:ARPAUSDT.P","d":[]},{"s":"PANCAKESWAP:TIFIWBNB_B62BB2","d":[]},{"s":"KUCOIN:QORPOUSDT","d":[]},{"s":"PANCAKESWAP:MGTMUT_5F0A05","d":[]},{"s":"PANCAKESWAP:MBANKUSDT_70891F","d":[]},{"s":"PANCAKESWAP:CRYPTOBUSD_58BB23","d":[]},{"s":"PANCAKESWAP:PLAYWBNB_4C3A07.USD","d":[]},{"s":"PANCAKESWAP:BCITYWBNB_9EE1FC","d":[]},{"s":"PANCAKESWAP:GROKSORAXWBNB_4CB77B","d":[]},{"s":"PANCAKESWAP:FREEWBNB_C1FF2A.USD","d":[]},{"s":"PANCAKESWAP:TXLBUSD_1434BB","d":[]},{"s":"PANCAKESWAP:BCITYWBNB_9EE1FC.USD","d":[]},{"s":"PANCAKESWAP:BABYPIGWBNB_386023.USD","d":[]},{"s":"KUCOIN:XRPETH","d":[]},{"s":"PANCAKESWAP:BSHAREWBNB_130324.USD","d":[]},{"s":"PANCAKESWAP:GROKWBNB_AC54DD","d":[]},{"s":"BINANCE:C98USDT.P","d":[]},{"s":"PANCAKESWAP:VEMPWBNB_94B18F.USD","d":[]},{"s":"PANCAKESWAP:GLCHWBNB_CC4D5F.USD","d":[]},{"s":"KUCOIN:WAVESUSDT","d":[]},{"s":"PANCAKESWAP:MEVRWBNB_E43991","d":[]},{"s":"HONEYSWAP:HNYUSDC_BFC0E0","d":[]},{"s":"BINANCE:FRONTUSDT.P","d":[]},{"s":"OKX:CRVEUR","d":[]},{"s":"PANCAKESWAP:EMBRWBNB_D86389.USD","d":[]},{"s":"KUCOIN:DYDXDOWNUSDT","d":[]},{"s":"SUSHISWAP:ALPHAWETH_F55C33.USD","d":[]},{"s":"KUCOIN:TELUSDT","d":[]},{"s":"PANCAKESWAP:ADSWBNB_0BC8C5.USD","d":[]},{"s":"PANCAKESWAP:DW2WBNB_90C7C0.USD","d":[]},{"s":"PANCAKESWAP:PURSEUSDT_FC450E","d":[]},{"s":"PANCAKESWAP:SELLCWBNB_358EFC","d":[]},{"s":"PANCAKESWAP:MEDOCWBNB_A1D78B","d":[]},{"s":"PANCAKESWAP:RFTWBNB_6E8884","d":[]},{"s":"PANCAKESWAP:LAVAXWBNB_B5CA2B.USD","d":[]},{"s":"PANCAKESWAP:FELIXWBNB_B15192.USD","d":[]},{"s":"PANCAKESWAP:CAFEWBNB_7442F9","d":[]},{"s":"SUSHISWAP:CURIOWETH_8A83B0","d":[]},{"s":"PANCAKESWAP:COREWBNB_9B810A.USD","d":[]},{"s":"HONEYSWAP:UNCXHNY_6780AF.USD","d":[]},{"s":"UPBIT:MOCBTC","d":[]},{"s":"PANCAKESWAP:PMGWBNB_1851CF","d":[]},{"s":"PANCAKESWAP:HMNGWBNB_81A86A","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_42126C.USD","d":[]},{"s":"PANCAKESWAP:O3BUSD_775928","d":[]},{"s":"PANCAKESWAP:MKMDSN_D00305","d":[]},{"s":"PANCAKESWAP:FROGWBNB_7DAE75.USD","d":[]},{"s":"PANCAKESWAP:USDCUSDT_EC6557","d":[]},{"s":"PANCAKESWAP:LENDAUSDT_4867B2","d":[]},{"s":"PANCAKESWAP:CBTBUSD_F86DCB","d":[]},{"s":"BINANCE:THETAUSD","d":[]},{"s":"PANCAKESWAP:BBGUSDT_218674","d":[]},{"s":"PANCAKESWAP:XAIWBNB_9FDC42","d":[]},{"s":"PANCAKESWAP:LUCABUSD_04A6A9","d":[]},{"s":"PANCAKESWAP:AITWBNB_84DBC3","d":[]},{"s":"BINANCE:BATUSDT.P","d":[]},{"s":"PANCAKESWAP:SYCLCC_11844D","d":[]},{"s":"KUCOIN:TAOUSDT","d":[]},{"s":"PANCAKESWAP:AGTWBNB_B05E75.USD","d":[]},{"s":"PANCAKESWAP:DOPWBNB_4208E1","d":[]},{"s":"PANCAKESWAP:BGCUSDT_E70738","d":[]},{"s":"PANCAKESWAP:BTTTUSD_F7C3BC.USD","d":[]},{"s":"PANCAKESWAP:BTCBUSDT_D7B027","d":[]},{"s":"PANCAKESWAP:BENDOGWBNB_6F0476.USD","d":[]},{"s":"PANCAKESWAP:BURNKINGWBNB_ED1E97","d":[]},{"s":"PANCAKESWAP:MDBWBNB_5B3110.USD","d":[]},{"s":"PANCAKESWAP:WEMWBNB_39ECAD.USD","d":[]},{"s":"KUCOIN:SOLRUSDT","d":[]},{"s":"PANCAKESWAP:TTAIWBNB_D800BA","d":[]},{"s":"PANCAKESWAP:SPINWBNB_89C680","d":[]},{"s":"PANCAKESWAP:HMCWBNB_6ED10A","d":[]},{"s":"PANCAKESWAP:HONWBNB_46EA88.USD","d":[]},{"s":"PANCAKESWAP:KSCBUSD_00120E","d":[]},{"s":"PANCAKESWAP:ARMOURWBNB_E687EC","d":[]},{"s":"KUCOIN:C98USDT","d":[]},{"s":"PANCAKESWAP:MTGWBNB_7C27FB.USD","d":[]},{"s":"PANCAKESWAP:POSIWBNB_254BAA.USD","d":[]},{"s":"PANCAKESWAP:6666USDT_D68E3B","d":[]},{"s":"PANCAKESWAP:HZNWBNB_DC9A57","d":[]},{"s":"PANCAKESWAP:FACTRWBNB_D5EF7E.USD","d":[]},{"s":"PANCAKESWAP:SNOOPYUSDT_A8834D","d":[]},{"s":"PANCAKESWAP:DISCOVERUSDT_1D4AD3","d":[]},{"s":"HONEYSWAP:MKRWXDAI_A8A0C3.USD","d":[]},{"s":"SUSHISWAP:INVDOLA_5BA61C.USD","d":[]},{"s":"PANCAKESWAP:XBEBEWBNB_1A776B.USD","d":[]},{"s":"PANCAKESWAP:STREETDOGSWBNB_17ED3C.USD","d":[]},{"s":"PANCAKESWAP:SHIDOWBNB_D0A167","d":[]},{"s":"PANCAKESWAP:NEWBWBNB_6EF885","d":[]},{"s":"PANCAKESWAP:BUNIWBNB_A03DD9.USD","d":[]},{"s":"PANCAKESWAP:W3NWBNB_243F4C.USD","d":[]},{"s":"PANCAKESWAP:TRUSTWBNB_6EEBF6","d":[]},{"s":"PANCAKESWAP:SPOXWBNB_5CAFD2.USD","d":[]},{"s":"PANCAKESWAP:FOXGIRLWBNB_86213E","d":[]},{"s":"KUCOIN:ARXUSDT","d":[]},{"s":"UPBIT:AHTBTC","d":[]},{"s":"PANCAKESWAP:ALPTCWBNB_791EDC.USD","d":[]},{"s":"PANCAKESWAP:LITWBNB_60BB03.USD","d":[]},{"s":"PANCAKESWAP:EZYUSDT_C05612","d":[]},{"s":"OKX:CRVUSDC","d":[]},{"s":"PANCAKESWAP:DUGWBNB_685D32","d":[]},{"s":"PANCAKESWAP:ZEEWBNB_8E799C","d":[]},{"s":"PANCAKESWAP:HTBWBNB_2A995D.USD","d":[]},{"s":"PANCAKESWAP:KWAIUSDT_62C78D","d":[]},{"s":"PANCAKESWAP:AMWAYWBNB_EDFDA4.USD","d":[]},{"s":"PANCAKESWAP:AGSWBNB_F35E09.USD","d":[]},{"s":"HONEYSWAP:HNYDXD_14C4F5.USD","d":[]},{"s":"PANCAKESWAP:SAFEMOONWBNB_9ADC6F.USD","d":[]},{"s":"BINANCE:LINAUSDT.P","d":[]},{"s":"PANCAKESWAP:SAMWBNB_ED7489","d":[]},{"s":"PANCAKESWAP:NINKYSOULS_E235F3","d":[]},{"s":"PANCAKESWAP:PANDAWBNB_BB9088.USD","d":[]},{"s":"PANCAKESWAP:WEYUWBNB_913564.USD","d":[]},{"s":"BINANCE:TUSDT.P","d":[]},{"s":"KUCOIN:SHIBUSDT","d":[]},{"s":"KUCOIN:SFPBTC","d":[]},{"s":"HONEYSWAP:GRTWXDAI_285A60","d":[]},{"s":"PANCAKESWAP:THCWBNB_2FA22A.USD","d":[]},{"s":"HONEYSWAP:RENBTCUSDT_6110E4","d":[]},{"s":"UPBIT:MATICBTC","d":[]},{"s":"OKX:CITYUSDT","d":[]},{"s":"HONEYSWAP:PSPWXDAI_9BF1EB.USD","d":[]},{"s":"PANCAKESWAP:PMEWBNB_041C70.USD","d":[]},{"s":"PANCAKESWAP:VAIBUSD_133EE9","d":[]},{"s":"SUSHISWAP:RENWETH_611CDE.USD","d":[]},{"s":"PANCAKESWAP:MARTIAWBNB_E4205B","d":[]},{"s":"OKX:UMAUSDT","d":[]},{"s":"SUSHISWAP:WARRIORWETH_3C9FBA","d":[]},{"s":"PANCAKESWAP:XMSWBNB_BC7E92.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DAIUSDC_CD578F","d":[]},{"s":"PANCAKESWAP:371F57WBNB_619535","d":[]},{"s":"PANCAKESWAP:UIGIWBNB_DC1C4A.USD","d":[]},{"s":"PANCAKESWAP:HOLDXWBNB_97750C","d":[]},{"s":"KUCOIN:SDAOETH","d":[]},{"s":"PANCAKESWAP:AGUSDT_8C6BDC","d":[]},{"s":"BINANCE:1INCHUSD","d":[]},{"s":"BINANCE:LTOUSD","d":[]},{"s":"PANCAKESWAP:MTDRWBNB_C49C15","d":[]},{"s":"KUCOIN:LPOOLUSDT","d":[]},{"s":"PANCAKESWAP:LGCWBNB_9E217B","d":[]},{"s":"PANCAKESWAP:RVCUSDT_1A3AEE","d":[]},{"s":"PANCAKESWAP:REVDEBT_5E4060.USD","d":[]},{"s":"SUSHISWAP:MTAWETH_663242","d":[]},{"s":"KUCOIN:TRBBTC","d":[]},{"s":"PANCAKESWAP:ILUSWBNB_14F500","d":[]},{"s":"PANCAKESWAP:GVGUSDT_64B421","d":[]},{"s":"PANCAKESWAP:KONGWBNB_F773D1","d":[]},{"s":"KUCOIN:BCHUSDC","d":[]},{"s":"PANCAKESWAP:SGTWBNB_AE7DB8","d":[]},{"s":"PANCAKESWAP:HUSKYWBNB_CCDD82.USD","d":[]},{"s":"PANCAKESWAP:FASTWBNB_3C50BE","d":[]},{"s":"BINANCE:BTCUSD","d":[]},{"s":"PANCAKESWAP:DROGGYWBNB_34533E.USD","d":[]},{"s":"PANCAKESWAP:TSCWBNB_B43BC4.USD","d":[]},{"s":"PANCAKESWAP:GOMDWBNB_FE5617.USD","d":[]},{"s":"PANCAKESWAP:DGSWBNB_14BA9D.USD","d":[]},{"s":"PANCAKESWAP:MEMOUSDT_9D7DB4","d":[]},{"s":"UPBIT:ETCUSDT","d":[]},{"s":"PANCAKESWAP:LPIWBNB_625BC7.USD","d":[]},{"s":"PANCAKESWAP:XAIWBNB_279DBE","d":[]},{"s":"PANCAKESWAP:DFIWBNB_2BD6FA.USD","d":[]},{"s":"PANCAKESWAP:KRACWBNB_E5A036","d":[]},{"s":"KUCOIN:XCNUSDT","d":[]},{"s":"PANCAKESWAP:ZKWBNB_A65662","d":[]},{"s":"PANCAKESWAP:MYSBUSD_997127","d":[]},{"s":"PANCAKESWAP:JADEBUSD_46503D","d":[]},{"s":"KUCOIN:BATUSDT","d":[]},{"s":"PANCAKESWAP:BAKEWBNB_434C8F","d":[]},{"s":"PANCAKESWAP:BTC20WBNB_3A13F6","d":[]},{"s":"PANCAKESWAP:DOGECHOCOWBNB_BCABE3.USD","d":[]},{"s":"PANCAKESWAP:MAMMATIC_14786A","d":[]},{"s":"PANCAKESWAP:ONIWBNB_225ABA.USD","d":[]},{"s":"PANCAKESWAP:BTCBZW_249839.USD","d":[]},{"s":"PANCAKESWAP:JTSWBNB_21AFD3","d":[]},{"s":"PANCAKESWAP:SFOUSDT_1156BC","d":[]},{"s":"PANCAKESWAP:YOSHIWBNB_124F2E","d":[]},{"s":"PANCAKESWAP:WBNBUSDC_D99C7F","d":[]},{"s":"PANCAKESWAP:CQUSDT_DD93A3","d":[]},{"s":"BINANCE:IDUSD","d":[]},{"s":"PANCAKESWAP:OPPUSDT_359DC6","d":[]},{"s":"BINANCE:BTCDOMUSDT.P","d":[]},{"s":"KUCOIN:ILVUSDT","d":[]},{"s":"PANCAKESWAP:QINGLONGUSDT_2DE30A","d":[]},{"s":"PANCAKESWAP:ETTUSDT_E60DB6","d":[]},{"s":"OKX:LTCEUR","d":[]},{"s":"PANCAKESWAP:FPADBUSD_6B18B0","d":[]},{"s":"HONEYSWAP:DOGEUSDC_DCC842","d":[]},{"s":"PANCAKESWAP:NVSWBNB_EB6677.USD","d":[]},{"s":"PANCAKESWAP:MUSOWBNB_7DC7F9.USD","d":[]},{"s":"PANCAKESWAP:COMPETH_379086","d":[]},{"s":"PANCAKESWAP:MRHBWBNB_31F5CB.USD","d":[]},{"s":"PANCAKESWAP:QUIDDPROS_1766F2.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FBXWETH_CFFBFA","d":[]},{"s":"KUCOIN:DENTUSDT","d":[]},{"s":"PANCAKESWAP:SGDETH_74BE66","d":[]},{"s":"PANCAKESWAP:XIYONGWBNB_A2699B","d":[]},{"s":"SUSHISWAP:C98WETH_557B08.USD","d":[]},{"s":"HONEYSWAP:WETHELK_3A5631","d":[]},{"s":"PANCAKESWAP:BTCCUSDT_97D9E1","d":[]},{"s":"BINANCE:SNXUSD","d":[]},{"s":"PANCAKESWAP:PEPEITOPEPE_708577.USD","d":[]},{"s":"PANCAKESWAP:LITEBCC_86209A.USD","d":[]},{"s":"PANCAKESWAP:GLDWBNB_4466CD","d":[]},{"s":"PANCAKESWAP:DOGEZILLAWBNB_D20DE0.USD","d":[]},{"s":"PANCAKESWAP:NYFWBNB_3AC6FA","d":[]},{"s":"PANCAKESWAP:AIPIN_249853","d":[]},{"s":"BINANCE:COTIUSD","d":[]},{"s":"PANCAKESWAP:NADAWBNB_9ABE3C","d":[]},{"s":"PANCAKESWAP:SELFWBNB_7E9C3A","d":[]},{"s":"PANCAKESWAP:GANGNAMWBNB_F3E046.USD","d":[]},{"s":"PANCAKESWAP:MCBWBNB_E4077A.USD","d":[]},{"s":"HONEYSWAP:DXDWXDAI_9D7C92","d":[]},{"s":"PANCAKESWAP:BTCFREEUSDT_F51FBE","d":[]},{"s":"PANCAKESWAP:MINIONSWBNB_285F03","d":[]},{"s":"KUCOIN:HONUSDT","d":[]},{"s":"SUSHISWAP:ONXWETH_065268.USD","d":[]},{"s":"PANCAKESWAP:OPWBNB_30B857.USD","d":[]},{"s":"PANCAKESWAP:BOXERWBNB_47A785.USD","d":[]},{"s":"OKX:XLMUSDT","d":[]},{"s":"KUCOIN:RNDRBTC","d":[]},{"s":"HONEYSWAP:SYMMWXDAI_4DEE7B.USD","d":[]},{"s":"HONEYSWAP:XMOONDAI_BDC6A2","d":[]},{"s":"PANCAKESWAP:AUTODOCTOKENWBNB_D2756E.USD","d":[]},{"s":"BINANCE:EGLDUSD","d":[]},{"s":"PANCAKESWAP:FFLWBNB_337B6C.USD","d":[]},{"s":"PANCAKESWAP:XIYONGWBNB_A2699B.USD","d":[]},{"s":"SUSHISWAP:PONDWETH_CCB42A.USD","d":[]},{"s":"PANCAKESWAP:ZTHBUSDT_4A3431","d":[]},{"s":"PANCAKESWAP:ZIRWBNB_B760BB","d":[]},{"s":"PANCAKESWAP:CZBNBWBNB_6773C6.USD","d":[]},{"s":"PANCAKESWAP:WLCWBNB_462224.USD","d":[]},{"s":"PANCAKESWAP:CHATGPTWBNB_B319FD","d":[]},{"s":"PANCAKESWAP:BURNZMOVEZ_E9EA76","d":[]},{"s":"KUCOIN:PUNDIXUSDT","d":[]},{"s":"PANCAKESWAP:AIWBNB_D3CFB2.USD","d":[]},{"s":"UPBIT:1INCHBTC","d":[]},{"s":"SUSHISWAP:MOVEWETH_87B918.USD","d":[]},{"s":"KUCOIN:SPAUSDT","d":[]},{"s":"PANCAKESWAP:FURRYWBNB_B01651","d":[]},{"s":"PANCAKESWAP:FORBUSD_E60B4E","d":[]},{"s":"PANCAKESWAP:COSMICWBNB_AD9D1E.USD","d":[]},{"s":"PANCAKESWAP:LONGWBNB_F613D8.USD","d":[]},{"s":"BINANCE:ALTUSDT.P","d":[]},{"s":"PANCAKESWAP:OKUSDT_DE49E7","d":[]},{"s":"BINANCE:ONTUSDT.P","d":[]},{"s":"PANCAKESWAP:BBANKWBNB_538E61.USD","d":[]},{"s":"PANCAKESWAP:SPACOINWBNB_DB3179.USD","d":[]},{"s":"OKX:ETHUSD29H2024","d":[]},{"s":"OKX:RONUSDT","d":[]},{"s":"PANCAKESWAP:NABOXWBNB_21805A","d":[]},{"s":"PANCAKESWAP:ONNOWBNB_A11DFC.USD","d":[]},{"s":"PANCAKESWAP:OTXWBNB_5831EE.USD","d":[]},{"s":"PANCAKESWAP:VIMWBNB_D295CF.USD","d":[]},{"s":"PANCAKESWAP:HGPTWBNB_AB7A80","d":[]},{"s":"KUCOIN:EPXUSDT","d":[]},{"s":"PANCAKESWAP:GWCUSDT_0811C9","d":[]},{"s":"KUCOIN:MMMUSDT","d":[]},{"s":"PANCAKESWAP:LORDSWBNB_C25949.USD","d":[]},{"s":"PANCAKESWAP:DXTBUSD_8BFCCB","d":[]},{"s":"PANCAKESWAP:PIGGYWBNB_0AABD0.USD","d":[]},{"s":"PANCAKESWAP:GDSWBNB_423A0B.USD","d":[]},{"s":"PANCAKESWAP:HODLWBNB_B93DE9.USD","d":[]},{"s":"BINANCE:IOTXUSD","d":[]},{"s":"PANCAKESWAP:PPUSDTWBNB_844AFE.USD","d":[]},{"s":"PANCAKESWAP:TSAUSDT_147713","d":[]},{"s":"PANCAKESWAP:ESHAREWBNB_1747AF.USD","d":[]},{"s":"PANCAKESWAP:SHIWBNB_703D9C.USD","d":[]},{"s":"PANCAKESWAP:ANITAWBNB_68F17F.USD","d":[]},{"s":"OKX:SSWPUSDT","d":[]},{"s":"PANCAKESWAP:ASIXWBNB_D059DC","d":[]},{"s":"PANCAKESWAP:XFILEUSDT_090045","d":[]},{"s":"PANCAKESWAP:NEURALAIWBNB_35C05B.USD","d":[]},{"s":"PANCAKESWAP:JUICEWBNB_1B6D91.USD","d":[]},{"s":"PANCAKESWAP:B2BTOOLSUSDT_29D697","d":[]},{"s":"KUCOIN:OMUSDT","d":[]},{"s":"OKX:THGUSDT","d":[]},{"s":"PANCAKESWAP:RIFIBUSD_33D429","d":[]},{"s":"KUCOIN:TRXBTC","d":[]},{"s":"SUSHISWAPPOLYGON:CPDUSDT_5976E1","d":[]},{"s":"PANCAKESWAP:JIJIWBNB_3E4F31.USD","d":[]},{"s":"PANCAKESWAP:SHIDOWBNB_08C7E9","d":[]},{"s":"PANCAKESWAP:OBSWBNB_9E3CB9.USD","d":[]},{"s":"PANCAKESWAP:SUSHIBAWBNB_B18783.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FINTUSDC_47BB2D","d":[]},{"s":"PANCAKESWAP:LCRWBNB_E481C7.USD","d":[]},{"s":"KUCOIN:TRVLBTC","d":[]},{"s":"PANCAKESWAP:DINOWBNB_DCB076.USD","d":[]},{"s":"PANCAKESWAP:HKDWBNB_0E835C","d":[]},{"s":"KUCOIN:KLUBUSDT","d":[]},{"s":"UPBIT:TRXUSDT","d":[]},{"s":"PANCAKESWAP:GROKBNBWBNB_E17EA8.USD","d":[]},{"s":"PANCAKESWAP:REEFWBNB_D63B5C.USD","d":[]},{"s":"PANCAKESWAP:CLXNUSDT_5D841E","d":[]},{"s":"OKX:FETUSDT","d":[]},{"s":"PANCAKESWAP:UNIWBNB_014608","d":[]},{"s":"PANCAKESWAP:COBUSD_800946","d":[]},{"s":"UPBIT:DADBTC","d":[]},{"s":"PANCAKESWAP:LIQBTCB_768BC9.USD","d":[]},{"s":"PANCAKESWAP:PCWWBNB_6184C1.USD","d":[]},{"s":"PANCAKESWAP:DINGYUUSDT_49F410","d":[]},{"s":"PANCAKESWAP:PROSWBNB_109CBF","d":[]},{"s":"PANCAKESWAP:MINIFOOTBALLWBNB_9FCAD8.USD","d":[]},{"s":"PANCAKESWAP:RETABUSD_DEC67E","d":[]},{"s":"HONEYSWAP:XGTWXDAI_27F363","d":[]},{"s":"PANCAKESWAP:AOCODSUSDT_347F70","d":[]},{"s":"PANCAKESWAP:OLEWBNB_D98F04","d":[]},{"s":"PANCAKESWAP:MOSUSDT_B51F95","d":[]},{"s":"PANCAKESWAP:CHTWBNB_578989.USD","d":[]},{"s":"SUSHISWAPPOLYGON:KLIMABCT_9803C7.USD","d":[]},{"s":"PANCAKESWAP:HCTBUSD_0DAA74","d":[]},{"s":"PANCAKESWAP:BMONWBNB_3C2B7B","d":[]},{"s":"PANCAKESWAP:DMCWBNB_B98B3F.USD","d":[]},{"s":"PANCAKESWAP:HIPPOWBNB_40A383.USD","d":[]},{"s":"PANCAKESWAP:BSKTWBNB_448BD0","d":[]},{"s":"PANCAKESWAP:TWTWBNB_3DCB17","d":[]},{"s":"PANCAKESWAP:FELIXWBNB_F2988C","d":[]},{"s":"PANCAKESWAP:LONGWBNB_5A97B3.USD","d":[]},{"s":"PANCAKESWAP:GDUSDT_227DC0","d":[]},{"s":"PANCAKESWAP:SCROOGEWBNB_C998DF.USD","d":[]},{"s":"KUCOIN:LOKAUSDT","d":[]},{"s":"PANCAKESWAP:FREEWBNB_C1FF2A","d":[]},{"s":"PANCAKESWAP:ONLINEWBNB_CC5019","d":[]},{"s":"PANCAKESWAP:TDXWBNB_BD24A8.USD","d":[]},{"s":"PANCAKESWAP:YFIWBNB_DC5FE9","d":[]},{"s":"PANCAKESWAP:ETHSHIBWBNB_650253.USD","d":[]},{"s":"PANCAKESWAP:STARLYBUSD_7EDF10","d":[]},{"s":"PANCAKESWAP:HOSWBNB_1A0BC9","d":[]},{"s":"PANCAKESWAP:AIDOGEMINIWBNB_BCAC09.USD","d":[]},{"s":"KUCOIN:CROUSDT","d":[]},{"s":"PANCAKESWAP:ELONCATWBNB_CCD310","d":[]},{"s":"PANCAKESWAP:EBOXWBNB_80291D.USD","d":[]},{"s":"PANCAKESWAP:CVZWBNB_61D50F.USD","d":[]},{"s":"PANCAKESWAP:NAOSWBNB_CAA662.USD","d":[]},{"s":"PANCAKESWAP:BCCUSDT_5B0191","d":[]},{"s":"PANCAKESWAP:CHAPZUSDT_33F675","d":[]},{"s":"PANCAKESWAP:OREWBNB_A2CF1E.USD","d":[]},{"s":"PANCAKESWAP:UNCXWBNB_489714.USD","d":[]},{"s":"SUSHISWAP:ICEWETH_94B86C.USD","d":[]},{"s":"PANCAKESWAP:ZGXUSDT_348FF8","d":[]},{"s":"SUSHISWAP:BENJIWETH_AF429A","d":[]},{"s":"PANCAKESWAP:LEVIAWBNB_7E99B9","d":[]},{"s":"PANCAKESWAP:VBONEWBNB_B00D67","d":[]},{"s":"KUCOIN:STRKUSDT","d":[]},{"s":"PANCAKESWAP:GINUXWBNB_85B446.USD","d":[]},{"s":"BINANCE:OPUSD","d":[]},{"s":"PANCAKESWAP:HELENAWBNB_A4AA65","d":[]},{"s":"SUSHISWAP:FLOATWETH_481DDA.USD","d":[]},{"s":"PANCAKESWAP:MONWBNB_D39ED8","d":[]},{"s":"SUSHISWAPPOLYGON:TUSDUSDC_4AB66A","d":[]},{"s":"PANCAKESWAP:AICEXWBNB_B42074","d":[]},{"s":"PANCAKESWAP:XTOWBNB_987393.USD","d":[]},{"s":"PANCAKESWAP:BBANKWBNB_3577F3","d":[]},{"s":"BINANCE:QKCUSD","d":[]},{"s":"PANCAKESWAP:CAROMWBNB_BBF00E.USD","d":[]},{"s":"PANCAKESWAP:PRIMOWBNB_FC3F2F.USD","d":[]},{"s":"HONEYSWAP:WATERHNY_D1A978.USD","d":[]},{"s":"BINANCE:MINAUSDT.P","d":[]},{"s":"PANCAKESWAP:EVUUSDT_875436","d":[]},{"s":"PANCAKESWAP:EFXWBNB_AF1DB0.USD","d":[]},{"s":"PANCAKESWAP:IDOWBNB_1AEE51.USD","d":[]},{"s":"PANCAKESWAP:ARTEXWBNB_E78B27","d":[]},{"s":"PANCAKESWAP:STOPELONWBNB_2FB498.USD","d":[]},{"s":"SUSHISWAP:FVTWETH_96335E","d":[]},{"s":"PANCAKESWAP:SBCWBNB_AEA244","d":[]},{"s":"HONEYSWAP:UNIV2WXDAI_C8A1FA.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_0C2C1C.USD","d":[]},{"s":"PANCAKESWAP:CSLUSDT_E803C7","d":[]},{"s":"PANCAKESWAP:AETHBETH_402108","d":[]},{"s":"PANCAKESWAP:IPOWBNB_2220CC.USD","d":[]},{"s":"KUCOIN:ACHUSDT","d":[]},{"s":"PANCAKESWAP:GWARBUSD_FA80AE","d":[]},{"s":"SUSHISWAP:MEEBWETH_E339C1.USD","d":[]},{"s":"PANCAKESWAP:TRUMPBTCWBNB_875926","d":[]},{"s":"PANCAKESWAP:NMBTCWBNB_5ECDC6.USD","d":[]},{"s":"KUCOIN:ETCBTC","d":[]},{"s":"OKX:USDTBRL","d":[]},{"s":"PANCAKESWAP:MEMEALWBNB_22A40B.USD","d":[]},{"s":"PANCAKESWAP:CMCCWBNB_E7617F.USD","d":[]},{"s":"PANCAKESWAP:BONYWBNB_00AC2F.USD","d":[]},{"s":"PANCAKESWAP:ARTEXWBNB_E78B27.USD","d":[]},{"s":"PANCAKESWAP:GSFWBNB_514963","d":[]},{"s":"SUSHISWAP:CQTUSDC_17890D","d":[]},{"s":"BINANCE:GTCUSD","d":[]},{"s":"PANCAKESWAP:WAVESBUSD_9803B3","d":[]},{"s":"PANCAKESWAP:FELIXWBNB_F2988C.USD","d":[]},{"s":"PANCAKESWAP:FRZSSWBNB_726CE8.USD","d":[]},{"s":"BINANCE:USTCUSDT.P","d":[]},{"s":"PANCAKESWAP:RAGSCOIN20WBNB_134A4D.USD","d":[]},{"s":"PANCAKESWAP:EFTWBNB_7865AD","d":[]},{"s":"PANCAKESWAP:BTDUSDT_3DA1FD","d":[]},{"s":"KUCOIN:MOVRETH","d":[]},{"s":"SUSHISWAP:PIXLWETH_7A9DDC.USD","d":[]},{"s":"PANCAKESWAP:GEMITWBNB_671ADE.USD","d":[]},{"s":"HONEYSWAP:ZRXWXDAI_1BEC43","d":[]},{"s":"PANCAKESWAP:GSWBNB_2CA6A1","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_53ED3E","d":[]},{"s":"PANCAKESWAP:MILKYWBNB_210616","d":[]},{"s":"PANCAKESWAP:TCPUSDT_20DDC2","d":[]},{"s":"PANCAKESWAP:CDLUSDT_8067D9","d":[]},{"s":"PANCAKESWAP:EMPIREWBNB_60C9BD.USD","d":[]},{"s":"HONEYSWAP:AAHWXDAI_CC8F5C","d":[]},{"s":"HONEYSWAP:DAIUSDT_881522","d":[]},{"s":"KUCOIN:GLMUSDT","d":[]},{"s":"UPBIT:IDBTC","d":[]},{"s":"UPBIT:OXTBTC","d":[]},{"s":"PANCAKESWAP:JUPITERUSDT_68986C","d":[]},{"s":"PANCAKESWAP:VIDWBNB_25947D.USD","d":[]},{"s":"PANCAKESWAP:CACWBNB_D063FB","d":[]},{"s":"PANCAKESWAP:YUWBNB_66B6D4","d":[]},{"s":"BINANCE:UMAUSD","d":[]},{"s":"PANCAKESWAP:MGCWBNB_C26BFD.USD","d":[]},{"s":"HONEYSWAP:STAKEWETH_F95D38","d":[]},{"s":"PANCAKESWAP:MURATIAIWBNB_DB79F9","d":[]},{"s":"PANCAKESWAP:DGODCZUSD_C0B4DC.USD","d":[]},{"s":"PANCAKESWAP:AVRKUSDT_98548F","d":[]},{"s":"PANCAKESWAP:LINKFIWBNB_12227C.USD","d":[]},{"s":"PANCAKESWAP:KOLWBNB_EF0F80","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_F2C35B","d":[]},{"s":"SUSHISWAP:MCAT17WETH_11A497.USD","d":[]},{"s":"PANCAKESWAP:CLEGWBNB_F0BB4A","d":[]},{"s":"PANCAKESWAP:RUBLUSDT_1BB15E","d":[]},{"s":"PANCAKESWAP:WBNBUSDT_16B9A8","d":[]},{"s":"PANCAKESWAP:MOSWBNB_FBE9BE.USD","d":[]},{"s":"PANCAKESWAP:NTXWBNB_6C805D","d":[]},{"s":"KUCOIN:CSPRETH","d":[]},{"s":"PANCAKESWAP:FIFWBNB_0F1178.USD","d":[]},{"s":"PANCAKESWAP:LINKWBNB_824EB9","d":[]},{"s":"BINANCE:PERPUSD","d":[]},{"s":"PANCAKESWAP:ECTWBNB_C3A4CE.USD","d":[]},{"s":"KUCOIN:BNBUSDC","d":[]},{"s":"SUSHISWAP:XRUNEWETH_95CFA1","d":[]},{"s":"PANCAKESWAP:ANJIWBNB_C87D18","d":[]},{"s":"PANCAKESWAP:MGENESISWBNB_1E2619","d":[]},{"s":"PANCAKESWAP:BURNWBNB_98451C","d":[]},{"s":"PANCAKESWAP:ZZWBNB_1BF507","d":[]},{"s":"PANCAKESWAP:BENTLEYWBNB_689D47.USD","d":[]},{"s":"PANCAKESWAP:ANIWBNB_C6524A.USD","d":[]},{"s":"PANCAKESWAP:CAKEUSDT_A39AF1","d":[]},{"s":"KUCOIN:TRVLUSDT","d":[]},{"s":"PANCAKESWAP:SPCZWBNB_FBDB3D","d":[]},{"s":"PANCAKESWAP:POOPWBNB_3B65D0.USD","d":[]},{"s":"BINANCE:HBARUSD","d":[]},{"s":"PANCAKESWAP:NESTUSDT_18BE13","d":[]},{"s":"OKX:KLAYUSDT","d":[]},{"s":"PANCAKESWAP:SHACKWBNB_D67AB6","d":[]},{"s":"PANCAKESWAP:AWEWBNB_01C35A.USD","d":[]},{"s":"PANCAKESWAP:FENDOUUSDT_0CA2ED","d":[]},{"s":"PANCAKESWAP:MCCUSDC_FB79D8","d":[]},{"s":"UPBIT:TBTC","d":[]},{"s":"PANCAKESWAP:GGSQUSDT_8FCFA5","d":[]},{"s":"OKX:ETCUSD22H2024","d":[]},{"s":"KUCOIN:SCRTBTC","d":[]},{"s":"OKX:LSKUSDT","d":[]},{"s":"SUSHISWAP:DYDXWETH_E4EBD8","d":[]},{"s":"HONEYSWAP:HODLLINK_77F933","d":[]},{"s":"OKX:LHINUUSDT","d":[]},{"s":"PANCAKESWAP:BOXCWBNB_555382","d":[]},{"s":"PANCAKESWAP:KZUSDT_339A84","d":[]},{"s":"PANCAKESWAP:GVCWBNB_930FA5","d":[]},{"s":"KUCOIN:SYSUSDT","d":[]},{"s":"PANCAKESWAP:MEPCAKE_6B5FD8","d":[]},{"s":"SUSHISWAP:BONDLYWETH_65F550","d":[]},{"s":"SUSHISWAP:TOWERPROS_0BFCF9.USD","d":[]},{"s":"PANCAKESWAP:KENSHIUSDC_D36D19","d":[]},{"s":"PANCAKESWAP:BULLWBNB_8C739D.USD","d":[]},{"s":"PANCAKESWAP:MUSICAIWBNB_3553A0.USD","d":[]},{"s":"PANCAKESWAP:RLDMWBNB_18D9B9.USD","d":[]},{"s":"PANCAKESWAP:STZWBNB_F17093","d":[]},{"s":"PANCAKESWAP:MRSUSDT_AF2579","d":[]},{"s":"PANCAKESWAP:TLOSWBNB_3EDB06.USD","d":[]},{"s":"BINANCE:KSMUSD","d":[]},{"s":"PANCAKESWAP:CREWBNB_FAC7C6.USD","d":[]},{"s":"PANCAKESWAP:YZBUSDT_2993B6","d":[]},{"s":"PANCAKESWAP:BABYDOGEUSDT_62C570","d":[]},{"s":"PANCAKESWAP:CVZBUSD_04BE08","d":[]},{"s":"PANCAKESWAP:SPYNBUSD_0EABEC","d":[]},{"s":"PANCAKESWAP:BITNEYUSDT_15D1C7","d":[]},{"s":"KUCOIN:MATICUSDT.3S","d":[]},{"s":"KUCOIN:DOTBTC","d":[]},{"s":"KUCOIN:GTTUSDT","d":[]},{"s":"PANCAKESWAP:OPYWBNB_AB0864.USD","d":[]},{"s":"KUCOIN:XYOBTC","d":[]},{"s":"OKX:BTCEURT","d":[]},{"s":"KUCOIN:FTTUSDT","d":[]},{"s":"PANCAKESWAP:TUUUWBNB_313C0E","d":[]},{"s":"PANCAKESWAP:LYCWBNB_525F73.USD","d":[]},{"s":"PANCAKESWAP:SUBJECT3WBNB_A21E44.USD","d":[]},{"s":"HONEYSWAP:RENBTCWXDAI_A8593B","d":[]},{"s":"PANCAKESWAP:FANHUAWBNB_574A9B","d":[]},{"s":"PANCAKESWAP:KUSDKINE_A19BA5","d":[]},{"s":"SUSHISWAPPOLYGON:POLYCUBPHBD_8A3F44","d":[]},{"s":"PANCAKESWAP:FIBOPOLYUSDT_344E69","d":[]},{"s":"OKX:STETHETH","d":[]},{"s":"KUCOIN:MNDEUSDT","d":[]},{"s":"PANCAKESWAP:BNDWBNB_E2D6D7","d":[]},{"s":"PANCAKESWAP:JOJOWBNB_F6A1C9.USD","d":[]},{"s":"PANCAKESWAP:AUWBNB_AF7E45.USD","d":[]},{"s":"PANCAKESWAP:REELFIWBNB_F88578.USD","d":[]},{"s":"PANCAKESWAP:XRPADA_DBA734.USD","d":[]},{"s":"KUCOIN:APEUSDT.3S","d":[]},{"s":"KUCOIN:HTRBTC","d":[]},{"s":"PANCAKESWAP:PONGWBNB_E1264F","d":[]},{"s":"PANCAKESWAP:S2KWBNB_16ECBB.USD","d":[]},{"s":"PANCAKESWAP:TCZSUSDT_CBF515","d":[]},{"s":"PANCAKESWAP:KITTYWBNB_7705B3","d":[]},{"s":"SUSHISWAP:USHWETH_AAF448","d":[]},{"s":"PANCAKESWAP:TTCWBNB_2B9921","d":[]},{"s":"PANCAKESWAP:CHEESEWBNB_6D16FB.USD","d":[]},{"s":"PANCAKESWAP:LUPINWBNB_C7E542.USD","d":[]},{"s":"PANCAKESWAP:DOGECHOCOWBNB_BCABE3","d":[]},{"s":"PANCAKESWAP:CROOGEWBNB_B1BEF3.USD","d":[]},{"s":"KUCOIN:ADABTC","d":[]},{"s":"KUCOIN:LBPUSDT","d":[]},{"s":"PANCAKESWAP:PULIWBNB_3FF5CB","d":[]},{"s":"HONEYSWAP:XSUSHIWETH_98F4E6.USD","d":[]},{"s":"HONEYSWAP:BAOWXDAI_15954D.USD","d":[]},{"s":"PANCAKESWAP:DUCKYAIWBNB_819F8C","d":[]},{"s":"PANCAKESWAP:RESOUWBNB_A131A9","d":[]},{"s":"OKX:MKRUSDT","d":[]},{"s":"PANCAKESWAP:MCRTWBNB_F82092","d":[]},{"s":"PANCAKESWAP:ZNBUSDT_D852D3","d":[]},{"s":"PANCAKESWAP:TXSWBNB_EA6E78.USD","d":[]},{"s":"PANCAKESWAP:SCOTTYWBNB_F3A319.USD","d":[]},{"s":"KUCOIN:OCEANBTC","d":[]},{"s":"UPBIT:GOBTC","d":[]},{"s":"PANCAKESWAP:FGDWBNB_ED2EC7.USD","d":[]},{"s":"SUSHISWAP:OHMWETH_FFFAE4.USD","d":[]},{"s":"PANCAKESWAP:SDAOWBNB_43B959","d":[]},{"s":"PANCAKESWAP:FBDWBNB_41EE71","d":[]},{"s":"PANCAKESWAP:AMAZINGTEAMWBNB_D3C896.USD","d":[]},{"s":"PANCAKESWAP:UFIWBNB_DD0630.USD","d":[]},{"s":"BINANCE:C98USD","d":[]},{"s":"PANCAKESWAP:JOYGWBNB_C24101","d":[]},{"s":"PANCAKESWAP:PINUWBNB_62EDB1.USD","d":[]},{"s":"KUCOIN:NEERUSDT","d":[]},{"s":"PANCAKESWAP:DOGECOLAWBNB_CB7342.USD","d":[]},{"s":"PANCAKESWAP:FIREFLYUSDT_93F891","d":[]},{"s":"PANCAKESWAP:MINTMEBUSD_84F284","d":[]},{"s":"HONEYSWAP:MOONWASPWXDAI_D8E59B","d":[]},{"s":"OKX:ACHUSDT","d":[]},{"s":"PANCAKESWAP:TOOLWBNB_74BC7D","d":[]},{"s":"PANCAKESWAP:LYMUSDT_353C81","d":[]},{"s":"HONEYSWAP:STAKELINK_F57CB0.USD","d":[]},{"s":"KUCOIN:DSLAUSDT","d":[]},{"s":"PANCAKESWAP:OMGWBNB_B928DA.USD","d":[]},{"s":"PANCAKESWAP:NEXUSWBNB_F33F8F","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_2E6397.USD","d":[]},{"s":"PANCAKESWAP:SKUYWBNB_19E8DE.USD","d":[]},{"s":"SUSHISWAPPOLYGON:EPWETH_BF9E15.USD","d":[]},{"s":"PANCAKESWAP:LUNATWBNB_83A2DF","d":[]},{"s":"PANCAKESWAP:DISWBNB_67F18F.USD","d":[]},{"s":"KUCOIN:DOTKCS","d":[]},{"s":"PANCAKESWAP:FOMOSWBNB_C84BF6","d":[]},{"s":"PANCAKESWAP:MANIAWBNB_861269","d":[]},{"s":"PANCAKESWAP:PEPOWBNB_EF43E9","d":[]},{"s":"PANCAKESWAP:PLAYUSDT_44DB82","d":[]},{"s":"KUCOIN:KCSUSDC","d":[]},{"s":"OKX:LINKBTC","d":[]},{"s":"PANCAKESWAP:ANCHORBUSD_C0FF9F","d":[]},{"s":"PANCAKESWAP:GSSUSDT_52088A","d":[]},{"s":"PANCAKESWAP:FFWBNB_06B849","d":[]},{"s":"UPBIT:IOTXBTC","d":[]},{"s":"KUCOIN:WAVESBTC","d":[]},{"s":"PANCAKESWAP:CALUSDT_526FFA","d":[]},{"s":"PANCAKESWAP:TKINGUSDT_74FCA8","d":[]},{"s":"PANCAKESWAP:PLANUSDT_965B65","d":[]},{"s":"PANCAKESWAP:BWJBUSD_BD7264","d":[]},{"s":"PANCAKESWAP:SOCAWBNB_6BE095","d":[]},{"s":"KUCOIN:OVRUSDT","d":[]},{"s":"HONEYSWAP:DEXPWETH_7935D1.USD","d":[]},{"s":"PANCAKESWAP:ADOBUSD_4B8905","d":[]},{"s":"PANCAKESWAP:KRIPTONITDTINTRAST_1497DA","d":[]},{"s":"BINANCE:ETCUSD","d":[]},{"s":"PANCAKESWAP:CZSHARESWBNB_08E7B8","d":[]},{"s":"SUSHISWAPPOLYGON:WBTCWETH_E62EC2.USD","d":[]},{"s":"PANCAKESWAP:ARMOURWBNB_E687EC.USD","d":[]},{"s":"SUSHISWAP:ALUSDWETH_0589E2","d":[]},{"s":"HONEYSWAP:HIVEWATERGNO_435A3A","d":[]},{"s":"KUCOIN:IOTXUSDT","d":[]},{"s":"PANCAKESWAP:STGBUSD_BCEA09","d":[]},{"s":"PANCAKESWAP:BULLETWBNB_003A4C","d":[]},{"s":"BINANCE:BIGTIMEUSDT.P","d":[]},{"s":"PANCAKESWAP:EPSWBNB_DDE420","d":[]},{"s":"PANCAKESWAP:QNIWBNB_6A7FB6","d":[]},{"s":"PANCAKESWAP:COLDWBNB_E10996.USD","d":[]},{"s":"PANCAKESWAP:CREWBNB_FAC7C6","d":[]},{"s":"PANCAKESWAP:ATEMWBNB_1BE526.USD","d":[]},{"s":"BINANCE:NEARUSDT.P","d":[]},{"s":"PANCAKESWAP:LEVIAWBNB_7E99B9.USD","d":[]},{"s":"PANCAKESWAP:REDPEPEWBNB_DC9969.USD","d":[]},{"s":"PANCAKESWAP:LABSUSDT_CA7642","d":[]},{"s":"PANCAKESWAP:ENERGYYYLM_CB2E06","d":[]},{"s":"PANCAKESWAP:LORDSWBNB_C25949","d":[]},{"s":"BINANCE:FIDAUSD","d":[]},{"s":"PANCAKESWAP:BIXOWBNB_E3BC2F","d":[]},{"s":"PANCAKESWAP:CIOTXIOTX_D7D39F.USD","d":[]},{"s":"KUCOIN:APEUSDT.3L","d":[]},{"s":"PANCAKESWAP:TOADWBNB_20A3DC","d":[]},{"s":"SUSHISWAP:WASABIWETH_8F9EF7.USD","d":[]},{"s":"PANCAKESWAP:SNOOPYUSDT_5094B8","d":[]},{"s":"PANCAKESWAP:WEARBUSD_4CB93A","d":[]},{"s":"PANCAKESWAP:WZYXWBNB_ADC079.USD","d":[]},{"s":"PANCAKESWAP:KINGMYROWBNB_614B75","d":[]},{"s":"PANCAKESWAP:RVCBUSD_604D69","d":[]},{"s":"PANCAKESWAP:SURGEWBNB_419A21","d":[]},{"s":"PANCAKESWAP:ECEWBNB_18FF71.USD","d":[]},{"s":"PANCAKESWAP:AFDBUSD_B51519","d":[]},{"s":"PANCAKESWAP:BALAUSDT_98CDC1","d":[]},{"s":"PANCAKESWAP:LONGCHENCHENWBNB_93C4B1.USD","d":[]},{"s":"KUCOIN:ORDIDOWNUSDT","d":[]},{"s":"BINANCE:1INCHUSDT.P","d":[]},{"s":"PANCAKESWAP:ARENACAKE_FCC860.USD","d":[]},{"s":"PANCAKESWAP:CBEXWBNB_AA7E46.USD","d":[]},{"s":"PANCAKESWAP:MINUWBNB_6928A2.USD","d":[]},{"s":"PANCAKESWAP:EFUNWBNB_C89FFA.USD","d":[]},{"s":"PANCAKESWAP:REALSMURFCATWBNB_192DB5.USD","d":[]},{"s":"PANCAKESWAP:BLTWBNB_21FCFA","d":[]},{"s":"PANCAKESWAP:SETAWBNB_BBFD50.USD","d":[]},{"s":"PANCAKESWAP:A4BUSD_C505F5","d":[]},{"s":"PANCAKESWAP:SUPSWBNB_3D4A58.USD","d":[]},{"s":"PANCAKESWAP:DOSEPROS_B40871.USD","d":[]},{"s":"PANCAKESWAP:DORDAOUSDT_1C336D","d":[]},{"s":"PANCAKESWAP:DRAGONKINGWBNB_580F58.USD","d":[]},{"s":"HONEYSWAP:AMISHNY_8CEEA7","d":[]},{"s":"PANCAKESWAP:SHIBELONWBNB_55FB2A","d":[]},{"s":"PANCAKESWAP:BTEWBNB_21AFE8.USD","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_C9C917.USD","d":[]},{"s":"PANCAKESWAP:DBTYCOONWBNB_AE0A98","d":[]},{"s":"PANCAKESWAP:AMVWBNB_E3B2C4.USD","d":[]},{"s":"PANCAKESWAP:AIXWBNB_E46E9A","d":[]},{"s":"PANCAKESWAP:CCLUSDT_F7B82D","d":[]},{"s":"PANCAKESWAP:ZKSVMWBNB_1D443C.USD","d":[]},{"s":"PANCAKESWAP:LAUNCHWBNB_6B3183.USD","d":[]},{"s":"HONEYSWAP:UBTWXDAI_77FDFC.USD","d":[]},{"s":"PANCAKESWAP:POLSWBNB_A11265.USD","d":[]},{"s":"PANCAKESWAP:VINYFSX_D472BF.USD","d":[]},{"s":"PANCAKESWAP:FCCWBNB_DCD20C.USD","d":[]},{"s":"PANCAKESWAP:CLEARWBNB_6E0F00","d":[]},{"s":"KUCOIN:SHAUSDT","d":[]},{"s":"PANCAKESWAP:2024WBNB_12104D","d":[]},{"s":"HONEYSWAP:COLDWXDAI_94B124.USD","d":[]},{"s":"PANCAKESWAP:SHGWBNB_4A482B.USD","d":[]},{"s":"PANCAKESWAP:BLPWBNB_DF7CE4.USD","d":[]},{"s":"KUCOIN:ATABTC","d":[]},{"s":"HONEYSWAP:WETHGMLU_C5881A","d":[]},{"s":"PANCAKESWAP:SWCWBNB_8FE3C5.USD","d":[]},{"s":"SUSHISWAP:LINKWETH_C40D16","d":[]},{"s":"PANCAKESWAP:GALEONWBNB_09BA3F","d":[]},{"s":"SUSHISWAPPOLYGON:GRTWETH_1CEDA7.USD","d":[]},{"s":"PANCAKESWAP:METASHWBNB_4F29ED","d":[]},{"s":"BINANCE:HIGHUSDT.P","d":[]},{"s":"PANCAKESWAP:RJVWBNB_1A2291","d":[]},{"s":"PANCAKESWAP:SUBWBNB_CF5A3F","d":[]},{"s":"PANCAKESWAP:TRUMPINUWBNB_52BFAF.USD","d":[]},{"s":"PANCAKESWAP:GAMIWBNB_C06C4B","d":[]},{"s":"PANCAKESWAP:BLXWBNB_EE803F","d":[]},{"s":"PANCAKESWAP:KSWWBNB_7D21E0","d":[]},{"s":"PANCAKESWAP:POKOETH_85EC4C.USD","d":[]},{"s":"PANCAKESWAP:POTSBUSD_F90BAA","d":[]},{"s":"PANCAKESWAP:PIZZAUSDT_F32815","d":[]},{"s":"PANCAKESWAP:IRTWBNB_E3EB84","d":[]},{"s":"PANCAKESWAP:LTTUSDT_E84B20","d":[]},{"s":"PANCAKESWAP:EAGLEWBNB_9ACB1F","d":[]},{"s":"PANCAKESWAP:BLAZEWBNB_12610A","d":[]},{"s":"PANCAKESWAP:XVWBNB_B7A6B1","d":[]},{"s":"PANCAKESWAP:CDOGEWBNB_42B717","d":[]},{"s":"PANCAKESWAP:ALEPHWBNB_160D25.USD","d":[]},{"s":"PANCAKESWAP:ABACATEWBNB_1DD641","d":[]},{"s":"PANCAKESWAP:XYZUSDT_48B356","d":[]},{"s":"PANCAKESWAP:DINGERWBNB_E69E56","d":[]},{"s":"PANCAKESWAP:PLAYWBNB_4C3A07","d":[]},{"s":"BINANCE:TRUUSD","d":[]},{"s":"PANCAKESWAP:EPICHEROWBNB_8785D9","d":[]},{"s":"PANCAKESWAP:UMWBUSD_8A7612","d":[]},{"s":"PANCAKESWAP:DOGSWBNB_055C9E","d":[]},{"s":"PANCAKESWAP:SQUIDBTCB_CE2F46","d":[]},{"s":"PANCAKESWAP:SANTAWBNB_FDF3B6.USD","d":[]},{"s":"KUCOIN:SEIUSDT","d":[]},{"s":"PANCAKESWAP:DDLWBNB_89CD21.USD","d":[]},{"s":"PANCAKESWAP:VIMWBNB_D295CF","d":[]},{"s":"PANCAKESWAP:BAIWBNB_927125","d":[]},{"s":"PANCAKESWAP:MNDWBNB_16CF2A","d":[]},{"s":"HONEYSWAP:ETHOWXDAI_1B988C","d":[]},{"s":"PANCAKESWAP:GFALUSDT_B3DB5F","d":[]},{"s":"BINANCE:RONINUSDT.P","d":[]},{"s":"PANCAKESWAP:94198676_BB8062.USD","d":[]},{"s":"KUCOIN:LMRUSDT","d":[]},{"s":"KUCOIN:CHRBTC","d":[]},{"s":"PANCAKESWAP:METANBUSD_E5A2BD","d":[]},{"s":"PANCAKESWAP:GGUUSDT_00CE59","d":[]},{"s":"PANCAKESWAP:HABBWBNB_AABADB.USD","d":[]},{"s":"BINANCE:STEEMUSDT.P","d":[]},{"s":"PANCAKESWAP:BEBEWBNB_A0A6D2.USD","d":[]},{"s":"KUCOIN:PUMLXUSDT","d":[]},{"s":"PANCAKESWAP:SHRIMPLEWBNB_5404E8","d":[]},{"s":"PANCAKESWAP:STCWBNB_FF0232","d":[]},{"s":"OKX:DOGEBTC","d":[]},{"s":"PANCAKESWAP:CBTUSDT_2B1BFD","d":[]},{"s":"PANCAKESWAP:PHXWBNB_993358","d":[]},{"s":"PANCAKESWAP:KLKLFIST_8C9CBF.USD","d":[]},{"s":"PANCAKESWAP:MISTWBNB_5A26EB","d":[]},{"s":"PANCAKESWAP:KCALETH_235D2A.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GENEWETH_3D4219.USD","d":[]},{"s":"KUCOIN:ICPUSDT","d":[]},{"s":"PANCAKESWAP:SANINUWBNB_2CEDC0.USD","d":[]},{"s":"PANCAKESWAP:PORKWETH_76D654.USD","d":[]},{"s":"PANCAKESWAP:RECUSDT_91E33C","d":[]},{"s":"PANCAKESWAP:STMWBNB_5FE09F","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_74321E.USD","d":[]},{"s":"PANCAKESWAP:AIROBOTWBNB_AA0B99","d":[]},{"s":"PANCAKESWAP:CLOSEDAIWBNB_DABD45.USD","d":[]},{"s":"PANCAKESWAP:LUFFYWBNB_EF219E","d":[]},{"s":"PANCAKESWAP:CTOWBNB_BFF1FB","d":[]},{"s":"PANCAKESWAP:GPTBWBNB_EDC27F","d":[]},{"s":"PANCAKESWAP:VITRAWBNB_4D5FE8","d":[]},{"s":"PANCAKESWAP:DBCUSDT_53079D","d":[]},{"s":"OKX:ALGOUSDT","d":[]},{"s":"PANCAKESWAP:DAOVCBUSD_2E00F2","d":[]},{"s":"PANCAKESWAP:ELEPHANTWBNB_1CEA83","d":[]},{"s":"PANCAKESWAP:MNDWBNB_16CF2A.USD","d":[]},{"s":"PANCAKESWAP:DOGEUSDT_DEBFFD","d":[]},{"s":"HONEYSWAP:DIPWXDAI_7389E2","d":[]},{"s":"PANCAKESWAP:PESWBNB_BC6F94.USD","d":[]},{"s":"PANCAKESWAP:ONYXWBNB_E6C476.USD","d":[]},{"s":"PANCAKESWAP:AIRTWBNB_F0CB49.USD","d":[]},{"s":"PANCAKESWAP:YYDSUSDT_889E48","d":[]},{"s":"PANCAKESWAP:CBFIWBNB_D8A042.USD","d":[]},{"s":"KUCOIN:XNOBTC","d":[]},{"s":"PANCAKESWAP:GHCWBNB_A594A0","d":[]},{"s":"PANCAKESWAP:DOMEWBNB_1F4DA8.USD","d":[]},{"s":"HONEYSWAP:HODLWXDAI_18B2B7","d":[]},{"s":"BINANCE:ONEUSDT.P","d":[]},{"s":"PANCAKESWAP:MFPSWBNB_731901","d":[]},{"s":"HONEYSWAP:UNIWXDAI_2D341B.USD","d":[]},{"s":"KUCOIN:RENUSDT","d":[]},{"s":"PANCAKESWAP:REKTUSDT_501E6E","d":[]},{"s":"PANCAKESWAP:BCOINBUSD_D76026","d":[]},{"s":"PANCAKESWAP:SNMWBNB_42EE09.USD","d":[]},{"s":"KUCOIN:ENSUSDT","d":[]},{"s":"PANCAKESWAP:TTWBNB_30314B.USD","d":[]},{"s":"PANCAKESWAP:TSLGDUSDT_F0DB5B","d":[]},{"s":"PANCAKESWAP:MMITWBNB_7F36FD.USD","d":[]},{"s":"OKX:COMPUSDT","d":[]},{"s":"PANCAKESWAP:EMTUSDT_D3CEBC","d":[]},{"s":"PANCAKESWAP:DFAUSDT_5F0292","d":[]},{"s":"PANCAKESWAP:BLOKBUSD_B4A9F6","d":[]},{"s":"PANCAKESWAP:NIOBWBNB_83D606","d":[]},{"s":"PANCAKESWAP:STEMXBUSD_554694","d":[]},{"s":"OKX:MLNUSDT","d":[]},{"s":"PANCAKESWAP:FECLIPSEWBNB_6F8AED","d":[]},{"s":"SUSHISWAP:GETWETH_BB1914","d":[]},{"s":"HONEYSWAP:DONUTXMOON_413D75","d":[]},{"s":"PANCAKESWAP:SBONEWBNB_7F3E1E","d":[]},{"s":"PANCAKESWAP:SELFWBNB_7E9C3A.USD","d":[]},{"s":"PANCAKESWAP:COMAWBNB_AD87EA","d":[]},{"s":"PANCAKESWAP:TOMATOSWBNB_B3E7B2","d":[]},{"s":"OKX:GFTUSDT","d":[]},{"s":"PANCAKESWAP:CAFWBNB_D60733","d":[]},{"s":"PANCAKESWAP:VPRWBNB_93ACCD.USD","d":[]},{"s":"PANCAKESWAP:ILLUVIAWBNB_C7C637","d":[]},{"s":"PANCAKESWAP:SOULWBNB_AF239B.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GETWETH_55BC7D","d":[]},{"s":"PANCAKESWAP:ALTWBNB_31AD3C","d":[]},{"s":"PANCAKESWAP:FLOKIBURNWBNB_ED8EFB.USD","d":[]},{"s":"UPBIT:NEARBTC","d":[]},{"s":"PANCAKESWAP:DOGEDIWBNB_D2CD4F.USD","d":[]},{"s":"PANCAKESWAP:CADINUWBNB_FED93C.USD","d":[]},{"s":"PANCAKESWAP:CATGIRLWBNB_252C6E","d":[]},{"s":"KUCOIN:CHRUSDT","d":[]},{"s":"PANCAKESWAP:XDOGEBUSD_886CE0","d":[]},{"s":"KUCOIN:MKRETH","d":[]},{"s":"PANCAKESWAP:KTLYOWBNB_20F20B.USD","d":[]},{"s":"PANCAKESWAP:IDUSDT_9ED9E9","d":[]},{"s":"KUCOIN:CLHUSDT","d":[]},{"s":"SUSHISWAP:PREMIAWETH_93E2F3.USD","d":[]},{"s":"PANCAKESWAP:MAGMSTR_08526C.USD","d":[]},{"s":"PANCAKESWAP:SQTSANTUSDT_9E0E27","d":[]},{"s":"PANCAKESWAP:XCEWBNB_9BBE2C.USD","d":[]},{"s":"PANCAKESWAP:ZGLWBNB_7937B0.USD","d":[]},{"s":"HONEYSWAP:UNCLWXDAI_641C83.USD","d":[]},{"s":"KUCOIN:HISEALSUSDT","d":[]},{"s":"PANCAKESWAP:NXWBNB_769AB8.USD","d":[]},{"s":"PANCAKESWAP:WCOINWBNB_3713FB","d":[]},{"s":"PANCAKESWAP:PORKEWBNB_AB9578","d":[]},{"s":"PANCAKESWAP:ODOGEWBNB_1A77EF.USD","d":[]},{"s":"PANCAKESWAP:LUSDBUSD_392F35","d":[]},{"s":"KUCOIN:MXCUSDT","d":[]},{"s":"PANCAKESWAP:REFIWBNB_880D75.USD","d":[]},{"s":"PANCAKESWAP:GEMINIWBNB_7C8B0A","d":[]},{"s":"PANCAKESWAP:LUCKYWBNB_3000DD.USD","d":[]},{"s":"OKX:MATICBTC","d":[]},{"s":"PANCAKESWAP:DOTWBNB_BCD626.USD","d":[]},{"s":"PANCAKESWAP:DXAWBNB_10A5AA.USD","d":[]},{"s":"PANCAKESWAP:NUSAWBNB_10E1A9.USD","d":[]},{"s":"SUSHISWAPPOLYGON:STNDWMATIC_7E24A4.USD","d":[]},{"s":"PANCAKESWAP:PEPAYWBNB_DF7A29.USD","d":[]},{"s":"PANCAKESWAP:POTUSDT_9117DF","d":[]},{"s":"KUCOIN:AGIXDOWNUSDT","d":[]},{"s":"PANCAKESWAP:YYLMWBNB_8EA0E1","d":[]},{"s":"BINANCE:OSMOUSD","d":[]},{"s":"PANCAKESWAP:SWDBETH_4A931B.USD","d":[]},{"s":"PANCAKESWAP:MFIBUSD_051E5C","d":[]},{"s":"PANCAKESWAP:GFWBNB_BE8173","d":[]},{"s":"PANCAKESWAP:ZKSYNCUSDT_7963AE","d":[]},{"s":"PANCAKESWAP:CHANGEUSDT_478914","d":[]},{"s":"PANCAKESWAP:DOBOWBNB_BE8083","d":[]},{"s":"PANCAKESWAP:SRWBNB_349DAB.USD","d":[]},{"s":"HONEYSWAP:MEMEHNY_2CC9C9.USD","d":[]},{"s":"PANCAKESWAP:DOGEBLUEWBNB_EB77ED.USD","d":[]},{"s":"PANCAKESWAP:AVOUSDT_88774A","d":[]},{"s":"PANCAKESWAP:CUBICWBNB_DF6823","d":[]},{"s":"PANCAKESWAP:MONESBUSD_1E1D44","d":[]},{"s":"PANCAKESWAP:PRQBUSD_CFAE4B","d":[]},{"s":"OKX:SISUSDT","d":[]},{"s":"KUCOIN:ETHDOWNUSDT","d":[]},{"s":"PANCAKESWAP:BHOWBNB_6E7C0B","d":[]},{"s":"PANCAKESWAP:DBZWBNB_79BCAD.USD","d":[]},{"s":"OKX:OKTUSDC","d":[]},{"s":"KUCOIN:IOSTETH","d":[]},{"s":"PANCAKESWAP:SFCWBNB_A6916E.USD","d":[]},{"s":"PANCAKESWAP:FAYDWBNB_DABBF9","d":[]},{"s":"PANCAKESWAP:GROKXWBNB_23D965.USD","d":[]},{"s":"PANCAKESWAP:FINANCEAIWBNB_080C8B.USD","d":[]},{"s":"PANCAKESWAP:STARSHIPWBNB_0FFD12.USD","d":[]},{"s":"PANCAKESWAP:OPTIMUSAIWBNB_DEC50C","d":[]},{"s":"PANCAKESWAP:RCMWBNB_DC0C87.USD","d":[]},{"s":"PANCAKESWAP:3E669FWBNB_7BED35","d":[]},{"s":"SUSHISWAP:BLOCKSWETH_DD5112.USD","d":[]},{"s":"PANCAKESWAP:TORIIWBNB_EE6739.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FITWBTC_DFE1C5","d":[]},{"s":"PANCAKESWAP:TXSWBNB_EA6E78","d":[]},{"s":"PANCAKESWAP:MONDAYBUSD_2965CF","d":[]},{"s":"KUCOIN:ERNBTC","d":[]},{"s":"PANCAKESWAP:INXTWBNB_150844.USD","d":[]},{"s":"KUCOIN:BEPROUSDT","d":[]},{"s":"UPBIT:RSRBTC","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_5A0601","d":[]},{"s":"PANCAKESWAP:OXBWBNB_03BA45","d":[]},{"s":"PANCAKESWAP:INJWBNB_1BDCEB.USD","d":[]},{"s":"PANCAKESWAP:OPTCMWBNB_083DF7.USD","d":[]},{"s":"OKX:NEOUSDT","d":[]},{"s":"OKX:ADAETH","d":[]},{"s":"KUCOIN:VOLTUSDT","d":[]},{"s":"PANCAKESWAP:STYLWBNB_C52D9D.USD","d":[]},{"s":"UPBIT:ATMBTC","d":[]},{"s":"PANCAKESWAP:HOTWBNB_E6F013","d":[]},{"s":"PANCAKESWAP:ECGUSDT_9697B5","d":[]},{"s":"PANCAKESWAP:PAYUWBNB_5431AF","d":[]},{"s":"KUCOIN:HNTBTC","d":[]},{"s":"PANCAKESWAP:LRTCZUSD_117C53","d":[]},{"s":"PANCAKESWAP:HEUSDC_DBDAB6","d":[]},{"s":"PANCAKESWAP:CCDOGEWBNB_D967E5.USD","d":[]},{"s":"PANCAKESWAP:JETBUSD_6231A3","d":[]},{"s":"PANCAKESWAP:LGTWBNB_621FDE.USD","d":[]},{"s":"PANCAKESWAP:LIFTWBNB_3853FE.USD","d":[]},{"s":"KUCOIN:KLVTRX","d":[]},{"s":"PANCAKESWAP:FTONYWBNB_19C976.USD","d":[]},{"s":"PANCAKESWAP:HAYKALM_E6A78F","d":[]},{"s":"PANCAKESWAP:WROSEKOL_D324BC","d":[]},{"s":"OKX:LEASHUSDT","d":[]},{"s":"PANCAKESWAP:PMPWBNB_A7D494.USD","d":[]},{"s":"PANCAKESWAP:1ARTWBNB_3A8153.USD","d":[]},{"s":"OKX:ETCUSD29H2024","d":[]},{"s":"PANCAKESWAP:BABYTAOWBNB_1AF81C.USD","d":[]},{"s":"PANCAKESWAP:ACKUSDT_54C328","d":[]},{"s":"PANCAKESWAP:WBNBDAI_56C77D","d":[]},{"s":"KUCOIN:ZECKCS","d":[]},{"s":"PANCAKESWAP:PITWBNB_B450CB.USD","d":[]},{"s":"PANCAKESWAP:ACTBUSD_A5CF21","d":[]},{"s":"KUCOIN:KMAUSDT","d":[]},{"s":"PANCAKESWAP:CYCWBNB_ECF30F","d":[]},{"s":"PANCAKESWAP:BBADGERBTCB_10F461.USD","d":[]},{"s":"PANCAKESWAP:CWTWBNB_EA7037.USD","d":[]},{"s":"PANCAKESWAP:DOGEKINGUSDT_3A3742","d":[]},{"s":"PANCAKESWAP:GFIUSDT_D9613C","d":[]},{"s":"KUCOIN:DYPETH","d":[]},{"s":"PANCAKESWAP:DKUSDT_5B5139","d":[]},{"s":"PANCAKESWAP:CHESSWBNB_6FD3E8","d":[]},{"s":"KUCOIN:GLQUSDT","d":[]},{"s":"PANCAKESWAP:MXRNWBNB_8C5985","d":[]},{"s":"SUSHISWAP:SDTWETH_22DEF8.USD","d":[]},{"s":"PANCAKESWAP:BTCBMG_E35489","d":[]},{"s":"PANCAKESWAP:METALBUSD_F48778","d":[]},{"s":"PANCAKESWAP:MILOWBNB_C78153.USD","d":[]},{"s":"HONEYSWAP:MOONWASPWXDAI_D8E59B.USD","d":[]},{"s":"KUCOIN:BEPROBTC","d":[]},{"s":"PANCAKESWAP:TOSTUSDT_A5BCCD","d":[]},{"s":"PANCAKESWAP:INVESTWBNB_2B43A6","d":[]},{"s":"KUCOIN:OUSDUSDT","d":[]},{"s":"HONEYSWAP:GNOUSDC_DD92AB","d":[]},{"s":"PANCAKESWAP:LAIKAWBNB_BAA69E.USD","d":[]},{"s":"PANCAKESWAP:YBKWBNB_FD3AEB","d":[]},{"s":"PANCAKESWAP:FTTWBNB_DA6F70.USD","d":[]},{"s":"KUCOIN:ABBCBTC","d":[]},{"s":"PANCAKESWAP:FLOKIBASEDAIWBNB_ED0CD1.USD","d":[]},{"s":"HONEYSWAP:CHICKWXDAI_6CBE7C.USD","d":[]},{"s":"PANCAKESWAP:UNCXWBNB_489714","d":[]},{"s":"PANCAKESWAP:WSAFUWBNB_075C77.USD","d":[]},{"s":"PANCAKESWAP:METAVWBNB_2B274E","d":[]},{"s":"PANCAKESWAP:WETHUSDT_910A8D","d":[]},{"s":"PANCAKESWAP:AIFLOKIWBNB_C50B4E.USD","d":[]},{"s":"PANCAKESWAP:MINISHIBWBNB_174013.USD","d":[]},{"s":"HONEYSWAP:SYMMHNY_3CBF43","d":[]},{"s":"PANCAKESWAP:HASHDEXWBNB_13D708.USD","d":[]},{"s":"PANCAKESWAP:CLEGWBNB_F0BB4A.USD","d":[]},{"s":"PANCAKESWAP:CNAMEBUSD_4A1D3B","d":[]},{"s":"PANCAKESWAP:UDAOROCK_29D4D9","d":[]},{"s":"KUCOIN:FIREUSDT","d":[]},{"s":"PANCAKESWAP:EGGPLUSUSDT_64037D","d":[]},{"s":"PANCAKESWAP:IMWBNB_442A29","d":[]},{"s":"HONEYSWAP:ANTWXDAI_502135.USD","d":[]},{"s":"OKX:XRPUSDC","d":[]},{"s":"PANCAKESWAP:ROCKETWBNB_A60118.USD","d":[]},{"s":"PANCAKESWAP:HFTWBNB_5453BA","d":[]},{"s":"PANCAKESWAP:TFSUSDT_C67E70","d":[]},{"s":"PANCAKESWAP:BAMIBUSD_70AF29","d":[]},{"s":"PANCAKESWAP:CACTUSWBNB_FF9C6B.USD","d":[]},{"s":"BINANCE:TFUELUSD","d":[]},{"s":"PANCAKESWAP:EGLDWBNB_CD6885.USD","d":[]},{"s":"PANCAKESWAP:PORNHUBBONKWBNB_E0EBE9","d":[]},{"s":"PANCAKESWAP:PAYWBNB_D28620","d":[]},{"s":"PANCAKESWAP:GPAWSWBNB_04B70B.USD","d":[]},{"s":"HONEYSWAP:TEQUILAWXDAI_8FC2FE.USD","d":[]},{"s":"PANCAKESWAP:COSWBNB_D41C9D.USD","d":[]},{"s":"PANCAKESWAP:FMBUSDT_65A882","d":[]},{"s":"PANCAKESWAP:SOKUWBNB_78EA31","d":[]},{"s":"PANCAKESWAP:AIGPTWBNB_383973","d":[]},{"s":"PANCAKESWAP:LSDUSDT_A75C7E","d":[]},{"s":"HONEYSWAP:BIDWXDAI_B41A23.USD","d":[]},{"s":"PANCAKESWAP:TKOWBNB_FFD4B2.USD","d":[]},{"s":"PANCAKESWAP:MOOVWBNB_CD106F.USD","d":[]},{"s":"PANCAKESWAP:MINIONSWBNB_285F03.USD","d":[]},{"s":"BINANCE:PHAUSD","d":[]},{"s":"PANCAKESWAP:YAMAWBNB_4C41D5.USD","d":[]},{"s":"PANCAKESWAP:OTWBNB_369C32","d":[]},{"s":"PANCAKESWAP:MEITUANUSDT_17D9ED","d":[]},{"s":"PANCAKESWAP:RAMUSDT_E3E5B8","d":[]},{"s":"PANCAKESWAP:ETWBNB_AAA4EB","d":[]},{"s":"PANCAKESWAP:INUSHAWBNB_6B91C1.USD","d":[]},{"s":"PANCAKESWAP:MTUSDT_BF4707","d":[]},{"s":"PANCAKESWAP:BIRDJSTX_AD07F1.USD","d":[]},{"s":"KUCOIN:OLEUSDT","d":[]},{"s":"PANCAKESWAP:BITVWBNB_150926.USD","d":[]},{"s":"PANCAKESWAP:OBSWBNB_9E3CB9","d":[]},{"s":"PANCAKESWAP:PTGWBNB_07B515","d":[]},{"s":"PANCAKESWAP:DAWBNB_2BADFB.USD","d":[]},{"s":"PANCAKESWAP:BABYFLOKIWBNB_E37B5F.USD","d":[]},{"s":"PANCAKESWAP:TCWBNB_543518","d":[]},{"s":"PANCAKESWAP:SABTCB_7164B9","d":[]},{"s":"PANCAKESWAP:BARWBNB_4D1ECC","d":[]},{"s":"PANCAKESWAP:FATWBNB_06C2EE.USD","d":[]},{"s":"PANCAKESWAP:BEATSWBNB_05CF29","d":[]},{"s":"PANCAKESWAP:MIAWBNB_3D0469","d":[]},{"s":"PANCAKESWAP:DRAGONBALLWBNB_7827D8.USD","d":[]},{"s":"PANCAKESWAP:CBETWBNB_C80379.USD","d":[]},{"s":"PANCAKESWAP:GMTUSDC_007EC6","d":[]},{"s":"KUCOIN:ORAIUSDT","d":[]},{"s":"HONEYSWAP:LEVINWXDAI_7B21FD.USD","d":[]},{"s":"PANCAKESWAP:PIRATECOINWBNB_6A9793.USD","d":[]},{"s":"HONEYSWAP:WETHGMLU_C5881A.USD","d":[]},{"s":"PANCAKESWAP:POWWBNB_BEF294.USD","d":[]},{"s":"PANCAKESWAP:GECUSDT_5DC4B9","d":[]},{"s":"PANCAKESWAP:DOUGHWBNB_F92D36.USD","d":[]},{"s":"PANCAKESWAP:OXBWBNB_03BA45.USD","d":[]},{"s":"PANCAKESWAP:ADAWBNB_BA51D1.USD","d":[]},{"s":"PANCAKESWAP:GGGWBNB_50390C.USD","d":[]},{"s":"PANCAKESWAP:GORILLAWBNB_3FA823","d":[]},{"s":"PANCAKESWAP:ALICEWBNB_CAD701","d":[]},{"s":"PANCAKESWAP:SPOWBNB_AD1661.USD","d":[]},{"s":"PANCAKESWAP:B69189BUSD_4B952B","d":[]},{"s":"PANCAKESWAP:ZOOWBNB_579BB1","d":[]},{"s":"PANCAKESWAP:DLABSWBNB_5815A1.USD","d":[]},{"s":"PANCAKESWAP:2023MOONWBNB_304491.USD","d":[]},{"s":"KUCOIN:GHXUSDT","d":[]},{"s":"HONEYSWAP:COMPWXDAI_C2FFBF.USD","d":[]},{"s":"PANCAKESWAP:XVSWBNB_7EB5D8.USD","d":[]},{"s":"PANCAKESWAP:SKMTWBNB_1311E4.USD","d":[]},{"s":"OKX:APEUSDT","d":[]},{"s":"HONEYSWAP:HEXWXDAI_B70B3F","d":[]},{"s":"PANCAKESWAP:GZONEWBNB_8ACB24.USD","d":[]},{"s":"KUCOIN:SOLVEUSDT","d":[]},{"s":"PANCAKESWAP:IRISWBNB_D83EFE","d":[]},{"s":"PANCAKESWAP:TFIWBNB_B1C508.USD","d":[]},{"s":"PANCAKESWAP:FRPNWBNB_36F466.USD","d":[]},{"s":"PANCAKESWAP:VACAYWBNB_67D9FD","d":[]},{"s":"PANCAKESWAP:WORLDCOINWBNB_63C8D2.USD","d":[]},{"s":"PANCAKESWAP:CSGUSDT_8E5936","d":[]},{"s":"OKX:QTUMBTC","d":[]},{"s":"HONEYSWAP:BAOWETH_52E9FE.USD","d":[]},{"s":"PANCAKESWAP:SILLYBONKWBNB_C3C782.USD","d":[]},{"s":"PANCAKESWAP:OROWBNB_F439F8","d":[]},{"s":"PANCAKESWAP:GF9WBNB_67B4A7","d":[]},{"s":"OKX:XRPUSDT","d":[]},{"s":"PANCAKESWAP:TITABUSD_A87A1C","d":[]},{"s":"PANCAKESWAP:FLOKIBASEDAIWBNB_ED0CD1","d":[]},{"s":"PANCAKESWAP:LTTWBNB_1E86BB","d":[]},{"s":"PANCAKESWAP:XRTBUSD_FDABFF","d":[]},{"s":"PANCAKESWAP:BOCWBNB_E35C9F.USD","d":[]},{"s":"PANCAKESWAP:TRDGWBNB_C5C0BE.USD","d":[]},{"s":"PANCAKESWAP:BAYEGODE_77D801.USD","d":[]},{"s":"HONEYSWAP:Y3CRVWXDAI_FF1DD0.USD","d":[]},{"s":"PANCAKESWAP:MCCUSDT_125990","d":[]},{"s":"PANCAKESWAP:METADOGEAIWBNB_E8B8E6","d":[]},{"s":"PANCAKESWAP:GODEUSDT_DE5D1C","d":[]},{"s":"PANCAKESWAP:SHIDOWBNB_08C7E9.USD","d":[]},{"s":"PANCAKESWAP:FTCUSDT_59DE92","d":[]},{"s":"PANCAKESWAP:SIMPWBNB_2920BA","d":[]},{"s":"BINANCE:HIFIUSDT.P","d":[]},{"s":"UPBIT:BATUSDT","d":[]},{"s":"PANCAKESWAP:P2PTXTWBNB_8BB1E0","d":[]},{"s":"OKX:SHIBEUR","d":[]},{"s":"HONEYSWAP:XCOMBWXDAI_9E8E5E","d":[]},{"s":"PANCAKESWAP:SHIBAWBNB_CDB901.USD","d":[]},{"s":"PANCAKESWAP:SKWBNB_DF16B9","d":[]},{"s":"UPBIT:KAVABTC","d":[]},{"s":"HONEYSWAP:DONUTHNY_5A385B","d":[]},{"s":"HONEYSWAP:SUSHIUSDC_D92627","d":[]},{"s":"PANCAKESWAP:HPWBNB_AF5D55.USD","d":[]},{"s":"PANCAKESWAP:TROLLWBNB_C85D64.USD","d":[]},{"s":"PANCAKESWAP:HIVEUSDT_D8EEAA","d":[]},{"s":"HONEYSWAP:HUSDWXDAI_D7B890.USD","d":[]},{"s":"PANCAKESWAP:POSIWBNB_254BAA","d":[]},{"s":"PANCAKESWAP:PEAKWBNB_41140A","d":[]},{"s":"PANCAKESWAP:PIG99WBNB_3041E2.USD","d":[]},{"s":"PANCAKESWAP:SOLKOL_0717BE","d":[]},{"s":"PANCAKESWAP:AIWETH_87B443","d":[]},{"s":"UPBIT:USDPBTC","d":[]},{"s":"PANCAKESWAP:ANARCHYWBNB_36ACA8.USD","d":[]},{"s":"BINANCE:MASKUSDT.P","d":[]},{"s":"PANCAKESWAP:WEBAIWBNB_1D643D","d":[]},{"s":"PANCAKESWAP:ATRBUSD_9A4BB3","d":[]},{"s":"PANCAKESWAP:CHEESEWBNB_6D16FB","d":[]},{"s":"PANCAKESWAP:MIRRORWBNB_9255EC","d":[]},{"s":"SUSHISWAPPOLYGON:ETH2XFLIPWETH_ADD053.USD","d":[]},{"s":"KUCOIN:TENETUSDT","d":[]},{"s":"PANCAKESWAP:GLBWBNB_E7FDD0","d":[]},{"s":"OKX:NEARUSDC","d":[]},{"s":"PANCAKESWAP:NUSAWBNB_10E1A9","d":[]},{"s":"PANCAKESWAP:NICHEMANWBNB_2F8693","d":[]},{"s":"PANCAKESWAP:KINGWBNB_236BB1","d":[]},{"s":"SUSHISWAP:VERSEWETH_BC3FFD","d":[]},{"s":"OKX:LINGUSDT","d":[]},{"s":"SUSHISWAP:YAMWETH_0F82E5.USD","d":[]},{"s":"PANCAKESWAP:BABYWBNB_AD1BFA","d":[]},{"s":"PANCAKESWAP:ZESWBNB_AD52FC.USD","d":[]},{"s":"PANCAKESWAP:GOGEWBNB_3686C1.USD","d":[]},{"s":"KUCOIN:NIBIUSDT","d":[]},{"s":"PANCAKESWAP:MOONCAKE_8B83FD","d":[]},{"s":"PANCAKESWAP:TCG2WBNB_66C227.USD","d":[]},{"s":"PANCAKESWAP:MYROINUWBNB_B9DD42","d":[]},{"s":"HONEYSWAP:AUDIOWXDAI_683721","d":[]},{"s":"SUSHISWAP:BPTWETH_570242","d":[]},{"s":"KUCOIN:KAIETH","d":[]},{"s":"BINANCE:LPTUSD","d":[]},{"s":"HONEYSWAP:XSUSHIWETH_98F4E6","d":[]},{"s":"PANCAKESWAP:DANCEWBNB_0D23C7.USD","d":[]},{"s":"PANCAKESWAP:FIGHTBUSD_B9378A","d":[]},{"s":"PANCAKESWAP:MCCWBNB_7ACADB.USD","d":[]},{"s":"PANCAKESWAP:YOURUSDT_6B5ABA","d":[]},{"s":"PANCAKESWAP:KONGWBNB_F773D1.USD","d":[]},{"s":"PANCAKESWAP:LCRWBNB_949292","d":[]},{"s":"PANCAKESWAP:JOKERUSDT_D19E67","d":[]},{"s":"PANCAKESWAP:MMPROUSDT_DE5B01","d":[]},{"s":"PANCAKESWAP:NASSRWBNB_072A96","d":[]},{"s":"PANCAKESWAP:FANTAWBNB_FE1279.USD","d":[]},{"s":"PANCAKESWAP:EACETH_CB14B5","d":[]},{"s":"PANCAKESWAP:MINIBABYDOGEWBNB_379718.USD","d":[]},{"s":"PANCAKESWAP:HOPIUMWBNB_997EF0","d":[]},{"s":"PANCAKESWAP:PEOPLEUSDT_F9D925","d":[]},{"s":"PANCAKESWAP:PTTWBNB_EA37C7","d":[]},{"s":"PANCAKESWAP:ATLBUSD_AA40DC","d":[]},{"s":"HONEYSWAP:AMISAGVE_401CBD.USD","d":[]},{"s":"KUCOIN:VRAUPUSDT","d":[]},{"s":"KUCOIN:QIBTC","d":[]},{"s":"PANCAKESWAP:VSTUSDT_E80DF5","d":[]},{"s":"PANCAKESWAP:ETFSWBNB_6FFA23","d":[]},{"s":"PANCAKESWAP:CARROTWBNB_3DC9EE.USD","d":[]},{"s":"PANCAKESWAP:GOLD8WBNB_768B64.USD","d":[]},{"s":"BINANCE:XAIUSDT.P","d":[]},{"s":"PANCAKESWAP:PANDORAFLOKIWBNB_13B96F","d":[]},{"s":"PANCAKESWAP:PTOOLSWBNB_2C1998.USD","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_BD5666.USD","d":[]},{"s":"PANCAKESWAP:PIPABUSD_F12D4B","d":[]},{"s":"PANCAKESWAP:AIPEPEWBNB_9DDBAE.USD","d":[]},{"s":"KUCOIN:SIMPUSDT","d":[]},{"s":"PANCAKESWAP:BURN30WBNB_6D3FEB.USD","d":[]},{"s":"HONEYSWAP:BFEDUSDC_30A6A1","d":[]},{"s":"KUCOIN:ZCXUSDT","d":[]},{"s":"KUCOIN:JUPUSDT","d":[]},{"s":"PANCAKESWAP:EBYTWBNB_861306","d":[]},{"s":"SUSHISWAPPOLYGON:KLIMAUSDC_5786B2","d":[]},{"s":"BINANCE:SXPUSDT.P","d":[]},{"s":"BINANCE:DEGOUSD","d":[]},{"s":"KUCOIN:ALPHAUSDT","d":[]},{"s":"PANCAKESWAP:PIUSDT_A52703","d":[]},{"s":"PANCAKESWAP:PANAWBNB_C1B8CC.USD","d":[]},{"s":"PANCAKESWAP:BURNKING20518B_78B00B.USD","d":[]},{"s":"PANCAKESWAP:MDAOWBNB_EE6A8C.USD","d":[]},{"s":"KUCOIN:OBIUSDT","d":[]},{"s":"KUCOIN:HIODBSUSDT","d":[]},{"s":"PANCAKESWAP:BTCBSCWBNB_46DEDF","d":[]},{"s":"PANCAKESWAP:BTCBETE_D0F48B","d":[]},{"s":"SUSHISWAP:SPELLWETH_B5DE0C","d":[]},{"s":"BINANCE:VICUSD","d":[]},{"s":"PANCAKESWAP:SUBJECT3WBNB_848807","d":[]},{"s":"BINANCE:CTSIUSD","d":[]},{"s":"PANCAKESWAP:MASUSDT_191F63","d":[]},{"s":"OKX:BNTUSDT","d":[]},{"s":"OKX:GLMRUSDT","d":[]},{"s":"KUCOIN:DCUSDT","d":[]},{"s":"PANCAKESWAP:ETFWBNB_88D1A9","d":[]},{"s":"PANCAKESWAP:WBNBBUSD_9BDEDB","d":[]},{"s":"UPBIT:PDABTC","d":[]},{"s":"SUSHISWAP:OCEANWETH_EE35E5.USD","d":[]},{"s":"KUCOIN:UNIKCS","d":[]},{"s":"PANCAKESWAP:VTRWBNB_61D930","d":[]},{"s":"PANCAKESWAP:ACCWBNB_286820.USD","d":[]},{"s":"PANCAKESWAP:XRSWBNB_30D291.USD","d":[]},{"s":"BINANCE:ZRXUSDT.P","d":[]},{"s":"PANCAKESWAP:BNRVWBNB_3F9A13","d":[]},{"s":"PANCAKESWAP:BMONWBNB_3C2B7B.USD","d":[]},{"s":"PANCAKESWAP:BABYLONGWBNB_E4956B.USD","d":[]},{"s":"PANCAKESWAP:TWEPWBNB_D41E2A.USD","d":[]},{"s":"BINANCE:IDEXUSDT.P","d":[]},{"s":"PANCAKESWAP:ANGELWBNB_3CA42E","d":[]},{"s":"PANCAKESWAP:QDXWBNB_FCC577","d":[]},{"s":"PANCAKESWAP:ETL20WBNB_CCFF17","d":[]},{"s":"PANCAKESWAP:SNWWBNB_7403B1.USD","d":[]},{"s":"PANCAKESWAP:POKERFIWBNB_F0107B.USD","d":[]},{"s":"HONEYSWAP:BAOWETH_52E9FE","d":[]},{"s":"PANCAKESWAP:SUCWBNB_69FAC9","d":[]},{"s":"PANCAKESWAP:RTUSDT_D3FC48","d":[]},{"s":"BINANCE:ACHUSD","d":[]},{"s":"PANCAKESWAP:UXEWBNB_4F9096.USD","d":[]},{"s":"BINANCE:KNCUSD","d":[]},{"s":"KUCOIN:TELETH","d":[]},{"s":"PANCAKESWAP:ETHUSDC_EA26B7","d":[]},{"s":"PANCAKESWAP:KGTWBNB_C5654E","d":[]},{"s":"HONEYSWAP:WCETHWXDAI_489F4A.USD","d":[]},{"s":"PANCAKESWAP:PIGSYWBNB_A7E877","d":[]},{"s":"SUSHISWAP:PXLDYWETH_E5F4C2.USD","d":[]},{"s":"PANCAKESWAP:ZEFIWBNB_7C020B","d":[]},{"s":"PANCAKESWAP:SPIDERMANWBNB_62BDD9.USD","d":[]},{"s":"PANCAKESWAP:COWSWBNB_33504F.USD","d":[]},{"s":"OKX:RSS3USDT","d":[]},{"s":"PANCAKESWAP:WELDWBNB_91BF1A.USD","d":[]},{"s":"KUCOIN:XMRETH","d":[]},{"s":"PANCAKESWAP:NVSWBNB_EB6677","d":[]},{"s":"BINANCE:GLMUSDT.P","d":[]},{"s":"PANCAKESWAP:GHTUSDT_F8CF57","d":[]},{"s":"PANCAKESWAP:HBGWBNB_00407C.USD","d":[]},{"s":"PANCAKESWAP:DTCWBNB_7905A6.USD","d":[]},{"s":"BINANCE:TKOUSD","d":[]},{"s":"PANCAKESWAP:AIONEWBNB_9019E8.USD","d":[]},{"s":"PANCAKESWAP:HODWBNB_434E3E","d":[]},{"s":"PANCAKESWAP:UNSUSDT_B40590","d":[]},{"s":"PANCAKESWAP:CXLMWBNB_015334","d":[]},{"s":"PANCAKESWAP:BRBWBNB_807039.USD","d":[]},{"s":"PANCAKESWAP:DERIBUSD_DC7188","d":[]},{"s":"PANCAKESWAP:RADR20WBNB_0894D9","d":[]},{"s":"PANCAKESWAP:DKUSDT_C8F0F8","d":[]},{"s":"PANCAKESWAP:JFIVEWBNB_1D5924","d":[]},{"s":"PANCAKESWAP:USCWBNB_E41E5A","d":[]},{"s":"PANCAKESWAP:WALBUSD_B28AF1","d":[]},{"s":"PANCAKESWAP:CLUNAWBNB_B3D9F9.USD","d":[]},{"s":"PANCAKESWAP:NBLWBNB_395D42","d":[]},{"s":"BINANCE:BICOUSDT.P","d":[]},{"s":"PANCAKESWAP:LMUSDT_15FB37","d":[]},{"s":"KUCOIN:DAGETH","d":[]},{"s":"PANCAKESWAP:BABYBNBWBNB_4E23DC.USD","d":[]},{"s":"KUCOIN:SHABTC","d":[]},{"s":"HONEYSWAP:BRIGHTGIV_094CF5","d":[]},{"s":"PANCAKESWAP:SFUNDWBNB_74FA51.USD","d":[]},{"s":"KUCOIN:IOSTBTC","d":[]},{"s":"PANCAKESWAP:FROYOWBNB_1CE763.USD","d":[]},{"s":"SUSHISWAPPOLYGON:XSUSHISUSHI_6A3BB9","d":[]},{"s":"PANCAKESWAP:CTYWBNB_0124D6","d":[]},{"s":"KUCOIN:MKRBTC","d":[]},{"s":"SUSHISWAPPOLYGON:INSURUSDC_6F2199","d":[]},{"s":"PANCAKESWAP:ZKBWBNB_CB9744.USD","d":[]},{"s":"HONEYSWAP:MDZAHNY_5140DC.USD","d":[]},{"s":"PANCAKESWAP:H2WBNB_37C880","d":[]},{"s":"PANCAKESWAP:DMXWBNB_B24916","d":[]},{"s":"PANCAKESWAP:CELAWBNB_EF8158.USD","d":[]},{"s":"PANCAKESWAP:VAULTUSDT_280925","d":[]},{"s":"PANCAKESWAP:MFWBNB_FA5299.USD","d":[]},{"s":"PANCAKESWAP:LITWBNB_60BB03","d":[]},{"s":"PANCAKESWAP:DSDWBNB_5F1ED5","d":[]},{"s":"PANCAKESWAP:MANGABUSD_CE23AC","d":[]},{"s":"HONEYSWAP:DHVWXDAI_14EE6D.USD","d":[]},{"s":"PANCAKESWAP:SUSHIETH_16AFC4.USD","d":[]},{"s":"PANCAKESWAP:BABYSORAWBNB_CBE893.USD","d":[]},{"s":"PANCAKESWAP:FENOMYWBNB_7302AA.USD","d":[]},{"s":"KUCOIN:LYMUSDT","d":[]},{"s":"PANCAKESWAP:LMNWBNB_367957","d":[]},{"s":"PANCAKESWAP:ASXUSDC_CDA88B","d":[]},{"s":"KUCOIN:KDAUSDT","d":[]},{"s":"PANCAKESWAP:METAWBNB_A74688.USD","d":[]},{"s":"KUCOIN:KCSUSDT","d":[]},{"s":"HONEYSWAP:FTMUSDT_9855CF","d":[]},{"s":"SUSHISWAP:WTONWETH_610468","d":[]},{"s":"PANCAKESWAP:AIRWBNB_E9A965","d":[]},{"s":"SUSHISWAP:DIAUSDC_C965BC","d":[]},{"s":"KUCOIN:ISMEUSDT","d":[]},{"s":"KUCOIN:OMBTC","d":[]},{"s":"PANCAKESWAP:XWGUSDC_936928","d":[]},{"s":"PANCAKESWAP:BEATSWBNB_05CF29.USD","d":[]},{"s":"KUCOIN:1EARTHUSDT","d":[]},{"s":"PANCAKESWAP:3DXYUSDT_24F3BB","d":[]},{"s":"PANCAKESWAP:ETERNALWBNB_BD26E0.USD","d":[]},{"s":"PANCAKESWAP:XFTUSDT_2E8012","d":[]},{"s":"PANCAKESWAP:GSDWBNB_7F2455","d":[]},{"s":"SUSHISWAP:KGFWETH_EE464A.USD","d":[]},{"s":"KUCOIN:ALGOETH","d":[]},{"s":"PANCAKESWAP:PULSEWBNB_261B66.USD","d":[]},{"s":"PANCAKESWAP:NFTGWBNB_891584","d":[]},{"s":"PANCAKESWAP:BLCWBNB_D92ED6","d":[]},{"s":"HONEYSWAP:FRACTIONMIVA_EC771F","d":[]},{"s":"HONEYSWAP:ETHIXWETH_2B8D7A","d":[]},{"s":"PANCAKESWAP:LUNABUSD_0F8E31","d":[]},{"s":"PANCAKESWAP:ARCASWBNB_ACBEA9.USD","d":[]},{"s":"KUCOIN:GALAUSDT","d":[]},{"s":"PANCAKESWAP:SPACEXWBNB_57C5C3.USD","d":[]},{"s":"PANCAKESWAP:MSCPWBNB_570D59","d":[]},{"s":"PANCAKESWAP:MOONERWBNB_653DB3.USD","d":[]},{"s":"PANCAKESWAP:INJWBNB_1BDCEB","d":[]},{"s":"PANCAKESWAP:APPAWBNB_8AE3FA.USD","d":[]},{"s":"KUCOIN:SEAMUSDT","d":[]},{"s":"OKX:AEVOUSDT","d":[]},{"s":"PANCAKESWAP:SAFUWBNB_4B7B69.USD","d":[]},{"s":"PANCAKESWAP:PEXWBNB_5CA96E.USD","d":[]},{"s":"KUCOIN:DPETUSDT","d":[]},{"s":"KUCOIN:IMXUSDT","d":[]},{"s":"PANCAKESWAP:Y24WBNB_446286.USD","d":[]},{"s":"PANCAKESWAP:WDPEWBNB_CE267B.USD","d":[]},{"s":"PANCAKESWAP:IOENBUSD_C0945B","d":[]},{"s":"KUCOIN:BALBTC","d":[]},{"s":"PANCAKESWAP:MARSWBNB_2A05BF","d":[]},{"s":"PANCAKESWAP:SATTWBNB_065024","d":[]},{"s":"KUCOIN:CELRUSDT","d":[]},{"s":"PANCAKESWAP:CATCOINWBNB_EF9AF6.USD","d":[]},{"s":"OKX:ACAUSDT","d":[]},{"s":"OKX:RENUSDT","d":[]},{"s":"PANCAKESWAP:FGDBUSD_351D99","d":[]},{"s":"PANCAKESWAP:EOTHWBNB_AA2314.USD","d":[]},{"s":"HONEYSWAP:FRIESWXDAI_108D18","d":[]},{"s":"PANCAKESWAP:SIDUSWBNB_AE03E6","d":[]},{"s":"PANCAKESWAP:JTTWBNB_5BC37A.USD","d":[]},{"s":"KUCOIN:EQXBTC","d":[]},{"s":"OKCOIN:BTCUSD","d":[]},{"s":"PANCAKESWAP:CPMWBNB_52B78C","d":[]},{"s":"BINANCE:BNBUSDT.P","d":[]},{"s":"PANCAKESWAP:ZMUSDT_FF69AC","d":[]},{"s":"PANCAKESWAP:HAYKALM_E6A78F.USD","d":[]},{"s":"PANCAKESWAP:BBCBUSD_4C5B60","d":[]},{"s":"OKX:OASUSDT","d":[]},{"s":"PANCAKESWAP:MOWAWBNB_C94214","d":[]},{"s":"HONEYSWAP:XOWLUSDC_6AE2E0","d":[]},{"s":"PANCAKESWAP:BFTWBNB_99C2D5.USD","d":[]},{"s":"PANCAKESWAP:MTXWBNB_A4F906","d":[]},{"s":"SUSHISWAP:VEGAWETH_29C827","d":[]},{"s":"KUCOIN:POLYXUSDT","d":[]},{"s":"PANCAKESWAP:HORSEAWBNB_5E90E8.USD","d":[]},{"s":"PANCAKESWAP:AERWBNB_6EA346","d":[]},{"s":"PANCAKESWAP:POLSWBNB_A11265","d":[]},{"s":"PANCAKESWAP:ATHUSDT_B9FBC2","d":[]},{"s":"PANCAKESWAP:TIPWBNB_9E5050","d":[]},{"s":"SUSHISWAP:LINKWETH_C40D16.USD","d":[]},{"s":"KUCOIN:SOLUSDC","d":[]},{"s":"PANCAKESWAP:PEAKWBNB_41140A.USD","d":[]},{"s":"PANCAKESWAP:FREEWBNB_24721E.USD","d":[]},{"s":"PANCAKESWAP:SMSSWBNB_00ECA3.USD","d":[]},{"s":"PANCAKESWAP:AIDTOKENWBNB_7CE628","d":[]},{"s":"KUCOIN:DOSEUSDC","d":[]},{"s":"OKX:DOGEUSDC","d":[]},{"s":"PANCAKESWAP:LINKSWBNB_0687C3","d":[]},{"s":"PANCAKESWAP:ABCDWBNB_D79308.USD","d":[]},{"s":"HONEYSWAP:TEQUILAHNY_1F7DAB.USD","d":[]},{"s":"SUSHISWAPPOLYGON:LINKWETH_74D23F","d":[]},{"s":"PANCAKESWAP:MILWBNB_D60ECD.USD","d":[]},{"s":"PANCAKESWAP:BCRUSDT_52C5ED","d":[]},{"s":"OKX:CHZUSDC","d":[]},{"s":"KUCOIN:GLMBTC","d":[]},{"s":"HONEYSWAP:COWWXDAI_CAB440","d":[]},{"s":"SUSHISWAP:CIGWETH_22B15C.USD","d":[]},{"s":"PANCAKESWAP:CDOWBNB_1370EE","d":[]},{"s":"PANCAKESWAP:IFITWBNB_1920B3.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_9ADE7C.USD","d":[]},{"s":"BINANCE:DUSKUSD","d":[]},{"s":"PANCAKESWAP:GBURNWBNB_FC9AD7","d":[]},{"s":"BINANCE:PHBUSDT.P","d":[]},{"s":"PANCAKESWAP:RTCUSDT_484243","d":[]},{"s":"HONEYSWAP:YFIWETH_E9A254.USD","d":[]},{"s":"PANCAKESWAP:LIBWBNB_65BABB","d":[]},{"s":"PANCAKESWAP:PEPEBURNWBNB_AF63E3.USD","d":[]},{"s":"KUCOIN:FSNUSDT","d":[]},{"s":"PANCAKESWAP:WISHWBNB_20EEF1.USD","d":[]},{"s":"KUCOIN:NXRAETH","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_93353A","d":[]},{"s":"PANCAKESWAP:MLWBNB_70F969","d":[]},{"s":"PANCAKESWAP:GOJOCOINWBNB_07273A","d":[]},{"s":"PANCAKESWAP:MGFWBNB_CE58AD.USD","d":[]},{"s":"PANCAKESWAP:WADDUPWBNB_98AD00.USD","d":[]},{"s":"PANCAKESWAP:UBXNUSDC_821B76","d":[]},{"s":"PANCAKESWAP:WCCUSDC_09EAD9","d":[]},{"s":"PANCAKESWAP:MOONFALLRABBITCOINUSDT_16FA27","d":[]},{"s":"PANCAKESWAP:COMPUWBNB_344A35","d":[]},{"s":"PANCAKESWAP:LSCUSDT_0228A9","d":[]},{"s":"BINANCE:OAXUSD","d":[]},{"s":"KUCOIN:VOYAUSDT","d":[]},{"s":"PANCAKESWAP:HGSWBNB_54C072","d":[]},{"s":"PANCAKESWAP:MILKWBNB_ABCB20","d":[]},{"s":"PANCAKESWAP:LIONWBNB_DD9E44","d":[]},{"s":"PANCAKESWAP:EBOXWBNB_80291D","d":[]},{"s":"HONEYSWAP:DIPWXDAI_7389E2.USD","d":[]},{"s":"PANCAKESWAP:BTCFUSDT_ADCBCC","d":[]},{"s":"KUCOIN:PREBTC","d":[]},{"s":"PANCAKESWAP:TITUSDT_5F3123","d":[]},{"s":"PANCAKESWAP:XLVWBNB_8600EA","d":[]},{"s":"PANCAKESWAP:BLDSWBNB_4D4EC3.USD","d":[]},{"s":"PANCAKESWAP:MILKBUSD_B09F51","d":[]},{"s":"PANCAKESWAP:FIBOPOLYUSDC_E115C1","d":[]},{"s":"PANCAKESWAP:MVUWBNB_6173A8.USD","d":[]},{"s":"PANCAKESWAP:PRPWBNB_A9FB76","d":[]},{"s":"PANCAKESWAP:HBYLUSDT_9E54CC","d":[]},{"s":"PANCAKESWAP:HAMSTERWBNB_6FE733.USD","d":[]},{"s":"PANCAKESWAP:XCBWBNB_476900","d":[]},{"s":"PANCAKESWAP:OVRWBNB_A73DF2.USD","d":[]},{"s":"PANCAKESWAP:XUSDWBNB_028AAB.USD","d":[]},{"s":"PANCAKESWAP:DOKENWBNB_C37E6E.USD","d":[]},{"s":"PANCAKESWAP:GAMERFIWBNB_A6F700","d":[]},{"s":"KUCOIN:TONUSDT","d":[]},{"s":"SUSHISWAP:PREMIAWETH_93E2F3","d":[]},{"s":"PANCAKESWAP:HKMOONWBNB_D5E2A0","d":[]},{"s":"PANCAKESWAP:GODUSDT_439F48","d":[]},{"s":"PANCAKESWAP:FARAWBNB_FFD50F.USD","d":[]},{"s":"PANCAKESWAP:GOCWBNB_1306AD","d":[]},{"s":"PANCAKESWAP:BITMOONWBNB_4FB328","d":[]},{"s":"SUSHISWAPPOLYGON:WFILWETH_21EF14.USD","d":[]},{"s":"PANCAKESWAP:HIGHERWBNB_5F8DA6.USD","d":[]},{"s":"PANCAKESWAP:CCYXWBNB_16AE37","d":[]},{"s":"PANCAKESWAP:GHTUSDT_E3EC3E","d":[]},{"s":"HONEYSWAP:HAUSAGVE_EF9384","d":[]},{"s":"KUCOIN:TXAUSDC","d":[]},{"s":"HONEYSWAP:WETHGNO_28DBD3","d":[]},{"s":"PANCAKESWAP:CURVEWBNB_6F18BB","d":[]},{"s":"OKX:ETHUSDC29H2024","d":[]},{"s":"PANCAKESWAP:DXWBNB_10DE2C","d":[]},{"s":"PANCAKESWAP:BEBEWBNB_0CD77F.USD","d":[]},{"s":"KUCOIN:LUNCUSDT","d":[]},{"s":"KUCOIN:FLUXBTC","d":[]},{"s":"KUCOIN:SCAUSDT","d":[]},{"s":"PANCAKESWAP:FURRYWBNB_B01651.USD","d":[]},{"s":"PANCAKESWAP:DGUSDT_158E4F","d":[]},{"s":"PANCAKESWAP:MASKWBNB_A0B896","d":[]},{"s":"KUCOIN:NEARUSDT","d":[]},{"s":"OKX:JOEUSDT","d":[]},{"s":"PANCAKESWAP:RBETWBNB_A18506","d":[]},{"s":"PANCAKESWAP:OTONUSDT_B22B35","d":[]},{"s":"PANCAKESWAP:DAYAOWBNB_A017D4.USD","d":[]},{"s":"PANCAKESWAP:CHARIZARDWBNB_0842C8","d":[]},{"s":"PANCAKESWAP:DACOINUSDT_5742DC","d":[]},{"s":"PANCAKESWAP:BRYWBNB_21DD71","d":[]},{"s":"PANCAKESWAP:ODSYWBNB_D5CDE9.USD","d":[]},{"s":"PANCAKESWAP:OXUSBUSD_E576BD","d":[]},{"s":"PANCAKESWAP:BABYYATANWBNB_6F7C74","d":[]},{"s":"PANCAKESWAP:CATPAYWBNB_D8EDAB.USD","d":[]},{"s":"HONEYSWAP:HNYGIV_08EA9F.USD","d":[]},{"s":"PANCAKESWAP:CTRL2XYWBNB_C683B1","d":[]},{"s":"KUCOIN:EULUSDT","d":[]},{"s":"PANCAKESWAP:UTUWBNB_BC6050","d":[]},{"s":"UPBIT:ARPABTC","d":[]},{"s":"OKX:ICXUSDT","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_6BC5FA.USD","d":[]},{"s":"PANCAKESWAP:OMAXWBNB_E9A645.USD","d":[]},{"s":"PANCAKESWAP:LYUMWBNB_9A9E1D","d":[]},{"s":"PANCAKESWAP:ZINUWBNB_1EBAD0","d":[]},{"s":"PANCAKESWAP:PALWORLDWBNB_D735AF.USD","d":[]},{"s":"KUCOIN:ORNUSDT","d":[]},{"s":"PANCAKESWAP:CCWBNB_AF345D.USD","d":[]},{"s":"PANCAKESWAP:PENDLETHOREUM_1A1EE6","d":[]},{"s":"PANCAKESWAP:CPSUSDT_60875A","d":[]},{"s":"PANCAKESWAP:PULIWBNB_3FF5CB.USD","d":[]},{"s":"PANCAKESWAP:AREAWBNB_29C8B3","d":[]},{"s":"PANCAKESWAP:MILKYWBNB_210616.USD","d":[]},{"s":"PANCAKESWAP:RNMWBNB_676B5A.USD","d":[]},{"s":"PANCAKESWAP:CEEKWBNB_046A9B","d":[]},{"s":"PANCAKESWAP:REALSMURFCATWBNB_192DB5","d":[]},{"s":"KUCOIN:MARS4USDT","d":[]},{"s":"PANCAKESWAP:VSLWBNB_6AC9CC","d":[]},{"s":"PANCAKESWAP:BPAYWBNB_5AEDB9.USD","d":[]},{"s":"PANCAKESWAP:DERCUSDT_A26958","d":[]},{"s":"HONEYSWAP:WATERFOX_FD30E3","d":[]},{"s":"PANCAKESWAP:INTERUSDT_142E70","d":[]},{"s":"PANCAKESWAP:ELDABUSD_F284F0","d":[]},{"s":"PANCAKESWAP:FLOKITAWBNB_641F45.USD","d":[]},{"s":"PANCAKESWAP:GROKXAIWBNB_CA5C44","d":[]},{"s":"PANCAKESWAP:KALMBUSD_B7890A","d":[]},{"s":"PANCAKESWAP:GMWBNB_8D1E15.USD","d":[]},{"s":"PANCAKESWAP:SBQWBNB_FA8F5F.USD","d":[]},{"s":"PANCAKESWAP:SORAAIWBNB_3A77A5","d":[]},{"s":"PANCAKESWAP:BOBOUSDT_5989E0","d":[]},{"s":"UPBIT:SOLBTC","d":[]},{"s":"PANCAKESWAP:TUNAWBNB_607439.USD","d":[]},{"s":"HONEYSWAP:AMISWXDAI_BEC1B4","d":[]},{"s":"PANCAKESWAP:GORILLAWBNB_3FA823.USD","d":[]},{"s":"PANCAKESWAP:GBURNGRV_0640A5.USD","d":[]},{"s":"PANCAKESWAP:BTBWBNB_A99582.USD","d":[]},{"s":"PANCAKESWAP:GHNYWBNB_352008","d":[]},{"s":"HONEYSWAP:FRWXDAI_46A27B.USD","d":[]},{"s":"PANCAKESWAP:KERMITWBNB_5B5ED5","d":[]},{"s":"PANCAKESWAP:ORIGENWBNB_56CFEC.USD","d":[]},{"s":"PANCAKESWAP:YDZWBNB_BE3997.USD","d":[]},{"s":"PANCAKESWAP:SQUIDBTCB_CE2F46.USD","d":[]},{"s":"PANCAKESWAP:LITUSDT_CDA572","d":[]},{"s":"KUCOIN:JASMYUSDT","d":[]},{"s":"PANCAKESWAP:NRWUSDT_3EBE01","d":[]},{"s":"PANCAKESWAP:BDDUSDT_969AD7","d":[]},{"s":"PANCAKESWAP:PNTHRWBNB_FAEB1B.USD","d":[]},{"s":"PANCAKESWAP:CCHGUSDT_A8BAB1","d":[]},{"s":"PANCAKESWAP:FROYOWBNB_1CE763","d":[]},{"s":"PANCAKESWAP:MAGMSTR_08526C","d":[]},{"s":"KUCOIN:AGIXBTC","d":[]},{"s":"PANCAKESWAP:L3USDT_1D50C9","d":[]},{"s":"PANCAKESWAP:CTRWBNB_7956F3","d":[]},{"s":"HONEYSWAP:HEXHNY_E82659","d":[]},{"s":"PANCAKESWAP:EMBRWBNB_D86389","d":[]},{"s":"PANCAKESWAP:MASKWBNB_A0B896.USD","d":[]},{"s":"PANCAKESWAP:BABYRABBITWBNB_4255F0.USD","d":[]},{"s":"HONEYSWAP:NCRWXDAI_7A8E7F","d":[]},{"s":"KUCOIN:ADAUSDT.3L","d":[]},{"s":"PANCAKESWAP:ZYWBNB_9188F2.USD","d":[]},{"s":"PANCAKESWAP:PEPOWBNB_EF43E9.USD","d":[]},{"s":"PANCAKESWAP:ALPACAWBNB_1099C2","d":[]},{"s":"PANCAKESWAP:OREWBNB_BE133C.USD","d":[]},{"s":"PANCAKESWAP:GALAXYGLC_BCE674.USD","d":[]},{"s":"UPBIT:BATBTC","d":[]},{"s":"PANCAKESWAP:LSDTCZUSD_A98F8B","d":[]},{"s":"PANCAKESWAP:WVAULTWBNB_5AB168.USD","d":[]},{"s":"PANCAKESWAP:GEUROWBNB_5AADC6","d":[]},{"s":"PANCAKESWAP:AIDOGEMINIWBNB_BCAC09","d":[]},{"s":"HONEYSWAP:ZRXWXDAI_1BEC43.USD","d":[]},{"s":"PANCAKESWAP:PROPELWBNB_49FB78","d":[]},{"s":"PANCAKESWAP:1314USDT_4E510D","d":[]},{"s":"PANCAKESWAP:GBNWBNB_274986","d":[]},{"s":"PANCAKESWAP:DREAMPADWBNB_96A434.USD","d":[]},{"s":"PANCAKESWAP:SLTWBNB_07971A","d":[]},{"s":"PANCAKESWAP:AIPWBNB_6B5138","d":[]},{"s":"PANCAKESWAP:TBLWBNB_A75DAC","d":[]},{"s":"KUCOIN:YFDAIBTC","d":[]},{"s":"PANCAKESWAP:AITSWBNB_4F8181","d":[]},{"s":"PANCAKESWAP:NINOBUSD_FB84DF","d":[]},{"s":"HONEYSWAP:NUGGWXDAI_51D800.USD","d":[]},{"s":"OKX:LUNAUSDT","d":[]},{"s":"HONEYSWAP:JPYCWXDAI_97BEB9","d":[]},{"s":"PANCAKESWAP:DJDLUSDT_A0856C","d":[]},{"s":"PANCAKESWAP:HAIBUSD_933F1B","d":[]},{"s":"PANCAKESWAP:HEYIUSDT_B42884","d":[]},{"s":"PANCAKESWAP:QUIDDWBNB_D6D206.USD","d":[]},{"s":"SUSHISWAP:TGTWETH_34E26D.USD","d":[]},{"s":"PANCAKESWAP:SAUDISHIBWBNB_296F1C.USD","d":[]},{"s":"PANCAKESWAP:DOBOWBNB_BE8083.USD","d":[]},{"s":"PANCAKESWAP:IPEPEWBNB_FA8158","d":[]},{"s":"PANCAKESWAP:CUBWBNB_7BAE0D.USD","d":[]},{"s":"PANCAKESWAP:SHELLUSDT_4FE5FD","d":[]},{"s":"PANCAKESWAP:METAUSDT_E2EBDF","d":[]},{"s":"PANCAKESWAP:MGTWBNB_6E30B2.USD","d":[]},{"s":"PANCAKESWAP:BOTBUSD_E52BE9","d":[]},{"s":"PANCAKESWAP:AITNUSDT_650628","d":[]},{"s":"BINANCE:NMRUSDT.P","d":[]},{"s":"PANCAKESWAP:ELVNBUSD_6D7E65","d":[]},{"s":"UPBIT:GLMRBTC","d":[]},{"s":"PANCAKESWAP:WBFUSDT_E13BC0","d":[]},{"s":"PANCAKESWAP:SURV20WBNB_A2FC25.USD","d":[]},{"s":"KUCOIN:CSIXETH","d":[]},{"s":"HONEYSWAP:MANAXCOMB_FD2082","d":[]},{"s":"PANCAKESWAP:CHATUSDT_BF1573","d":[]},{"s":"HONEYSWAP:XBRICKWXDAI_7FEB0D.USD","d":[]},{"s":"PANCAKESWAP:NBLWBNB_395D42.USD","d":[]},{"s":"PANCAKESWAP:DADAWBNB_B9F257","d":[]},{"s":"HONEYSWAP:XYOWXDAI_F9CAD1.USD","d":[]},{"s":"BINANCE:KLAYUSDT.P","d":[]},{"s":"PANCAKESWAP:TAUWBNB_F94369","d":[]},{"s":"SUSHISWAPPOLYGON:AURUMWMATIC_91670A","d":[]},{"s":"PANCAKESWAP:OCTAVUSBUSD_A25787","d":[]},{"s":"PANCAKESWAP:VPCMT_230048.USD","d":[]},{"s":"PANCAKESWAP:BSHIBAWBNB_1745C8.USD","d":[]},{"s":"OKX:APTUSDC","d":[]},{"s":"PANCAKESWAP:UPDOGWBNB_817345.USD","d":[]},{"s":"KUCOIN:GMTUSDT.3S","d":[]},{"s":"HONEYSWAP:DONUTDAI_F8A912","d":[]},{"s":"PANCAKESWAP:HPCWBNB_655D04","d":[]},{"s":"PANCAKESWAP:PRINCEFLOKIWBNB_324D7B.USD","d":[]},{"s":"PANCAKESWAP:POKEGROKWBNB_BDC9A8.USD","d":[]},{"s":"PANCAKESWAP:STREETDOGSWBNB_17ED3C","d":[]},{"s":"PANCAKESWAP:TIMEWBNB_A5EBD1","d":[]},{"s":"PANCAKESWAP:SFCUSDT_1DF014","d":[]},{"s":"PANCAKESWAP:TITIWBNB_81B3E2.USD","d":[]},{"s":"PANCAKESWAP:ANKRBNBWBNB_02E387","d":[]},{"s":"KUCOIN:OGNUSDT","d":[]},{"s":"PANCAKESWAP:FAMEWBNB_38C1F7.USD","d":[]},{"s":"KUCOIN:XYOUSDT","d":[]},{"s":"PANCAKESWAP:RISCWBNB_0BBAA9.USD","d":[]},{"s":"KUCOIN:TUSDT","d":[]},{"s":"HONEYSWAP:FRACTIONWXDAI_53704A.USD","d":[]},{"s":"OKX:TRBUSDT","d":[]},{"s":"PANCAKESWAP:NBUSDT_6AF912","d":[]},{"s":"PANCAKESWAP:DGWBNB_8DDDF4","d":[]},{"s":"PANCAKESWAP:IPCUSDT_35650A","d":[]},{"s":"PANCAKESWAP:NELBUSD_EF18C1","d":[]},{"s":"PANCAKESWAP:XGROWBNB_DC6125.USD","d":[]},{"s":"PANCAKESWAP:TUMWBNB_B53992.USD","d":[]},{"s":"BINANCE:MLNUSD","d":[]},{"s":"PANCAKESWAP:ZCTDAOUSDT_8FB603","d":[]},{"s":"PANCAKESWAP:MGPWBNB_2B3DBB","d":[]},{"s":"KUCOIN:POLCUSDT","d":[]},{"s":"PANCAKESWAP:FLOKICEOWBNB_E8144B.USD","d":[]},{"s":"KUCOIN:ALTUSDT","d":[]},{"s":"PANCAKESWAP:FAIRUSDT_4D000B","d":[]},{"s":"PANCAKESWAP:CHEELUSDT_FE155C","d":[]},{"s":"PANCAKESWAP:SAFEMARSWBNB_FA8387","d":[]},{"s":"BINANCE:TLMUSDT.P","d":[]},{"s":"BINANCE:LRCUSDT.P","d":[]},{"s":"PANCAKESWAP:SCATWBNB_20DED7.USD","d":[]},{"s":"PANCAKESWAP:LIEDWBNB_3892EF.USD","d":[]},{"s":"PANCAKESWAP:SCVWBNB_550242.USD","d":[]},{"s":"PANCAKESWAP:CX100WBNB_ED3B25","d":[]},{"s":"PANCAKESWAP:ASXETH_A97560.USD","d":[]},{"s":"OKX:KCALUSDT","d":[]},{"s":"PANCAKESWAP:WILDWBNB_2D321D","d":[]},{"s":"KUCOIN:DOVIUSDT","d":[]},{"s":"PANCAKESWAP:HYKWBNB_D94470.USD","d":[]},{"s":"PANCAKESWAP:HAPPYWBNB_EDF4CC","d":[]},{"s":"PANCAKESWAP:SRDWBNB_1F3A87.USD","d":[]},{"s":"PANCAKESWAP:ALPHAWBNB_ACF47C.USD","d":[]},{"s":"PANCAKESWAP:HELLOWBNB_54E635","d":[]},{"s":"PANCAKESWAP:BLUWBNB_D7D769","d":[]},{"s":"HONEYSWAP:LINKWBTC_8F8BA7.USD","d":[]},{"s":"BINANCE:BLURUSDT.P","d":[]},{"s":"PANCAKESWAP:GEMINIWBNB_7C8B0A.USD","d":[]},{"s":"SUSHISWAP:WASABIWETH_8F9EF7","d":[]},{"s":"PANCAKESWAP:AVOWBNB_8524BE.USD","d":[]},{"s":"PANCAKESWAP:BSCSWBNB_9A590A.USD","d":[]},{"s":"PANCAKESWAP:0XFIWBNB_753E4B.USD","d":[]},{"s":"PANCAKESWAP:AFPBUSD_2CE4AE","d":[]},{"s":"PANCAKESWAP:PEPEWETH_982CB5","d":[]},{"s":"PANCAKESWAP:MNGWBNB_D87D5E","d":[]},{"s":"PANCAKESWAP:CORAIBUSD_5F0BF8","d":[]},{"s":"PANCAKESWAP:EAIWBNB_9A850C","d":[]},{"s":"PANCAKESWAP:BATHUSDT_51C525","d":[]},{"s":"PANCAKESWAP:TENWWBNB_8BB13B","d":[]},{"s":"BINANCE:WOOUSDT.P","d":[]},{"s":"PANCAKESWAP:DUELWBNB_0D1F26.USD","d":[]},{"s":"PANCAKESWAP:AHLBUSD_CAEBA8","d":[]},{"s":"BINANCE:XNOUSD","d":[]},{"s":"PANCAKESWAP:DEBTBEV_F5E2AD.USD","d":[]},{"s":"PANCAKESWAP:CAIWBNB_C0A6E6.USD","d":[]},{"s":"BINANCE:DARUSD","d":[]},{"s":"PANCAKESWAP:CTNRWBNB_15D080","d":[]},{"s":"PANCAKESWAP:DARAWBNB_B50642.USD","d":[]},{"s":"PANCAKESWAP:GOVBUSD_EB06BC","d":[]},{"s":"PANCAKESWAP:HOKAWBNB_DB8F2D.USD","d":[]},{"s":"BINANCE:CELOUSDT.P","d":[]},{"s":"PANCAKESWAP:DGODCZUSD_C0B4DC","d":[]},{"s":"KUCOIN:QIUSDT","d":[]},{"s":"PANCAKESWAP:LIMEWBNB_7FCF9B","d":[]},{"s":"PANCAKESWAP:CHAPZWBNB_2C56CD","d":[]},{"s":"PANCAKESWAP:ADOBUSD_AC7877","d":[]},{"s":"PANCAKESWAP:BGVTWBNB_007A5E.USD","d":[]},{"s":"OKX:TRXEUR","d":[]},{"s":"KUCOIN:USDTDAI","d":[]},{"s":"PANCAKESWAP:BSCEPKUSDT_221063","d":[]},{"s":"PANCAKESWAP:SPEPEWBNB_B5DAE7","d":[]},{"s":"PANCAKESWAP:PEFIBUSD_ED93EF","d":[]},{"s":"OKX:STORJUSDC","d":[]},{"s":"PANCAKESWAP:LAUNCHWBNB_770DF1","d":[]},{"s":"PANCAKESWAP:AMTWBNB_DFA41B.USD","d":[]},{"s":"BINANCE:OGNUSD","d":[]},{"s":"PANCAKESWAP:GREEDWBNB_CDFF87.USD","d":[]},{"s":"BINANCE:RIFUSD","d":[]},{"s":"PANCAKESWAP:BABYELONWBNB_04C6C9.USD","d":[]},{"s":"PANCAKESWAP:MAUSDT_484E13","d":[]},{"s":"SUSHISWAP:XCRMRKUSDT_9B880D","d":[]},{"s":"PANCAKESWAP:SPACOINWBNB_DB3179","d":[]},{"s":"PANCAKESWAP:REDEXUSDT_BC09FC","d":[]},{"s":"UPBIT:JSTBTC","d":[]},{"s":"OKX:ETHUSD28M2024","d":[]},{"s":"PANCAKESWAP:RADARWBNB_7FF4B9","d":[]},{"s":"PANCAKESWAP:ENERGYWBNB_498650.USD","d":[]},{"s":"PANCAKESWAP:BSTCUSDT_12F30E","d":[]},{"s":"PANCAKESWAP:BBSBUSD_66D7AB","d":[]},{"s":"HONEYSWAP:MEMEWXDAI_5CE261","d":[]},{"s":"HONEYSWAP:FTMGNO_44EE9A.USD","d":[]},{"s":"PANCAKESWAP:BFLOKIWBNB_511F69","d":[]},{"s":"OKX:FRONTUSDT","d":[]},{"s":"PANCAKESWAP:ARORWBNB_08C466.USD","d":[]},{"s":"PANCAKESWAP:SGMTWBNB_F102E9","d":[]},{"s":"UPBIT:ACMBTC","d":[]},{"s":"PANCAKESWAP:GFTUSDT_55C9E5","d":[]},{"s":"PANCAKESWAP:BR34PWBNB_70E882.USD","d":[]},{"s":"PANCAKESWAP:BSCPADWBNB_BA0166.USD","d":[]},{"s":"PANCAKESWAP:WBGLUSDT_9F8274","d":[]},{"s":"PANCAKESWAP:UARTUSDT_2CA0C5","d":[]},{"s":"HONEYSWAP:MUGWXDAI_943367","d":[]},{"s":"PANCAKESWAP:HKTWBNB_5411DD","d":[]},{"s":"PANCAKESWAP:NOTEUSDT_BC1147","d":[]},{"s":"PANCAKESWAP:BABYBNBWBNB_85BCBD.USD","d":[]},{"s":"PANCAKESWAP:BMWWBNB_83310C","d":[]},{"s":"KUCOIN:BALETH","d":[]},{"s":"PANCAKESWAP:WGCWBNB_BF1A60","d":[]},{"s":"HONEYSWAP:WETHBTCTRADE_B6AD3C.USD","d":[]},{"s":"PANCAKESWAP:SWAPZWBNB_82D86B.USD","d":[]},{"s":"PANCAKESWAP:UCONWBNB_9AD2D9.USD","d":[]},{"s":"PANCAKESWAP:DORKLWBNB_F9CE57.USD","d":[]},{"s":"PANCAKESWAP:LMNWBNB_367957.USD","d":[]},{"s":"OKX:NEARBTC","d":[]},{"s":"PANCAKESWAP:CAKEHOOK_9E9B76.USD","d":[]},{"s":"PANCAKESWAP:OPCATWBNB_910CDC.USD","d":[]},{"s":"PANCAKESWAP:HECTWBNB_00EFA2","d":[]},{"s":"PANCAKESWAP:HODLWBNB_F96B0D","d":[]},{"s":"OKX:DGBUSDT","d":[]},{"s":"PANCAKESWAP:NEUROSWBNB_E30410.USD","d":[]},{"s":"PANCAKESWAP:LTUSDT_3003E8","d":[]},{"s":"PANCAKESWAP:WFTCFTC_0C25D2.USD","d":[]},{"s":"KUCOIN:PYRUSDT","d":[]},{"s":"KUCOIN:GFTBTC","d":[]},{"s":"PANCAKESWAP:METADOGEWBNB_67D6C4","d":[]},{"s":"PANCAKESWAP:SRTWBNB_087D04","d":[]},{"s":"PANCAKESWAP:ONIWBNB_225ABA","d":[]},{"s":"KUCOIN:SHIBUSDC","d":[]},{"s":"KUCOIN:ALPINEUSDT","d":[]},{"s":"PANCAKESWAP:YELWBNB_8290D3","d":[]},{"s":"KUCOIN:XEMUSDT","d":[]},{"s":"PANCAKESWAP:MOONLIGHTWBNB_C183FC.USD","d":[]},{"s":"PANCAKESWAP:DNBUSDT_5A022F","d":[]},{"s":"PANCAKESWAP:MLTWBNB_560B96","d":[]},{"s":"BINANCE:XRPUSDC.P","d":[]},{"s":"PANCAKESWAP:NUKEMUSDT_F59EFD","d":[]},{"s":"PANCAKESWAP:METACATEAIWBNB_A2D97D","d":[]},{"s":"PANCAKESWAP:CRAZYUSDT_0E9840","d":[]},{"s":"PANCAKESWAP:WNDRWBNB_C96107.USD","d":[]},{"s":"SUSHISWAPPOLYGON:UNITYWMATIC_509645.USD","d":[]},{"s":"PANCAKESWAP:IDYPWBNB_1BC61D","d":[]},{"s":"KUCOIN:SNXETH","d":[]},{"s":"PANCAKESWAP:EGCWBNB_D254A3.USD","d":[]},{"s":"PANCAKESWAP:DOGEKINGWBNB_D28DAE","d":[]},{"s":"PANCAKESWAP:GUARDWBNB_72CB71.USD","d":[]},{"s":"PANCAKESWAP:2049WBNB_CC37E6","d":[]},{"s":"HONEYSWAP:ALBCWXDAI_C24980.USD","d":[]},{"s":"KUCOIN:SUIAUSDT","d":[]},{"s":"BINANCE:MOVRUSDT.P","d":[]},{"s":"BINANCE:BTCUSDT29H2024","d":[]},{"s":"OKX:KP3RUSDT","d":[]},{"s":"PANCAKESWAP:DPZWBNB_ADE807.USD","d":[]},{"s":"PANCAKESWAP:MVTPUSDT_8DC45E","d":[]},{"s":"PANCAKESWAP:ASSWBNB_2407A0","d":[]},{"s":"PANCAKESWAP:LENDAWBNB_52711F","d":[]},{"s":"PANCAKESWAP:JIJIWBNB_3E4F31","d":[]},{"s":"PANCAKESWAP:BUNNYWBNB_5AFEF8.USD","d":[]},{"s":"SUSHISWAP:BENJIWETH_AF429A.USD","d":[]},{"s":"PANCAKESWAP:XAIWBNB_4A52AE.USD","d":[]},{"s":"PANCAKESWAP:XSPACEWBNB_AF3BD9","d":[]},{"s":"PANCAKESWAP:PEPEBNBWBNB_F45EF0","d":[]},{"s":"PANCAKESWAP:CCGDSWBNB_500B31","d":[]},{"s":"PANCAKESWAP:CRUXWBNB_3C4247","d":[]},{"s":"PANCAKESWAP:DOGEDOGE_8266E0.USD","d":[]},{"s":"BINANCE:GMXUSDT.P","d":[]},{"s":"PANCAKESWAP:LCRWBNB_949292.USD","d":[]},{"s":"PANCAKESWAP:CNFWBNB_C66821","d":[]},{"s":"PANCAKESWAP:BTBSWBNB_BBBD82","d":[]},{"s":"KUCOIN:IDEAUSDT","d":[]},{"s":"PANCAKESWAP:DEBTXPLR_213103.USD","d":[]},{"s":"PANCAKESWAP:RETROWBNB_98EFD6.USD","d":[]},{"s":"PANCAKESWAP:PIPWBNB_3605B0","d":[]},{"s":"PANCAKESWAP:NEXMWBNB_E1EF30","d":[]},{"s":"PANCAKESWAP:MATCHWBNB_91DB3A.USD","d":[]},{"s":"PANCAKESWAP:LTTUSDC_61E29E","d":[]},{"s":"PANCAKESWAP:SFCVPC_EA5810","d":[]},{"s":"PANCAKESWAP:UNICWBNB_0CC748.USD","d":[]},{"s":"PANCAKESWAP:GPUWETH_C44C63","d":[]},{"s":"PANCAKESWAP:TURTLEKINGWBNB_785CD5.USD","d":[]},{"s":"PANCAKESWAP:MFETWBNB_9EDF2E","d":[]},{"s":"PANCAKESWAP:CRUSDT_B068DC","d":[]},{"s":"PANCAKESWAP:SFEXWBNB_15F189","d":[]},{"s":"BINANCE:RNDRUSDT.P","d":[]},{"s":"PANCAKESWAP:BABYDOGEINUWBNB_99F513","d":[]},{"s":"HONEYSWAP:ADADAI_A23BBD","d":[]},{"s":"PANCAKESWAP:RPGWBNB_335C49","d":[]},{"s":"PANCAKESWAP:SWTWBNB_3A3004.USD","d":[]},{"s":"PANCAKESWAP:WISBSBNB_A43014.USD","d":[]},{"s":"PANCAKESWAP:SNFTUSDT_218BC6","d":[]},{"s":"SUSHISWAPPOLYGON:GHSTWMATIC_F69E93.USD","d":[]},{"s":"PANCAKESWAP:CSPIN_35CAEC.USD","d":[]},{"s":"PANCAKESWAP:HZSUSDT_DB8B3C","d":[]},{"s":"PANCAKESWAP:LIQRWBNB_E1CEAD.USD","d":[]},{"s":"PANCAKESWAP:ZGLWBNB_7937B0","d":[]},{"s":"PANCAKESWAP:NFTSTYLEWBNB_D7010E.USD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_9B929F.USD","d":[]},{"s":"PANCAKESWAP:BTLBUSD_737A2F","d":[]},{"s":"PANCAKESWAP:MUSICWBNB_1D6828.USD","d":[]},{"s":"PANCAKESWAP:ARBWBNB_68D7DA.USD","d":[]},{"s":"KUCOIN:LENDSUSDT","d":[]},{"s":"PANCAKESWAP:HOLOWBNB_2C8D77","d":[]},{"s":"KUCOIN:NEOKCS","d":[]},{"s":"PANCAKESWAP:WAMBUSD_C1FE03","d":[]},{"s":"PANCAKESWAP:GSZCWBNB_BF1762","d":[]},{"s":"PANCAKESWAP:FOAWBNB_41EB46.USD","d":[]},{"s":"PANCAKESWAP:KOJIV2WBNB_AB2FED","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_C17D23","d":[]},{"s":"PANCAKESWAP:DOUGHWBNB_F92D36","d":[]},{"s":"PANCAKESWAP:HLSWBNB_51ED5F.USD","d":[]},{"s":"PANCAKESWAP:SHILLWBNB_FED0E4","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_0CD82A","d":[]},{"s":"PANCAKESWAP:ZILLACOINWBNB_632DC6.USD","d":[]},{"s":"PANCAKESWAP:LSRWBNB_4412D3","d":[]},{"s":"PANCAKESWAP:INDIAWBNB_139722.USD","d":[]},{"s":"KUCOIN:CHZUSDT","d":[]},{"s":"PANCAKESWAP:BECHWBNB_F1A006","d":[]},{"s":"PANCAKESWAP:SANTAWBNB_FDF3B6","d":[]},{"s":"PANCAKESWAP:KKMAWBNB_A63736","d":[]},{"s":"PANCAKESWAP:PEPEAICEOWBNB_151441","d":[]},{"s":"PANCAKESWAP:KSYUSDT_C69229","d":[]},{"s":"PANCAKESWAP:BSCHOUSDT_C1B5CE","d":[]},{"s":"PANCAKESWAP:ABBYUSDT_C029AD","d":[]},{"s":"PANCAKESWAP:BFWBNB_72AA5F.USD","d":[]},{"s":"PANCAKESWAP:TLWBNB_F79536","d":[]},{"s":"PANCAKESWAP:METANIAWBNB_EA777D","d":[]},{"s":"PANCAKESWAP:SWPRSWBNB_5B7ECF","d":[]},{"s":"KUCOIN:AAVEUSDT.3S","d":[]},{"s":"PANCAKESWAP:AFDWBNB_2139C4","d":[]},{"s":"PANCAKESWAP:WSYNTHWBNB_B5D6C2","d":[]},{"s":"PANCAKESWAP:SINBUSD_42424A","d":[]},{"s":"PANCAKESWAP:WGCWBNB_07A933.USD","d":[]},{"s":"UPBIT:STGBTC","d":[]},{"s":"PANCAKESWAP:ROCKETUSDT_F52786","d":[]},{"s":"KUCOIN:CYBERUSDT","d":[]},{"s":"PANCAKESWAP:MOABWBNB_A15E5D","d":[]},{"s":"PANCAKESWAP:BURN30WBNB_6D3FEB","d":[]},{"s":"KUCOIN:LPTUSDT","d":[]},{"s":"PANCAKESWAP:NMBTCUSDT_E82248","d":[]},{"s":"PANCAKESWAP:ZEFIWBNB_7C020B.USD","d":[]},{"s":"PANCAKESWAP:EYGUSDT_6F9E9D","d":[]},{"s":"KUCOIN:ETHUSDT","d":[]},{"s":"PANCAKESWAP:EMAGICWBNB_42FFEF.USD","d":[]},{"s":"KUCOIN:KOKUSDT","d":[]},{"s":"PANCAKESWAP:GSKWBNB_3C0EC4.USD","d":[]},{"s":"PANCAKESWAP:MARSUSDT_AEF21F","d":[]},{"s":"PANCAKESWAP:SHNWBNB_68C2DD","d":[]},{"s":"BINANCE:BONDUSDT.P","d":[]},{"s":"HONEYSWAP:RENBTCWETH_974182","d":[]},{"s":"PANCAKESWAP:DOGOWBNB_A7040B","d":[]},{"s":"BINANCE:METISUSD","d":[]},{"s":"KUCOIN:ALEPHUSDT","d":[]},{"s":"PANCAKESWAP:HUSWBNB_2FE445.USD","d":[]},{"s":"PANCAKESWAP:OKGUSDT_37857D","d":[]},{"s":"HONEYSWAP:BADGERHNY_E88D50.USD","d":[]},{"s":"PANCAKESWAP:DOGE1WBNB_013FFB","d":[]},{"s":"PANCAKESWAP:BURNWBNB_4C3D9B.USD","d":[]},{"s":"PANCAKESWAP:BSGWBNB_055A29.USD","d":[]},{"s":"PANCAKESWAP:CNYDWBNB_1E14FC","d":[]},{"s":"PANCAKESWAP:SBNBWBNB_7E3D62.USD","d":[]},{"s":"PANCAKESWAP:UTLWBNB_B706D8.USD","d":[]},{"s":"UPBIT:HUNTBTC","d":[]},{"s":"OKX:SATSUSDT","d":[]},{"s":"PANCAKESWAP:ZIXUSDT_0AC1B2","d":[]},{"s":"PANCAKESWAP:SSNWBNB_3672A2.USD","d":[]},{"s":"PANCAKESWAP:BLOVELYWBNB_C680DC.USD","d":[]},{"s":"PANCAKESWAP:NALOWBNB_168D5F.USD","d":[]},{"s":"PANCAKESWAP:BOSSWBNB_64E51E","d":[]},{"s":"PANCAKESWAP:CACTUSWBNB_FF9C6B","d":[]},{"s":"PANCAKESWAP:BSWBNB_3F67BE.USD","d":[]},{"s":"PANCAKESWAP:SHIQWBNB_530814","d":[]},{"s":"PANCAKESWAP:BOSSWBNB_825F65","d":[]},{"s":"PANCAKESWAP:DENJIWBNB_F866C7.USD","d":[]},{"s":"KUCOIN:NETVRUSDT","d":[]},{"s":"HONEYSWAP:BADGERWXDAI_51B55C.USD","d":[]},{"s":"PANCAKESWAP:SUCWBNB_41CE77.USD","d":[]},{"s":"PANCAKESWAP:FEGWBNB_2AA763.USD","d":[]},{"s":"OKX:IGUUSDT","d":[]},{"s":"PANCAKESWAP:WJUSDT_337DB4","d":[]},{"s":"PANCAKESWAP:RAINIWBNB_165C19","d":[]},{"s":"PANCAKESWAP:CELLWBNB_1C15F4.USD","d":[]},{"s":"PANCAKESWAP:TEMBUSD_1EDE82","d":[]},{"s":"PANCAKESWAP:SPCWBNB_63B012","d":[]},{"s":"PANCAKESWAP:LBLOCKWBNB_CFC23F.USD","d":[]},{"s":"PANCAKESWAP:STUARTWBNB_B950C1.USD","d":[]},{"s":"PANCAKESWAP:HYSSWBNB_CA1CF7","d":[]},{"s":"BINANCE:OMUSD","d":[]},{"s":"PANCAKESWAP:BCTUSDT_FA684A","d":[]},{"s":"UPBIT:CTSIBTC","d":[]},{"s":"HONEYSWAP:MIVAWXDAI_19B8EB.USD","d":[]},{"s":"SUSHISWAP:TOKEWETH_D4E7A6","d":[]},{"s":"HONEYSWAP:FTMGNO_44EE9A","d":[]},{"s":"OKX:SUIUSDT","d":[]},{"s":"PANCAKESWAP:REAUWBNB_7CC956.USD","d":[]},{"s":"PANCAKESWAP:RITEWBNB_163CC9.USD","d":[]},{"s":"PANCAKESWAP:STZUWBNB_EF69BE.USD","d":[]},{"s":"PANCAKESWAP:MATEWBNB_982B19","d":[]},{"s":"PANCAKESWAP:BIBUSDC_0F83B7","d":[]},{"s":"BINANCE:MAGICUSDT.P","d":[]},{"s":"PANCAKESWAP:PKNUSDC_18791A","d":[]},{"s":"PANCAKESWAP:WINTUSD_DE1CC0.USD","d":[]},{"s":"BINANCE:PONDUSD","d":[]},{"s":"BINANCE:EGLDUSDT.P","d":[]},{"s":"PANCAKESWAP:ILLUVIAWBNB_C7C637.USD","d":[]},{"s":"PANCAKESWAP:YAYUSDT_0A79F5","d":[]},{"s":"PANCAKESWAP:STOPELONWBNB_2FB498","d":[]},{"s":"KUCOIN:VELOUSDT","d":[]},{"s":"OKX:TIAUSDT","d":[]},{"s":"KUCOIN:CRPTUSDT","d":[]},{"s":"PANCAKESWAP:GHTWBNB_B5B2DC.USD","d":[]},{"s":"PANCAKESWAP:REVOUSDT_87D578","d":[]},{"s":"SUSHISWAPPOLYGON:CPTCWMATIC_7CF69A","d":[]},{"s":"PANCAKESWAP:PURRWBNB_1813A5.USD","d":[]},{"s":"PANCAKESWAP:BIBBUSD_082513","d":[]},{"s":"PANCAKESWAP:GIGAWBNB_6C9608","d":[]},{"s":"PANCAKESWAP:IMOWBNB_0A9072.USD","d":[]},{"s":"SUSHISWAPPOLYGON:WETHUSDT_C27559","d":[]},{"s":"PANCAKESWAP:SABLEWBNB_A0D4E2.USD","d":[]},{"s":"OKX:ETHUSDT27U2024","d":[]},{"s":"PANCAKESWAP:BABYBEBEWBNB_EE98FB.USD","d":[]},{"s":"PANCAKESWAP:CRDUSDT_3AE068","d":[]},{"s":"PANCAKESWAP:BROWBNB_662F03","d":[]},{"s":"PANCAKESWAP:KINGUWBNB_E4CCF8","d":[]},{"s":"PANCAKESWAP:BABYDOGEUSDT_BF7CD3","d":[]},{"s":"PANCAKESWAP:DTUBEWBNB_E9EE2D.USD","d":[]},{"s":"PANCAKESWAP:DGWBNB_8DDDF4.USD","d":[]},{"s":"OKX:GALAUSDT","d":[]},{"s":"BINANCE:LDOUSD","d":[]},{"s":"PANCAKESWAP:FISTSWBNB_0E4A23.USD","d":[]},{"s":"OKX:SHIBUSDC","d":[]},{"s":"PANCAKESWAP:QBITWBNB_E39C55.USD","d":[]},{"s":"PANCAKESWAP:HEFIWBNB_5DD2A5","d":[]},{"s":"KUCOIN:NFTUSDT","d":[]},{"s":"PANCAKESWAP:SHEESHAWBNB_B31ECB","d":[]},{"s":"PANCAKESWAP:HELENAWBNB_A4AA65.USD","d":[]},{"s":"PANCAKESWAP:HFWBNB_5ED8FD","d":[]},{"s":"KUCOIN:HIDOODLESUSDT","d":[]},{"s":"HONEYSWAP:TRINIWXDAI_99737C.USD","d":[]},{"s":"PANCAKESWAP:MINIPEPEUSDT_68264C","d":[]},{"s":"BINANCE:FORTHUSD","d":[]},{"s":"PANCAKESWAP:ARCSWBNB_74FF0E.USD","d":[]},{"s":"PANCAKESWAP:SEICLOUDWBNB_80EDAD","d":[]},{"s":"PANCAKESWAP:ETAIWBNB_6CCDA3","d":[]},{"s":"PANCAKESWAP:NAZARWBNB_C6FAA3","d":[]},{"s":"KUCOIN:PORT3USDT","d":[]},{"s":"PANCAKESWAP:BLEOWBNB_0BCA6E.USD","d":[]},{"s":"PANCAKESWAP:PUPDOGEWBNB_A551BB.USD","d":[]},{"s":"PANCAKESWAP:PIZAWBNB_28E246","d":[]},{"s":"PANCAKESWAP:XPNETWBNB_DE5833","d":[]},{"s":"PANCAKESWAP:IMTWBNB_C948A0.USD","d":[]},{"s":"SUSHISWAP:THORWETH_3D3F13.USD","d":[]},{"s":"PANCAKESWAP:LPVWBNB_0C59A0.USD","d":[]},{"s":"SUSHISWAP:REVVWETH_C92699","d":[]},{"s":"PANCAKESWAP:HOTTESTWBNB_5C05E7.USD","d":[]},{"s":"PANCAKESWAP:FLSUSDT_E2BFBD","d":[]},{"s":"PANCAKESWAP:RUNEWBNB_F9444C.USD","d":[]},{"s":"PANCAKESWAP:UPBNBWBNB_27D078.USD","d":[]},{"s":"PANCAKESWAP:RENQWBNB_67A0EA.USD","d":[]},{"s":"PANCAKESWAP:PRLBUSD_B5FEAE","d":[]},{"s":"PANCAKESWAP:DEPAYWBNB_38145D","d":[]},{"s":"PANCAKESWAP:VAIWBNB_1830F8","d":[]},{"s":"PANCAKESWAP:APPAUSDT_553F9A","d":[]},{"s":"PANCAKESWAP:BTAFWBNB_7AC443","d":[]},{"s":"PANCAKESWAP:RIDEWBNB_60BFB6","d":[]},{"s":"PANCAKESWAP:PBXUSDT_B32EC7","d":[]},{"s":"PANCAKESWAP:SGDETH_74BE66.USD","d":[]},{"s":"KUCOIN:KLAYUSDT","d":[]},{"s":"PANCAKESWAP:MAINWBNB_A8FEEA","d":[]},{"s":"HONEYSWAP:DOTWXDAI_25D6A9.USD","d":[]},{"s":"KUCOIN:MASKUSDT","d":[]},{"s":"KUCOIN:BAKEDOWNUSDT","d":[]},{"s":"PANCAKESWAP:WALLWBNB_CD7224","d":[]},{"s":"OKX:SUSHIUSDC","d":[]},{"s":"HONEYSWAP:YFTPWXDAI_52CE77","d":[]},{"s":"PANCAKESWAP:HELPUSDT_FDD03E","d":[]},{"s":"SUSHISWAPPOLYGON:DMAGICWMATIC_8F1DBE","d":[]},{"s":"PANCAKESWAP:IBOXWBNB_B43343.USD","d":[]},{"s":"PANCAKESWAP:ZKEVMWBNB_FCF4E8.USD","d":[]},{"s":"PANCAKESWAP:CRDXWBNB_9987E2.USD","d":[]},{"s":"PANCAKESWAP:WGCWBNB_07A933","d":[]},{"s":"PANCAKESWAP:METAGOLDWBNB_747F4C","d":[]},{"s":"PANCAKESWAP:SMWBNB_395EBF","d":[]},{"s":"HONEYSWAP:YFIUSDT_D99F9C","d":[]},{"s":"PANCAKESWAP:NORAME3_0835A3","d":[]},{"s":"HONEYSWAP:AMISWXDAI_BEC1B4.USD","d":[]},{"s":"PANCAKESWAP:XTMWBNB_780516","d":[]},{"s":"PANCAKESWAP:GWORKWBNB_FEC69E","d":[]},{"s":"PANCAKESWAP:REVAWBNB_861859","d":[]},{"s":"PANCAKESWAP:XODEXWBNB_03FBEB","d":[]},{"s":"PANCAKESWAP:BABYFLOKIWBNB_4F5B93.USD","d":[]},{"s":"OKX:MANAUSDC","d":[]},{"s":"PANCAKESWAP:XSPWBNB_3F5065","d":[]},{"s":"PANCAKESWAP:MEITUANWBNB_1E4274.USD","d":[]},{"s":"PANCAKESWAP:PIZAWBNB_28E246.USD","d":[]},{"s":"PANCAKESWAP:BABYAKITAWBNB_069822","d":[]},{"s":"KUCOIN:ATOMBTC","d":[]},{"s":"PANCAKESWAP:SMURFBUSD_E78CA4","d":[]},{"s":"HONEYSWAP:PANWXDAI_D7313D.USD","d":[]},{"s":"PANCAKESWAP:KALMETH_5E3B3C.USD","d":[]},{"s":"PANCAKESWAP:CATZWBNB_09096D","d":[]},{"s":"PANCAKESWAP:TRIASBUSD_118ED4","d":[]},{"s":"PANCAKESWAP:RISEWBNB_10DA26.USD","d":[]},{"s":"OKX:CTXCUSDT","d":[]},{"s":"UPBIT:HIVEBTC","d":[]},{"s":"PANCAKESWAP:SORAWBNB_22A91D","d":[]},{"s":"PANCAKESWAP:KOJIV2WBNB_AB2FED.USD","d":[]},{"s":"PANCAKESWAP:OPTWBNB_7F88DC.USD","d":[]},{"s":"PANCAKESWAP:OPCWBNB_ABF153.USD","d":[]},{"s":"PANCAKESWAP:HTXDAOWBNB_CFD74C.USD","d":[]},{"s":"PANCAKESWAP:SPCZWBNB_FBDB3D.USD","d":[]},{"s":"PANCAKESWAP:ALPAWBNB_4CC442.USD","d":[]},{"s":"PANCAKESWAP:ONYXWBNB_E6C476","d":[]},{"s":"KUCOIN:XYMBTC","d":[]},{"s":"PANCAKESWAP:BABYFLOKIWBNB_8E1502","d":[]},{"s":"PANCAKESWAP:SHENSHOUYUAN_A77BF2.USD","d":[]},{"s":"BINANCE:NMRUSD","d":[]},{"s":"PANCAKESWAP:MDBWBNB_32A9D8","d":[]},{"s":"PANCAKESWAP:HUCSUSDT_312699","d":[]},{"s":"OKX:DOTBTC","d":[]},{"s":"PANCAKESWAP:VEXWBNB_899F01.USD","d":[]},{"s":"PANCAKESWAP:XRSWBNB_30D291","d":[]},{"s":"PANCAKESWAP:XRPADA_DBA734","d":[]},{"s":"PANCAKESWAP:DADA2024WBNB_D3A075.USD","d":[]},{"s":"PANCAKESWAP:NEUTRWBNB_DC9C29.USD","d":[]},{"s":"PANCAKESWAP:BRBWBNB_807039","d":[]},{"s":"PANCAKESWAP:HOMIECOINWBNB_C18876.USD","d":[]},{"s":"PANCAKESWAP:WNCGWBNB_D38FC9","d":[]},{"s":"HONEYSWAP:LINKWETH_529410","d":[]},{"s":"KUCOIN:SSVUSDT","d":[]},{"s":"PANCAKESWAP:VGOWBNB_D212FD.USD","d":[]},{"s":"OKX:BTCBRL","d":[]},{"s":"BINANCE:UNIUSDT.P","d":[]},{"s":"PANCAKESWAP:GOMDWBNB_FE5617","d":[]},{"s":"PANCAKESWAP:BTC20USDT_885122","d":[]},{"s":"HONEYSWAP:CARWXDAI_C67E09.USD","d":[]},{"s":"PANCAKESWAP:MYUSDUSDC_85F947","d":[]},{"s":"PANCAKESWAP:BABYBEBEWBNB_EE98FB","d":[]},{"s":"PANCAKESWAP:ZZWBNB_1BF507.USD","d":[]},{"s":"PANCAKESWAP:ALTSWBNB_374379.USD","d":[]},{"s":"KUCOIN:SUTERUSDT","d":[]},{"s":"KUCOIN:TIDALUSDT","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_215BE1","d":[]},{"s":"PANCAKESWAP:GDSWBNB_423A0B","d":[]},{"s":"PANCAKESWAP:ACTORUSDT_26AE0D","d":[]},{"s":"PANCAKESWAP:ANTABUSD_0B6172","d":[]},{"s":"KUCOIN:HMNDUSDT","d":[]},{"s":"PANCAKESWAP:LOUDWBNB_6A0386.USD","d":[]},{"s":"SUSHISWAPPOLYGON:PLEOWMATIC_F8095F.USD","d":[]},{"s":"KUCOIN:CTSIUSDT","d":[]},{"s":"PANCAKESWAP:RBNBWBNB_BDC8EE","d":[]},{"s":"OKX:BETHETH","d":[]},{"s":"OKX:BSVUSDT","d":[]},{"s":"PANCAKESWAP:BRIUMWBNB_7EA69A.USD","d":[]},{"s":"HONEYSWAP:WBTCDAI_95C797","d":[]},{"s":"PANCAKESWAP:PPTUSDT_12A144","d":[]},{"s":"PANCAKESWAP:GYMNETBUSD_CFFD8B","d":[]},{"s":"SUSHISWAP:USTWETH_8B00EE","d":[]},{"s":"PANCAKESWAP:MYROINUWBNB_B9DD42.USD","d":[]},{"s":"PANCAKESWAP:BDWBNB_F84AED","d":[]},{"s":"PANCAKESWAP:FISTDAOUSDT_163314","d":[]},{"s":"PANCAKESWAP:MONDAYWBNB_1F39D0","d":[]},{"s":"PANCAKESWAP:KREDWBNB_EA79D3.USD","d":[]},{"s":"PANCAKESWAP:DXAUSDT_39855D","d":[]},{"s":"PANCAKESWAP:MOBWBNB_A3F05E.USD","d":[]},{"s":"PANCAKESWAP:TRUMPARMYWBNB_81421B.USD","d":[]},{"s":"KUCOIN:ALICEETH","d":[]},{"s":"PANCAKESWAP:SEEDUSDT_BD3AB6","d":[]},{"s":"SUSHISWAPPOLYGON:MSCMSU_D9EF43.USD","d":[]},{"s":"SUSHISWAPPOLYGON:ZEEMWBTC_BC58E7","d":[]},{"s":"PANCAKESWAP:ANKRBNBANKR_8028AC.USD","d":[]},{"s":"PANCAKESWAP:HIMOBUSD_AE9969","d":[]},{"s":"SUSHISWAP:MOONCATWETH_0AA1E8.USD","d":[]},{"s":"PANCAKESWAP:GBURNWBNB_FC9AD7.USD","d":[]},{"s":"OKX:MENGOUSDT","d":[]},{"s":"PANCAKESWAP:ZIXBUSD_AFD703","d":[]},{"s":"PANCAKESWAP:WEB5WBNB_F95194.USD","d":[]},{"s":"PANCAKESWAP:IFLYUSDT_5CA62D","d":[]},{"s":"PANCAKESWAP:SNWWBNB_7403B1","d":[]},{"s":"PANCAKESWAP:FTCWBNB_C47579","d":[]},{"s":"PANCAKESWAP:MARSDOGEWBNB_C251C3.USD","d":[]},{"s":"KUCOIN:SANDUSDT.3L","d":[]},{"s":"KUCOIN:CREDIUSDT","d":[]},{"s":"PANCAKESWAP:DRSUSDT_B5888E","d":[]},{"s":"PANCAKESWAP:METXXPX_6D2BC5","d":[]},{"s":"PANCAKESWAP:WANDWBNB_B02799","d":[]},{"s":"UPBIT:AERGOBTC","d":[]},{"s":"PANCAKESWAP:MEUSDT_7D611C","d":[]},{"s":"PANCAKESWAP:BUUNWBNB_76D2D4.USD","d":[]},{"s":"BINANCE:YFIUSDT.P","d":[]},{"s":"PANCAKESWAP:LOTTBUSD_658991","d":[]},{"s":"PANCAKESWAP:GROKDOGEWBNB_11BF31.USD","d":[]},{"s":"SUSHISWAPPOLYGON:MASKUSDC_35A47A","d":[]},{"s":"PANCAKESWAP:IPADUSDT_5B0D9C","d":[]},{"s":"PANCAKESWAP:EGWBNB_0018F4.USD","d":[]},{"s":"KUCOIN:REVUSDT.3L","d":[]},{"s":"KUCOIN:LUNCUPUSDT","d":[]},{"s":"PANCAKESWAP:TELEBTCWBNB_BE7CBF","d":[]},{"s":"KUCOIN:FLIPUSDT","d":[]},{"s":"KUCOIN:BTCBRL","d":[]},{"s":"PANCAKESWAP:ROUUSDT_F502FC","d":[]},{"s":"PANCAKESWAP:UWUWBNB_3EC4FE.USD","d":[]},{"s":"PANCAKESWAP:SAFESTARWBNB_4C8651.USD","d":[]},{"s":"PANCAKESWAP:LSPHEREWBNB_D15185","d":[]},{"s":"PANCAKESWAP:SPZWBNB_8077CC.USD","d":[]},{"s":"PANCAKESWAP:WIFWBNB_A23483.USD","d":[]},{"s":"PANCAKESWAP:VVUSDT_8B68B1","d":[]},{"s":"PANCAKESWAP:RIGWBNB_810DBA.USD","d":[]},{"s":"PANCAKESWAP:GCMEWBNB_E7CF56","d":[]},{"s":"PANCAKESWAP:ZGLONGWBNB_FE9E72.USD","d":[]},{"s":"SUSHISWAP:ILSIWETH_753F33.USD","d":[]},{"s":"PANCAKESWAP:FIFAIIUSDT_4FEB66","d":[]},{"s":"PANCAKESWAP:BLTWBNB_34D95D.USD","d":[]},{"s":"PANCAKESWAP:KUBICWBNB_E46FE3.USD","d":[]},{"s":"PANCAKESWAP:TAMAWBNB_F234A0.USD","d":[]},{"s":"PANCAKESWAP:ZDAOUSDT_06879B","d":[]},{"s":"BINANCE:AIUSDT.P","d":[]},{"s":"OKX:BTCUSDT29H2024","d":[]},{"s":"HONEYSWAP:NODEWXDAI_EB4317.USD","d":[]},{"s":"PANCAKESWAP:MOONIONWBNB_44FD1E.USD","d":[]},{"s":"KUCOIN:TIADOWNUSDT","d":[]},{"s":"OKX:FLOKIUSDC","d":[]},{"s":"PANCAKESWAP:AWCWBNB_39FBAA","d":[]},{"s":"PANCAKESWAP:GFLOKIWBNB_70A0BB.USD","d":[]},{"s":"HONEYSWAP:XCOMBAGVE_6125C2","d":[]},{"s":"PANCAKESWAP:BSWBNB_3F67BE","d":[]},{"s":"HONEYSWAP:MCDCWETH_41AC11","d":[]},{"s":"PANCAKESWAP:SHREWWBNB_E16826.USD","d":[]},{"s":"PANCAKESWAP:SABTCB_7164B9.USD","d":[]},{"s":"OKX:STXBTC","d":[]},{"s":"PANCAKESWAP:MLTWBNB_560B96.USD","d":[]},{"s":"PANCAKESWAP:UFIHAI_8666B2.USD","d":[]},{"s":"SUSHISWAP:UNQTWETH_B1035D","d":[]},{"s":"PANCAKESWAP:BAFCWBNB_AD778E.USD","d":[]},{"s":"PANCAKESWAP:YESETH_F1EC08","d":[]},{"s":"PANCAKESWAP:SDJTWBNB_14A8CF","d":[]},{"s":"KUCOIN:TARAUSDT","d":[]},{"s":"PANCAKESWAP:NIOBWBNB_83D606.USD","d":[]},{"s":"KUCOIN:BSVETH","d":[]},{"s":"PANCAKESWAP:KALMETH_5E3B3C","d":[]},{"s":"PANCAKESWAP:MATEWBNB_982B19.USD","d":[]},{"s":"PANCAKESWAP:PIPIWBNB_C7E652.USD","d":[]},{"s":"PANCAKESWAP:BLASTBUSD_AB7F4F","d":[]},{"s":"HONEYSWAP:CHEEMSWXDAI_CE5382","d":[]},{"s":"PANCAKESWAP:RTTWBNB_E5E760.USD","d":[]},{"s":"PANCAKESWAP:PHUBBTCB_0CCF8B","d":[]},{"s":"PANCAKESWAP:DYORWBNB_18D118.USD","d":[]},{"s":"PANCAKESWAP:DVFBWBNB_820B59.USD","d":[]},{"s":"PANCAKESWAP:PEPEINUWBNB_435BB0.USD","d":[]},{"s":"PANCAKESWAP:KBUSDBUSD_3E8301","d":[]},{"s":"KUCOIN:PHAETH","d":[]},{"s":"PANCAKESWAP:ELPUSDT_CD11C4","d":[]},{"s":"PANCAKESWAP:JEDALSWBNB_CC90EE.USD","d":[]},{"s":"PANCAKESWAP:DRAGONODEUSDT_86CF4F","d":[]},{"s":"PANCAKESWAP:HDFLWBNB_BA3CFD.USD","d":[]},{"s":"PANCAKESWAP:VOYAWBNB_28421C.USD","d":[]},{"s":"PANCAKESWAP:SPSWBNB_FDFDE3.USD","d":[]},{"s":"KUCOIN:GLMRBTC","d":[]},{"s":"PANCAKESWAP:METASHWBNB_4F29ED.USD","d":[]},{"s":"PANCAKESWAP:SURV20WBNB_A2FC25","d":[]},{"s":"PANCAKESWAP:BLINUWBNB_0791E0","d":[]},{"s":"PANCAKESWAP:KRSBUSD_AC747A","d":[]},{"s":"PANCAKESWAP:BOOZE2WBNB_E67421.USD","d":[]},{"s":"PANCAKESWAP:OUSEWBNB_1E40BD","d":[]},{"s":"PANCAKESWAP:CCDSWBNB_61F354","d":[]},{"s":"PANCAKESWAP:AVAXWBNB_151268","d":[]},{"s":"PANCAKESWAP:BNBCKCAKE_57C719.USD","d":[]},{"s":"PANCAKESWAP:USEAUSDT_917BB0","d":[]},{"s":"PANCAKESWAP:SUGARWBNB_B522D0.USD","d":[]},{"s":"PANCAKESWAP:ALPTCWBNB_791EDC","d":[]},{"s":"PANCAKESWAP:CSWBNB_A5045F","d":[]},{"s":"PANCAKESWAP:ZOOZUSDT_266895","d":[]},{"s":"HONEYSWAP:GHOWETH_A8142D.USD","d":[]},{"s":"OKX:BALUSDT","d":[]},{"s":"PANCAKESWAP:NEXMWBNB_E1EF30.USD","d":[]},{"s":"PANCAKESWAP:AIHWBNB_9DE82B.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FIDUSDT_E8137F","d":[]},{"s":"PANCAKESWAP:ENERGYWBNB_498650","d":[]},{"s":"PANCAKESWAP:LGXUSDT_B826E8","d":[]},{"s":"HONEYSWAP:MKRHNY_88E09A.USD","d":[]},{"s":"KUCOIN:MNWUSDT","d":[]},{"s":"PANCAKESWAP:RISEWBNB_10DA26","d":[]},{"s":"PANCAKESWAP:GMRWBNB_E4110C.USD","d":[]},{"s":"PANCAKESWAP:GENNUSDT_9F4673","d":[]},{"s":"PANCAKESWAP:BFGUSDT_53BAB5","d":[]},{"s":"BINANCE:XRPUSDT.P","d":[]},{"s":"PANCAKESWAP:ECWBNB_D422B9.USD","d":[]},{"s":"PANCAKESWAP:NSDXWBNB_CE96BB.USD","d":[]},{"s":"PANCAKESWAP:CROPWBNB_AB5BA5","d":[]},{"s":"PANCAKESWAP:FLNWBNB_DEB251","d":[]},{"s":"SUSHISWAPPOLYGON:DAIWETH_6FF62B","d":[]},{"s":"PANCAKESWAP:GPTCWBNB_83E126.USD","d":[]},{"s":"PANCAKESWAP:TRUTHWBNB_D9C67F.USD","d":[]},{"s":"PANCAKESWAP:EVRWBNB_9E5EA1","d":[]},{"s":"PANCAKESWAP:SDJTWBNB_14A8CF.USD","d":[]},{"s":"PANCAKESWAP:CX100SWBNB_C6B2C0","d":[]},{"s":"BINANCE:BALUSD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_6B4D15","d":[]},{"s":"PANCAKESWAP:FLOKINYWBNB_331B77.USD","d":[]},{"s":"PANCAKESWAP:SXTUSDT_DFC98A","d":[]},{"s":"SUSHISWAP:XYZUSDC_BBBDB1","d":[]},{"s":"OKX:ETCUSD27U2024","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_A7E7C3","d":[]},{"s":"KUCOIN:COTIUSDT","d":[]},{"s":"PANCAKESWAP:WOLFINUWBNB_8D7476.USD","d":[]},{"s":"PANCAKESWAP:GDCUSDT_204834","d":[]},{"s":"PANCAKESWAP:PIBBUSD_78D418","d":[]},{"s":"PANCAKESWAP:MAMAWBNB_97A8C5","d":[]},{"s":"PANCAKESWAP:XWBNB_C7BC2F","d":[]},{"s":"PANCAKESWAP:BFCUSDT_8C8415","d":[]},{"s":"PANCAKESWAP:PEQIWBNB_0D00BA.USD","d":[]},{"s":"PANCAKESWAP:OFFUSDT_8CDF34","d":[]},{"s":"PANCAKESWAP:MONWBNB_D39ED8.USD","d":[]},{"s":"KUCOIN:AVABTC","d":[]},{"s":"PANCAKESWAP:SPACEPIWBNB_7F1B11","d":[]},{"s":"PANCAKESWAP:BRWBNB_A9DCAA","d":[]},{"s":"PANCAKESWAP:DANGERMOONWBNB_8CBA27.USD","d":[]},{"s":"PANCAKESWAP:ATHBUSD_92406F","d":[]},{"s":"PANCAKESWAP:MONSTABUSD_93753C","d":[]},{"s":"PANCAKESWAP:NBOUSDT_AF2588","d":[]},{"s":"PANCAKESWAP:LCTWBNB_64B266.USD","d":[]},{"s":"HONEYSWAP:AMISAGVE_401CBD","d":[]},{"s":"PANCAKESWAP:PCSPUSDT_7B639A","d":[]},{"s":"PANCAKESWAP:MARTIAWBNB_E4205B.USD","d":[]},{"s":"KUCOIN:DOGEBTC","d":[]},{"s":"SUSHISWAP:VEGAWETH_29C827.USD","d":[]},{"s":"PANCAKESWAP:CBANKWBNB_8F6054","d":[]},{"s":"PANCAKESWAP:WAGWBNB_FF61E3.USD","d":[]},{"s":"PANCAKESWAP:XMTWBNB_706232.USD","d":[]},{"s":"HONEYSWAP:FTMHNY_EE1CD1","d":[]},{"s":"PANCAKESWAP:MOSLTC_8D5647.USD","d":[]},{"s":"OKX:ETCUSDT27U2024","d":[]},{"s":"PANCAKESWAP:APOWBNB_547AFD.USD","d":[]},{"s":"PANCAKESWAP:VERVEWBNB_E42A45","d":[]},{"s":"PANCAKESWAP:ETHBETH_09EA4C.USD","d":[]},{"s":"PANCAKESWAP:ROWWBNB_A22516.USD","d":[]},{"s":"PANCAKESWAP:DOGEFYC_D7C249.USD","d":[]},{"s":"PANCAKESWAP:TROLLXWBNB_B6F03A.USD","d":[]},{"s":"PANCAKESWAP:BNBKINGWBNB_EBF9AA.USD","d":[]},{"s":"PANCAKESWAP:MDSWBNB_B834AF.USD","d":[]},{"s":"PANCAKESWAP:GGGWBNB_3C11C5","d":[]},{"s":"HONEYSWAP:DEXPHNY_002B85.USD","d":[]},{"s":"PANCAKESWAP:IHCBUSD_2A9D43","d":[]},{"s":"HONEYSWAP:TEQUILAAGVE_04B6B0","d":[]},{"s":"PANCAKESWAP:PIWBNB_D23131.USD","d":[]},{"s":"PANCAKESWAP:NXWBNB_007F51.USD","d":[]},{"s":"PANCAKESWAP:HUHWBNB_FFC490","d":[]},{"s":"PANCAKESWAP:TDGWBNB_794470","d":[]},{"s":"PANCAKESWAP:EACUSDT_898D1D","d":[]},{"s":"PANCAKESWAP:EGOLDUSDT_C13583","d":[]},{"s":"PANCAKESWAP:LVMWBNB_B6AA23.USD","d":[]},{"s":"PANCAKESWAP:MNBBUSD_651609","d":[]},{"s":"PANCAKESWAP:ANUBISWBNB_652D95.USD","d":[]},{"s":"PANCAKESWAP:FROGWBNB_9296EA.USD","d":[]},{"s":"PANCAKESWAP:DFHWBNB_C5F99B.USD","d":[]},{"s":"PANCAKESWAP:ADTBUSD_1471F6","d":[]},{"s":"PANCAKESWAP:OWLBUSD_DCB438","d":[]},{"s":"PANCAKESWAP:NSHIBAWBNB_F154E0","d":[]},{"s":"OKX:BTCUSDC29H2024","d":[]},{"s":"HONEYSWAP:UNIAGVE_2B91ED","d":[]},{"s":"PANCAKESWAP:EGTWBNB_660876","d":[]},{"s":"PANCAKESWAP:BLIDUSDT_12C35E","d":[]},{"s":"PANCAKESWAP:NEKOSWBNB_849496.USD","d":[]},{"s":"PANCAKESWAP:DGTLWBNB_1BDE5D","d":[]},{"s":"KUCOIN:BTCUPUSDT","d":[]},{"s":"PANCAKESWAP:GAMINGSHIBAWBNB_59B8E5.USD","d":[]},{"s":"PANCAKESWAP:DIBSWBNB_9BEBE1.USD","d":[]},{"s":"PANCAKESWAP:KUSDKINE_A19BA5.USD","d":[]},{"s":"PANCAKESWAP:FIREWBNB_6E179D.USD","d":[]},{"s":"PANCAKESWAP:PKEYSWBNB_573C28.USD","d":[]},{"s":"UPBIT:GLMBTC","d":[]},{"s":"KUCOIN:MINAUSDT","d":[]},{"s":"PANCAKESWAP:STEPWBNB_FE6CA8.USD","d":[]},{"s":"PANCAKESWAP:AGGWBNB_F26483.USD","d":[]},{"s":"KUCOIN:TFUELUSDT","d":[]},{"s":"PANCAKESWAP:BABYDOGWIFWBNB_482A5C.USD","d":[]},{"s":"PANCAKESWAP:QJKINGUSDT_E0E348","d":[]},{"s":"PANCAKESWAP:BOBAWBNB_1A63DC","d":[]},{"s":"KUCOIN:TRXETH","d":[]},{"s":"PANCAKESWAP:DFYWBNB_52DF67","d":[]},{"s":"BINANCE:LUNA2USDT.P","d":[]},{"s":"BINANCE:WAVESUSD","d":[]},{"s":"PANCAKESWAP:KEKIWBNB_4F2697","d":[]},{"s":"OKX:MAGICUSDT","d":[]},{"s":"PANCAKESWAP:WE2NETUSDT_120053","d":[]},{"s":"PANCAKESWAP:RBXWBNB_8959E3.USD","d":[]},{"s":"PANCAKESWAP:FCNUSDT_C44B5E","d":[]},{"s":"PANCAKESWAP:GSTUSDT_E7E3D4","d":[]},{"s":"SUSHISWAP:WALLETUSDT_724934","d":[]},{"s":"PANCAKESWAP:VRGWWBNB_1F46EC.USD","d":[]},{"s":"PANCAKESWAP:ESHAREWBNB_1747AF","d":[]},{"s":"PANCAKESWAP:WEGROWBNB_8707AA","d":[]},{"s":"PANCAKESWAP:LTRBTWBNB_18BB14","d":[]},{"s":"HONEYSWAP:HAMWXDAI_8CE33B","d":[]},{"s":"KUCOIN:USDCUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:ICEWETH_941EB2","d":[]},{"s":"BINANCE:ATOMUSDT.P","d":[]},{"s":"UPBIT:LSKBTC","d":[]},{"s":"OKX:ELFUSDT","d":[]},{"s":"PANCAKESWAP:TGHUSDT_6D5910","d":[]},{"s":"PANCAKESWAP:AERWBNB_6EA346.USD","d":[]},{"s":"PANCAKESWAP:BFKWBNB_3331D2","d":[]},{"s":"KUCOIN:AAVEKCS","d":[]},{"s":"KUCOIN:AKROUSDT","d":[]},{"s":"PANCAKESWAP:SAITOBUSD_C595BE","d":[]},{"s":"PANCAKESWAP:BURNWBNB_4C3D9B","d":[]},{"s":"PANCAKESWAP:MICROFLOKIWBNB_AF8F23","d":[]},{"s":"PANCAKESWAP:MOILBUSD_553582","d":[]},{"s":"KUCOIN:LSSUSDT","d":[]},{"s":"PANCAKESWAP:AMPEREWBNB_97F14A.USD","d":[]},{"s":"PANCAKESWAP:TUMWBNB_B53992","d":[]},{"s":"PANCAKESWAP:NORAME3_0835A3.USD","d":[]},{"s":"PANCAKESWAP:AASTUSDT_6192A1","d":[]},{"s":"PANCAKESWAP:STAIWBNB_482DAA.USD","d":[]},{"s":"PANCAKESWAP:CHECOINWBNB_194850","d":[]},{"s":"PANCAKESWAP:BOJIWBNB_E64B2E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:SUSHIWMATIC_597A9B.USD","d":[]},{"s":"PANCAKESWAP:VOOLACOINWBNB_86CD09.USD","d":[]},{"s":"PANCAKESWAP:PEPEGENWBNB_D0BC70.USD","d":[]},{"s":"PANCAKESWAP:CX100SWBNB_C6B2C0.USD","d":[]},{"s":"PANCAKESWAP:PPHBBWBNB_ED5625.USD","d":[]},{"s":"PANCAKESWAP:MAZIWBNB_AE5F88.USD","d":[]},{"s":"PANCAKESWAP:AUDIWBNB_83D7C3","d":[]},{"s":"PANCAKESWAP:KIRBYUSDT_A517C2","d":[]},{"s":"KUCOIN:ARBUSDT","d":[]},{"s":"BINANCE:MDXUSD","d":[]},{"s":"PANCAKESWAP:BAITWBNB_4E5304.USD","d":[]},{"s":"BINANCE:STMXUSDT.P","d":[]},{"s":"PANCAKESWAP:AIBTCUSDT_992CF2","d":[]},{"s":"OKX:TRXETH","d":[]},{"s":"PANCAKESWAP:TYOGHOULWBNB_F48B0A.USD","d":[]},{"s":"PANCAKESWAP:LONGWBNB_657EAC","d":[]},{"s":"PANCAKESWAP:AXTUSDT_A26A89","d":[]},{"s":"BINANCE:NKNUSD","d":[]},{"s":"PANCAKESWAP:ARVWBNB_A63E32","d":[]},{"s":"PANCAKESWAP:UNMWBNB_0B21C4.USD","d":[]},{"s":"PANCAKESWAP:R3TWBNB_71994D","d":[]},{"s":"KUCOIN:HISQUIGGLEUSDT","d":[]},{"s":"KUCOIN:BIFIUSDT","d":[]},{"s":"PANCAKESWAP:OSCARWBNB_D03419","d":[]},{"s":"PANCAKESWAP:BABYRATSWBNB_8FF260","d":[]},{"s":"PANCAKESWAP:GAFIWBNB_1F617B.USD","d":[]},{"s":"PANCAKESWAP:PROTONWBNB_0B4506","d":[]},{"s":"PANCAKESWAP:EMAGICWBNB_42FFEF","d":[]},{"s":"PANCAKESWAP:SPACEXWBNB_C47DA6.USD","d":[]},{"s":"PANCAKESWAP:RPSWBNB_1C183B","d":[]},{"s":"SUSHISWAPPOLYGON:DYDXUSDC_309338","d":[]},{"s":"HONEYSWAP:XBRICKWXDAI_7FEB0D","d":[]},{"s":"PANCAKESWAP:FACEDAOUSDT_3190F1","d":[]},{"s":"PANCAKESWAP:GREENWBNB_B07337.USD","d":[]},{"s":"PANCAKESWAP:APPLEBUSDT_1157AC","d":[]},{"s":"PANCAKESWAP:MMSSCATUSDT_939C91","d":[]},{"s":"PANCAKESWAP:MTCUSDT_008279","d":[]},{"s":"PANCAKESWAP:ELCOINBUSD_81902B","d":[]},{"s":"PANCAKESWAP:DREAMSWBNB_EB9748.USD","d":[]},{"s":"PANCAKESWAP:RVFUSDT_377356","d":[]},{"s":"PANCAKESWAP:OUSEWBNB_1E40BD.USD","d":[]},{"s":"PANCAKESWAP:NFRUSDT_0A875C","d":[]},{"s":"KUCOIN:WOMBATUSDT","d":[]},{"s":"PANCAKESWAP:DUKEWBNB_E545EA","d":[]},{"s":"KUCOIN:RSRBTC","d":[]},{"s":"PANCAKESWAP:BEAMWBNB_7A50F7","d":[]},{"s":"PANCAKESWAP:VCEWBNB_98936C","d":[]},{"s":"PANCAKESWAP:UBXSWBNB_0DC9D9","d":[]},{"s":"OKX:SHIBUSDT","d":[]},{"s":"PANCAKESWAP:NEUTRWBNB_DC9C29","d":[]},{"s":"PANCAKESWAP:JJGUSDT_B870CC","d":[]},{"s":"KUCOIN:AIOZUSDT","d":[]},{"s":"PANCAKESWAP:PNDVUSDT_0EB537","d":[]},{"s":"PANCAKESWAP:MBOXWBNB_8FA596.USD","d":[]},{"s":"PANCAKESWAP:CAKEBOTWBNB_2FFDCD","d":[]},{"s":"OKX:CTCUSDT","d":[]},{"s":"PANCAKESWAP:WSIWBNB_84773B.USD","d":[]},{"s":"PANCAKESWAP:NFDAOUSDT_25FC05","d":[]},{"s":"PANCAKESWAP:LIEDWBNB_3892EF","d":[]},{"s":"PANCAKESWAP:1USEWBNB_932D56.USD","d":[]},{"s":"PANCAKESWAP:METACATEAIWBNB_A2D97D.USD","d":[]},{"s":"PANCAKESWAP:TTWBNB_30314B","d":[]},{"s":"PANCAKESWAP:CBCWBNB_D82746.USD","d":[]},{"s":"PANCAKESWAP:LDOGEWBNB_2A6523","d":[]},{"s":"SUSHISWAPPOLYGON:WORKUSDC_AB0454","d":[]},{"s":"PANCAKESWAP:RMDWBNB_D7B969","d":[]},{"s":"PANCAKESWAP:APRILWBNB_843008.USD","d":[]},{"s":"PANCAKESWAP:SEILORUSDT_AB0C95","d":[]},{"s":"PANCAKESWAP:HUSWBNB_2FE445","d":[]},{"s":"PANCAKESWAP:FELIXWBNB_B15192","d":[]},{"s":"HONEYSWAP:BZZWXDAI_59097A.USD","d":[]},{"s":"PANCAKESWAP:ROCKUSDT_6A34D2","d":[]},{"s":"PANCAKESWAP:SWPUSDT_9B9546","d":[]},{"s":"PANCAKESWAP:ONEPIECEWBNB_AC7AFD","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_6BC5FA","d":[]},{"s":"PANCAKESWAP:TBSWBNB_2C5D70.USD","d":[]},{"s":"PANCAKESWAP:VTVWBNB_CDAFF7","d":[]},{"s":"PANCAKESWAP:PETOWBNB_ADE6A7","d":[]},{"s":"KUCOIN:ATOMUSDT","d":[]},{"s":"PANCAKESWAP:JTUSDT_931B92","d":[]},{"s":"PANCAKESWAP:AIWALLETWBNB_8E4573.USD","d":[]},{"s":"PANCAKESWAP:XAIWBNB_9FDC42.USD","d":[]},{"s":"PANCAKESWAP:LCNWBNB_AE02B0.USD","d":[]},{"s":"KUCOIN:VOXELUSDT","d":[]},{"s":"PANCAKESWAP:SKILLWBNB_C19DFD","d":[]},{"s":"PANCAKESWAP:SHENSHOUA0B8B2_48C254","d":[]},{"s":"KUCOIN:XPLLUSDT","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_1AAB5E.USD","d":[]},{"s":"PANCAKESWAP:PVERSEWBNB_3286A3.USD","d":[]},{"s":"PANCAKESWAP:MHUNTWBNB_58AED2","d":[]},{"s":"PANCAKESWAP:ELVWBNB_C9D6F2.USD","d":[]},{"s":"PANCAKESWAP:CTIWBNB_4508EF.USD","d":[]},{"s":"SUSHISWAP:BADGERWBTC_110492","d":[]},{"s":"OKX:PSTAKEUSDT","d":[]},{"s":"PANCAKESWAP:DEXOUSDT_41F3EB","d":[]},{"s":"PANCAKESWAP:WOMUSDT_E98778","d":[]},{"s":"PANCAKESWAP:SKMTWBNB_1311E4","d":[]},{"s":"PANCAKESWAP:LOOTWBNB_411F24","d":[]},{"s":"PANCAKESWAP:IPEPEWBNB_FA8158.USD","d":[]},{"s":"PANCAKESWAP:DYNAWBNB_B6148C","d":[]},{"s":"HONEYSWAP:VITAWXDAI_BA2978","d":[]},{"s":"BINANCE:BTCUSDT.P","d":[]},{"s":"BINANCE:WAXPUSDT.P","d":[]},{"s":"PANCAKESWAP:ROVERWBNB_B6F118.USD","d":[]},{"s":"SUSHISWAP:STZWETH_7058CD","d":[]},{"s":"PANCAKESWAP:ZOOWBNB_579BB1.USD","d":[]},{"s":"PANCAKESWAP:TTMUSDT_CFD033","d":[]},{"s":"KUCOIN:TRACETH","d":[]},{"s":"PANCAKESWAP:WANABUSD_65B51B","d":[]},{"s":"HONEYSWAP:HOTWXDAI_BCC8F4.USD","d":[]},{"s":"PANCAKESWAP:ITOKENWBNB_E6A2B4","d":[]},{"s":"KUCOIN:WAXLUSDT","d":[]},{"s":"BINANCE:FLMUSDT.P","d":[]},{"s":"PANCAKESWAP:WARRRWBNB_F01575.USD","d":[]},{"s":"PANCAKESWAP:ANTWBNB_53E23D","d":[]},{"s":"PANCAKESWAP:SHILLWBNB_FED0E4.USD","d":[]},{"s":"SUSHISWAPPOLYGON:NDEFIWETH_1534D7","d":[]},{"s":"PANCAKESWAP:WPWBNB_AFAF62","d":[]},{"s":"SUSHISWAP:OHMWETH_FFFAE4","d":[]},{"s":"BINANCE:VETUSD","d":[]},{"s":"PANCAKESWAP:BOBWBNB_FD12FE","d":[]},{"s":"KUCOIN:CKBUSDT","d":[]},{"s":"OKX:APTEUR","d":[]},{"s":"BINANCE:AUDIOUSD","d":[]},{"s":"PANCAKESWAP:AVOWBNB_DD9D02.USD","d":[]},{"s":"PANCAKESWAP:QJKUSDT_B814F9","d":[]},{"s":"PANCAKESWAP:THONICWBNB_621EFB","d":[]},{"s":"PANCAKESWAP:AVGWBNB_8A8EEA","d":[]},{"s":"OKX:XRPBTC","d":[]},{"s":"PANCAKESWAP:TATAWBNB_9AD7EE.USD","d":[]},{"s":"PANCAKESWAP:CCDSUSDT_2B948B","d":[]},{"s":"BINANCE:BICOUSD","d":[]},{"s":"BINANCE:TRUUSDT.P","d":[]},{"s":"PANCAKESWAP:XUSDSKMT_A9360E","d":[]},{"s":"PANCAKESWAP:UNBNO_A68C29.USD","d":[]},{"s":"PANCAKESWAP:PDXWBNB_182CA5.USD","d":[]},{"s":"PANCAKESWAP:RFOXWBNB_8E04B3.USD","d":[]},{"s":"PANCAKESWAP:WTFWBNB_6BB958.USD","d":[]},{"s":"PANCAKESWAP:PLYUSDT_996C02","d":[]},{"s":"PANCAKESWAP:STRWBNB_66B7CF","d":[]},{"s":"PANCAKESWAP:ROSNWBNB_5548BD","d":[]},{"s":"HONEYSWAP:UNIDAI_5E774B","d":[]},{"s":"PANCAKESWAP:CKPMCAKE_DB92AD","d":[]},{"s":"PANCAKESWAP:CRXWBNB_0E2121","d":[]},{"s":"PANCAKESWAP:CWTUSDT_B55CD1","d":[]},{"s":"PANCAKESWAP:NEWBBUSD_0B024F","d":[]},{"s":"PANCAKESWAP:VOIDWBNB_200F5D.USD","d":[]},{"s":"PANCAKESWAP:GENNUSDT_776135","d":[]},{"s":"PANCAKESWAP:PRIMOWBNB_FC3F2F","d":[]},{"s":"PANCAKESWAP:HONGBAOWBNB_009684.USD","d":[]},{"s":"KUCOIN:BCUTUSDT","d":[]},{"s":"SUSHISWAP:CVXWETH_05767D","d":[]},{"s":"PANCAKESWAP:DATUSDT_EA28F4","d":[]},{"s":"SUSHISWAPPOLYGON:MSCMSU_D9EF43","d":[]},{"s":"HONEYSWAP:AMISMIVA_210609","d":[]},{"s":"KUCOIN:SDAOUSDT","d":[]},{"s":"SUSHISWAP:MARS4WETH_B50580","d":[]},{"s":"PANCAKESWAP:SGTUSDT_0B7D8A","d":[]},{"s":"PANCAKESWAP:OSWBNB_01B258","d":[]},{"s":"BINANCE:SLPUSDT.P","d":[]},{"s":"PANCAKESWAP:AQUARIWBNB_1CE05B.USD","d":[]},{"s":"PANCAKESWAP:LFWBNB_3BCBA4.USD","d":[]},{"s":"PANCAKESWAP:XLWBNB_EC527B.USD","d":[]},{"s":"PANCAKESWAP:REVVWBNB_1CC189.USD","d":[]},{"s":"PANCAKESWAP:PWDBUSD_F6E4FB","d":[]},{"s":"PANCAKESWAP:XPXWBNB_439B8E","d":[]},{"s":"PANCAKESWAP:AITROLLDADWBNB_E5F71C","d":[]},{"s":"BINANCE:ILVUSD","d":[]},{"s":"PANCAKESWAP:ZTUSDT_AD0BC3","d":[]},{"s":"PANCAKESWAP:PORNROCKETWBNB_819514.USD","d":[]},{"s":"PANCAKESWAP:MAKEWBNB_D77E0B","d":[]},{"s":"PANCAKESWAP:IDRTWBNB_5F4C3A.USD","d":[]},{"s":"BINANCE:MAGICUSD","d":[]},{"s":"PANCAKESWAP:8BITWBNB_99574D.USD","d":[]},{"s":"PANCAKESWAP:WORMWBNB_DF6CFC.USD","d":[]},{"s":"PANCAKESWAP:HOWWBNB_97497C.USD","d":[]},{"s":"HONEYSWAP:XGTHNY_ADA20E.USD","d":[]},{"s":"KUCOIN:SUPERBTC","d":[]},{"s":"PANCAKESWAP:DODWBNB_994134.USD","d":[]},{"s":"PANCAKESWAP:RACABUSD_8E744E","d":[]},{"s":"PANCAKESWAP:MDAOBUSD_646EAB","d":[]},{"s":"PANCAKESWAP:STCWBNB_923D0C.USD","d":[]},{"s":"PANCAKESWAP:GGTKNWBNB_5DEEA1.USD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_0DDA01.USD","d":[]},{"s":"PANCAKESWAP:33CFWBNB_B6827D.USD","d":[]},{"s":"PANCAKESWAP:WEETWOWBNB_CC2D2D.USD","d":[]},{"s":"SUSHISWAPPOLYGON:BITTWMATIC_84B840","d":[]},{"s":"PANCAKESWAP:SWAPWBNB_B3114E.USD","d":[]},{"s":"PANCAKESWAP:HTXWBNB_44FEE9.USD","d":[]},{"s":"PANCAKESWAP:IBOXWBNB_188563.USD","d":[]},{"s":"HONEYSWAP:SHIBUSDT_BC9381","d":[]},{"s":"PANCAKESWAP:ZTWBNB_CD791B.USD","d":[]},{"s":"KUCOIN:DEXEUSDT","d":[]},{"s":"SUSHISWAP:USTWETH_9A0CC6","d":[]},{"s":"PANCAKESWAP:YATANCAKEUSDT_7B6231","d":[]},{"s":"PANCAKESWAP:TBCWBNB_F86D87","d":[]},{"s":"SUSHISWAP:SRMWETH_117D42.USD","d":[]},{"s":"PANCAKESWAP:ESHIBWBNB_8CBF7C.USD","d":[]},{"s":"PANCAKESWAP:PNPWBNB_4F5580.USD","d":[]},{"s":"KUCOIN:AGLDUSDT","d":[]},{"s":"HONEYSWAP:PUNKWXDAI_8AF213","d":[]},{"s":"PANCAKESWAP:GBLWBNB_C57C02","d":[]},{"s":"PANCAKESWAP:ACKBUSD_CB1EA7","d":[]},{"s":"HONEYSWAP:SUSHIWXDAI_86189E","d":[]},{"s":"PANCAKESWAP:CWCWBNB_0C3FD9","d":[]},{"s":"OKX:FLRUSDT","d":[]},{"s":"PANCAKESWAP:BABYALTSBUSD_8BC32B","d":[]},{"s":"PANCAKESWAP:PORNROCKETWBNB_819514","d":[]},{"s":"PANCAKESWAP:MARSWBNB_811C5A.USD","d":[]},{"s":"PANCAKESWAP:LONGWBNB_657EAC.USD","d":[]},{"s":"PANCAKESWAP:MCOINWBNB_E87C9C.USD","d":[]},{"s":"PANCAKESWAP:FWTWBNB_EA96C4.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GFCWETH_D8E7D3","d":[]},{"s":"PANCAKESWAP:BABYBUSDWBNB_786BB9.USD","d":[]},{"s":"PANCAKESWAP:BAKACWBNB_851A72.USD","d":[]},{"s":"OKX:SWFTCUSDT","d":[]},{"s":"HONEYSWAP:CRVUSDC_06AACE","d":[]},{"s":"SUSHISWAP:SOKUWETH_0DE56B","d":[]},{"s":"PANCAKESWAP:UVTUVC_73F7F4.USD","d":[]},{"s":"SUSHISWAPPOLYGON:NCTUSDC_DB995F","d":[]},{"s":"PANCAKESWAP:ALMUSDT_3612B2","d":[]},{"s":"PANCAKESWAP:FITWBNB_5E8CE1.USD","d":[]},{"s":"PANCAKESWAP:APIUSDT_5DABB3","d":[]},{"s":"SUSHISWAP:MODAWETH_1C934B","d":[]},{"s":"OKX:JUPUSDT","d":[]},{"s":"PANCAKESWAP:SOCAWBNB_6BE095.USD","d":[]},{"s":"PANCAKESWAP:INCOMEWBNB_972CE2.USD","d":[]},{"s":"PANCAKESWAP:NEXBOXWBNB_E4B2D6","d":[]},{"s":"PANCAKESWAP:UNBWBNB_053D57.USD","d":[]},{"s":"PANCAKESWAP:DDDWBNB_C19956.USD","d":[]},{"s":"PANCAKESWAP:SFUNDWBNB_33338C","d":[]},{"s":"SUSHISWAP:IDWETH_77337F.USD","d":[]},{"s":"PANCAKESWAP:MARSWBNB_F31FFF.USD","d":[]},{"s":"PANCAKESWAP:BMWWBNB_83310C.USD","d":[]},{"s":"PANCAKESWAP:BURNLONGWBNB_CF4F1F.USD","d":[]},{"s":"PANCAKESWAP:HMSUSDT_D57E3A","d":[]},{"s":"BINANCE:UNFIUSDT.P","d":[]},{"s":"KUCOIN:GSTUSDT","d":[]},{"s":"PANCAKESWAP:WBTCVWBNB_19FD7F.USD","d":[]},{"s":"PANCAKESWAP:CSCBUSD_4A1534","d":[]},{"s":"PANCAKESWAP:TTXWBNB_6486F3.USD","d":[]},{"s":"KUCOIN:HYVEBTC","d":[]},{"s":"PANCAKESWAP:SPITZFLOKI_D38694.USD","d":[]},{"s":"HONEYSWAP:XBRICKHNY_00892C","d":[]},{"s":"PANCAKESWAP:ITAMWBNB_D02DA7.USD","d":[]},{"s":"PANCAKESWAP:GNOXWBNB_D39EF9.USD","d":[]},{"s":"SUSHISWAPPOLYGON:LINKWETH_74D23F.USD","d":[]},{"s":"PANCAKESWAP:ROCKETFIWBNB_CA8CB8.USD","d":[]},{"s":"UPBIT:TRXBTC","d":[]},{"s":"PANCAKESWAP:BIFIWBNB_3F1A9F","d":[]},{"s":"PANCAKESWAP:PEPEIWBNB_B36235.USD","d":[]},{"s":"PANCAKESWAP:LONGBAOBAOWBNB_3D2173.USD","d":[]},{"s":"KUCOIN:HBARBTC","d":[]},{"s":"PANCAKESWAP:QMGFUSDT_455598","d":[]},{"s":"PANCAKESWAP:MGCWBNB_C08019","d":[]},{"s":"PANCAKESWAP:FLNWBNB_DEB251.USD","d":[]},{"s":"PANCAKESWAP:BRANDWBNB_004089","d":[]},{"s":"PANCAKESWAP:PEPEPADWBNB_45AE9D.USD","d":[]},{"s":"PANCAKESWAP:IDTTWBNB_846C8F.USD","d":[]},{"s":"PANCAKESWAP:MOVEWBNB_4547F9","d":[]},{"s":"BINANCE:STRAXUSD","d":[]},{"s":"PANCAKESWAP:GODEBAYE_20D6F3.USD","d":[]},{"s":"PANCAKESWAP:ABACATEWBNB_1DD641.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DFXWETH_9AD5CD","d":[]},{"s":"PANCAKESWAP:KGOWBNB_25D656","d":[]},{"s":"OKX:KLAYUSDC","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_072CE9.USD","d":[]},{"s":"OKX:DMAILUSDT","d":[]},{"s":"PANCAKESWAP:ECLIPSEWBNB_0B2520.USD","d":[]},{"s":"PANCAKESWAP:SMARSWBNB_FD94E3","d":[]},{"s":"OKX:BTCUSDC27U2024","d":[]},{"s":"PANCAKESWAP:CRHUSDT_9D2C46","d":[]},{"s":"KUCOIN:ALICEBTC","d":[]},{"s":"PANCAKESWAP:FSLONGWBNB_BCC1D6","d":[]},{"s":"PANCAKESWAP:MFTUSDT_31C56A","d":[]},{"s":"PANCAKESWAP:QSQWBNB_4DD257","d":[]},{"s":"KUCOIN:DASHUSDT","d":[]},{"s":"PANCAKESWAP:ERIWBNB_492B97.USD","d":[]},{"s":"PANCAKESWAP:AIHWBNB_9DE82B","d":[]},{"s":"PANCAKESWAP:WWINMMUSD_0AE640","d":[]},{"s":"KUCOIN:USDTUSDC","d":[]},{"s":"PANCAKESWAP:LABUSDT_FBBA94","d":[]},{"s":"KUCOIN:FLYUSDT","d":[]},{"s":"PANCAKESWAP:SNXWBNB_3766C8","d":[]},{"s":"KUCOIN:BTTUSDT","d":[]},{"s":"PANCAKESWAP:UPBNBWBNB_27D078","d":[]},{"s":"PANCAKESWAP:FOMOSWBNB_C84BF6.USD","d":[]},{"s":"PANCAKESWAP:TNODEBUSD_562C0C","d":[]},{"s":"PANCAKESWAP:ECWBNB_D422B9","d":[]},{"s":"PANCAKESWAP:ARKMUSDT_D06DFA","d":[]},{"s":"HONEYSWAP:HNYAGVE_50A486.USD","d":[]},{"s":"KUCOIN:ROOBEEBTC","d":[]},{"s":"PANCAKESWAP:CRDXWBNB_9987E2","d":[]},{"s":"UPBIT:IQBTC","d":[]},{"s":"SUSHISWAP:INVWETH_328DFD.USD","d":[]},{"s":"PANCAKESWAP:COSWBNB_D41C9D","d":[]},{"s":"PANCAKESWAP:BBTWBNB_3D5A3E","d":[]},{"s":"PANCAKESWAP:NEURONWBNB_D5E701.USD","d":[]},{"s":"HONEYSWAP:STKAGVEHNY_878889","d":[]},{"s":"PANCAKESWAP:HOMIECOINWBNB_C18876","d":[]},{"s":"PANCAKESWAP:PCHFWBNB_27260A","d":[]},{"s":"SUSHISWAPPOLYGON:VERSEWETH_7F2F22.USD","d":[]},{"s":"PANCAKESWAP:HUNNYWBNB_361181","d":[]},{"s":"KUCOIN:DOGEUSDT","d":[]},{"s":"KUCOIN:BDXBTC","d":[]},{"s":"OKX:LATUSDT","d":[]},{"s":"PANCAKESWAP:IFMUSDT_BE6626","d":[]},{"s":"UPBIT:BARBTC","d":[]},{"s":"PANCAKESWAP:MDEUSDT_F7912B","d":[]},{"s":"PANCAKESWAP:33CFWBNB_B6827D","d":[]},{"s":"PANCAKESWAP:BHCWBNB_851DB0","d":[]},{"s":"PANCAKESWAP:BIGTIMEWBNB_5CC878","d":[]},{"s":"OKX:CETUSUSDT","d":[]},{"s":"PANCAKESWAP:MOONAIRUSDT_763B7F","d":[]},{"s":"PANCAKESWAP:PEECOINWBNB_F81DC7.USD","d":[]},{"s":"PANCAKESWAP:FAIRWBNB_E19855.USD","d":[]},{"s":"PANCAKESWAP:IMTWBNB_C948A0","d":[]},{"s":"PANCAKESWAP:BTCETFWBNB_4146DD.USD","d":[]},{"s":"PANCAKESWAP:MCMUSDT_B75A31","d":[]},{"s":"PANCAKESWAP:GAFIWBNB_1F617B","d":[]},{"s":"PANCAKESWAP:GDCUSDT_ACD7C7","d":[]},{"s":"PANCAKESWAP:SWAPTCWBNB_11E692.USD","d":[]},{"s":"PANCAKESWAP:STEPGSUPE_86CF0F.USD","d":[]},{"s":"OKX:ORBSUSDT","d":[]},{"s":"KUCOIN:ZEEUSDT","d":[]},{"s":"PANCAKESWAP:PAPERWBNB_A5C495","d":[]},{"s":"PANCAKESWAP:REEFWBNB_D63B5C","d":[]},{"s":"PANCAKESWAP:BABYBURNWBNB_8D44E6.USD","d":[]},{"s":"PANCAKESWAP:DIPUSDT_3FF9ED","d":[]},{"s":"PANCAKESWAP:GAINSWBNB_CD0386.USD","d":[]},{"s":"PANCAKESWAP:BODAV2WBNB_2A9A4A","d":[]},{"s":"PANCAKESWAP:GSKYWBNB_5AE45E.USD","d":[]},{"s":"PANCAKESWAP:FAFUSDT_D15589","d":[]},{"s":"BINANCE:ROSEUSDT.P","d":[]},{"s":"PANCAKESWAP:CJCUSDT_6542C6","d":[]},{"s":"PANCAKESWAP:SOULKIND_73475F","d":[]},{"s":"PANCAKESWAP:XMBTCB_5019D5","d":[]},{"s":"UPBIT:FLOWBTC","d":[]},{"s":"PANCAKESWAP:IBIKSBUSD_E80577","d":[]},{"s":"PANCAKESWAP:ALEPHWBNB_160D25","d":[]},{"s":"PANCAKESWAP:FKUINUWBNB_881F06.USD","d":[]},{"s":"OKX:GHSTUSDT","d":[]},{"s":"PANCAKESWAP:MTYWBNB_C7A4DC","d":[]},{"s":"PANCAKESWAP:CUBBUSD_FDF689","d":[]},{"s":"PANCAKESWAP:OSKWBNB_9B906E.USD","d":[]},{"s":"PANCAKESWAP:FRGXWBNB_55F303","d":[]},{"s":"PANCAKESWAP:NSHWBNB_0DCB98.USD","d":[]},{"s":"PANCAKESWAP:GIAWBNB_5D57C8.USD","d":[]},{"s":"KUCOIN:ATOMUSDT.3S","d":[]},{"s":"PANCAKESWAP:CAPYUSDT_05C513","d":[]},{"s":"PANCAKESWAP:KUSDUSDT_C87D1A","d":[]},{"s":"HONEYSWAP:BODWXDAI_E9FB2C.USD","d":[]},{"s":"PANCAKESWAP:ECEWBNB_18FF71","d":[]},{"s":"PANCAKESWAP:DOGEWBNB_F12F90.USD","d":[]},{"s":"PANCAKESWAP:WIFEDOGEWBNB_5D88FF.USD","d":[]},{"s":"PANCAKESWAP:EVERETHWBNB_7F5A01","d":[]},{"s":"HONEYSWAP:BRIGHTWETH_A69F95.USD","d":[]},{"s":"PANCAKESWAP:CGTUSDC_61100C","d":[]},{"s":"PANCAKESWAP:BRNWBNB_817828","d":[]},{"s":"PANCAKESWAP:KOGEWBNB_26DE6C","d":[]},{"s":"PANCAKESWAP:SEAWBNB_737046.USD","d":[]},{"s":"PANCAKESWAP:MINECRAFTWBNB_F3A900.USD","d":[]},{"s":"PANCAKESWAP:BLTBUSD_C1129B","d":[]},{"s":"PANCAKESWAP:PEPEFWBNB_74281D","d":[]},{"s":"PANCAKESWAP:METAWBNB_D66D06","d":[]},{"s":"PANCAKESWAP:LTTWBNB_1E86BB.USD","d":[]},{"s":"PANCAKESWAP:EVILSQUIDWBNB_54E2D5","d":[]},{"s":"PANCAKESWAP:MUSKVSZUCKWBNB_C69183.USD","d":[]},{"s":"PANCAKESWAP:OFEWBNB_F6912F","d":[]},{"s":"PANCAKESWAP:BFKWBNB_3331D2.USD","d":[]},{"s":"PANCAKESWAP:NXDTBUSD_2946ED","d":[]},{"s":"KUCOIN:LYXETH","d":[]},{"s":"KUCOIN:SONUSDT","d":[]},{"s":"PANCAKESWAP:SUBWBNB_E003E5.USD","d":[]},{"s":"HONEYSWAP:FTMHNY_EE1CD1.USD","d":[]},{"s":"PANCAKESWAP:BAOWBNB_B1F8C8.USD","d":[]},{"s":"PANCAKESWAP:MAUBWBNB_B679E0","d":[]},{"s":"PANCAKESWAP:WLCWBNB_38AD09","d":[]},{"s":"PANCAKESWAP:LVLWBNB_70F167","d":[]},{"s":"PANCAKESWAP:K8SUSDT_536F87","d":[]},{"s":"PANCAKESWAP:DOSEWBNB_A62193","d":[]},{"s":"OKX:BTCUSDT22H2024","d":[]},{"s":"PANCAKESWAP:CEOWBNB_6F9B7D.USD","d":[]},{"s":"PANCAKESWAP:GDSUSDT_617745","d":[]},{"s":"PANCAKESWAP:ULXBUSD_65F2EE","d":[]},{"s":"PANCAKESWAP:ADAWBNB_BA51D1","d":[]},{"s":"PANCAKESWAP:GBTWBNB_E7B72F.USD","d":[]},{"s":"PANCAKESWAP:DLMWBNB_29D54F","d":[]},{"s":"PANCAKESWAP:PERRYWBNB_DAC0F2.USD","d":[]},{"s":"BINANCE:SOLUSD","d":[]},{"s":"PANCAKESWAP:HGWBNB_5CCBDA.USD","d":[]},{"s":"SUSHISWAP:RGTWETH_18A797","d":[]},{"s":"KUCOIN:AVAXUSDT","d":[]},{"s":"PANCAKESWAP:TAMWBNB_A3B357.USD","d":[]},{"s":"PANCAKESWAP:PANDAIWBNB_81B136.USD","d":[]},{"s":"PANCAKESWAP:INDWBNB_1C1BE9.USD","d":[]},{"s":"HONEYSWAP:SYMMAGVE_57F46A","d":[]},{"s":"PANCAKESWAP:XEDWBNB_A7A0B6","d":[]},{"s":"PANCAKESWAP:PRXWBNB_D18347.USD","d":[]},{"s":"PANCAKESWAP:SPHYNXWBNB_CB5E61.USD","d":[]},{"s":"PANCAKESWAP:KUORBUSD_6B9D02","d":[]},{"s":"SUSHISWAP:ALCXWETH_C3F279.USD","d":[]},{"s":"PANCAKESWAP:TUTUWBNB_FF309B","d":[]},{"s":"PANCAKESWAP:GPTBWBNB_EDC27F.USD","d":[]},{"s":"PANCAKESWAP:MARSHWBNB_222F93.USD","d":[]},{"s":"PANCAKESWAP:OLEWBNB_D98F04.USD","d":[]},{"s":"KUCOIN:DUSKUSDT","d":[]},{"s":"PANCAKESWAP:BKPTWBNB_C57997","d":[]},{"s":"PANCAKESWAP:GALAXYWBNB_3BC18C","d":[]},{"s":"HONEYSWAP:COLDWXDAI_94B124","d":[]},{"s":"PANCAKESWAP:LONGUSDT_1EA6A6","d":[]},{"s":"PANCAKESWAP:YUMMYWBNB_09AE75","d":[]},{"s":"PANCAKESWAP:GDTWBNB_11CEF9.USD","d":[]},{"s":"PANCAKESWAP:DKPUSDT_BE654F","d":[]},{"s":"KUCOIN:EOSETH","d":[]},{"s":"PANCAKESWAP:ORAITHOREUM_FB37C1.USD","d":[]},{"s":"PANCAKESWAP:KPADWBNB_B88C2D","d":[]},{"s":"PANCAKESWAP:DMCCUSDT_FA58F2","d":[]},{"s":"PANCAKESWAP:WINWBNB_894BD5","d":[]},{"s":"PANCAKESWAP:HMUSDT_1FB689","d":[]},{"s":"PANCAKESWAP:MELBWBNB_BC4B12","d":[]},{"s":"PANCAKESWAP:TAVROUSDT_1C158B","d":[]},{"s":"PANCAKESWAP:DRWBNB_2E0F47.USD","d":[]},{"s":"PANCAKESWAP:DOGELEGIONWBNB_3C384B.USD","d":[]},{"s":"PANCAKESWAP:BACD2WBNB_12A79D.USD","d":[]},{"s":"HONEYSWAP:USDCUSDC_4AB027","d":[]},{"s":"PANCAKESWAP:GINOABUSD_D8F6C9","d":[]},{"s":"PANCAKESWAP:GPSUSDT_FDDBA4","d":[]},{"s":"PANCAKESWAP:PVERSEWBNB_3286A3","d":[]},{"s":"OKX:COMPUSDC","d":[]},{"s":"PANCAKESWAP:MOONTOKENWBNB_C87678.USD","d":[]},{"s":"PANCAKESWAP:TORPEDOWBNB_F914C0.USD","d":[]},{"s":"PANCAKESWAP:ODSWBNB_3A4D75","d":[]},{"s":"PANCAKESWAP:CTC1USDT_DE246D","d":[]},{"s":"PANCAKESWAP:ALMRBUSD_DA1ADC","d":[]},{"s":"PANCAKESWAP:AKAWBNB_747922","d":[]},{"s":"HONEYSWAP:MEMEHNY_2CC9C9","d":[]},{"s":"BINANCE:AVAXUSD","d":[]},{"s":"PANCAKESWAP:IDSUSDT_E9A29D","d":[]},{"s":"PANCAKESWAP:BASEDAIWBNB_DC22AA.USD","d":[]},{"s":"PANCAKESWAP:QNA3AIUSDT_13C650","d":[]},{"s":"KUCOIN:REQUSDT","d":[]},{"s":"OKX:TRXUSDT","d":[]},{"s":"PANCAKESWAP:SBCWBNB_AEA244.USD","d":[]},{"s":"PANCAKESWAP:PULSEWBNB_426CD2","d":[]},{"s":"PANCAKESWAP:EDXWBNB_0B5F7A","d":[]},{"s":"PANCAKESWAP:FWTWBNB_EA96C4","d":[]},{"s":"PANCAKESWAP:XLNUSDT_28D782","d":[]},{"s":"PANCAKESWAP:SIMPWBNB_2920BA.USD","d":[]},{"s":"UPBIT:APEBTC","d":[]},{"s":"UPBIT:SOLVEBTC","d":[]},{"s":"SUSHISWAPPOLYGON:TPOKTUSDC_C5C7F2","d":[]},{"s":"PANCAKESWAP:AISHIBAWBNB_BEFC58.USD","d":[]},{"s":"KUCOIN:REVUUSDT","d":[]},{"s":"PANCAKESWAP:MSHDWBNB_10DA36","d":[]},{"s":"SUSHISWAPPOLYGON:TUTWBTC_5D9AC8.USD","d":[]},{"s":"PANCAKESWAP:AIFLOKIWBNB_C50B4E","d":[]},{"s":"KUCOIN:HAIUSDT","d":[]},{"s":"PANCAKESWAP:SAFTIWBNB_690DD9","d":[]},{"s":"PANCAKESWAP:PEPECHAINWBNB_4F20FE.USD","d":[]},{"s":"PANCAKESWAP:CTYWBNB_58EE40","d":[]},{"s":"PANCAKESWAP:NBTUSDT_401ABD","d":[]},{"s":"UPBIT:CHZBTC","d":[]},{"s":"PANCAKESWAP:SISWBNB_E3F381","d":[]},{"s":"PANCAKESWAP:TIPSYWBNB_20E325","d":[]},{"s":"PANCAKESWAP:ZUSDBUSD_C3BF4E","d":[]},{"s":"KUCOIN:VLXUSDT","d":[]},{"s":"PANCAKESWAP:2023WBNB_0B7679.USD","d":[]},{"s":"PANCAKESWAP:SHAROWBNB_0915D6","d":[]},{"s":"PANCAKESWAP:PEPEFLOKIWBNB_8DD26D.USD","d":[]},{"s":"OKX:ELONUSDT","d":[]},{"s":"PANCAKESWAP:BTICWBNB_EEC999.USD","d":[]},{"s":"PANCAKESWAP:NFTLWBNB_70F6F0","d":[]},{"s":"HONEYSWAP:CARHNY_E7B019","d":[]},{"s":"PANCAKESWAP:CELAWBNB_D45746","d":[]},{"s":"PANCAKESWAP:BBYXRPWBNB_7067A5.USD","d":[]},{"s":"PANCAKESWAP:BTCBYOSTEP_E09818","d":[]},{"s":"PANCAKESWAP:DATBOIWBNB_35411A","d":[]},{"s":"PANCAKESWAP:BTCBDXO_6128F6","d":[]},{"s":"PANCAKESWAP:BABYLONGWBNB_0FA6E3","d":[]},{"s":"KUCOIN:XDEFIUSDT","d":[]},{"s":"OKX:CLVUSDT","d":[]},{"s":"PANCAKESWAP:WEMWBNB_39ECAD","d":[]},{"s":"PANCAKESWAP:SPACEWBNB_BF0E68","d":[]},{"s":"PANCAKESWAP:MPDWBNB_630D98","d":[]},{"s":"PANCAKESWAP:DALBUSD_85B3BD","d":[]},{"s":"BINANCE:ALGOUSD","d":[]},{"s":"PANCAKESWAP:BTCBSCWBNB_E97F31","d":[]},{"s":"PANCAKESWAP:LONGWBNB_F613D8","d":[]},{"s":"KUCOIN:RATSUSDT","d":[]},{"s":"PANCAKESWAP:ZUCKWBNB_95BB11.USD","d":[]},{"s":"PANCAKESWAP:GPAWSWBNB_04B70B","d":[]},{"s":"PANCAKESWAP:FILTHOREUM_E1447B","d":[]},{"s":"PANCAKESWAP:NFTBWBNB_FABEF0","d":[]},{"s":"PANCAKESWAP:LCRWBNB_E481C7","d":[]},{"s":"PANCAKESWAP:ISPUSDT_B89315","d":[]},{"s":"PANCAKESWAP:CWCWBNB_0C3FD9.USD","d":[]},{"s":"SUSHISWAP:PICKLEWETH_269DB9.USD","d":[]},{"s":"PANCAKESWAP:VEEDWBNB_478456.USD","d":[]},{"s":"PANCAKESWAP:SVUSDT_E1644B","d":[]},{"s":"PANCAKESWAP:BUFFSWBNB_D5607E","d":[]},{"s":"PANCAKESWAP:MULTIWBNB_429E89","d":[]},{"s":"PANCAKESWAP:XPTWBNB_395B40.USD","d":[]},{"s":"HONEYSWAP:CRVGNO_AC16C7.USD","d":[]},{"s":"PANCAKESWAP:MFETBUSD_EDCA47","d":[]},{"s":"SUSHISWAP:ICHIWETH_9CD028.USD","d":[]},{"s":"KUCOIN:ADAUSDT.3S","d":[]},{"s":"KUCOIN:NFPUSDT","d":[]},{"s":"SUSHISWAP:GOVIWETH_7E6782.USD","d":[]},{"s":"PANCAKESWAP:GHWWBNB_1A90DC.USD","d":[]},{"s":"PANCAKESWAP:TYOGHOULWBNB_F48B0A","d":[]},{"s":"PANCAKESWAP:VLXWBNB_48D807.USD","d":[]},{"s":"PANCAKESWAP:ALITAWBNB_0EA66D.USD","d":[]},{"s":"PANCAKESWAP:BWJWBNB_8E0195.USD","d":[]},{"s":"BINANCE:BELUSD","d":[]},{"s":"PANCAKESWAP:TKPDIS_21EB00.USD","d":[]},{"s":"PANCAKESWAP:SFPWBNB_942B29","d":[]},{"s":"KUCOIN:CRVUSDT","d":[]},{"s":"PANCAKESWAP:WVAULTWBNB_5AB168","d":[]},{"s":"PANCAKESWAP:CRI3WBNB_EE69CD.USD","d":[]},{"s":"PANCAKESWAP:BVSDUSDT_84F310","d":[]},{"s":"PANCAKESWAP:NBTCUSDT_CC23D8","d":[]},{"s":"PANCAKESWAP:XQJUSDT_2E57AF","d":[]},{"s":"PANCAKESWAP:DPETWBNB_2B34DE.USD","d":[]},{"s":"UPBIT:CELOBTC","d":[]},{"s":"PANCAKESWAP:ETHMORNINGSTAR_0440DE.USD","d":[]},{"s":"HONEYSWAP:AAVEHNY_FCDF77.USD","d":[]},{"s":"PANCAKESWAP:FAIRUSDT_5A3619","d":[]},{"s":"PANCAKESWAP:LXLWBNB_612998.USD","d":[]},{"s":"PANCAKESWAP:FSWBNB_BF76FB","d":[]},{"s":"BINANCE:XVSUSD","d":[]},{"s":"PANCAKESWAP:TIMESERIESWBNB_C614F8.USD","d":[]},{"s":"KUCOIN:IOTABTC","d":[]},{"s":"BINANCE:ORDIUSDT.P","d":[]},{"s":"KUCOIN:BSVUSDT","d":[]},{"s":"KUCOIN:ISPUSDT","d":[]},{"s":"PANCAKESWAP:LKYSUSDT_1286A8","d":[]},{"s":"PANCAKESWAP:VALASWBNB_829F54.USD","d":[]},{"s":"PANCAKESWAP:EGTWBNB_660876.USD","d":[]},{"s":"PANCAKESWAP:IDMWBNB_99D284.USD","d":[]},{"s":"PANCAKESWAP:MUSKITOWBNB_42D85D.USD","d":[]},{"s":"PANCAKESWAP:NFDUSDT_25B98D","d":[]},{"s":"SUSHISWAPPOLYGON:GIDDYUSDC_DE9909","d":[]},{"s":"HONEYSWAP:SNXWXDAI_E01977","d":[]},{"s":"KUCOIN:LMWRUSDT","d":[]},{"s":"HONEYSWAP:XMOONWXDAI_1384D8.USD","d":[]},{"s":"SUSHISWAPPOLYGON:WBANWETH_B556FE.USD","d":[]},{"s":"KUCOIN:SLIMUSDT","d":[]},{"s":"PANCAKESWAP:KRMAWBNB_DF0555","d":[]},{"s":"PANCAKESWAP:GPUWETH_C44C63.USD","d":[]},{"s":"PANCAKESWAP:WARWBNB_F1C2D7","d":[]},{"s":"KUCOIN:ADAUSDC","d":[]},{"s":"PANCAKESWAP:TKINGWBNB_2C69FA.USD","d":[]},{"s":"BINANCE:MTLUSD","d":[]},{"s":"PANCAKESWAP:CGVWBNB_FD22BC.USD","d":[]},{"s":"PANCAKESWAP:COMPETH_379086.USD","d":[]},{"s":"PANCAKESWAP:GWUSDT_195062","d":[]},{"s":"PANCAKESWAP:SORAWBNB_22A91D.USD","d":[]},{"s":"KUCOIN:LOOKSUSDT","d":[]},{"s":"PANCAKESWAP:CATCOINWBNB_67046E","d":[]},{"s":"PANCAKESWAP:NPCWBNB_D2E2C4.USD","d":[]},{"s":"UPBIT:MASKBTC","d":[]},{"s":"PANCAKESWAP:UNCLWBNB_38904C","d":[]},{"s":"PANCAKESWAP:MRWBNB_B172EF.USD","d":[]},{"s":"PANCAKESWAP:MSTUSDT_D1E4E4","d":[]},{"s":"PANCAKESWAP:MCONTENTWBNB_00105E.USD","d":[]},{"s":"PANCAKESWAP:HFWBNB_5ED8FD.USD","d":[]},{"s":"SUSHISWAP:GETWETH_BB1914.USD","d":[]},{"s":"PANCAKESWAP:SWAPZWBNB_82D86B","d":[]},{"s":"HONEYSWAP:COLDAGVE_AA0200","d":[]},{"s":"PANCAKESWAP:CHCHWBNB_DC8C32.USD","d":[]},{"s":"PANCAKESWAP:GEEKOWBNB_F211AB.USD","d":[]},{"s":"KUCOIN:EWTUSDT","d":[]},{"s":"PANCAKESWAP:WELDWBNB_91BF1A","d":[]},{"s":"PANCAKESWAP:CAVATWBNB_BF90CF.USD","d":[]},{"s":"OKX:SOLEUR","d":[]},{"s":"PANCAKESWAP:GENAIBUSD_FEB921","d":[]},{"s":"PANCAKESWAP:TRAVELWBNB_4E94E1.USD","d":[]},{"s":"PANCAKESWAP:ACWBNB_2CDECD.USD","d":[]},{"s":"PANCAKESWAP:FATHOMWBNB_2ADCDA","d":[]},{"s":"OKX:ETHEURT","d":[]},{"s":"KUCOIN:HIBAYCUSDT","d":[]},{"s":"PANCAKESWAP:TABOOWBNB_B4E7B2","d":[]},{"s":"PANCAKESWAP:WJXNWBNB_D55FFE","d":[]},{"s":"PANCAKESWAP:VLKWBNB_8659EC.USD","d":[]},{"s":"PANCAKESWAP:ALTSWBNB_374379","d":[]},{"s":"PANCAKESWAP:VPRWBNB_93ACCD","d":[]},{"s":"PANCAKESWAP:TRUTHWBNB_7B575E","d":[]},{"s":"PANCAKESWAP:SLAMWBNB_60B852.USD","d":[]},{"s":"PANCAKESWAP:HAYYAUSDT_576102","d":[]},{"s":"PANCAKESWAP:PNPWBNB_4F5580","d":[]},{"s":"PANCAKESWAP:NTUSDT_1DDF4D","d":[]},{"s":"PANCAKESWAP:PEXOUSDT_6A73B8","d":[]},{"s":"PANCAKESWAP:SIPBUSD_E948E8","d":[]},{"s":"KUCOIN:UTKETH","d":[]},{"s":"PANCAKESWAP:W3NWBNB_243F4C","d":[]},{"s":"PANCAKESWAP:CMCCWBNB_BEE295.USD","d":[]},{"s":"PANCAKESWAP:HXRBUSDT_9A3639","d":[]},{"s":"SUSHISWAP:ALCXWETH_C3F279","d":[]},{"s":"PANCAKESWAP:PORWBNB_D34ACA.USD","d":[]},{"s":"PANCAKESWAP:BPEPEWBNB_DCBBAD","d":[]},{"s":"PANCAKESWAP:KAFUSDT_0042FF","d":[]},{"s":"BINANCE:WANUSD","d":[]},{"s":"HONEYSWAP:DEXPUSDC_61B2EE","d":[]},{"s":"PANCAKESWAP:SANKIWBNB_525ED2.USD","d":[]},{"s":"PANCAKESWAP:WSNWBNB_403225","d":[]},{"s":"PANCAKESWAP:SAFESTARWBNB_4C8651","d":[]},{"s":"PANCAKESWAP:FUSXUSDT_1A8F67","d":[]},{"s":"HONEYSWAP:PCTWETH_0A823A.USD","d":[]},{"s":"PANCAKESWAP:HUBNFTUSDT_22F5A2","d":[]},{"s":"PANCAKESWAP:IPOWBNB_F6F41D.USD","d":[]},{"s":"PANCAKESWAP:TNTWBNB_01EC38","d":[]},{"s":"PANCAKESWAP:LUNARWBNB_8B03A4","d":[]},{"s":"PANCAKESWAP:GIFTWBNB_49B835","d":[]},{"s":"KUCOIN:HARDUSDT","d":[]},{"s":"PANCAKESWAP:DOGAIWBNB_A87F56.USD","d":[]},{"s":"PANCAKESWAP:BLABWBNB_38542A.USD","d":[]},{"s":"BINANCE:YGGUSD","d":[]},{"s":"PANCAKESWAP:MUCPUSDT_7757B5","d":[]},{"s":"PANCAKESWAP:WSBWBNB_E66783","d":[]},{"s":"PANCAKESWAP:DKNWBNB_88E361.USD","d":[]},{"s":"PANCAKESWAP:ODYSWBNB_F0FD83.USD","d":[]},{"s":"PANCAKESWAP:HOHOHOWBNB_0FABBA","d":[]},{"s":"PANCAKESWAP:NOVAUSDT_671A03","d":[]},{"s":"PANCAKESWAP:GODEBAYE_20D6F3","d":[]},{"s":"PANCAKESWAP:PONKEFLOKIWBNB_FC4319.USD","d":[]},{"s":"KUCOIN:BFCUSDT","d":[]},{"s":"PANCAKESWAP:MUSKTROLLWBNB_90389D","d":[]},{"s":"PANCAKESWAP:VNYWBNB_2B55B0","d":[]},{"s":"PANCAKESWAP:BKCUSDT_1ADDB6","d":[]},{"s":"BINANCE:SUSHIUSDT.P","d":[]},{"s":"PANCAKESWAP:PIWBNB_592ADB.USD","d":[]},{"s":"KUCOIN:NEARBTC","d":[]},{"s":"PANCAKESWAP:9MGWBNB_60893B.USD","d":[]},{"s":"PANCAKESWAP:AONCUSDT_2A0249","d":[]},{"s":"PANCAKESWAP:REVDEBT_5E4060","d":[]},{"s":"HONEYSWAP:CHSBWXDAI_AA9137","d":[]},{"s":"PANCAKESWAP:PCHFWBNB_27260A.USD","d":[]},{"s":"PANCAKESWAP:DSLAWBNB_9C3050","d":[]},{"s":"HONEYSWAP:HEXUSDC_D97709","d":[]},{"s":"PANCAKESWAP:XFWBNB_04D045.USD","d":[]},{"s":"PANCAKESWAP:REGUWBNB_90CF51","d":[]},{"s":"PANCAKESWAP:DROVERSWBNB_F3468F","d":[]},{"s":"PANCAKESWAP:AWEWBNB_01C35A","d":[]},{"s":"PANCAKESWAP:W8BITWBNB_8C9E29.USD","d":[]},{"s":"BINANCE:CYBERUSD","d":[]},{"s":"PANCAKESWAP:IDWBNB_5A5766.USD","d":[]},{"s":"PANCAKESWAP:TCUSDT_54D091","d":[]},{"s":"PANCAKESWAP:BKUSDT_FA2841","d":[]},{"s":"PANCAKESWAP:KABOSUWBNB_8C0E8B.USD","d":[]},{"s":"PANCAKESWAP:JFHWBNB_953696.USD","d":[]},{"s":"OKX:IDUSDT","d":[]},{"s":"PANCAKESWAP:40V2USDT_74F1F2","d":[]},{"s":"PANCAKESWAP:ASTROWBNB_7396FF.USD","d":[]},{"s":"PANCAKESWAP:FOXWBNB_A454ED","d":[]},{"s":"PANCAKESWAP:APCWBNB_2B844E","d":[]},{"s":"KUCOIN:KSMUSDT","d":[]},{"s":"SUSHISWAP:CRVWETH_58DC5A","d":[]},{"s":"PANCAKESWAP:UDAOROCK_29D4D9.USD","d":[]},{"s":"KUCOIN:ETCUSDC","d":[]},{"s":"PANCAKESWAP:CIFIWBNB_2DE7AA.USD","d":[]},{"s":"HONEYSWAP:SYMMAGVE_57F46A.USD","d":[]},{"s":"PANCAKESWAP:FIREWBNB_08B52D.USD","d":[]},{"s":"PANCAKESWAP:FRYWBNB_A11525.USD","d":[]},{"s":"PANCAKESWAP:MNSTUSDT_1F4C14","d":[]},{"s":"KUCOIN:FRRUSDT","d":[]},{"s":"PANCAKESWAP:TIPWBNB_B01403.USD","d":[]},{"s":"PANCAKESWAP:RDTWBNB_3B1BE5","d":[]},{"s":"PANCAKESWAP:GMEXWBNB_632963.USD","d":[]},{"s":"BINANCE:ETHUSDT29H2024","d":[]},{"s":"PANCAKESWAP:BOTWBNB_F270C9.USD","d":[]},{"s":"PANCAKESWAP:OLNWBNB_27BA50.USD","d":[]},{"s":"PANCAKESWAP:PWROSEWBNB_AF8AB5.USD","d":[]},{"s":"PANCAKESWAP:BABYSORAWBNB_CBE893","d":[]},{"s":"PANCAKESWAP:BYASUSDT_BF98A5","d":[]},{"s":"SUSHISWAP:MATICWETH_7F8F7D","d":[]},{"s":"PANCAKESWAP:FKUINUWBNB_881F06","d":[]},{"s":"PANCAKESWAP:WORMHOLEUSDT_75E132","d":[]},{"s":"PANCAKESWAP:ELLOWBNB_82FC80","d":[]},{"s":"KUCOIN:LINAUSDT","d":[]},{"s":"PANCAKESWAP:POVWBNB_BC1E96","d":[]},{"s":"PANCAKESWAP:IMOWBNB_0A9072","d":[]},{"s":"HONEYSWAP:UNIV2WXDAI_1B2A1E.USD","d":[]},{"s":"PANCAKESWAP:BIFIWBNB_D132D2","d":[]},{"s":"KUCOIN:STNDETH","d":[]},{"s":"PANCAKESWAP:AUWBNB_AF7E45","d":[]},{"s":"PANCAKESWAP:ASNBUSDT_E5EC42","d":[]},{"s":"KUCOIN:VSYSUSDT","d":[]},{"s":"OKX:RPLUSDT","d":[]},{"s":"OKX:ADAEUR","d":[]},{"s":"PANCAKESWAP:GPTBUSD_D99D22","d":[]},{"s":"PANCAKESWAP:GALWBNB_BE6A4F","d":[]},{"s":"PANCAKESWAP:HGSWBNB_54C072.USD","d":[]},{"s":"PANCAKESWAP:SOPHWBNB_79083C.USD","d":[]},{"s":"UPBIT:AFCBTC","d":[]},{"s":"PANCAKESWAP:TRXWBNB_3CD338","d":[]},{"s":"BINANCE:BELUSDT.P","d":[]},{"s":"PANCAKESWAP:FEASTWBNB_AFA2B9.USD","d":[]},{"s":"PANCAKESWAP:PEPEWBNB_EDFDC2.USD","d":[]},{"s":"KUCOIN:IDUSDT","d":[]},{"s":"PANCAKESWAP:AWCWBNB_39FBAA.USD","d":[]},{"s":"BINANCE:BEAMXUSDT.P","d":[]},{"s":"PANCAKESWAP:DERCBUSD_D26D4B","d":[]},{"s":"BINANCE:AGIXUSD","d":[]},{"s":"KUCOIN:XTZBTC","d":[]},{"s":"PANCAKESWAP:TDGWBNB_6C7197.USD","d":[]},{"s":"PANCAKESWAP:FLOKICASHWBNB_C9FD37.USD","d":[]},{"s":"PANCAKESWAP:FAFAFAWBNB_ED7EE0.USD","d":[]},{"s":"PANCAKESWAP:THGWBNB_486697","d":[]},{"s":"PANCAKESWAP:ZYNSPEC_02FF7B","d":[]},{"s":"PANCAKESWAP:BABYMUSKWBNB_D86E98","d":[]},{"s":"PANCAKESWAP:XLWBNB_EC527B","d":[]},{"s":"PANCAKESWAP:BTXJWBNB_CA8701.USD","d":[]},{"s":"PANCAKESWAP:GOLDENWBNB_E4BCB1.USD","d":[]},{"s":"PANCAKESWAP:PIGWBNB_51DCAF.USD","d":[]},{"s":"PANCAKESWAP:CUMMIESWBNB_114D53","d":[]},{"s":"PANCAKESWAP:SPEWBNB_D659C4","d":[]},{"s":"BINANCE:XEMUSDT.P","d":[]},{"s":"PANCAKESWAP:PEMONWBNB_62024C","d":[]},{"s":"HONEYSWAP:CHEEMSWBTC_E60976","d":[]},{"s":"KUCOIN:DIVIUSDT","d":[]},{"s":"PANCAKESWAP:VOOLACOINBTCB_AA98EC.USD","d":[]},{"s":"HONEYSWAP:DOTWXDAI_25D6A9","d":[]},{"s":"PANCAKESWAP:AVNWBNB_5EDE41.USD","d":[]},{"s":"SUSHISWAPPOLYGON:IRONUSDC_85DE13","d":[]},{"s":"KUCOIN:ARPAUSDT","d":[]},{"s":"PANCAKESWAP:GF9WBNB_67B4A7.USD","d":[]},{"s":"PANCAKESWAP:ELVUSDT_0CB33B","d":[]},{"s":"HONEYSWAP:STAKEGNO_F8D9D1","d":[]},{"s":"PANCAKESWAP:SQUIDGROWWBNB_07D016.USD","d":[]},{"s":"PANCAKESWAP:MOSTUSDT_C7EE4F","d":[]},{"s":"PANCAKESWAP:DNHWBNB_BFB0E0","d":[]},{"s":"SUSHISWAPPOLYGON:MABBCUSDC_87DBEB","d":[]},{"s":"KUCOIN:USDTEUR","d":[]},{"s":"PANCAKESWAP:HONKWBNB_567331.USD","d":[]},{"s":"PANCAKESWAP:AVOWBNB_8524BE","d":[]},{"s":"KUCOIN:APPUSDT","d":[]},{"s":"OKX:AGLDUSDT","d":[]},{"s":"PANCAKESWAP:METTWBNB_855DD3","d":[]},{"s":"PANCAKESWAP:BTGTWBNB_7F001B","d":[]},{"s":"PANCAKESWAP:MXBUSD_41F049","d":[]},{"s":"PANCAKESWAP:KINGUWBNB_2AB815.USD","d":[]},{"s":"PANCAKESWAP:ETCSZGL_A7E388","d":[]},{"s":"SUSHISWAP:CRVWETH_58DC5A.USD","d":[]},{"s":"SUSHISWAP:PLRWETH_8FEDCA.USD","d":[]},{"s":"PANCAKESWAP:CGGBUSD_8AC5DC","d":[]},{"s":"PANCAKESWAP:BURN20WBNB_863E1B.USD","d":[]},{"s":"HONEYSWAP:DPIUSDT_3D0222","d":[]},{"s":"BINANCE:PIXELUSD","d":[]},{"s":"HONEYSWAP:XDBXHNY_2907F1","d":[]},{"s":"SUSHISWAP:WTONWETH_610468.USD","d":[]},{"s":"PANCAKESWAP:DEXOWBNB_5DC452","d":[]},{"s":"KUCOIN:REEFBTC","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_4C8F6C.USD","d":[]},{"s":"BINANCE:GLMRUSDT.P","d":[]},{"s":"PANCAKESWAP:STSTLONG_B622FD.USD","d":[]},{"s":"PANCAKESWAP:POODLWBNB_12FC9D","d":[]},{"s":"PANCAKESWAP:GATEWBNB_B2165D.USD","d":[]},{"s":"PANCAKESWAP:KEYSOUSDT_F076A3","d":[]},{"s":"PANCAKESWAP:SOFIWBNB_909976","d":[]},{"s":"SUSHISWAP:BGANWETH_C6045A.USD","d":[]},{"s":"PANCAKESWAP:SPINERTHA_591E33","d":[]},{"s":"OKX:BICOUSDT","d":[]},{"s":"BINANCE:GALAUSDT.P","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_137DAE.USD","d":[]},{"s":"HONEYSWAP:SHIBWBTC_6E16BD","d":[]},{"s":"PANCAKESWAP:WFIBOUSDT_710B1C","d":[]},{"s":"KUCOIN:YFDAIUSDT","d":[]},{"s":"PANCAKESWAP:FUTUREAIWBNB_B0DA84","d":[]},{"s":"PANCAKESWAP:LIONWBNB_DEA781","d":[]},{"s":"PANCAKESWAP:GNPBUSD_62BA64","d":[]},{"s":"PANCAKESWAP:DUKEWBNB_E545EA.USD","d":[]},{"s":"PANCAKESWAP:MASAWBNB_C783E0.USD","d":[]},{"s":"KUCOIN:WOOPUSDT","d":[]},{"s":"BINANCE:LINKUSD","d":[]},{"s":"KUCOIN:STRAXUSDT","d":[]},{"s":"PANCAKESWAP:NFTGWBNB_891584.USD","d":[]},{"s":"PANCAKESWAP:GGRUSDT_8F4CCB","d":[]},{"s":"PANCAKESWAP:SRGBUSD_E75141","d":[]},{"s":"PANCAKESWAP:BCTWBNB_1D33FC.USD","d":[]},{"s":"PANCAKESWAP:STUSDT_BA7C39","d":[]},{"s":"PANCAKESWAP:LONGSHINEWBNB_2F19E7.USD","d":[]},{"s":"PANCAKESWAP:CUBWBNB_7BAE0D","d":[]},{"s":"PANCAKESWAP:WWINBUSD_D59A74","d":[]},{"s":"KUCOIN:BSVUSDC","d":[]},{"s":"HONEYSWAP:XMOONHNY_E2AE19.USD","d":[]},{"s":"PANCAKESWAP:MNGWBNB_105573.USD","d":[]},{"s":"PANCAKESWAP:W8BITWBNB_8C9E29","d":[]},{"s":"PANCAKESWAP:SILLYWBNB_F70EEF.USD","d":[]},{"s":"PANCAKESWAP:BIDZWBNB_A5F328","d":[]},{"s":"KUCOIN:LTOBTC","d":[]},{"s":"OKX:EOSETH","d":[]},{"s":"HONEYSWAP:MEWWXDAI_04C944","d":[]},{"s":"PANCAKESWAP:AIUSDT_E9E082","d":[]},{"s":"PANCAKESWAP:DIORWBNB_683301","d":[]},{"s":"PANCAKESWAP:RICKUSDT_A2BD7C","d":[]},{"s":"KUCOIN:HGPUSDT","d":[]},{"s":"PANCAKESWAP:DSUNSUNDOG_37784F","d":[]},{"s":"PANCAKESWAP:NEKOWBNB_0CB9CF.USD","d":[]},{"s":"PANCAKESWAP:DOGKINGWBNB_F9E630.USD","d":[]},{"s":"PANCAKESWAP:UMAREUMWBNB_56D780.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_9ADE7C","d":[]},{"s":"PANCAKESWAP:2024WBNB_12104D.USD","d":[]},{"s":"PANCAKESWAP:GMRXUSDT_A2BB6F","d":[]},{"s":"SUSHISWAP:UNIWETH_DAFD66.USD","d":[]},{"s":"PANCAKESWAP:REELFIWBNB_F88578","d":[]},{"s":"PANCAKESWAP:PEPE20WBNB_61AFF3.USD","d":[]},{"s":"KUCOIN:VANRYUSDT","d":[]},{"s":"PANCAKESWAP:NEWGWBNB_EA95A3","d":[]},{"s":"PANCAKESWAP:BNBLIONWBNB_7E1402.USD","d":[]},{"s":"PANCAKESWAP:ECCWBNB_98304A","d":[]},{"s":"PANCAKESWAP:OSWWBNB_67946C.USD","d":[]},{"s":"PANCAKESWAP:WANDWBNB_B02799.USD","d":[]},{"s":"PANCAKESWAP:OBIBUSD_02F366","d":[]},{"s":"PANCAKESWAP:MJCWBNB_4BF1F5.USD","d":[]},{"s":"KUCOIN:ZETAUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:ZEEMWBTC_BC58E7.USD","d":[]},{"s":"PANCAKESWAP:GEARWBNB_D16E57.USD","d":[]},{"s":"HONEYSWAP:USDCUSDT_FBE1E6","d":[]},{"s":"SUSHISWAPPOLYGON:MSUUSDT_D10BB4","d":[]},{"s":"PANCAKESWAP:FABRICWBNB_1B4271","d":[]},{"s":"PANCAKESWAP:GAMIBUSD_BFD7D3","d":[]},{"s":"SUSHISWAP:SUSHIFRAX_E06F8D","d":[]},{"s":"PANCAKESWAP:DOGEDOGE_8266E0","d":[]},{"s":"PANCAKESWAP:BULLPEPEWBNB_0EEEB3.USD","d":[]},{"s":"PANCAKESWAP:TOTMWBNB_CDD9E6.USD","d":[]},{"s":"PANCAKESWAP:WORMHOLEBUSD_A55B5C","d":[]},{"s":"KUCOIN:APTUSDT","d":[]},{"s":"UPBIT:SCUSDT","d":[]},{"s":"OKX:AKITAUSDT","d":[]},{"s":"PANCAKESWAP:BABYBNBWBNB_85BCBD","d":[]},{"s":"SUSHISWAP:FTMWETH_0E26A2","d":[]},{"s":"PANCAKESWAP:YESCAKE_1DC021","d":[]},{"s":"PANCAKESWAP:GFWBNB_BE8173.USD","d":[]},{"s":"PANCAKESWAP:ELIXIRWBNB_14C384","d":[]},{"s":"PANCAKESWAP:LMCUSDT_7414C1","d":[]},{"s":"HONEYSWAP:COWWXDAI_CAB440.USD","d":[]},{"s":"OKX:PEOPLEUSDT","d":[]},{"s":"SUSHISWAP:BLURWETH_90A709.USD","d":[]},{"s":"BINANCE:ETHUSDT.P","d":[]},{"s":"KUCOIN:BLZUSDT","d":[]},{"s":"OKX:ANTUSDT","d":[]},{"s":"PANCAKESWAP:ZROUSDT_FEB8CF","d":[]},{"s":"PANCAKESWAP:RAINWBNB_913F92","d":[]},{"s":"PANCAKESWAP:VITEBTCB_06AF13","d":[]},{"s":"PANCAKESWAP:ODSYWBNB_D5CDE9","d":[]},{"s":"PANCAKESWAP:KCEOWBNB_B78B98","d":[]},{"s":"PANCAKESWAP:DEBTWBNB_2B26ED.USD","d":[]},{"s":"PANCAKESWAP:SQUADCAKE_54CD9D","d":[]},{"s":"KUCOIN:CTSIBTC","d":[]},{"s":"BINANCE:CVXUSDT.P","d":[]},{"s":"PANCAKESWAP:AVAXWBNB_151268.USD","d":[]},{"s":"UPBIT:BCHUSDT","d":[]},{"s":"PANCAKESWAP:WLCWBNB_CBACFD","d":[]},{"s":"PANCAKESWAP:PEPEBURNWBNB_AF63E3","d":[]},{"s":"PANCAKESWAP:BUYWBNB_AD818A","d":[]},{"s":"KUCOIN:MANABTC","d":[]},{"s":"HONEYSWAP:MKRHNY_88E09A","d":[]},{"s":"PANCAKESWAP:ULMEUSDT_F18E5E","d":[]},{"s":"OKX:XRPUSDT29H2024","d":[]},{"s":"PANCAKESWAP:AUDITWBNB_0248F5","d":[]},{"s":"PANCAKESWAP:REVOWBNB_828E5D.USD","d":[]},{"s":"SUSHISWAP:SYLOWETH_0B1ED1.USD","d":[]},{"s":"PANCAKESWAP:TATAWBNB_9AD7EE","d":[]},{"s":"PANCAKESWAP:XWBNB_529F56","d":[]},{"s":"PANCAKESWAP:FOXWBNB_3027AD","d":[]},{"s":"HONEYSWAP:STAKEGNO_F8D9D1.USD","d":[]},{"s":"PANCAKESWAP:KLUVWBNB_67AD9D.USD","d":[]},{"s":"PANCAKESWAP:BCMCWBNB_3988F9","d":[]},{"s":"PANCAKESWAP:STMWBNB_5FE09F.USD","d":[]},{"s":"PANCAKESWAP:GHCWBNB_A594A0.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_93353A.USD","d":[]},{"s":"PANCAKESWAP:ARKWBNB_679237","d":[]},{"s":"BINANCE:ZILUSDT.P","d":[]},{"s":"PANCAKESWAP:1MILWBNB_6E1163.USD","d":[]},{"s":"PANCAKESWAP:TXPWBNB_A1A09E.USD","d":[]},{"s":"PANCAKESWAP:MEMEWBNB_CADFA8.USD","d":[]},{"s":"KUCOIN:TRACBTC","d":[]},{"s":"PANCAKESWAP:KALMWBNB_C74F72","d":[]},{"s":"PANCAKESWAP:ASNWBNB_81882E.USD","d":[]},{"s":"PANCAKESWAP:IWRWBNB_A37FF2","d":[]},{"s":"PANCAKESWAP:SCRLBUSD_836570","d":[]},{"s":"PANCAKESWAP:ULEWBNB_718CEC.USD","d":[]},{"s":"OKX:AGLDUSDC","d":[]},{"s":"PANCAKESWAP:DPADWBNB_A8383E.USD","d":[]},{"s":"PANCAKESWAP:ZKPEPEWBNB_D57838.USD","d":[]},{"s":"HONEYSWAP:RAIDAGVE_9FDB14.USD","d":[]},{"s":"PANCAKESWAP:TRTWBNB_D738BD.USD","d":[]},{"s":"PANCAKESWAP:SAFEWBNB_9129D0","d":[]},{"s":"PANCAKESWAP:WESWBNB_C28C58","d":[]},{"s":"PANCAKESWAP:CZBUSDBUSD_16254C","d":[]},{"s":"BINANCE:1000SHIBUSDT.P","d":[]},{"s":"BINANCE:APTUSD","d":[]},{"s":"PANCAKESWAP:ONNOWBNB_A11DFC","d":[]},{"s":"PANCAKESWAP:POLOWBNB_F99A5F.USD","d":[]},{"s":"KUCOIN:MAHAUSDT","d":[]},{"s":"PANCAKESWAP:O5OWBNB_55EEE0","d":[]},{"s":"OKX:UNIUSDT","d":[]},{"s":"PANCAKESWAP:WORMWBNB_DF6CFC","d":[]},{"s":"PANCAKESWAP:VEGEWBNB_D27163","d":[]},{"s":"PANCAKESWAP:MVDBXWBNB_38451B","d":[]},{"s":"PANCAKESWAP:ZONOV3WBNB_8AAD26","d":[]},{"s":"PANCAKESWAP:NAOSWBNB_CAA662","d":[]},{"s":"HONEYSWAP:AGVEGMLU_FBE6CA.USD","d":[]},{"s":"PANCAKESWAP:OASISWBNB_A487E0.USD","d":[]},{"s":"PANCAKESWAP:DASSWBNB_F5C376","d":[]},{"s":"PANCAKESWAP:PETSWBNB_4BDECE.USD","d":[]},{"s":"BINANCE:DODOXUSDT.P","d":[]},{"s":"UPBIT:ALTBTC","d":[]},{"s":"PANCAKESWAP:DOGOWBNB_A7040B.USD","d":[]},{"s":"PANCAKESWAP:FILWBNB_D9BCCB","d":[]},{"s":"BINANCE:MDTUSDT.P","d":[]},{"s":"KUCOIN:ARTYUSDT","d":[]},{"s":"HONEYSWAP:MANAHNY_BD574C.USD","d":[]},{"s":"PANCAKESWAP:FRBKUSDT_1D0E11","d":[]},{"s":"PANCAKESWAP:YUWBNB_66B6D4.USD","d":[]},{"s":"KUCOIN:CFXUSDT.2L","d":[]},{"s":"PANCAKESWAP:DODWBNB_AC7F3D.USD","d":[]},{"s":"HONEYSWAP:FOXWXDAI_C22313.USD","d":[]},{"s":"PANCAKESWAP:YAYBUSD_60500B","d":[]},{"s":"PANCAKESWAP:ELEPHANTBUSD_647BC9","d":[]},{"s":"PANCAKESWAP:LNRWBNB_6A1FFE.USD","d":[]},{"s":"PANCAKESWAP:MGODBUSD_87E61B","d":[]},{"s":"PANCAKESWAP:MAIWBNB_2FAD51","d":[]},{"s":"PANCAKESWAP:SISWBNB_BCA905.USD","d":[]},{"s":"PANCAKESWAP:NAFTWBNB_2D9B41","d":[]},{"s":"PANCAKESWAP:BURNWBNB_932DE1.USD","d":[]},{"s":"PANCAKESWAP:CODEUSDT_5270CD","d":[]},{"s":"PANCAKESWAP:TAGWBNB_E9AC7B.USD","d":[]},{"s":"BINANCE:WLDUSD","d":[]},{"s":"PANCAKESWAP:PNTBTCB_C387F3","d":[]},{"s":"PANCAKESWAP:MAGICWBNB_0176C7.USD","d":[]},{"s":"KUCOIN:LSKUSDT","d":[]},{"s":"PANCAKESWAP:SBTWBNB_B043D6","d":[]},{"s":"PANCAKESWAP:SAIUSDT_D1AB2B","d":[]},{"s":"PANCAKESWAP:ANONWBNB_3A8C02","d":[]},{"s":"KUCOIN:SUKUUSDT","d":[]},{"s":"PANCAKESWAP:JOYGWBNB_C24101.USD","d":[]},{"s":"KUCOIN:VETUSDT.3L","d":[]},{"s":"PANCAKESWAP:CUMMIESWBNB_02BFF2.USD","d":[]},{"s":"PANCAKESWAP:FOCWBNB_4D2681","d":[]},{"s":"BINANCE:NEOUSD","d":[]},{"s":"PANCAKESWAP:GORILLAWBNB_727616","d":[]},{"s":"PANCAKESWAP:FEVRWBNB_0FB513","d":[]},{"s":"PANCAKESWAP:GTHWBNB_3A26CC","d":[]},{"s":"PANCAKESWAP:PURRWBNB_49A417","d":[]},{"s":"PANCAKESWAP:STARKSTARTERWBNB_8FF3F8.USD","d":[]},{"s":"PANCAKESWAP:YYLXWBNB_6ED12F","d":[]},{"s":"HONEYSWAP:TEQUILAHNY_1F7DAB","d":[]},{"s":"KUCOIN:SNXBTC","d":[]},{"s":"PANCAKESWAP:DOGEFORKWBNB_4107DE","d":[]},{"s":"PANCAKESWAP:SEILUWBNB_E62A08.USD","d":[]},{"s":"OKX:SPURSUSDT","d":[]},{"s":"PANCAKESWAP:PNTHRWBNB_FAEB1B","d":[]},{"s":"PANCAKESWAP:DOGEMONEYWBNB_62E308.USD","d":[]},{"s":"PANCAKESWAP:MUCNFTBUSD_DCFA0F","d":[]},{"s":"UPBIT:INTERBTC","d":[]},{"s":"HONEYSWAP:HNYMIVA_E7DED5","d":[]},{"s":"KUCOIN:CFGBTC","d":[]},{"s":"SUSHISWAP:STRPUSDC_FCA032","d":[]},{"s":"HONEYSWAP:HBTCWBTC_B32A3F","d":[]},{"s":"PANCAKESWAP:FOGUSDT_79A373","d":[]},{"s":"PANCAKESWAP:HFTBUSD_C98535","d":[]},{"s":"PANCAKESWAP:GOLDBUSD_C2F1A4","d":[]},{"s":"SUSHISWAP:CREAMWETH_F169CE","d":[]},{"s":"PANCAKESWAP:BURGERWBNB_D937FB.USD","d":[]},{"s":"PANCAKESWAP:BEAMWBNB_7A50F7.USD","d":[]},{"s":"PANCAKESWAP:LIGHTWBNB_826EDA","d":[]},{"s":"SUSHISWAP:MILADYWETH_15A8E3","d":[]},{"s":"HONEYSWAP:JPYCWXDAI_97BEB9.USD","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_FDFAF9","d":[]},{"s":"KUCOIN:ELFUSDT","d":[]},{"s":"PANCAKESWAP:SLABWBNB_B70E80.USD","d":[]},{"s":"PANCAKESWAP:TRKBUSD_05750D","d":[]},{"s":"HONEYSWAP:GRTUSDC_A85848","d":[]},{"s":"PANCAKESWAP:NEXUSWBNB_F33F8F.USD","d":[]},{"s":"PANCAKESWAP:FWHWBNB_5C732D.USD","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_4DDCD0.USD","d":[]},{"s":"KUCOIN:INFRAUSDT","d":[]},{"s":"PANCAKESWAP:OKCBNO_4EA16B.USD","d":[]},{"s":"PANCAKESWAP:BYXWBNB_26C6DB.USD","d":[]},{"s":"KUCOIN:STORJBTC","d":[]},{"s":"PANCAKESWAP:ATOMWBNB_468B2D","d":[]},{"s":"BINANCE:STXUSDT.P","d":[]},{"s":"OKX:MANAUSDT","d":[]},{"s":"OKX:XRPUSDT27U2024","d":[]},{"s":"HONEYSWAP:SBCWXDAI_A17E60","d":[]},{"s":"OKX:WBTCBTC","d":[]},{"s":"PANCAKESWAP:INFICLOUDWBNB_85CE39","d":[]},{"s":"PANCAKESWAP:REALMWBNB_C75B3D","d":[]},{"s":"PANCAKESWAP:CATSHIRAWBNB_0FF54B","d":[]},{"s":"KUCOIN:UTKBTC","d":[]},{"s":"PANCAKESWAP:MELTUSDT_F1BDAF","d":[]},{"s":"KUCOIN:KINGUSDT","d":[]},{"s":"UPBIT:DNTBTC","d":[]},{"s":"OKX:HBARBTC","d":[]},{"s":"PANCAKESWAP:DDWBNB_266B7F","d":[]},{"s":"KUCOIN:DEXEETH","d":[]},{"s":"PANCAKESWAP:RPSWBNB_1C183B.USD","d":[]},{"s":"PANCAKESWAP:ADAWBNB_28415F.USD","d":[]},{"s":"SUSHISWAPPOLYGON:QIMIMATIC_96F723","d":[]},{"s":"PANCAKESWAP:MCWBNB_4899FC","d":[]},{"s":"PANCAKESWAP:GAMERFIWBNB_A6F700.USD","d":[]},{"s":"SUSHISWAP:YVECRVDAOWETH_10B471","d":[]},{"s":"UPBIT:SNTBTC","d":[]},{"s":"KUCOIN:CULTUSDT","d":[]},{"s":"PANCAKESWAP:PORTXBUSD_5785B7","d":[]},{"s":"PANCAKESWAP:BPWBNB_2BF2DE","d":[]},{"s":"HONEYSWAP:BUSDWXDAI_476E86","d":[]},{"s":"KUCOIN:LYMETH","d":[]},{"s":"PANCAKESWAP:JSCUSDT_8B2ECB","d":[]},{"s":"PANCAKESWAP:TRTWBNB_D738BD","d":[]},{"s":"PANCAKESWAP:SOLCASHWBNB_09F677","d":[]},{"s":"PANCAKESWAP:KALMWBNB_C74F72.USD","d":[]},{"s":"SUSHISWAPPOLYGON:AVAXWETH_1274DE","d":[]},{"s":"PANCAKESWAP:BFLOKIWBNB_511F69.USD","d":[]},{"s":"PANCAKESWAP:YOUWBNB_45ABA7","d":[]},{"s":"SUSHISWAP:SMARTUSDT_18D9C0","d":[]},{"s":"HONEYSWAP:USDCDAI_DD7246","d":[]},{"s":"PANCAKESWAP:TRPWBNB_6E8EEB.USD","d":[]},{"s":"PANCAKESWAP:FTCUSDT_8B5FB2","d":[]},{"s":"KUCOIN:AVAXBTC","d":[]},{"s":"PANCAKESWAP:YONUSDT_CA4CCB","d":[]},{"s":"PANCAKESWAP:DSDWBNB_5F1ED5.USD","d":[]},{"s":"PANCAKESWAP:PIGGYCWBNB_73D596.USD","d":[]},{"s":"PANCAKESWAP:DOGECOINWBNB_3041B5","d":[]},{"s":"HONEYSWAP:PAXGWBTC_A98427.USD","d":[]},{"s":"SUSHISWAP:WARRIORWETH_3C9FBA.USD","d":[]},{"s":"HONEYSWAP:PCTWXDAI_2F8940","d":[]},{"s":"KUCOIN:FTTBTC","d":[]},{"s":"PANCAKESWAP:SNXWBNB_3766C8.USD","d":[]},{"s":"PANCAKESWAP:CX100WBNB_ED3B25.USD","d":[]},{"s":"PANCAKESWAP:VEEDWBNB_478456","d":[]},{"s":"PANCAKESWAP:WEETWOWBNB_CC2D2D","d":[]},{"s":"KUCOIN:BEATUSDT","d":[]},{"s":"PANCAKESWAP:SHENHUAWBNB_3AF47A","d":[]},{"s":"PANCAKESWAP:DEBTXPLR_213103","d":[]},{"s":"PANCAKESWAP:XFISTUSDT_81C70B","d":[]},{"s":"PANCAKESWAP:BSCVWBNB_C13A53.USD","d":[]},{"s":"PANCAKESWAP:STARKSTARTERWBNB_8FF3F8","d":[]},{"s":"PANCAKESWAP:DOSEWBNB_A62193.USD","d":[]},{"s":"KUCOIN:ERGUSDT","d":[]},{"s":"PANCAKESWAP:QUACKWBNB_2681D0","d":[]},{"s":"PANCAKESWAP:CRYFTWBNB_3AE9DC","d":[]},{"s":"UPBIT:STORJBTC","d":[]},{"s":"PANCAKESWAP:CRACEWBNB_C17158","d":[]},{"s":"PANCAKESWAP:MRCRWBNB_739052.USD","d":[]},{"s":"KUCOIN:SXPBTC","d":[]},{"s":"PANCAKESWAP:DEFXBUSD_B58427","d":[]},{"s":"PANCAKESWAP:HUDIWBNB_9428D7","d":[]},{"s":"HONEYSWAP:WETCWXDAI_FDE35C.USD","d":[]},{"s":"UPBIT:INJBTC","d":[]},{"s":"PANCAKESWAP:BIFAWBNB_E5E7DD.USD","d":[]},{"s":"SUSHISWAP:WFLOWWETH_5A7051.USD","d":[]},{"s":"KUCOIN:ETHEUR","d":[]},{"s":"PANCAKESWAP:AVAWBNB_F24D24","d":[]},{"s":"SUSHISWAP:BENJIREVV_7B2024.USD","d":[]},{"s":"KUCOIN:ZCXBTC","d":[]},{"s":"PANCAKESWAP:STRXWBNB_472E71","d":[]},{"s":"HONEYSWAP:ENJWXDAI_059478","d":[]},{"s":"KUCOIN:DASHKCS","d":[]},{"s":"PANCAKESWAP:BAFEWBNB_2967DF.USD","d":[]},{"s":"SUSHISWAPPOLYGON:LIMEWMATIC_DCB0C1.USD","d":[]},{"s":"PANCAKESWAP:ESHAREWBNB_50A7BA.USD","d":[]},{"s":"PANCAKESWAP:NOOTWBNB_67C51D.USD","d":[]},{"s":"PANCAKESWAP:GLEWBNB_E4E256.USD","d":[]},{"s":"PANCAKESWAP:HERWBNB_44A4DB","d":[]},{"s":"PANCAKESWAP:ADAPADWBNB_1BAA21","d":[]},{"s":"PANCAKESWAP:CBSLWBNB_D09F8F.USD","d":[]},{"s":"PANCAKESWAP:P2PTXTWBNB_8BB1E0.USD","d":[]},{"s":"HONEYSWAP:FLURYWXDAI_867003","d":[]},{"s":"PANCAKESWAP:PIXELWBNB_E5E847","d":[]},{"s":"PANCAKESWAP:ELAUNCHWBNB_4335D8","d":[]},{"s":"SUSHISWAP:RUNEWETH_CC3959.USD","d":[]},{"s":"SUSHISWAP:DAOWETH_96F5B7","d":[]},{"s":"PANCAKESWAP:BACKBUSD_19EEF9","d":[]},{"s":"OKX:LOOKSUSDC","d":[]},{"s":"PANCAKESWAP:COMPETH_039295","d":[]},{"s":"KUCOIN:HIVALHALLAUSDT","d":[]},{"s":"PANCAKESWAP:FRAGWBNB_FB39B4","d":[]},{"s":"SUSHISWAPPOLYGON:AAVEWETH_2813D4.USD","d":[]},{"s":"PANCAKESWAP:ARI10WBNB_BF1C91.USD","d":[]},{"s":"BINANCE:KNCUSDT.P","d":[]},{"s":"PANCAKESWAP:CZRCZUSD_BF92A0.USD","d":[]},{"s":"PANCAKESWAP:LCWBNB_AC4DCB.USD","d":[]},{"s":"HONEYSWAP:EWTBWXDAI_CBB497","d":[]},{"s":"KUCOIN:ZRXBTC","d":[]},{"s":"PANCAKESWAP:AIDOGEWBNB_D932B1.USD","d":[]},{"s":"PANCAKESWAP:BTCUSDT_FE4124","d":[]},{"s":"PANCAKESWAP:AGGWBNB_516BA8","d":[]},{"s":"KUCOIN:ISLMUSDT","d":[]},{"s":"SUSHISWAP:BFCWETH_281DF7.USD","d":[]},{"s":"HONEYSWAP:SUSHIHNY_827C64","d":[]},{"s":"PANCAKESWAP:STATICBUSD_697587","d":[]},{"s":"PANCAKESWAP:MELDWBNB_5057A3.USD","d":[]},{"s":"PANCAKESWAP:YYLMWBNB_9DEA8A.USD","d":[]},{"s":"PANCAKESWAP:YUANXIAOWBNB_11F8CB.USD","d":[]},{"s":"PANCAKESWAP:QBDUSDT_D5BC4C","d":[]},{"s":"HONEYSWAP:MANAWXDAI_675642","d":[]},{"s":"HONEYSWAP:HAUSAGVE_EF9384.USD","d":[]},{"s":"PANCAKESWAP:BLXWBNB_4BB203","d":[]},{"s":"PANCAKESWAP:NPTWBNB_B00A22.USD","d":[]},{"s":"PANCAKESWAP:MATABUSD_17D95A","d":[]},{"s":"PANCAKESWAP:QUOBUSD_12B9E2","d":[]},{"s":"PANCAKESWAP:ANMLWBNB_30176D.USD","d":[]},{"s":"PANCAKESWAP:CSIXCAKE_43C2AB.USD","d":[]},{"s":"PANCAKESWAP:BNKSYWBNB_08F5B4","d":[]},{"s":"KUCOIN:FXSBTC","d":[]},{"s":"PANCAKESWAP:BENZWBNB_6EF086","d":[]},{"s":"PANCAKESWAP:DARIKUSDT_BBA50B","d":[]},{"s":"PANCAKESWAP:ZGXUSDT_CC2730","d":[]},{"s":"PANCAKESWAP:WBANBUSD_351A29","d":[]},{"s":"PANCAKESWAP:MBEWBNB_191439","d":[]},{"s":"PANCAKESWAP:BTCQUSDT_CC9BC1","d":[]},{"s":"HONEYSWAP:HAMWXDAI_8CE33B.USD","d":[]},{"s":"PANCAKESWAP:CARESV2WBNB_CAE4DC.USD","d":[]},{"s":"SUSHISWAP:CVXCRVCRV_33F6DD","d":[]},{"s":"PANCAKESWAP:BSCETFWBNB_B97782","d":[]},{"s":"PANCAKESWAP:VICSUSDT_C5B251","d":[]},{"s":"BINANCE:VIBUSD","d":[]},{"s":"PANCAKESWAP:KOPUSDT_4B2615","d":[]},{"s":"PANCAKESWAP:SHAKBUSD_1845BB","d":[]},{"s":"PANCAKESWAP:LGBTWBNB_7ECEAD.USD","d":[]},{"s":"PANCAKESWAP:GOWBNB_E2E8C6.USD","d":[]},{"s":"PANCAKESWAP:LKTUSDT_5C74EF","d":[]},{"s":"PANCAKESWAP:LINKSWBNB_0687C3.USD","d":[]},{"s":"PANCAKESWAP:NEWGWBNB_EA95A3.USD","d":[]},{"s":"KUCOIN:VETUSDT.3S","d":[]},{"s":"PANCAKESWAP:TACUSDT_308921","d":[]},{"s":"PANCAKESWAP:ATAWBNB_BEDE92","d":[]},{"s":"HONEYSWAP:BADGERWXDAI_51B55C","d":[]},{"s":"PANCAKESWAP:GYROUSDT_5CA063","d":[]},{"s":"PANCAKESWAP:KOLLINK_16B5D0","d":[]},{"s":"PANCAKESWAP:BABYKISHUWBNB_7F5D12.USD","d":[]},{"s":"PANCAKESWAP:BNBMPWBNB_FDB18D","d":[]},{"s":"PANCAKESWAP:WGUARDIANWBNB_4E38A4","d":[]},{"s":"PANCAKESWAP:AFCWBNB_578ABB.USD","d":[]},{"s":"PANCAKESWAP:BULKETH_8D7F8B","d":[]},{"s":"PANCAKESWAP:POKOETH_85EC4C","d":[]},{"s":"PANCAKESWAP:YFIIIWBNB_68F9A6","d":[]},{"s":"PANCAKESWAP:ASPOBUSD_BD1DB8","d":[]},{"s":"PANCAKESWAP:TOPUSDT_3BB274","d":[]},{"s":"UPBIT:UNIBTC","d":[]},{"s":"PANCAKESWAP:LIMOBUSD_6267E8","d":[]},{"s":"PANCAKESWAP:DBWUSDT_69D415","d":[]},{"s":"PANCAKESWAP:TULIPWBNB_24B9B5.USD","d":[]},{"s":"PANCAKESWAP:RATSWBNB_B1ED20.USD","d":[]},{"s":"PANCAKESWAP:PAWGWBNB_8EFD9C.USD","d":[]},{"s":"PANCAKESWAP:ATMUSDT_E2972B","d":[]},{"s":"PANCAKESWAP:MVCWBNB_F99030","d":[]},{"s":"PANCAKESWAP:FITMWBNB_DD123E.USD","d":[]},{"s":"PANCAKESWAP:SUPDOGWBNB_6096BD.USD","d":[]},{"s":"PANCAKESWAP:THOREUMUSDT_A5AB09","d":[]},{"s":"PANCAKESWAP:GXFCWBNB_1E297F","d":[]},{"s":"HONEYSWAP:STAKEBAO_0CE463","d":[]},{"s":"PANCAKESWAP:CDTWBNB_0C8011.USD","d":[]},{"s":"PANCAKESWAP:BTCKINGUSDT_48BF9B","d":[]},{"s":"BINANCE:DEFIUSDT.P","d":[]},{"s":"PANCAKESWAP:KGSOWBNB_B11243","d":[]},{"s":"BINANCE:IRISUSD","d":[]},{"s":"KUCOIN:BONDLYUSDT","d":[]},{"s":"PANCAKESWAP:ANCHORWBNB_942986.USD","d":[]},{"s":"SUSHISWAP:SUSHIWETH_795065","d":[]},{"s":"BINANCE:BAKEUSDT.P","d":[]},{"s":"PANCAKESWAP:ILABUSD_7C0FF9","d":[]},{"s":"OKX:MINAUSDC","d":[]},{"s":"KUCOIN:LINKBTC","d":[]},{"s":"PANCAKESWAP:BTCBANKUSDT_8DA4F5","d":[]},{"s":"PANCAKESWAP:EXTWBNB_598AC8.USD","d":[]},{"s":"PANCAKESWAP:CR7WBNB_1B1729","d":[]},{"s":"PANCAKESWAP:TONCOINSPITZ_62382C.USD","d":[]},{"s":"PANCAKESWAP:GEMCZUSD_932190","d":[]},{"s":"HONEYSWAP:CARHNY_80EE54","d":[]},{"s":"PANCAKESWAP:RGNWBNB_0C1800","d":[]},{"s":"PANCAKESWAP:MAIWBNB_2FAD51.USD","d":[]},{"s":"PANCAKESWAP:KUBICWBNB_E46FE3","d":[]},{"s":"PANCAKESWAP:PINKWBNB_F0F701.USD","d":[]},{"s":"PANCAKESWAP:BBADGERBTCB_5A5860.USD","d":[]},{"s":"PANCAKESWAP:MINIPEPEWBNB_C4C8DA.USD","d":[]},{"s":"BINANCE:EDUUSD","d":[]},{"s":"PANCAKESWAP:BPADWBNB_DAB856.USD","d":[]},{"s":"PANCAKESWAP:MTVTWBNB_0A2F32","d":[]},{"s":"PANCAKESWAP:RADARWBNB_7FF4B9.USD","d":[]},{"s":"PANCAKESWAP:DORKLWBNB_F9CE57","d":[]},{"s":"PANCAKESWAP:TIMENUSDT_AA48CC","d":[]},{"s":"PANCAKESWAP:KKWBNB_30E1D0","d":[]},{"s":"PANCAKESWAP:XLVWBNB_8600EA.USD","d":[]},{"s":"PANCAKESWAP:BLAZEWBNB_12610A.USD","d":[]},{"s":"PANCAKESWAP:QXCWBNB_2F26D0","d":[]},{"s":"BINANCE:DATAUSD","d":[]},{"s":"PANCAKESWAP:ECOWBNB_DA6126.USD","d":[]},{"s":"PANCAKESWAP:RIGWBNB_810DBA","d":[]},{"s":"OKX:LTCUSD27U2024","d":[]},{"s":"PANCAKESWAP:BOBOWETH_A12EE8.USD","d":[]},{"s":"KUCOIN:BONKUSDT","d":[]},{"s":"UPBIT:MKRBTC","d":[]},{"s":"OKX:DOGEETH","d":[]},{"s":"SUSHISWAP:MUSTWETH_A872D2.USD","d":[]},{"s":"OKX:CSPRUSDC","d":[]},{"s":"PANCAKESWAP:POWWBNB_AB20BB.USD","d":[]},{"s":"PANCAKESWAP:MAGAWBNB_18BFEE.USD","d":[]},{"s":"HONEYSWAP:TEQUILAWXDAI_8FC2FE","d":[]},{"s":"PANCAKESWAP:MSGWBNB_52A41A","d":[]},{"s":"PANCAKESWAP:UNGUSDT_96832B","d":[]},{"s":"PANCAKESWAP:PWDWBNB_F5E222","d":[]},{"s":"PANCAKESWAP:FUTUREAIWBNB_B0DA84.USD","d":[]},{"s":"PANCAKESWAP:LEVIANTHANPEPE_9F3047","d":[]},{"s":"PANCAKESWAP:BABYMUSKWBNB_F1D5C6","d":[]},{"s":"PANCAKESWAP:VLXPADWBNB_445E40","d":[]},{"s":"PANCAKESWAP:YDAOUSDT_23C96A","d":[]},{"s":"PANCAKESWAP:DMOONWBNB_1EFF88.USD","d":[]},{"s":"OKX:LTCBTC","d":[]},{"s":"PANCAKESWAP:KONWBNB_9D9EF9","d":[]},{"s":"PANCAKESWAP:WLCWBNB_462224","d":[]},{"s":"OKX:MATICEUR","d":[]},{"s":"PANCAKESWAP:TRUMPWBNB_A67125.USD","d":[]},{"s":"PANCAKESWAP:LGTUSDT_9535A3","d":[]},{"s":"HONEYSWAP:XCOMBHNY_D791C9.USD","d":[]},{"s":"PANCAKESWAP:DRAGONUSDT_DC1BE0","d":[]},{"s":"HONEYSWAP:FRACTIONWXDAI_53704A","d":[]},{"s":"SUSHISWAP:ALUSDWETH_0589E2.USD","d":[]},{"s":"PANCAKESWAP:GALEONBUSD_469E0D","d":[]},{"s":"PANCAKESWAP:PIKACHUWBNB_0DDD19.USD","d":[]},{"s":"PANCAKESWAP:MWUSDT_F48B65","d":[]},{"s":"UPBIT:AUCTIONBTC","d":[]},{"s":"PANCAKESWAP:SYNTHUSDT_8D84A1","d":[]},{"s":"PANCAKESWAP:WINUWBNB_8A6E21.USD","d":[]},{"s":"SUSHISWAP:SRMWETH_117D42","d":[]},{"s":"SUSHISWAPPOLYGON:ZROWMATIC_CF63FC.USD","d":[]},{"s":"PANCAKESWAP:BSCXWBNB_47C42B","d":[]},{"s":"PANCAKESWAP:LUCKYSHIBWBNB_01B4FD.USD","d":[]},{"s":"PANCAKESWAP:LONGFUWBNB_E861FE","d":[]},{"s":"BINANCE:PIVXUSD","d":[]},{"s":"OKX:BTCUSDT27U2024","d":[]},{"s":"PANCAKESWAP:MARVINWBNB_D234C7","d":[]},{"s":"PANCAKESWAP:CBDWBNB_A13403","d":[]},{"s":"PANCAKESWAP:FUSEWBNB_6483F1","d":[]},{"s":"HONEYSWAP:DEXPWBTC_D9E97C","d":[]},{"s":"PANCAKESWAP:BGVTWBNB_007A5E","d":[]},{"s":"PANCAKESWAP:SHENSHOUC95E16_B576DA","d":[]},{"s":"KUCOIN:BURGERUSDT","d":[]},{"s":"KUCOIN:VEGAUSDT","d":[]},{"s":"OKX:PCIUSDT","d":[]},{"s":"PANCAKESWAP:BABYDOGWIFWBNB_482A5C","d":[]},{"s":"PANCAKESWAP:FIFWBNB_0F1178","d":[]},{"s":"KUCOIN:DAGUSDT","d":[]},{"s":"PANCAKESWAP:IDIABUSD_71E6DE","d":[]},{"s":"PANCAKESWAP:BIRDJSTX_AD07F1","d":[]},{"s":"PANCAKESWAP:NPTWBNB_B34EA6","d":[]},{"s":"PANCAKESWAP:SIRWBNB_5097A3","d":[]},{"s":"PANCAKESWAP:AUTUSDT_765842","d":[]},{"s":"PANCAKESWAP:PORKWETH_76D654","d":[]},{"s":"PANCAKESWAP:DUSKWBNB_678EDB","d":[]},{"s":"PANCAKESWAP:KAFGYINGLHGOXI_0E2EF2.USD","d":[]},{"s":"PANCAKESWAP:MYSTUSDC_23DEF9","d":[]},{"s":"PANCAKESWAP:BTCBDXO_6128F6.USD","d":[]},{"s":"PANCAKESWAP:INSURWBNB_D01BF2","d":[]},{"s":"PANCAKESWAP:SHENSHOUADDAAF_A90A8B.USD","d":[]},{"s":"PANCAKESWAP:RYUSDT_0E553C","d":[]},{"s":"BINANCE:JASMYUSDT.P","d":[]},{"s":"PANCAKESWAP:PLSPADWBNB_8738DF","d":[]},{"s":"BINANCE:WLDUSDC.P","d":[]},{"s":"PANCAKESWAP:BITBTCBTCB_601E4F.USD","d":[]},{"s":"PANCAKESWAP:KSOSWBNB_9F2FCB.USD","d":[]},{"s":"PANCAKESWAP:DOD100WBNB_BFDF07.USD","d":[]},{"s":"PANCAKESWAP:TROLLXWBNB_B6F03A","d":[]},{"s":"UPBIT:TUSDUSDT","d":[]},{"s":"PANCAKESWAP:XBCWBNB_2E8DA1.USD","d":[]},{"s":"PANCAKESWAP:SMAUSDT_887652","d":[]},{"s":"PANCAKESWAP:BNBCEOWBNB_F37639.USD","d":[]},{"s":"KUCOIN:CUDOSUSDT","d":[]},{"s":"KUCOIN:XPRTUSDT","d":[]},{"s":"OKX:XRPETH","d":[]},{"s":"UPBIT:XEMBTC","d":[]},{"s":"PANCAKESWAP:BTOPWBNB_B591B8.USD","d":[]},{"s":"PANCAKESWAP:HEBUSD_D89D71","d":[]},{"s":"PANCAKESWAP:RABBITKINGWBNB_8F5688.USD","d":[]},{"s":"KUCOIN:HEARTBTC","d":[]},{"s":"PANCAKESWAP:ALPACAWBNB_F3CE6A","d":[]},{"s":"PANCAKESWAP:SPORTSAIWBNB_853EFD","d":[]},{"s":"PANCAKESWAP:VPPWBNB_AA59B0.USD","d":[]},{"s":"PANCAKESWAP:PAPERWBNB_A5C495.USD","d":[]},{"s":"PANCAKESWAP:UVCUSDT_DD47DE","d":[]},{"s":"PANCAKESWAP:SWAPWBNB_44A4F4.USD","d":[]},{"s":"PANCAKESWAP:EFTWBNB_EBDA2E.USD","d":[]},{"s":"PANCAKESWAP:BINWBNB_E432AF","d":[]},{"s":"PANCAKESWAP:EDOGEWBNB_13CAE0.USD","d":[]},{"s":"PANCAKESWAP:ICEWBNB_E0C4BE","d":[]},{"s":"PANCAKESWAP:SHIBLITEWBNB_707E5D","d":[]},{"s":"PANCAKESWAP:CTFUSDT_3CE249","d":[]},{"s":"HONEYSWAP:DATAWXDAI_3BB4EE.USD","d":[]},{"s":"OKX:XCHUSDT","d":[]},{"s":"PANCAKESWAP:YESWBNB_0C8754","d":[]},{"s":"PANCAKESWAP:TRNDZWBNB_00E1EF","d":[]},{"s":"PANCAKESWAP:HYPERWBNB_4F6BEC","d":[]},{"s":"PANCAKESWAP:FITCWBNB_314F1D","d":[]},{"s":"KUCOIN:MAPUSDT","d":[]},{"s":"BINANCE:CKBUSDT.P","d":[]},{"s":"PANCAKESWAP:PEPIWBNB_5DCED7.USD","d":[]},{"s":"PANCAKESWAP:MCCWBNB_7ACADB","d":[]},{"s":"PANCAKESWAP:AMWBNB_FC19F7","d":[]},{"s":"KUCOIN:XPRBTC","d":[]},{"s":"OKX:TUSDT","d":[]},{"s":"KUCOIN:XCURBTC","d":[]},{"s":"PANCAKESWAP:BPAYWBNB_5AEDB9","d":[]},{"s":"SUSHISWAP:AAVEWETH_D75EA1","d":[]},{"s":"PANCAKESWAP:UFIWBNB_DD0630","d":[]},{"s":"KUCOIN:AMPLETH","d":[]},{"s":"HONEYSWAP:HAUSWXDAI_B2E922.USD","d":[]},{"s":"PANCAKESWAP:MBFBUSD_3B90E7","d":[]},{"s":"PANCAKESWAP:XODEXWBNB_03FBEB.USD","d":[]},{"s":"PANCAKESWAP:RUBYWBNB_E3A88A","d":[]},{"s":"UPBIT:XTZBTC","d":[]},{"s":"KUCOIN:SHRAPUSDT","d":[]},{"s":"PANCAKESWAP:WEGROWBNB_8707AA.USD","d":[]},{"s":"PANCAKESWAP:PIG99WBNB_3041E2","d":[]},{"s":"KUCOIN:FIDAUSDT","d":[]},{"s":"PANCAKESWAP:94198676_BB8062","d":[]},{"s":"PANCAKESWAP:WMTWBNB_3C46A3.USD","d":[]},{"s":"PANCAKESWAP:BIRUUSDT_E18CE3","d":[]},{"s":"HONEYSWAP:MEWWETH_AE704C","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_5ED24A","d":[]},{"s":"PANCAKESWAP:BTCBWSHIB_306F8D.USD","d":[]},{"s":"PANCAKESWAP:SOLOWBNB_3A921F","d":[]},{"s":"PANCAKESWAP:EVDCWBNB_3B0CDA.USD","d":[]},{"s":"PANCAKESWAP:ALICEWBNB_CAD701.USD","d":[]},{"s":"PANCAKESWAP:TRUEPNLUSDT_ABFC14","d":[]},{"s":"SUSHISWAPPOLYGON:GRTWETH_1CEDA7","d":[]},{"s":"PANCAKESWAP:MPLAIWBNB_5680B3","d":[]},{"s":"PANCAKESWAP:NXBTCX_CC855F.USD","d":[]},{"s":"UPBIT:WAXPBTC","d":[]},{"s":"HONEYSWAP:XWRKZWXDAI_0E145F.USD","d":[]},{"s":"PANCAKESWAP:GHTWBNB_B5B2DC","d":[]},{"s":"PANCAKESWAP:GBNWBNB_274986.USD","d":[]},{"s":"PANCAKESWAP:UVDUSDT_166A0E","d":[]},{"s":"HONEYSWAP:HIVEWATER0X71850B_9E4188.USD","d":[]},{"s":"PANCAKESWAP:ZUCKWBNB_95BB11","d":[]},{"s":"PANCAKESWAP:TETEWBNB_409E72","d":[]},{"s":"KUCOIN:ARKMUSDT","d":[]},{"s":"PANCAKESWAP:FISTSUSDT_FCC49D","d":[]},{"s":"OKX:GEARUSDT","d":[]},{"s":"PANCAKESWAP:CRHTWBNB_B8E24F","d":[]},{"s":"KUCOIN:NMRUSDT","d":[]},{"s":"PANCAKESWAP:NULSBUSD_853784","d":[]},{"s":"KUCOIN:PDEXBTC","d":[]},{"s":"KUCOIN:CFXBTC","d":[]},{"s":"BINANCE:STGUSDT.P","d":[]},{"s":"PANCAKESWAP:TIIMBUSD_9D2F43","d":[]},{"s":"PANCAKESWAP:SJUSDT_3B9915","d":[]},{"s":"PANCAKESWAP:GSFWBNB_514963.USD","d":[]},{"s":"KUCOIN:THETAUSDT","d":[]},{"s":"PANCAKESWAP:NOOTWBNB_67C51D","d":[]},{"s":"PANCAKESWAP:CZPWWBNB_59AFE2","d":[]},{"s":"PANCAKESWAP:CLISTWBNB_32CD27","d":[]},{"s":"PANCAKESWAP:BICRBUSD_E31C61","d":[]},{"s":"PANCAKESWAP:IHUBWBNB_B2264E","d":[]},{"s":"PANCAKESWAP:MMMUSDT_21082B","d":[]},{"s":"PANCAKESWAP:XVRWBNB_1F4F24","d":[]},{"s":"SUSHISWAP:MASKUSDC_31FA98","d":[]},{"s":"PANCAKESWAP:SQUIDGROWWBNB_261FCC.USD","d":[]},{"s":"PANCAKESWAP:TOTOCATWBNB_6E8D0A.USD","d":[]},{"s":"HONEYSWAP:MATICUSDT_A35EDC","d":[]},{"s":"BINANCE:IOSTUSDT.P","d":[]},{"s":"KUCOIN:EOSBTC","d":[]},{"s":"PANCAKESWAP:MMITWBNB_7F36FD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_819BBC.USD","d":[]},{"s":"PANCAKESWAP:1688USDT_3042F7","d":[]},{"s":"PANCAKESWAP:DEGAWBNB_E6A3AD.USD","d":[]},{"s":"PANCAKESWAP:ALPAWBNB_4CC442","d":[]},{"s":"PANCAKESWAP:RAKEWBNB_39F1FB.USD","d":[]},{"s":"HONEYSWAP:BRIGHTHNY_090723.USD","d":[]},{"s":"PANCAKESWAP:CCFWBNB_83A096","d":[]},{"s":"PANCAKESWAP:UNWWBNB_5CF693.USD","d":[]},{"s":"PANCAKESWAP:BTRBUSD_BC7AC6","d":[]},{"s":"SUSHISWAP:UMAWETH_001B64","d":[]},{"s":"PANCAKESWAP:COMPETH_039295.USD","d":[]},{"s":"PANCAKESWAP:SANTOSWBNB_06043B.USD","d":[]},{"s":"PANCAKESWAP:PINUSDT_788183","d":[]},{"s":"PANCAKESWAP:BONDLYWBNB_A97D52","d":[]},{"s":"PANCAKESWAP:GROKGODWBNB_7A9A8E.USD","d":[]},{"s":"PANCAKESWAP:ETRLWBNB_A7BA7D","d":[]},{"s":"PANCAKESWAP:CRYPTOPESOSWBNB_6C7336","d":[]},{"s":"PANCAKESWAP:QMALLWBNB_DD8124","d":[]},{"s":"PANCAKESWAP:FLUFWBNB_6103F5","d":[]},{"s":"HONEYSWAP:SETHWETH_576E91.USD","d":[]},{"s":"PANCAKESWAP:PULSEWBNB_261B66","d":[]},{"s":"PANCAKESWAP:XIASIWBNB_017F74.USD","d":[]},{"s":"PANCAKESWAP:SLUSDT_E20671","d":[]},{"s":"KUCOIN:ELABTC","d":[]},{"s":"KUCOIN:XDBBTC","d":[]},{"s":"PANCAKESWAP:CTYWBNB_0124D6.USD","d":[]},{"s":"KUCOIN:STOREUSDT","d":[]},{"s":"PANCAKESWAP:AIWBNB_EFED08.USD","d":[]},{"s":"SUSHISWAP:WETHTUSD_760166","d":[]},{"s":"PANCAKESWAP:PEPIWBNB_50AD9A.USD","d":[]},{"s":"PANCAKESWAP:FANHUAWBNB_04DC11.USD","d":[]},{"s":"PANCAKESWAP:AXSWBNB_C2D00D","d":[]},{"s":"PANCAKESWAP:DCOINWBNB_E16D2F","d":[]},{"s":"PANCAKESWAP:WKTWBNB_F9B826.USD","d":[]},{"s":"HONEYSWAP:BRIGHTWXDAI_A1B4DF","d":[]},{"s":"KUCOIN:STOREETH","d":[]},{"s":"PANCAKESWAP:FENGWBNB_2B63DB","d":[]},{"s":"PANCAKESWAP:BANWBNB_82E038","d":[]},{"s":"PANCAKESWAP:ETEETH_6DC325.USD","d":[]},{"s":"HONEYSWAP:HODLDAI_C00FB7","d":[]},{"s":"PANCAKESWAP:FISTUSDT_9BDDB4","d":[]},{"s":"PANCAKESWAP:SIEWBNB_63349D.USD","d":[]},{"s":"UPBIT:LPTBTC","d":[]},{"s":"SUSHISWAP:SGTWETH_41BFBA.USD","d":[]},{"s":"SUSHISWAPPOLYGON:AURUMWMATIC_91670A.USD","d":[]},{"s":"PANCAKESWAP:520USDT_028885","d":[]},{"s":"PANCAKESWAP:MUSKDRAGONWBNB_588C46","d":[]},{"s":"PANCAKESWAP:VETTERWBNB_39D26B.USD","d":[]},{"s":"KUCOIN:LTCKCS","d":[]},{"s":"PANCAKESWAP:POPOUSDT_442443","d":[]},{"s":"PANCAKESWAP:SCVWBNB_550242","d":[]},{"s":"PANCAKESWAP:TONCOINYOFARM_055155.USD","d":[]},{"s":"PANCAKESWAP:ANIMALUSDT_295E33","d":[]},{"s":"PANCAKESWAP:GCBUSDT_1C493C","d":[]},{"s":"PANCAKESWAP:YYDSWBNB_FDF022","d":[]},{"s":"PANCAKESWAP:DODWBNB_F26D32.USD","d":[]},{"s":"PANCAKESWAP:SFUSDT_3D7724","d":[]},{"s":"HONEYSWAP:TRACWXDAI_57E2F1","d":[]},{"s":"PANCAKESWAP:THONICWBNB_621EFB.USD","d":[]},{"s":"PANCAKESWAP:WSIBUSD_A16CFD","d":[]},{"s":"SUSHISWAP:USTWETH_9A0CC6.USD","d":[]},{"s":"OKX:RIOUSDT","d":[]},{"s":"PANCAKESWAP:VCVCFGD_B3C1DE.USD","d":[]},{"s":"PANCAKESWAP:C98WBNB_922478.USD","d":[]},{"s":"UPBIT:PUNDIXBTC","d":[]},{"s":"PANCAKESWAP:KLUVWBNB_67AD9D","d":[]},{"s":"UPBIT:FORBTC","d":[]},{"s":"KUCOIN:TRUUSDT","d":[]},{"s":"OKX:APTUSDT","d":[]},{"s":"PANCAKESWAP:PCWSWBNB_6615CE","d":[]},{"s":"PANCAKESWAP:GARFIELDWBNB_802744","d":[]},{"s":"PANCAKESWAP:TRUMPPEPEWBNB_4224F2.USD","d":[]},{"s":"PANCAKESWAP:SPHYNXWBNB_CB5E61","d":[]},{"s":"PANCAKESWAP:FRONTWBNB_C6B668","d":[]},{"s":"KUCOIN:EGAMEUSDT","d":[]},{"s":"KUCOIN:AURYUSDT","d":[]},{"s":"SUSHISWAP:EDENWETH_82DBC2","d":[]},{"s":"PANCAKESWAP:AVRBUSD_85EF4C","d":[]},{"s":"PANCAKESWAP:FETTHOREUM_92CF99","d":[]},{"s":"KUCOIN:STRIKEBTC","d":[]},{"s":"PANCAKESWAP:FATCATWBNB_0F5A93","d":[]},{"s":"PANCAKESWAP:SCTUSDT_6221F1","d":[]},{"s":"PANCAKESWAP:DIAOSWCW_6E30DB","d":[]},{"s":"HONEYSWAP:PAXGWXDAI_E736A4.USD","d":[]},{"s":"PANCAKESWAP:METAWBNB_E688BF.USD","d":[]},{"s":"PANCAKESWAP:TOKENWBNB_05616B","d":[]},{"s":"KUCOIN:NEONUSDT","d":[]},{"s":"PANCAKESWAP:XTYUSDT_A2D6A2","d":[]},{"s":"PANCAKESWAP:ISPWBNB_01EB17","d":[]},{"s":"PANCAKESWAP:HNTUSDT_F37037","d":[]},{"s":"KUCOIN:MEMEUSDT","d":[]},{"s":"PANCAKESWAP:LIGHTWBNB_B1FEF3","d":[]},{"s":"KUCOIN:BCHUSDT","d":[]},{"s":"OKX:OXTUSDT","d":[]},{"s":"OKX:WLDUSDT","d":[]},{"s":"HONEYSWAP:XGTWXDAI_27F363.USD","d":[]},{"s":"PANCAKESWAP:NAMIWBNB_12581E.USD","d":[]},{"s":"PANCAKESWAP:BSTSWBNB_5CAE7F","d":[]},{"s":"KUCOIN:EWTBTC","d":[]},{"s":"BINANCE:AGIXUSDT.P","d":[]},{"s":"PANCAKESWAP:HFUSDT_E4F6FE","d":[]},{"s":"PANCAKESWAP:DLYWBNB_09CBC1.USD","d":[]},{"s":"KUCOIN:CAKEUSDT","d":[]},{"s":"KUCOIN:ADAUSDT","d":[]},{"s":"PANCAKESWAP:PAPAWBNB_6F92F5.USD","d":[]},{"s":"BINANCE:THETAUSDT.P","d":[]},{"s":"PANCAKESWAP:ANGELUSDT_C0E10B","d":[]},{"s":"OKX:OKTUSDT","d":[]},{"s":"PANCAKESWAP:KENNELWBNB_4C2A7C","d":[]},{"s":"PANCAKESWAP:MGDAUSDT_F46A81","d":[]},{"s":"KUCOIN:IOTAUSDT","d":[]},{"s":"BINANCE:ZRXUSD","d":[]},{"s":"PANCAKESWAP:XROWWBNB_CD40C1","d":[]},{"s":"PANCAKESWAP:TROLLERWBNB_4D81CA.USD","d":[]},{"s":"KUCOIN:GMXUSDT","d":[]},{"s":"PANCAKESWAP:BITCOINFBTCF_F06F0D","d":[]},{"s":"SUSHISWAP:UWUWETH_3E0486.USD","d":[]},{"s":"BINANCE:ETHUSD","d":[]},{"s":"PANCAKESWAP:SUGARWBNB_B522D0","d":[]},{"s":"KUCOIN:PYUSDUSDT","d":[]},{"s":"PANCAKESWAP:RUNEWBNB_F9444C","d":[]},{"s":"PANCAKESWAP:AI3WBNB_747EEB.USD","d":[]},{"s":"PANCAKESWAP:CVTWBNB_B5B806","d":[]},{"s":"SUSHISWAP:ILVWETH_6A091A.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_819BBC","d":[]},{"s":"PANCAKESWAP:BOBOWETH_A12EE8","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_53ED3E.USD","d":[]},{"s":"PANCAKESWAP:ORAITHOREUM_FB37C1","d":[]},{"s":"PANCAKESWAP:TCWBNB_543518.USD","d":[]},{"s":"PANCAKESWAP:BTCFUSDT_8345A4","d":[]},{"s":"PANCAKESWAP:BLUWBNB_D7D769.USD","d":[]},{"s":"PANCAKESWAP:MEMESUSDT_043FAE","d":[]},{"s":"OKX:CROUSDC","d":[]},{"s":"PANCAKESWAP:BULKETH_8D7F8B.USD","d":[]},{"s":"HONEYSWAP:YDAIYUSDCYUSDTYTUSDWETH_EDE99E","d":[]},{"s":"PANCAKESWAP:PVTUSDT_72278E","d":[]},{"s":"PANCAKESWAP:DOGRMYWBNB_CB1664.USD","d":[]},{"s":"OKX:QTUMUSDT","d":[]},{"s":"PANCAKESWAP:NNTUSDT_BB2450","d":[]},{"s":"KUCOIN:LTCUSDT.3S","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_A6667B.USD","d":[]},{"s":"PANCAKESWAP:TWOWBNB_9AFCA8","d":[]},{"s":"PANCAKESWAP:DADAWBNB_BE64A7","d":[]},{"s":"PANCAKESWAP:SWTWBNB_3A3004","d":[]},{"s":"HONEYSWAP:TEQUILAXCOMB_D53B85","d":[]},{"s":"PANCAKESWAP:BLKUSDT_1A6497","d":[]},{"s":"PANCAKESWAP:PANDAWBNB_6E4F8F.USD","d":[]},{"s":"KUCOIN:OLTBTC","d":[]},{"s":"PANCAKESWAP:SQUIDWBNB_683C42","d":[]},{"s":"PANCAKESWAP:UNIUSDT_17397B","d":[]},{"s":"HONEYSWAP:MIVAGNO_3935BB","d":[]},{"s":"BINANCE:ORDIUSD","d":[]},{"s":"PANCAKESWAP:ROUSEWBNB_25423D","d":[]},{"s":"BINANCE:WAVESUSDT.P","d":[]},{"s":"KUCOIN:ONTUSDT","d":[]},{"s":"PANCAKESWAP:CRDNWBNB_0A8CA6","d":[]},{"s":"PANCAKESWAP:HONWBNB_46EA88","d":[]},{"s":"PANCAKESWAP:FRPNWBNB_36F466","d":[]},{"s":"PANCAKESWAP:ASIXWBNB_D059DC.USD","d":[]},{"s":"OKX:BSVBTC","d":[]},{"s":"PANCAKESWAP:XRPCWBNB_4314AC.USD","d":[]},{"s":"SUSHISWAP:DOUGHWETH_97F34C","d":[]},{"s":"KUCOIN:WORKUSDT","d":[]},{"s":"SUSHISWAP:STRMWETH_B301D7.USD","d":[]},{"s":"PANCAKESWAP:BSWBNB_724F37.USD","d":[]},{"s":"BINANCE:DASHUSDT.P","d":[]},{"s":"PANCAKESWAP:MOONWBNB_C2ECC8.USD","d":[]},{"s":"SUSHISWAPPOLYGON:PHBDUSDC_4414B5","d":[]},{"s":"PANCAKESWAP:QXCWBNB_1AF9CF","d":[]},{"s":"HONEYSWAP:FRACTIONMIVA_EC771F.USD","d":[]},{"s":"PANCAKESWAP:VEGEWBNB_D27163.USD","d":[]},{"s":"PANCAKESWAP:MOSASDIC_DA0C9C.USD","d":[]},{"s":"KUCOIN:BIGTIMEUSDT","d":[]},{"s":"PANCAKESWAP:GULFUSDT_A39D27","d":[]},{"s":"HONEYSWAP:UNCLWXDAI_641C83","d":[]},{"s":"PANCAKESWAP:MOOVWBNB_CD106F","d":[]},{"s":"PANCAKESWAP:ARPAWBNB_9730C7.USD","d":[]},{"s":"HONEYSWAP:BALWXDAI_3AEB16","d":[]},{"s":"PANCAKESWAP:DRIVENXWBNB_A8E72B.USD","d":[]},{"s":"HONEYSWAP:RAIDWXDAI_C7BCD5.USD","d":[]},{"s":"PANCAKESWAP:WDLYUSDT_31C10B","d":[]},{"s":"PANCAKESWAP:YOUWBNB_45ABA7.USD","d":[]},{"s":"OKX:ATOMUSDC","d":[]},{"s":"PANCAKESWAP:EACETH_CB14B5.USD","d":[]},{"s":"PANCAKESWAP:SQUIDWBNB_038329","d":[]},{"s":"BINANCE:POLYXUSD","d":[]},{"s":"SUSHISWAP:NRCHWETH_161A49.USD","d":[]},{"s":"OKX:GMXUSDT","d":[]},{"s":"BINANCE:EOSUSD","d":[]},{"s":"PANCAKESWAP:MAGAWBNB_18BFEE","d":[]},{"s":"PANCAKESWAP:UTDUSDT_B01D60","d":[]},{"s":"PANCAKESWAP:ELFIBUSD_04679E","d":[]},{"s":"PANCAKESWAP:RAIDWBNB_D892BC.USD","d":[]},{"s":"KUCOIN:QTUMBTC","d":[]},{"s":"HONEYSWAP:MEMEWXDAI_5CE261.USD","d":[]},{"s":"PANCAKESWAP:LITEBCC_86209A","d":[]},{"s":"PANCAKESWAP:DDDWBNB_C19956","d":[]},{"s":"UPBIT:STXBTC","d":[]},{"s":"PANCAKESWAP:SMTUSDT_9399F0","d":[]},{"s":"PANCAKESWAP:FIVOUSDT_4201E0","d":[]},{"s":"PANCAKESWAP:ADETUSDC_74F94E","d":[]},{"s":"PANCAKESWAP:DOD100WBNB_BFDF07","d":[]},{"s":"PANCAKESWAP:UNICWBNB_0CC748","d":[]},{"s":"PANCAKESWAP:CIOTXIOTX_D7D39F","d":[]},{"s":"PANCAKESWAP:XCADCAKE_50E483.USD","d":[]},{"s":"SUSHISWAPPOLYGON:POLYCUBWETH_C9BA16.USD","d":[]},{"s":"PANCAKESWAP:WLCWBNB_69ED0D.USD","d":[]},{"s":"BINANCE:ENSUSDT.P","d":[]},{"s":"KUCOIN:EOSUSDC","d":[]},{"s":"PANCAKESWAP:FREEMOONWBNB_B24DA9.USD","d":[]},{"s":"PANCAKESWAP:LBRWBNB_9478AF.USD","d":[]},{"s":"PANCAKESWAP:BEAGLECAKEWBNB_CD5225.USD","d":[]},{"s":"HONEYSWAP:CLNYGIV_6E7749","d":[]},{"s":"PANCAKESWAP:BEAGLECAKEWBNB_CD5225","d":[]},{"s":"PANCAKESWAP:SHYTCOINWBNB_8E8098","d":[]},{"s":"PANCAKESWAP:SHAKEMILK2_223648.USD","d":[]},{"s":"PANCAKESWAP:TWTWBNB_610E7A.USD","d":[]},{"s":"PANCAKESWAP:MD3WBNB_654D76","d":[]},{"s":"PANCAKESWAP:DWTWBNB_C70163","d":[]},{"s":"PANCAKESWAP:DWTWBNB_535939.USD","d":[]},{"s":"KUCOIN:ONTBTC","d":[]},{"s":"PANCAKESWAP:BMUSDT_03DFEA","d":[]},{"s":"BINANCE:ETHUSDT28M2024","d":[]},{"s":"PANCAKESWAP:FTUSDC_D87F13","d":[]},{"s":"BINANCE:BTCUSDT28M2024","d":[]},{"s":"KUCOIN:BNBBTC","d":[]},{"s":"PANCAKESWAP:ETNWBNB_9118E0.USD","d":[]},{"s":"PANCAKESWAP:BAYEGODE_77D801","d":[]},{"s":"KUCOIN:KEYETH","d":[]},{"s":"HONEYSWAP:MANAWXDAI_675642.USD","d":[]},{"s":"PANCAKESWAP:ROTHSCHILDWBNB_05BF5E.USD","d":[]},{"s":"KUCOIN:RPLUSDT","d":[]},{"s":"PANCAKESWAP:TBLWBNB_A75DAC.USD","d":[]},{"s":"PANCAKESWAP:PEPECEOWBNB_72E58A.USD","d":[]},{"s":"BINANCE:XVGUSDT.P","d":[]},{"s":"PANCAKESWAP:DEBWBNB_6D9886.USD","d":[]},{"s":"PANCAKESWAP:QANXWBNB_215973","d":[]},{"s":"PANCAKESWAP:SKWBNB_DF16B9.USD","d":[]},{"s":"PANCAKESWAP:ONIETH_08EB05","d":[]},{"s":"UPBIT:VETBTC","d":[]},{"s":"PANCAKESWAP:SARTWBNB_74EF46","d":[]},{"s":"PANCAKESWAP:KOLETH_23C414.USD","d":[]},{"s":"HONEYSWAP:WATERBRIGHT_A84126.USD","d":[]},{"s":"SUSHISWAPPOLYGON:NCTKLIMA_B2D0D5.USD","d":[]},{"s":"PANCAKESWAP:BIRBWBNB_C5F6DB.USD","d":[]},{"s":"PANCAKESWAP:MATICPADWBNB_817EDB.USD","d":[]},{"s":"PANCAKESWAP:SUPERSHIBWBNB_5DE7F1.USD","d":[]},{"s":"PANCAKESWAP:CUWBNB_70ECDE","d":[]},{"s":"KUCOIN:HIPUNKSUSDT","d":[]},{"s":"BINANCE:POWRUSD","d":[]},{"s":"PANCAKESWAP:FWHWBNB_5C732D","d":[]},{"s":"PANCAKESWAP:HOPEWBNB_59CE81.USD","d":[]},{"s":"HONEYSWAP:UNIV2WXDAI_C8A1FA","d":[]},{"s":"PANCAKESWAP:SOLCASHWBNB_09F677.USD","d":[]},{"s":"PANCAKESWAP:VWBNB_330D52","d":[]},{"s":"PANCAKESWAP:QLWBNB_244A19","d":[]},{"s":"SUSHISWAP:WETHUSDC_397FF1","d":[]},{"s":"SUSHISWAP:CLNYUSDC_F7AC1F","d":[]},{"s":"PANCAKESWAP:FITCWBNB_314F1D.USD","d":[]},{"s":"KUCOIN:PERPBTC","d":[]},{"s":"PANCAKESWAP:AIWBNB_BACBEA","d":[]},{"s":"PANCAKESWAP:DFSMWBNB_309118.USD","d":[]},{"s":"PANCAKESWAP:AIECUSDT_2420B1","d":[]},{"s":"OKX:LOOKSUSDT","d":[]},{"s":"PANCAKESWAP:LAVAXWBNB_B5CA2B","d":[]},{"s":"PANCAKESWAP:HKDOGEWBNB_F21D88.USD","d":[]},{"s":"PANCAKESWAP:XDGWBNB_3121D5.USD","d":[]},{"s":"HONEYSWAP:CARWXDAI_FA44BD","d":[]},{"s":"BINANCE:API3USD","d":[]},{"s":"PANCAKESWAP:TNTTWBNB_D38B5A.USD","d":[]},{"s":"PANCAKESWAP:TCTWBNB_53D469.USD","d":[]},{"s":"PANCAKESWAP:CIFIWBNB_2DE7AA","d":[]},{"s":"PANCAKESWAP:ETHFIUSDT_B5CC23","d":[]},{"s":"PANCAKESWAP:DREAMWBNB_9FC74D","d":[]},{"s":"PANCAKESWAP:GNAUSDT_79A3FF","d":[]},{"s":"PANCAKESWAP:LACEWBNB_0C03AA.USD","d":[]},{"s":"PANCAKESWAP:SMGSPIN_EFED8E","d":[]},{"s":"PANCAKESWAP:ZBCPOSE_C6EA71","d":[]},{"s":"PANCAKESWAP:CHARGEBUSD_B73B4E","d":[]},{"s":"PANCAKESWAP:DXRWBNB_27185C","d":[]},{"s":"PANCAKESWAP:OSWWBNB_67946C","d":[]},{"s":"PANCAKESWAP:AVOWBNB_DD9D02","d":[]},{"s":"PANCAKESWAP:RAINWBNB_913F92.USD","d":[]},{"s":"PANCAKESWAP:LCOINV2WBNB_D02EDC","d":[]},{"s":"PANCAKESWAP:CWSWBNB_D61D66","d":[]},{"s":"PANCAKESWAP:C98WBNB_922478","d":[]},{"s":"SUSHISWAPPOLYGON:DDAOWETH_FC0677","d":[]},{"s":"PANCAKESWAP:AIAWBNB_46592F","d":[]},{"s":"PANCAKESWAP:HKUSDT_6A00E8","d":[]},{"s":"PANCAKESWAP:ASHAREBUSD_91DA56","d":[]},{"s":"PANCAKESWAP:BPEPEWBNB_DCBBAD.USD","d":[]},{"s":"OKX:DYDXUSDT","d":[]},{"s":"PANCAKESWAP:POKERFIWBNB_CB984D.USD","d":[]},{"s":"SUSHISWAPPOLYGON:PAUTOUSDC_D8D51E","d":[]},{"s":"SUSHISWAPPOLYGON:MIMATICUSDC_8CEED6","d":[]},{"s":"PANCAKESWAP:BICSWBNB_E521EB","d":[]},{"s":"PANCAKESWAP:GVCWBNB_930FA5.USD","d":[]},{"s":"PANCAKESWAP:INSPWBNB_705D65","d":[]},{"s":"PANCAKESWAP:APXWBNB_AF839F.USD","d":[]},{"s":"SUSHISWAPPOLYGON:STNDWMATIC_7E24A4","d":[]},{"s":"PANCAKESWAP:TSTWBNB_5D701C.USD","d":[]},{"s":"OKX:STORJUSDT","d":[]},{"s":"PANCAKESWAP:COLLIEWBNB_46CE39.USD","d":[]},{"s":"PANCAKESWAP:BUYWBNB_AD818A.USD","d":[]},{"s":"BINANCE:ORDIUSDC.P","d":[]},{"s":"PANCAKESWAP:MARSHWBNB_222F93","d":[]},{"s":"BINANCE:DOGEUSDT.P","d":[]},{"s":"SUSHISWAPPOLYGON:EPFBX_41D9DE.USD","d":[]},{"s":"PANCAKESWAP:CUBBHBD_93C52E.USD","d":[]},{"s":"PANCAKESWAP:PLDXUSDT_03C828","d":[]},{"s":"PANCAKESWAP:KANG3NWBNB_70B6A4","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_B6409F.USD","d":[]},{"s":"KUCOIN:VETBTC","d":[]},{"s":"PANCAKESWAP:CHAPZWBNB_2C56CD.USD","d":[]},{"s":"PANCAKESWAP:TWDWBNB_4F61C7","d":[]},{"s":"PANCAKESWAP:DUELWBNB_0D1F26","d":[]},{"s":"PANCAKESWAP:RIDEWBNB_60BFB6.USD","d":[]},{"s":"PANCAKESWAP:DCMDEBT_AD2A40","d":[]},{"s":"UPBIT:OCEANBTC","d":[]},{"s":"PANCAKESWAP:CBDWBNB_0B4958","d":[]},{"s":"PANCAKESWAP:MTRXBUSD_1CDAC8","d":[]},{"s":"KUCOIN:EOSKCS","d":[]},{"s":"SUSHISWAP:INVWETH_328DFD","d":[]},{"s":"HONEYSWAP:YFIUSDC_4895F9","d":[]},{"s":"KUCOIN:KASUPUSDT","d":[]},{"s":"KUCOIN:STARLYUSDT","d":[]},{"s":"PANCAKESWAP:CHARIZARDWBNB_0842C8.USD","d":[]},{"s":"KUCOIN:TRADEBTC","d":[]},{"s":"PANCAKESWAP:BCOINUSDT_427CBB","d":[]},{"s":"PANCAKESWAP:RMOONWBNB_449F3D","d":[]},{"s":"PANCAKESWAP:CAROLWBNB_92FE02.USD","d":[]},{"s":"PANCAKESWAP:ALIAWBNB_358173.USD","d":[]},{"s":"PANCAKESWAP:OCEANSWBNB_9BA68A.USD","d":[]},{"s":"PANCAKESWAP:FRAGWBNB_FB39B4.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DINOUSDC_3324AF","d":[]},{"s":"PANCAKESWAP:SUREWBNB_B1AD8C.USD","d":[]},{"s":"PANCAKESWAP:INDWBNB_1C1BE9","d":[]},{"s":"KUCOIN:ONTETH","d":[]},{"s":"PANCAKESWAP:OKYWBNB_0D8F6B","d":[]},{"s":"OKX:IQUSDT","d":[]},{"s":"PANCAKESWAP:DRAXWBNB_1853B9","d":[]},{"s":"OKX:RDNTUSDT","d":[]},{"s":"PANCAKESWAP:TINUWBNB_61CEFE","d":[]},{"s":"PANCAKESWAP:ZRCUSDT_A6F921","d":[]},{"s":"PANCAKESWAP:DYBWBNB_E1805D","d":[]},{"s":"PANCAKESWAP:KKTWBNB_52DB9D.USD","d":[]},{"s":"UPBIT:AQTBTC","d":[]},{"s":"PANCAKESWAP:EARNWBNB_8FCCFC","d":[]},{"s":"PANCAKESWAP:BSAFUWBNB_5ECD81.USD","d":[]},{"s":"PANCAKESWAP:METAWBNB_E688BF","d":[]},{"s":"BINANCE:STPTUSD","d":[]},{"s":"PANCAKESWAP:PPTWBNB_8A7839.USD","d":[]},{"s":"PANCAKESWAP:SODWBNB_766B81","d":[]},{"s":"BINANCE:RENUSDT.P","d":[]},{"s":"PANCAKESWAP:FAMEWBNB_5F1BA0","d":[]},{"s":"PANCAKESWAP:SKERWBNB_D53622","d":[]},{"s":"HONEYSWAP:TRINIWXDAI_99737C","d":[]},{"s":"PANCAKESWAP:CHAMPSWBNB_D18029","d":[]},{"s":"PANCAKESWAP:CBCWBNB_D82746","d":[]},{"s":"PANCAKESWAP:SHIELDNETWBNB_B4EAFE","d":[]},{"s":"OKX:CVXUSDT","d":[]},{"s":"PANCAKESWAP:SQUIRTWBNB_268778.USD","d":[]},{"s":"PANCAKESWAP:UFLOKIWBNB_D7D71B.USD","d":[]},{"s":"PANCAKESWAP:40V2WBNB_9DEEF2","d":[]},{"s":"PANCAKESWAP:ETL20WBNB_CCFF17.USD","d":[]},{"s":"PANCAKESWAP:CBSLWBNB_D09F8F","d":[]},{"s":"PANCAKESWAP:STACKSWBNB_A1AD3C","d":[]},{"s":"UPBIT:AXSBTC","d":[]},{"s":"BINANCE:CTXCUSD","d":[]},{"s":"PANCAKESWAP:4CH5WBNB_E74B46","d":[]},{"s":"PANCAKESWAP:KINDUSDC_B13385","d":[]},{"s":"PANCAKESWAP:NEMOUSDT_56719B","d":[]},{"s":"PANCAKESWAP:NPXBBUSD_4AECCA","d":[]},{"s":"PANCAKESWAP:STRIPBUSD_BD2755","d":[]},{"s":"PANCAKESWAP:NEIWBNB_96E48C.USD","d":[]},{"s":"PANCAKESWAP:XKAKIUSDT_1EBDDF","d":[]},{"s":"BINANCE:VANRYUSD","d":[]},{"s":"PANCAKESWAP:IVIPBTCB_93A441","d":[]},{"s":"PANCAKESWAP:WXWBNB_BEAD04.USD","d":[]},{"s":"KUCOIN:EGLDUSDT","d":[]},{"s":"PANCAKESWAP:DZDUSDT_5F4A22","d":[]},{"s":"SUSHISWAPPOLYGON:AMMOUSDT_DF8D8A","d":[]},{"s":"PANCAKESWAP:SCPTWBNB_CD730B","d":[]},{"s":"PANCAKESWAP:PRCUSDT_9E8F63","d":[]},{"s":"HONEYSWAP:RENBTCWXDAI_A8593B.USD","d":[]},{"s":"PANCAKESWAP:BRCSTWBNB_1E0B1C.USD","d":[]},{"s":"PANCAKESWAP:SYAWBNB_3A2AFA","d":[]},{"s":"PANCAKESWAP:PEPEVERSEWBNB_FBC1D0.USD","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_B6742B","d":[]},{"s":"PANCAKESWAP:DDOGEWBNB_EAADA6","d":[]},{"s":"PANCAKESWAP:TMCWBNB_F3637D.USD","d":[]},{"s":"HONEYSWAP:PRTCLEHNY_AAEFC5","d":[]},{"s":"PANCAKESWAP:MICMEB_D3659D","d":[]},{"s":"PANCAKESWAP:DORWBNB_B22DB2.USD","d":[]},{"s":"SUSHISWAP:RUNEWETH_CC3959","d":[]},{"s":"KUCOIN:WLKNUSDT","d":[]},{"s":"KUCOIN:GODSUSDT","d":[]},{"s":"PANCAKESWAP:NTRWBNB_2DDEF5","d":[]},{"s":"PANCAKESWAP:OYUSDT_09739F","d":[]},{"s":"PANCAKESWAP:ECTWBNB_C3A4CE","d":[]},{"s":"PANCAKESWAP:IFITWBNB_1920B3","d":[]},{"s":"KUCOIN:SANDUSDT","d":[]},{"s":"PANCAKESWAP:MUSDMEB_CCF241.USD","d":[]},{"s":"PANCAKESWAP:TTCUSDT_9D757C","d":[]},{"s":"PANCAKESWAP:TCUSDT_6063B9","d":[]},{"s":"OKX:ETCBTC","d":[]},{"s":"SUSHISWAPPOLYGON:NXDUSDT_999FC0","d":[]},{"s":"PANCAKESWAP:SAFEMARSWBNB_2D3A6B.USD","d":[]},{"s":"PANCAKESWAP:BLFWBNB_8B84D9","d":[]},{"s":"PANCAKESWAP:SMRATWBNB_90B432.USD","d":[]},{"s":"PANCAKESWAP:MKTWBNB_59AC23.USD","d":[]},{"s":"PANCAKESWAP:MFIWBNB_02E25E.USD","d":[]},{"s":"HONEYSWAP:BODHNY_B74C67","d":[]},{"s":"SUSHISWAP:FODLWETH_CE7E98.USD","d":[]},{"s":"PANCAKESWAP:WLCWBNB_F51CAF","d":[]},{"s":"PANCAKESWAP:RBXWBNB_8959E3","d":[]},{"s":"PANCAKESWAP:ZAIWBNB_381E04.USD","d":[]},{"s":"PANCAKESWAP:ROYAWBNB_ED644B.USD","d":[]},{"s":"PANCAKESWAP:RAGSCOIN20WBNB_134A4D","d":[]},{"s":"PANCAKESWAP:CENTWBNB_2F7706","d":[]},{"s":"PANCAKESWAP:SPXCWBNB_7AFC05.USD","d":[]},{"s":"PANCAKESWAP:SORAPANDAWBNB_19623D.USD","d":[]},{"s":"PANCAKESWAP:BULLWBNB_FE6CF1.USD","d":[]},{"s":"KUCOIN:POLKUSDT","d":[]},{"s":"KUCOIN:LINKUSDC","d":[]},{"s":"HONEYSWAP:MUSDWXDAI_2ED999","d":[]},{"s":"PANCAKESWAP:GLDWBNB_4466CD.USD","d":[]},{"s":"PANCAKESWAP:CVLC2WBNB_C53974","d":[]},{"s":"PANCAKESWAP:NSFWWBNB_5E55AE","d":[]},{"s":"PANCAKESWAP:DSCWBNB_64D761","d":[]},{"s":"PANCAKESWAP:LHARWBNB_1FF832.USD","d":[]},{"s":"PANCAKESWAP:SSTXWBNB_76719A","d":[]},{"s":"PANCAKESWAP:BIRBWBNB_B41B9A","d":[]},{"s":"PANCAKESWAP:VENTBUSD_A41315","d":[]},{"s":"PANCAKESWAP:HKBRC20_12BA09.USD","d":[]},{"s":"SUSHISWAP:DELTAWETH_1498BD","d":[]},{"s":"SUSHISWAP:NFTXWETH_31D64F","d":[]},{"s":"PANCAKESWAP:SOCIALAIWBNB_0778C3.USD","d":[]},{"s":"PANCAKESWAP:SAFUUWBNB_F5D9B8.USD","d":[]},{"s":"OKX:EOSUSD29H2024","d":[]},{"s":"PANCAKESWAP:GAINSWBNB_8BFC60.USD","d":[]},{"s":"PANCAKESWAP:ORTBUSD_23CC47","d":[]},{"s":"OKX:MANABTC","d":[]},{"s":"KUCOIN:SOULUSDT","d":[]},{"s":"OKX:SAMOUSDT","d":[]},{"s":"KUCOIN:PYTHUPUSDT","d":[]},{"s":"PANCAKESWAP:RESOUWBNB_A131A9.USD","d":[]},{"s":"PANCAKESWAP:JJWBNB_1ACA57.USD","d":[]},{"s":"PANCAKESWAP:CATEWBNB_6C6636.USD","d":[]},{"s":"PANCAKESWAP:XMASWBNB_DABA12.USD","d":[]},{"s":"PANCAKESWAP:BRIUSDT_C5A6FA","d":[]},{"s":"KUCOIN:AUDIOUSDT","d":[]},{"s":"OKX:NEARUSDT","d":[]},{"s":"KUCOIN:HIENS4USDT","d":[]},{"s":"PANCAKESWAP:PIINWBNB_FDAA9F.USD","d":[]},{"s":"BINANCE:NKNUSDT.P","d":[]},{"s":"KUCOIN:ICXUSDT","d":[]},{"s":"PANCAKESWAP:LTOWBNB_A5BB44.USD","d":[]},{"s":"BINANCE:CELOUSD","d":[]},{"s":"PANCAKESWAP:FOOTBALLSTARSWBNB_8D6F55.USD","d":[]},{"s":"KUCOIN:ASTRBTC","d":[]},{"s":"PANCAKESWAP:WMATICBUSD_FE76F3","d":[]},{"s":"PANCAKESWAP:POTUSDT_A4B318","d":[]},{"s":"PANCAKESWAP:MUSICWBNB_1D6828","d":[]},{"s":"PANCAKESWAP:MEOWWBNB_8AF9A9","d":[]},{"s":"PANCAKESWAP:KMCWBNB_8747D8","d":[]},{"s":"OKX:GPTUSDT","d":[]},{"s":"PANCAKESWAP:TRLWBNB_CF2F7F","d":[]},{"s":"HONEYSWAP:MANAHNY_BD574C","d":[]},{"s":"PANCAKESWAP:WODOWBNB_981D2C.USD","d":[]},{"s":"PANCAKESWAP:ECCWBNB_98304A.USD","d":[]},{"s":"PANCAKESWAP:KINGSHIBWBNB_C943E8","d":[]},{"s":"PANCAKESWAP:HOTWBNB_E6F013.USD","d":[]},{"s":"SUSHISWAPPOLYGON:WMATICUSDC_CD353F","d":[]},{"s":"PANCAKESWAP:BENEVOLENTWBNB_02E9DF.USD","d":[]},{"s":"KUCOIN:GMTUSDT","d":[]},{"s":"PANCAKESWAP:FAMEWBNB_38C1F7","d":[]},{"s":"PANCAKESWAP:IVIPBTCB_93A441.USD","d":[]},{"s":"PANCAKESWAP:MILWBNB_D60ECD","d":[]},{"s":"KUCOIN:ERGBTC","d":[]},{"s":"PANCAKESWAP:MOOBUSD_72AAFE","d":[]},{"s":"PANCAKESWAP:WPWBNB_B79E09.USD","d":[]},{"s":"BINANCE:SEIUSDT.P","d":[]},{"s":"OKX:OKTBTC","d":[]},{"s":"PANCAKESWAP:SMARTMEMEWBNB_27F134.USD","d":[]},{"s":"SUSHISWAP:OXYWETH_D1B430","d":[]},{"s":"PANCAKESWAP:KINGWBNB_236BB1.USD","d":[]},{"s":"BINANCE:WOOUSD","d":[]},{"s":"PANCAKESWAP:KISEKIWBNB_1F8C44","d":[]},{"s":"PANCAKESWAP:LUNAUSDT_34C422","d":[]},{"s":"PANCAKESWAP:BIT360WBNB_720914.USD","d":[]},{"s":"KUCOIN:KNCUSDT","d":[]},{"s":"PANCAKESWAP:ETHEH_FA832F","d":[]},{"s":"PANCAKESWAP:CBCUSDT_7AA4EC","d":[]},{"s":"PANCAKESWAP:CKPMCAKE_DB92AD.USD","d":[]},{"s":"PANCAKESWAP:GYROBUSD_A53990","d":[]},{"s":"PANCAKESWAP:TRUNKBUSD_F15A72","d":[]},{"s":"BINANCE:CFXUSDT.P","d":[]},{"s":"OKX:EMUSDT","d":[]},{"s":"PANCAKESWAP:BWJUPWBNB_30C35B","d":[]},{"s":"BINANCE:VETUSDT.P","d":[]},{"s":"PANCAKESWAP:XMETABUSD_FC8860","d":[]},{"s":"PANCAKESWAP:SAFEBTCWBNB_C760F8.USD","d":[]},{"s":"PANCAKESWAP:RUBLWBNB_37AF09","d":[]},{"s":"PANCAKESWAP:HSWBNB_9A3A09.USD","d":[]},{"s":"HONEYSWAP:MOONWASPHNY_F9D132","d":[]},{"s":"HONEYSWAP:WETHBTCTRADE_B6AD3C","d":[]},{"s":"PANCAKESWAP:ZAIWBNB_381E04","d":[]},{"s":"PANCAKESWAP:OCPBUSD_7CE7B5","d":[]},{"s":"PANCAKESWAP:ZAPWBNB_EDE402","d":[]},{"s":"PANCAKESWAP:AIPADWBNB_252BE5","d":[]},{"s":"UPBIT:OGNBTC","d":[]},{"s":"KUCOIN:GLQBTC","d":[]},{"s":"PANCAKESWAP:HOPWBNB_462674","d":[]},{"s":"PANCAKESWAP:BXWBNB_7537F9.USD","d":[]},{"s":"PANCAKESWAP:TUTUUSDT_2615F1","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_B6742B.USD","d":[]},{"s":"KUCOIN:KPOLUSDT","d":[]},{"s":"PANCAKESWAP:MCWBNB_4899FC.USD","d":[]},{"s":"PANCAKESWAP:TAROBUSD_DC74D8","d":[]},{"s":"PANCAKESWAP:GODZWBNB_6E226B.USD","d":[]},{"s":"PANCAKESWAP:BPRIVAWBNB_9CDE67","d":[]},{"s":"KUCOIN:YFIUSDT","d":[]},{"s":"OKX:AVAXBTC","d":[]},{"s":"SUSHISWAPPOLYGON:UNITYWMATIC_509645","d":[]},{"s":"PANCAKESWAP:POSIBUSD_00222D","d":[]},{"s":"OKX:AAVEUSDC","d":[]},{"s":"SUSHISWAPPOLYGON:POLYCUBWETH_C9BA16","d":[]},{"s":"PANCAKESWAP:LYUSDT_22FA9B","d":[]},{"s":"PANCAKESWAP:N1WBNB_905D85","d":[]},{"s":"SUSHISWAP:SPSWETH_1B803A","d":[]},{"s":"KUCOIN:LABSETH","d":[]},{"s":"PANCAKESWAP:FLPUSDT_6ACE10","d":[]},{"s":"PANCAKESWAP:MMDAOUSDT_C79ACC","d":[]},{"s":"SUSHISWAP:RAREWETH_24E2AD","d":[]},{"s":"SUSHISWAP:FXSWETH_61EB53.USD","d":[]},{"s":"PANCAKESWAP:OSKWBNB_9B906E","d":[]},{"s":"SUSHISWAPPOLYGON:ABIDAI_81FD1D","d":[]},{"s":"KUCOIN:PZPUSDT","d":[]},{"s":"OKX:GALUSDT","d":[]},{"s":"PANCAKESWAP:LYKAWBNB_871842.USD","d":[]},{"s":"SUSHISWAP:TOWERPROS_0BFCF9","d":[]},{"s":"PANCAKESWAP:RAMPBUSD_E834BF","d":[]},{"s":"KUCOIN:HICOOLCATSUSDT","d":[]},{"s":"PANCAKESWAP:FNDWBNB_076B01","d":[]},{"s":"PANCAKESWAP:DGMVWBNB_C4F0AA","d":[]},{"s":"PANCAKESWAP:OUSDWBNB_CB9472","d":[]},{"s":"PANCAKESWAP:QUONWBNB_140303.USD","d":[]},{"s":"KUCOIN:EGAMEBTC","d":[]},{"s":"PANCAKESWAP:BURNWBNB_932DE1","d":[]},{"s":"PANCAKESWAP:LUNATWBNB_83A2DF.USD","d":[]},{"s":"PANCAKESWAP:DXOWBNB_CED6EE","d":[]},{"s":"PANCAKESWAP:FLOKIAIWBNB_07E088.USD","d":[]},{"s":"OKX:LRCUSDT","d":[]},{"s":"BINANCE:AEVOUSDT.P","d":[]},{"s":"PANCAKESWAP:CENXBEFE_A2058F.USD","d":[]},{"s":"PANCAKESWAP:ELEPHANTWBNB_1CEA83.USD","d":[]},{"s":"PANCAKESWAP:MOSETH_B95105.USD","d":[]},{"s":"PANCAKESWAP:FLOKIWBNB_5BBBB4.USD","d":[]},{"s":"PANCAKESWAP:CANCERWBNB_25FECC.USD","d":[]},{"s":"PANCAKESWAP:UNICUSDT_809FF1","d":[]},{"s":"PANCAKESWAP:LAMBROWBNB_4D080A","d":[]},{"s":"KUCOIN:HFTUSDT","d":[]},{"s":"PANCAKESWAP:PINKWBNB_711DE3.USD","d":[]},{"s":"KUCOIN:ANALOSUSDT","d":[]},{"s":"PANCAKESWAP:HANABCUSDT_497F67","d":[]},{"s":"SUSHISWAP:MEZZWETH_1AD651","d":[]},{"s":"PANCAKESWAP:BLXWBNB_EE803F.USD","d":[]},{"s":"PANCAKESWAP:MOONWBNB_1FF116","d":[]},{"s":"PANCAKESWAP:TWOWBNB_9AFCA8.USD","d":[]},{"s":"PANCAKESWAP:ETRLWBNB_A7BA7D.USD","d":[]},{"s":"PANCAKESWAP:UNVUSDT_469B27","d":[]},{"s":"PANCAKESWAP:TIMEWBNB_A5EBD1.USD","d":[]},{"s":"KUCOIN:ORDIUSDT","d":[]},{"s":"UPBIT:BTCUSDT","d":[]},{"s":"PANCAKESWAP:XWBNB_C7BC2F.USD","d":[]},{"s":"PANCAKESWAP:COGIWBNB_B63B69","d":[]},{"s":"PANCAKESWAP:DW2WBNB_90C7C0","d":[]},{"s":"KUCOIN:BABYDOGEUSDT","d":[]},{"s":"PANCAKESWAP:VINYFSX_D472BF","d":[]},{"s":"PANCAKESWAP:WARWBNB_F1C2D7.USD","d":[]},{"s":"PANCAKESWAP:APPUSDT_9E1234","d":[]},{"s":"HONEYSWAP:VBUCKWXDAI_44E102.USD","d":[]},{"s":"PANCAKESWAP:SAFEMARSWBNB_2D3A6B","d":[]},{"s":"PANCAKESWAP:UCONWBNB_9AD2D9","d":[]},{"s":"HONEYSWAP:CHEEMSWBTC_E60976.USD","d":[]},{"s":"KUCOIN:CMPUSDT","d":[]},{"s":"HONEYSWAP:BZZWXDAI_59097A","d":[]},{"s":"PANCAKESWAP:TENBUSD_EC27DA","d":[]},{"s":"BINANCE:EDUUSDT.P","d":[]},{"s":"KUCOIN:SENSOBTC","d":[]},{"s":"OKX:XLMUSDC","d":[]},{"s":"PANCAKESWAP:PNPWBNB_1C5BD1","d":[]},{"s":"OKX:ETHDAI","d":[]},{"s":"PANCAKESWAP:PIGUSDT_92AD5F","d":[]},{"s":"PANCAKESWAP:GLEWBNB_E4E256","d":[]},{"s":"PANCAKESWAP:FLOKICASHWBNB_C9FD37","d":[]},{"s":"PANCAKESWAP:TJXUSDT_DCB84C","d":[]},{"s":"PANCAKESWAP:ARCSWBNB_74FF0E","d":[]},{"s":"PANCAKESWAP:OCCWBNB_673F2A","d":[]},{"s":"PANCAKESWAP:UCLXWBNB_0F4220","d":[]},{"s":"PANCAKESWAP:SPYNWBNB_C02794.USD","d":[]},{"s":"PANCAKESWAP:WLCWBNB_38AD09.USD","d":[]},{"s":"PANCAKESWAP:FISTZGL_417429","d":[]},{"s":"PANCAKESWAP:MVEDAWBNB_5701D1.USD","d":[]},{"s":"OKX:SANDUSDT","d":[]},{"s":"OKX:ICPUSDC","d":[]},{"s":"PANCAKESWAP:EDCUSDT_4FE887","d":[]},{"s":"KUCOIN:UFOUSDT","d":[]},{"s":"PANCAKESWAP:GBURNGRV_0640A5","d":[]},{"s":"PANCAKESWAP:LUNARWBNB_8B03A4.USD","d":[]},{"s":"PANCAKESWAP:HPLBUSD_5891FE","d":[]},{"s":"KUCOIN:FETBTC","d":[]},{"s":"PANCAKESWAP:HABBWBNB_AABADB","d":[]},{"s":"PANCAKESWAP:TRUWBNB_C2F848.USD","d":[]},{"s":"KUCOIN:LTCBTC","d":[]},{"s":"BINANCE:PERPUSDT.P","d":[]},{"s":"PANCAKESWAP:MNYWBNB_3DBC8C.USD","d":[]},{"s":"PANCAKESWAP:BCATWBNB_043626.USD","d":[]},{"s":"PANCAKESWAP:WOLFBUSD_767F26","d":[]},{"s":"SUSHISWAP:DFXWETH_BE7137","d":[]},{"s":"PANCAKESWAP:WFCWBNB_F5F264","d":[]},{"s":"PANCAKESWAP:VNLAWBNB_994743","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_4578FC.USD","d":[]},{"s":"PANCAKESWAP:RTOWBNB_1A6AA7","d":[]},{"s":"PANCAKESWAP:SOULWBNB_AF239B","d":[]},{"s":"PANCAKESWAP:VINCIUSDT_FBE930","d":[]},{"s":"KUCOIN:ETGMUSDT","d":[]},{"s":"PANCAKESWAP:NOVAWBNB_38F82D","d":[]},{"s":"HONEYSWAP:TRIPSWXDAI_5426A4","d":[]},{"s":"BINANCE:DYMUSD","d":[]},{"s":"PANCAKESWAP:SNFTSSFUND_E4399D","d":[]},{"s":"PANCAKESWAP:DINOSAURWBNB_2F04D4","d":[]},{"s":"PANCAKESWAP:CSUSDT_647EC4","d":[]},{"s":"OKX:USDCUSDT","d":[]},{"s":"KUCOIN:IOTXBTC","d":[]},{"s":"PANCAKESWAP:SPACWBNB_9B68B1.USD","d":[]},{"s":"PANCAKESWAP:EPSWBNB_F90458","d":[]},{"s":"PANCAKESWAP:HYPCWBNB_BC5092.USD","d":[]},{"s":"PANCAKESWAP:LSCUSDT_FA80B6","d":[]},{"s":"PANCAKESWAP:GBSGSD_59EED7","d":[]},{"s":"PANCAKESWAP:ETHERFIUSDT_BDDDBA","d":[]},{"s":"PANCAKESWAP:FLONGWBNB_0B2E52","d":[]},{"s":"PANCAKESWAP:GOJOCOINWBNB_07273A.USD","d":[]},{"s":"PANCAKESWAP:QUAWBNB_3389F7","d":[]},{"s":"KUCOIN:TRBDOWNUSDT","d":[]},{"s":"PANCAKESWAP:PIXELWBNB_8390B3","d":[]},{"s":"PANCAKESWAP:FASTBTCB_8780FB","d":[]},{"s":"PANCAKESWAP:YYLMWBNB_8EA0E1.USD","d":[]},{"s":"PANCAKESWAP:CHATGPTWBNB_B319FD.USD","d":[]},{"s":"SUSHISWAP:SYNWETH_4A86C0.USD","d":[]},{"s":"PANCAKESWAP:STLONGWBNB_0BD618","d":[]},{"s":"PANCAKESWAP:FANHUAWBNB_0B39EB.USD","d":[]},{"s":"HONEYSWAP:HEXWXDAI_B70B3F.USD","d":[]},{"s":"PANCAKESWAP:IOTXWBNB_1C4D17","d":[]},{"s":"OKX:EOSUSDT","d":[]},{"s":"PANCAKESWAP:YFNTUSDT_38807C","d":[]},{"s":"SUSHISWAP:USTWETH_8B00EE.USD","d":[]},{"s":"PANCAKESWAP:FRONTWBNB_C6B668.USD","d":[]},{"s":"PANCAKESWAP:BABYGROK20WBNB_E9B786.USD","d":[]},{"s":"PANCAKESWAP:BCCUSDT_ADE3D4","d":[]},{"s":"PANCAKESWAP:GAMINGDOGEWBNB_071701.USD","d":[]},{"s":"PANCAKESWAP:FACTRWBNB_D5EF7E","d":[]},{"s":"PANCAKESWAP:SRXWBNB_A9FAD6","d":[]},{"s":"PANCAKESWAP:ZMNBTCB_BF169A","d":[]},{"s":"PANCAKESWAP:STZWBNB_F17093.USD","d":[]},{"s":"SUSHISWAP:IBEURWETH_A2D81B","d":[]},{"s":"PANCAKESWAP:SATTWBNB_A1B5E5.USD","d":[]},{"s":"PANCAKESWAP:GSWBNB_2CA6A1.USD","d":[]},{"s":"OKX:LITHUSDT","d":[]},{"s":"PANCAKESWAP:GSTUSDC_09FE9D","d":[]},{"s":"PANCAKESWAP:ANGELUSDT_72177B","d":[]},{"s":"PANCAKESWAP:INXTWBNB_150844","d":[]},{"s":"PANCAKESWAP:LFWWBNB_F7F7BB.USD","d":[]},{"s":"PANCAKESWAP:CFUSDT_03AF63","d":[]},{"s":"PANCAKESWAP:BCMWBNB_4B01C8.USD","d":[]},{"s":"PANCAKESWAP:CZUSDWBNB_5C3C3B.USD","d":[]},{"s":"OKX:ETHUSDT29H2024","d":[]},{"s":"KUCOIN:VAIUSDT","d":[]},{"s":"UPBIT:METABTC","d":[]},{"s":"PANCAKESWAP:MMTUSDT_4037CC","d":[]},{"s":"PANCAKESWAP:MAXXWBNB_6B3ECA","d":[]},{"s":"BINANCE:RONINUSD","d":[]},{"s":"PANCAKESWAP:TCG2WBNB_66C227","d":[]},{"s":"PANCAKESWAP:FRTBUSD_27DFB9","d":[]},{"s":"PANCAKESWAP:SPYNWBNB_C02794","d":[]},{"s":"HONEYSWAP:XMOONWXDAI_1384D8","d":[]},{"s":"PANCAKESWAP:EPICHEROWBNB_8785D9.USD","d":[]},{"s":"PANCAKESWAP:CORIUSDT_93EEF6","d":[]},{"s":"PANCAKESWAP:TYUSDT_7D4C41","d":[]},{"s":"PANCAKESWAP:VTVWBNB_DEF788.USD","d":[]},{"s":"KUCOIN:MLKUSDT","d":[]},{"s":"PANCAKESWAP:SBUSDT_F87229","d":[]},{"s":"PANCAKESWAP:BITUSDT_757086","d":[]},{"s":"PANCAKESWAP:MGENESISWBNB_1E2619.USD","d":[]},{"s":"PANCAKESWAP:GYMWBNB_670369","d":[]},{"s":"PANCAKESWAP:BTCBUSDT_3F803E","d":[]},{"s":"HONEYSWAP:ANTWXDAI_502135","d":[]},{"s":"PANCAKESWAP:SGMTWBNB_F102E9.USD","d":[]},{"s":"PANCAKESWAP:ESGWBNB_F63EAC.USD","d":[]},{"s":"PANCAKESWAP:DZZUSDT_4AF770","d":[]},{"s":"PANCAKESWAP:NEARWBNB_9191B0.USD","d":[]},{"s":"HONEYSWAP:SWASHWXDAI_FD8FE4","d":[]},{"s":"BINANCE:HARDUSD","d":[]},{"s":"PANCAKESWAP:DIMEIPIAO_9917E1","d":[]},{"s":"PANCAKESWAP:BRICKWBNB_31304D.USD","d":[]},{"s":"SUSHISWAPPOLYGON:ROYWMATIC_7B23AF","d":[]},{"s":"PANCAKESWAP:BOSSWBNB_5052FF.USD","d":[]},{"s":"PANCAKESWAP:ONEWBNB_9745CF.USD","d":[]},{"s":"PANCAKESWAP:LUSDNMT_BB1891","d":[]},{"s":"PANCAKESWAP:DOWSWBNB_6D611E","d":[]},{"s":"KUCOIN:RNDRUSDT","d":[]},{"s":"PANCAKESWAP:STLONGWBNB_0BD618.USD","d":[]},{"s":"KUCOIN:MOVRUSDT","d":[]},{"s":"KUCOIN:ETHUSDT.3L","d":[]},{"s":"PANCAKESWAP:PEPEAIWBNB_C2352C","d":[]},{"s":"PANCAKESWAP:FSLUSDT_136C60","d":[]},{"s":"KUCOIN:XRPKCS","d":[]},{"s":"PANCAKESWAP:GHSPWBNB_2ED9EC.USD","d":[]},{"s":"PANCAKESWAP:NUTGV2WBNB_0F2201","d":[]},{"s":"PANCAKESWAP:FPSWBNB_C04DE4.USD","d":[]},{"s":"PANCAKESWAP:JOJOWBNB_5226A2.USD","d":[]},{"s":"PANCAKESWAP:NUTGV2WBNB_0F2201.USD","d":[]},{"s":"KUCOIN:MARSHUSDT","d":[]},{"s":"PANCAKESWAP:GODELONWBNB_71A9A9","d":[]},{"s":"KUCOIN:ENJETH","d":[]},{"s":"PANCAKESWAP:SNAKEUSDT_7C2050","d":[]},{"s":"KUCOIN:SWFTCUSDT","d":[]},{"s":"SUSHISWAP:SILDAI_1F44E6","d":[]},{"s":"HONEYSWAP:OCEANWXDAI_EBFAAB","d":[]},{"s":"PANCAKESWAP:ROCKETBUSDWBNB_B8D128.USD","d":[]},{"s":"PANCAKESWAP:TGTWBNB_651352.USD","d":[]},{"s":"SUSHISWAP:NEWOUSDC_C08ED9","d":[]},{"s":"PANCAKESWAP:DXAWBNB_10A5AA","d":[]},{"s":"PANCAKESWAP:OMNIAWBNB_ECE1BD.USD","d":[]},{"s":"PANCAKESWAP:MINIBABYDOGEWBNB_379718","d":[]},{"s":"KUCOIN:BOSONUSDT","d":[]},{"s":"PANCAKESWAP:WGCWBNB_BF1A60.USD","d":[]},{"s":"PANCAKESWAP:GIXWBNB_D1A4FD.USD","d":[]},{"s":"PANCAKESWAP:XLDL_DF4C30.USD","d":[]},{"s":"PANCAKESWAP:OCCWBNB_673F2A.USD","d":[]},{"s":"PANCAKESWAP:8PAYV2WBNB_D1B407.USD","d":[]},{"s":"PANCAKESWAP:PO20BUSD_3946F1","d":[]},{"s":"PANCAKESWAP:XUSDT_83A257","d":[]},{"s":"PANCAKESWAP:MATICWBNB_5ACB99","d":[]},{"s":"PANCAKESWAP:GNTWBNB_3747E3","d":[]},{"s":"PANCAKESWAP:SYNCBRAINWBNB_4ABFCA.USD","d":[]},{"s":"KUCOIN:TRACUSDT","d":[]},{"s":"PANCAKESWAP:DAFIBUSD_3D0776","d":[]},{"s":"PANCAKESWAP:AFROWBNB_55E5C2","d":[]},{"s":"PANCAKESWAP:FIREWBNB_6E179D","d":[]},{"s":"PANCAKESWAP:REUMWBNB_D625F7.USD","d":[]},{"s":"PANCAKESWAP:BONKGROKWBNB_CC972D","d":[]},{"s":"PANCAKESWAP:GOTBUSD_F3C5BA","d":[]},{"s":"PANCAKESWAP:WBIDUSDT_D8F869","d":[]},{"s":"PANCAKESWAP:MUSICAIWBNB_3553A0","d":[]},{"s":"PANCAKESWAP:BIDAWBNB_10FD62","d":[]},{"s":"PANCAKESWAP:MIGGYWBNB_E8941A.USD","d":[]},{"s":"PANCAKESWAP:SIMBAWBNB_60DF40.USD","d":[]},{"s":"BINANCE:ZILUSD","d":[]},{"s":"PANCAKESWAP:HYWBNB_E7ABF9","d":[]},{"s":"KUCOIN:DIABTC","d":[]},{"s":"PANCAKESWAP:PXRWBNB_0B3E6F.USD","d":[]},{"s":"PANCAKESWAP:APXBUSD_A0EE78","d":[]},{"s":"PANCAKESWAP:FEGWBNB_2AA763","d":[]},{"s":"PANCAKESWAP:MLNXWBNB_1C9ABA.USD","d":[]},{"s":"PANCAKESWAP:BAITWBNB_4E5304","d":[]},{"s":"KUCOIN:DATAUSDT","d":[]},{"s":"BINANCE:VIDTUSD","d":[]},{"s":"PANCAKESWAP:ARZBUSD_40FC43","d":[]},{"s":"BINANCE:APTUSDT.P","d":[]},{"s":"PANCAKESWAP:PEPEMUSKWBNB_74631F.USD","d":[]},{"s":"KUCOIN:BCHBTC","d":[]},{"s":"PANCAKESWAP:LITWBNB_1F37D4","d":[]},{"s":"PANCAKESWAP:BAIWBNB_927125.USD","d":[]},{"s":"PANCAKESWAP:OLDDOGUSDT_CFE704","d":[]},{"s":"PANCAKESWAP:WSHIBWBNB_B3438C","d":[]},{"s":"PANCAKESWAP:WLCWBNB_F51CAF.USD","d":[]},{"s":"PANCAKESWAP:ARKERWBNB_3091CC.USD","d":[]},{"s":"HONEYSWAP:MCRIBWXDAI_EADCC9","d":[]},{"s":"PANCAKESWAP:TURTKINGWBNB_D8CD0C","d":[]},{"s":"PANCAKESWAP:A2A476WBNB_FF3151","d":[]},{"s":"PANCAKESWAP:CQGSD_4A9014.USD","d":[]},{"s":"OKX:GASUSDT","d":[]},{"s":"PANCAKESWAP:TNBBF_10B932","d":[]},{"s":"SUSHISWAP:STZTOWER_40F513.USD","d":[]},{"s":"KUCOIN:STXUSDT","d":[]},{"s":"PANCAKESWAP:ZEEWBNB_8E799C.USD","d":[]},{"s":"KUCOIN:METISUSDT","d":[]},{"s":"PANCAKESWAP:PEPEDWBNB_D305B8","d":[]},{"s":"PANCAKESWAP:YOJUSDT_CA6E35","d":[]},{"s":"PANCAKESWAP:GBTWBNB_2B0CCD.USD","d":[]},{"s":"PANCAKESWAP:TDUSDT_0A109A","d":[]},{"s":"BINANCE:MANAUSD","d":[]},{"s":"PANCAKESWAP:USCWBNB_E41E5A.USD","d":[]},{"s":"PANCAKESWAP:MKTWBNB_59AC23","d":[]},{"s":"PANCAKESWAP:TEXBUSD_DB37A8","d":[]},{"s":"PANCAKESWAP:ZADAWBNB_FDECA1.USD","d":[]},{"s":"PANCAKESWAP:PIGGYCWBNB_73D596","d":[]},{"s":"PANCAKESWAP:YOCOWBNB_3788B3.USD","d":[]},{"s":"PANCAKESWAP:LIBWBNB_65BABB.USD","d":[]},{"s":"PANCAKESWAP:SLSWBNB_0A17F3.USD","d":[]},{"s":"HONEYSWAP:AAVEWXDAI_67CDAA","d":[]},{"s":"PANCAKESWAP:MDAOWBNB_EE6A8C","d":[]},{"s":"PANCAKESWAP:PDWBNB_003D7A","d":[]},{"s":"PANCAKESWAP:AMBWBNB_A274D4","d":[]},{"s":"PANCAKESWAP:DENJIWBNB_F866C7","d":[]},{"s":"OKX:LTCUSDC","d":[]},{"s":"PANCAKESWAP:GYROUSDD_54C182","d":[]},{"s":"PANCAKESWAP:MBASWBNB_CAE173.USD","d":[]},{"s":"PANCAKESWAP:DEGAWBNB_E6A3AD","d":[]},{"s":"PANCAKESWAP:GEMWBNB_8947C3.USD","d":[]},{"s":"KUCOIN:BIDPUSDT","d":[]},{"s":"PANCAKESWAP:SIDUSWBNB_AE03E6.USD","d":[]},{"s":"PANCAKESWAP:HGMUSDT_29055D","d":[]},{"s":"PANCAKESWAP:VISAUSDT_4F1F33","d":[]},{"s":"OKX:FLMUSDT","d":[]},{"s":"PANCAKESWAP:COCAWBNB_17AE76.USD","d":[]},{"s":"PANCAKESWAP:WAGWBNB_C5E126.USD","d":[]},{"s":"PANCAKESWAP:TROLLWBNB_D26324.USD","d":[]},{"s":"PANCAKESWAP:DNBWBNB_770A0B","d":[]},{"s":"OKX:TONUSDC","d":[]},{"s":"HONEYSWAP:MATICHNY_60729C","d":[]},{"s":"PANCAKESWAP:SMARSWBNB_6F9A04","d":[]},{"s":"SUSHISWAP:STRMWETH_B301D7","d":[]},{"s":"PANCAKESWAP:DOMWBNB_6922E6","d":[]},{"s":"PANCAKESWAP:NOSFERATUSWBNB_CF6813.USD","d":[]},{"s":"PANCAKESWAP:BOGEYWBNB_7C3C8E","d":[]},{"s":"KUCOIN:ORCAUSDT","d":[]},{"s":"KUCOIN:PBRUSDT","d":[]},{"s":"PANCAKESWAP:KREDWBNB_EA79D3","d":[]},{"s":"OKX:GRTBTC","d":[]},{"s":"PANCAKESWAP:GARFIELDWBNB_802744.USD","d":[]},{"s":"PANCAKESWAP:FOMOBFCWBNB_05F00F","d":[]},{"s":"KUCOIN:CFXETH","d":[]},{"s":"PANCAKESWAP:ALGOMIUSDT_8D6BD3","d":[]},{"s":"PANCAKESWAP:YZSDAOUSDT_03DA30","d":[]},{"s":"PANCAKESWAP:JPWBNB_8F5F69","d":[]},{"s":"PANCAKESWAP:MEMEMINTWBNB_E313AC","d":[]},{"s":"HONEYSWAP:BUSDHNY_08F64C.USD","d":[]},{"s":"OKX:SKEBUSDT","d":[]},{"s":"PANCAKESWAP:888USDT_1BCFB8","d":[]},{"s":"PANCAKESWAP:GDSBUSD_A1E137","d":[]},{"s":"PANCAKESWAP:PAYZWBNB_650B6C","d":[]},{"s":"KUCOIN:STRIKEUSDT","d":[]},{"s":"KUCOIN:BOLTUSDT","d":[]},{"s":"OKX:WINUSDT","d":[]},{"s":"BINANCE:TIAUSDT.P","d":[]},{"s":"PANCAKESWAP:HSWBNB_9A3A09","d":[]},{"s":"PANCAKESWAP:511USDT_5B8EAD","d":[]},{"s":"HONEYSWAP:HNYWXDAI_4505B2","d":[]},{"s":"PANCAKESWAP:BABYCAKEWBNB_B5E33F.USD","d":[]},{"s":"KUCOIN:NHCTUSDT","d":[]},{"s":"PANCAKESWAP:TXUSDT_A8CC35","d":[]},{"s":"PANCAKESWAP:BOOMWBNB_258799","d":[]},{"s":"PANCAKESWAP:PITWBNB_FFF58A","d":[]},{"s":"PANCAKESWAP:NERVEWBNB_81FB58","d":[]},{"s":"PANCAKESWAP:SCORGIWBNB_7FA260.USD","d":[]},{"s":"PANCAKESWAP:DPSWBNB_18BE96","d":[]},{"s":"PANCAKESWAP:PINKPEPEWBNB_40D4AB.USD","d":[]},{"s":"HONEYSWAP:PAXGWETH_D756E0.USD","d":[]},{"s":"PANCAKESWAP:IBATWBNB_EE87F8.USD","d":[]},{"s":"PANCAKESWAP:FASTBTCB_8780FB.USD","d":[]},{"s":"PANCAKESWAP:CX11WBNB_E4C4CD.USD","d":[]},{"s":"PANCAKESWAP:MARSINUWBNB_5751BB.USD","d":[]},{"s":"PANCAKESWAP:KYTEWBNB_4F2EE7.USD","d":[]},{"s":"PANCAKESWAP:DNDBUSD_920EC6","d":[]},{"s":"PANCAKESWAP:FLOKITAWBNB_641F45","d":[]},{"s":"KUCOIN:BAXETH","d":[]},{"s":"PANCAKESWAP:MTGRUSDT_E16832","d":[]},{"s":"PANCAKESWAP:RVZWBNB_F0BD21","d":[]},{"s":"PANCAKESWAP:TRLWBNB_CF2F7F.USD","d":[]},{"s":"PANCAKESWAP:MILODOGWBNB_EE4E83.USD","d":[]},{"s":"PANCAKESWAP:LOOPWBNB_204C53.USD","d":[]},{"s":"PANCAKESWAP:TIMENTIME2_9DCE8C","d":[]},{"s":"PANCAKESWAP:GAFAWBNB_102377","d":[]},{"s":"PANCAKESWAP:DTUBEWBNB_E9EE2D","d":[]},{"s":"PANCAKESWAP:DHDUSDT_A2A154","d":[]},{"s":"PANCAKESWAP:BPWBNB_2BF2DE.USD","d":[]},{"s":"HONEYSWAP:WTDAOWXDAI_6BE70A","d":[]},{"s":"PANCAKESWAP:TROLLWBNB_D26324","d":[]},{"s":"SUSHISWAPPOLYGON:GETWETH_55BC7D.USD","d":[]},{"s":"HONEYSWAP:UNIHNY_02DB42.USD","d":[]},{"s":"PANCAKESWAP:VAFFAWBNB_0D13D7","d":[]},{"s":"PANCAKESWAP:FREDWBNB_845C21.USD","d":[]},{"s":"PANCAKESWAP:AWTWBNB_4B578B.USD","d":[]},{"s":"HONEYSWAP:ENJWXDAI_059478.USD","d":[]},{"s":"KUCOIN:TUNEUSDT","d":[]},{"s":"HONEYSWAP:DHVWXDAI_14EE6D","d":[]},{"s":"PANCAKESWAP:CAIWBNB_C0A6E6","d":[]},{"s":"PANCAKESWAP:GDPUSDT_5B9EC4","d":[]},{"s":"PANCAKESWAP:WOJWBNB_0290BB","d":[]},{"s":"PANCAKESWAP:FDUSDT_C75E9B","d":[]},{"s":"KUCOIN:PEOPLEUSDT","d":[]},{"s":"PANCAKESWAP:GXFCWBNB_1E297F.USD","d":[]},{"s":"PANCAKESWAP:NSDXWBNB_CE96BB","d":[]},{"s":"PANCAKESWAP:GBLWBNB_C57C02.USD","d":[]},{"s":"KUCOIN:FETETH","d":[]},{"s":"PANCAKESWAP:FATEWBNB_E3EA5C.USD","d":[]},{"s":"PANCAKESWAP:CATVILLSWBNB_D47F7B.USD","d":[]},{"s":"PANCAKESWAP:TKPDIS_21EB00","d":[]},{"s":"PANCAKESWAP:DIGISWBNB_574887.USD","d":[]},{"s":"SUSHISWAP:ADXWETH_9CBC2A","d":[]},{"s":"PANCAKESWAP:MAVIAWBNB_32139D","d":[]},{"s":"PANCAKESWAP:KYLNWBNB_D1B800","d":[]},{"s":"KUCOIN:XWGUSDT","d":[]},{"s":"PANCAKESWAP:TBANKWBNB_CED806","d":[]},{"s":"PANCAKESWAP:SUBTUSDT_2B8FA0","d":[]},{"s":"PANCAKESWAP:HEFIWBNB_5DD2A5.USD","d":[]},{"s":"HONEYSWAP:WBTCWETH_B30110","d":[]},{"s":"KUCOIN:OASUSDT","d":[]},{"s":"PANCAKESWAP:YOCOWBNB_3788B3","d":[]},{"s":"BINANCE:ATAUSD","d":[]},{"s":"PANCAKESWAP:FINKWBNB_72DD39","d":[]},{"s":"PANCAKESWAP:POPEYEWBNB_F4DACB.USD","d":[]},{"s":"SUSHISWAP:XWETH_C2CE29.USD","d":[]},{"s":"PANCAKESWAP:TDYUSDT_A45E8D","d":[]},{"s":"HONEYSWAP:WETHWXDAI_7BEA4A.USD","d":[]},{"s":"PANCAKESWAP:BARMYWBNB_DFDC22","d":[]},{"s":"PANCAKESWAP:BFHTWBNB_C1CD86","d":[]},{"s":"OKX:FILBTC","d":[]},{"s":"OKX:JTOUSDT","d":[]},{"s":"PANCAKESWAP:JIXIANGLONGWBNB_697724","d":[]},{"s":"PANCAKESWAP:WZNNWBNB_E6B03F.USD","d":[]},{"s":"PANCAKESWAP:AIDOGEXWBNB_DB0B1C","d":[]},{"s":"PANCAKESWAP:ZOOTWBNB_3E5887.USD","d":[]},{"s":"PANCAKESWAP:CPOWBNB_ABC433","d":[]},{"s":"PANCAKESWAP:WLDWETH_D59C9A","d":[]},{"s":"PANCAKESWAP:KARENWBNB_BD9797","d":[]},{"s":"PANCAKESWAP:SMGBUSD_CDAA9A","d":[]},{"s":"KUCOIN:VETKCS","d":[]},{"s":"SUSHISWAP:SAK3WETH_FED8E8.USD","d":[]},{"s":"PANCAKESWAP:DPRUSDT_460935","d":[]},{"s":"OKX:OPUSDT","d":[]},{"s":"KUCOIN:GNSUSDT","d":[]},{"s":"PANCAKESWAP:DELOTWBNB_18F453","d":[]},{"s":"HONEYSWAP:NCRWXDAI_7A8E7F.USD","d":[]},{"s":"PANCAKESWAP:SWAPWBNB_B3114E","d":[]},{"s":"PANCAKESWAP:MOBYUSDT_B91A8B","d":[]},{"s":"PANCAKESWAP:NEBTCUSDT_CF6F33","d":[]},{"s":"KUCOIN:BAXUSDT","d":[]},{"s":"PANCAKESWAP:XMWBNB_4BC16C","d":[]},{"s":"PANCAKESWAP:DMCUSDT_9B10FB","d":[]},{"s":"PANCAKESWAP:SHIBACASHWBNB_55D2AA","d":[]},{"s":"PANCAKESWAP:XRXBUSD_207B29","d":[]},{"s":"PANCAKESWAP:MILADYPEPEWBNB_1CE039.USD","d":[]},{"s":"PANCAKESWAP:XDAOUSDT_311987","d":[]},{"s":"PANCAKESWAP:ACHWBNB_40E90B","d":[]},{"s":"PANCAKESWAP:OMNIWARSWBNB_D7F673.USD","d":[]},{"s":"PANCAKESWAP:YOOSHIWBNB_E7987F","d":[]},{"s":"HONEYSWAP:DXDWXDAI_9D7C92.USD","d":[]},{"s":"PANCAKESWAP:SDLNBUSD_0C05A7","d":[]},{"s":"PANCAKESWAP:TRAVAWBNB_865C77","d":[]},{"s":"KUCOIN:SXPUSDT","d":[]},{"s":"PANCAKESWAP:DMCUSDT_101C47","d":[]},{"s":"KUCOIN:LYXUSDT","d":[]},{"s":"PANCAKESWAP:YYLXWBNB_6ED12F.USD","d":[]},{"s":"PANCAKESWAP:BTCBSCWBNB_E97F31.USD","d":[]},{"s":"KUCOIN:SKEYUSDT","d":[]},{"s":"HONEYSWAP:COWGNO_6A43BE","d":[]},{"s":"KUCOIN:AVAXUSDT.3L","d":[]},{"s":"PANCAKESWAP:SPITZWBNB_2588F4.USD","d":[]},{"s":"PANCAKESWAP:GEONTRIAS_DFCAC8.USD","d":[]},{"s":"PANCAKESWAP:SEGUSDT_EB158A","d":[]},{"s":"PANCAKESWAP:LUTIONWBNB_54D7E9","d":[]},{"s":"PANCAKESWAP:DOGEUSDT_0FA119","d":[]},{"s":"PANCAKESWAP:ZUKIWBNB_93FC99","d":[]},{"s":"PANCAKESWAP:ARVWBNB_A63E32.USD","d":[]},{"s":"PANCAKESWAP:SXPWBNB_D8E2F8","d":[]},{"s":"PANCAKESWAP:GTANWBNB_E965E8.USD","d":[]},{"s":"PANCAKESWAP:GMRWBNB_E4110C","d":[]},{"s":"PANCAKESWAP:NINKYWBNB_E6DB48","d":[]},{"s":"PANCAKESWAP:QUINTWBNB_639BF1","d":[]},{"s":"PANCAKESWAP:BTTYWBNB_8D2BE6","d":[]},{"s":"PANCAKESWAP:PCWWBNB_6184C1","d":[]},{"s":"PANCAKESWAP:MEPADWBNB_FA180F","d":[]},{"s":"OKX:SOLETH","d":[]},{"s":"PANCAKESWAP:MAMAWBNB_97A8C5.USD","d":[]},{"s":"HONEYSWAP:COWGNO_6A43BE.USD","d":[]},{"s":"PANCAKESWAP:DBTUSDT_FEBA3A","d":[]},{"s":"PANCAKESWAP:WKCWBNB_933477","d":[]},{"s":"PANCAKESWAP:FEVRWBNB_0FB513.USD","d":[]},{"s":"PANCAKESWAP:DDOSWBNB_3C7DF1","d":[]},{"s":"PANCAKESWAP:ASTROAIWBNB_1944DF","d":[]},{"s":"PANCAKESWAP:TCUSDT_D43865","d":[]},{"s":"SUSHISWAP:STANDARDUSDC_F1E34D","d":[]},{"s":"PANCAKESWAP:HODLWBNB_D519E4","d":[]},{"s":"PANCAKESWAP:TDGWBNB_6C7197","d":[]},{"s":"PANCAKESWAP:OLEBUSD_E9F369","d":[]},{"s":"BINANCE:PEOPLEUSD","d":[]},{"s":"PANCAKESWAP:ALYWBNB_36CDF4.USD","d":[]},{"s":"SUSHISWAPPOLYGON:VEEWETH_BFFAD6.USD","d":[]},{"s":"PANCAKESWAP:ETHEH_FA832F.USD","d":[]},{"s":"PANCAKESWAP:XAIWBNB_DB039C","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_E71D71.USD","d":[]},{"s":"PANCAKESWAP:QUIDDWBNB_D6D206","d":[]},{"s":"HONEYSWAP:RENLINK_CEE385","d":[]},{"s":"PANCAKESWAP:MECHWBNB_73C590","d":[]},{"s":"KUCOIN:WRXUSDT","d":[]},{"s":"PANCAKESWAP:SPACEXWBNB_C47DA6","d":[]},{"s":"PANCAKESWAP:WINTUSD_DE1CC0","d":[]},{"s":"PANCAKESWAP:TPADWBNB_526588","d":[]},{"s":"SUSHISWAP:RGTWETH_18A797.USD","d":[]},{"s":"PANCAKESWAP:XCADBUSD_43D866","d":[]},{"s":"KUCOIN:OCEANUSDT","d":[]},{"s":"KUCOIN:KLAYBTC","d":[]},{"s":"PANCAKESWAP:MEFAWBNB_47F838.USD","d":[]},{"s":"PANCAKESWAP:MFETWBNB_9EDF2E.USD","d":[]},{"s":"PANCAKESWAP:BCLUBWBNB_97B078.USD","d":[]},{"s":"KUCOIN:USDPUSDT","d":[]},{"s":"PANCAKESWAP:MGTUSDT_E2E90B","d":[]},{"s":"PANCAKESWAP:BOSSWBNB_5052FF","d":[]},{"s":"PANCAKESWAP:KCEOWBNB_B78B98.USD","d":[]},{"s":"PANCAKESWAP:JTSWBNB_9A217E","d":[]},{"s":"KUCOIN:SYLOUSDT","d":[]},{"s":"PANCAKESWAP:WLCWBNB_F7BDEC","d":[]},{"s":"PANCAKESWAP:CAVATWBNB_BF90CF","d":[]},{"s":"PANCAKESWAP:COLLIEWBNB_46CE39","d":[]},{"s":"PANCAKESWAP:SHIELDNETWBNB_B4EAFE.USD","d":[]},{"s":"PANCAKESWAP:ADRBUSD_8D2ACC","d":[]},{"s":"SUSHISWAP:API3WETH_A8AEC0.USD","d":[]},{"s":"PANCAKESWAP:LOOPWBNB_204C53","d":[]},{"s":"PANCAKESWAP:ANATIONWBNB_1F5CB9.USD","d":[]},{"s":"PANCAKESWAP:CHITCATWBNB_85D14F","d":[]},{"s":"PANCAKESWAP:GSDWBNB_7F2455.USD","d":[]},{"s":"BINANCE:GASUSD","d":[]},{"s":"PANCAKESWAP:COGIWBNB_B63B69.USD","d":[]},{"s":"UPBIT:ENJBTC","d":[]},{"s":"PANCAKESWAP:STAIWBNB_482DAA","d":[]},{"s":"PANCAKESWAP:AMERICANFLOKIWBNB_E4429A.USD","d":[]},{"s":"OKX:CONVUSDT","d":[]},{"s":"PANCAKESWAP:PEPEWBNB_1DE7C7","d":[]},{"s":"PANCAKESWAP:MWGUSDT_D50803","d":[]},{"s":"KUCOIN:BCHKCS","d":[]},{"s":"BINANCE:LITUSDT.P","d":[]},{"s":"PANCAKESWAP:PEMONWBNB_62024C.USD","d":[]},{"s":"PANCAKESWAP:MOVEZWBNB_AF28CD.USD","d":[]},{"s":"PANCAKESWAP:KFRWBNB_06F10A.USD","d":[]},{"s":"PANCAKESWAP:EVILSQUIDWBNB_54E2D5.USD","d":[]},{"s":"HONEYSWAP:CREAMWXDAI_DACF00.USD","d":[]},{"s":"PANCAKESWAP:METXXPX_6D2BC5.USD","d":[]},{"s":"PANCAKESWAP:BITBUSD_14B9DD","d":[]},{"s":"PANCAKESWAP:BTTWBNB_946696.USD","d":[]},{"s":"PANCAKESWAP:DADDYWBNB_8DDB1F.USD","d":[]},{"s":"PANCAKESWAP:SWAPUSDC_CDF0AE","d":[]},{"s":"PANCAKESWAP:GHCWBNB_9682EC.USD","d":[]},{"s":"PANCAKESWAP:OSPDWBNB_AA728A.USD","d":[]},{"s":"PANCAKESWAP:BNBAOUSDT_45825E","d":[]},{"s":"PANCAKESWAP:MNSTRSWBNB_6097DB","d":[]},{"s":"PANCAKESWAP:BLASTWBNB_8D6A90.USD","d":[]},{"s":"PANCAKESWAP:LIQETH_E9B662","d":[]},{"s":"SUSHISWAPPOLYGON:BIFIUSDC_180237","d":[]},{"s":"PANCAKESWAP:NTNWBNB_E45217.USD","d":[]},{"s":"PANCAKESWAP:SFILWBNB_32D4C7.USD","d":[]},{"s":"PANCAKESWAP:PEPE20WBNB_551FF8.USD","d":[]},{"s":"SUSHISWAPPOLYGON:MVIWETH_4642DA.USD","d":[]},{"s":"SUSHISWAP:PIPTWETH_04E024","d":[]},{"s":"HONEYSWAP:ADAUSDT_6B71FD","d":[]},{"s":"HONEYSWAP:SHIBWXDAI_61511A","d":[]},{"s":"PANCAKESWAP:DBMEWBNB_363160","d":[]},{"s":"PANCAKESWAP:KUMAMONWBNB_5CC797","d":[]},{"s":"PANCAKESWAP:CENTWBNB_2F7706.USD","d":[]},{"s":"KUCOIN:CSIXUSDT","d":[]},{"s":"PANCAKESWAP:DCMDEBT_AD2A40.USD","d":[]},{"s":"PANCAKESWAP:ICONSBUSD_CB06E4","d":[]},{"s":"PANCAKESWAP:ROUSEWBNB_25423D.USD","d":[]},{"s":"PANCAKESWAP:ETHIMO_FA44D7","d":[]},{"s":"PANCAKESWAP:CGXWBNB_222A51","d":[]},{"s":"PANCAKESWAP:LCOINWBNB_AEB3BC.USD","d":[]},{"s":"PANCAKESWAP:ECOWBNB_DA6126","d":[]},{"s":"BINANCE:UTKUSD","d":[]},{"s":"PANCAKESWAP:FAIWBNB_E5BF81.USD","d":[]},{"s":"PANCAKESWAP:DOGEWHALEWBNB_1815AA.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_42126C","d":[]},{"s":"PANCAKESWAP:RPGWBNB_335C49.USD","d":[]},{"s":"HONEYSWAP:RAREWXDAI_5805BB.USD","d":[]},{"s":"BINANCE:FETUSDT.P","d":[]},{"s":"PANCAKESWAP:SWAPTCWBNB_11E692","d":[]},{"s":"PANCAKESWAP:GEMCZUSD_932190.USD","d":[]},{"s":"BINANCE:IOTAUSDT.P","d":[]},{"s":"KUCOIN:BICOUSDT","d":[]},{"s":"PANCAKESWAP:GGTWBNB_E572F8.USD","d":[]},{"s":"PANCAKESWAP:MONSBUSD_4C7DE6","d":[]},{"s":"HONEYSWAP:PSPHNY_79FC21.USD","d":[]},{"s":"BINANCE:SKLUSD","d":[]},{"s":"SUSHISWAPPOLYGON:OCAVUUSDC_73A041","d":[]},{"s":"PANCAKESWAP:KDOEWBNB_3537C4.USD","d":[]},{"s":"PANCAKESWAP:SKILLWBNB_C19DFD.USD","d":[]},{"s":"PANCAKESWAP:CGDAOUSDT_0D301C","d":[]},{"s":"OKX:ATOMETH","d":[]},{"s":"PANCAKESWAP:SHINJIWBNB_3C0BC5.USD","d":[]},{"s":"KUCOIN:SHIBUSDT.2L","d":[]},{"s":"PANCAKESWAP:IBIKSUSDT_7E2D7B","d":[]},{"s":"PANCAKESWAP:MOONBTCWBNB_911465.USD","d":[]},{"s":"PANCAKESWAP:REV3LBUSD_730E4F","d":[]},{"s":"PANCAKESWAP:AQUAGOATWBNB_D140E2.USD","d":[]},{"s":"HONEYSWAP:XMOONWETH_0AC17A.USD","d":[]},{"s":"KUCOIN:KSETHETH","d":[]},{"s":"PANCAKESWAP:CORGIWBNB_B82F12.USD","d":[]},{"s":"SUSHISWAPPOLYGON:VEEWETH_BFFAD6","d":[]},{"s":"SUSHISWAPPOLYGON:ROYWMATIC_7B23AF.USD","d":[]},{"s":"UPBIT:SNXBTC","d":[]},{"s":"PANCAKESWAP:MBUSUSDT_448BC7","d":[]},{"s":"KUCOIN:AIUSDT","d":[]},{"s":"PANCAKESWAP:BABYYATANWBNB_6F7C74.USD","d":[]},{"s":"OKX:FILUSDT","d":[]},{"s":"PANCAKESWAP:XCMWBNB_560B7D","d":[]},{"s":"PANCAKESWAP:BHBUSDT_C44AFB","d":[]},{"s":"PANCAKESWAP:EFBPWBNB_66E9DE.USD","d":[]},{"s":"PANCAKESWAP:IVYUSDT_F9508E","d":[]},{"s":"PANCAKESWAP:UVTWBNB_C7E067.USD","d":[]},{"s":"PANCAKESWAP:ZENIQWBNB_604BD2","d":[]},{"s":"HONEYSWAP:PSPHNY_79FC21","d":[]},{"s":"KUCOIN:CHMBUSDT","d":[]},{"s":"PANCAKESWAP:QXCWBNB_1AF9CF.USD","d":[]},{"s":"PANCAKESWAP:IDOWBNB_1AEE51","d":[]},{"s":"OKX:RVNUSDT","d":[]},{"s":"PANCAKESWAP:ANKRWBNB_3147F9.USD","d":[]},{"s":"SUSHISWAP:DONAWETH_7CD4EB","d":[]},{"s":"PANCAKESWAP:FREDWBNB_F48513.USD","d":[]},{"s":"PANCAKESWAP:WSNSUSDT_F90FD3","d":[]},{"s":"BINANCE:LQTYUSDT.P","d":[]},{"s":"PANCAKESWAP:PLSPADWBNB_8738DF.USD","d":[]},{"s":"PANCAKESWAP:MIKEWBNB_F08F77.USD","d":[]},{"s":"PANCAKESWAP:AITSWBNB_4F8181.USD","d":[]},{"s":"SUSHISWAP:DVFUSDT_E93B1B","d":[]},{"s":"PANCAKESWAP:XCNWBNB_F01ED8.USD","d":[]},{"s":"PANCAKESWAP:OPINUWBNB_62D6D8.USD","d":[]},{"s":"PANCAKESWAP:LEVBUSD_059019","d":[]},{"s":"SUSHISWAP:DOSEWETH_E2E998","d":[]},{"s":"PANCAKESWAP:CHONKWBNB_D4FB81.USD","d":[]},{"s":"PANCAKESWAP:SPACOINDOGE_53AAF6.USD","d":[]},{"s":"PANCAKESWAP:XDOGEWBNB_D06A1F","d":[]},{"s":"SUSHISWAPPOLYGON:CGGWMATIC_D74D23","d":[]},{"s":"PANCAKESWAP:CROWNWBNB_3CCFD6.USD","d":[]},{"s":"HONEYSWAP:STAKEWXDAI_1AF298","d":[]},{"s":"BINANCE:WIFUSD","d":[]},{"s":"PANCAKESWAP:USDTDAI_B3C421","d":[]},{"s":"PANCAKESWAP:EVRWBNB_BCC876","d":[]},{"s":"PANCAKESWAP:SATOZWBNB_261596","d":[]},{"s":"PANCAKESWAP:EFILWBNB_F4466B","d":[]},{"s":"KUCOIN:KRLUSDT","d":[]},{"s":"BINANCE:AMBUSDT.P","d":[]},{"s":"KUCOIN:BAXBTC","d":[]},{"s":"HONEYSWAP:HNYHAUS_9D6915.USD","d":[]},{"s":"HONEYSWAP:MATICWXDAI_70CD03","d":[]},{"s":"BINANCE:FOOTBALLUSDT.P","d":[]},{"s":"PANCAKESWAP:BUNDYWBNB_3057CA","d":[]},{"s":"KUCOIN:UNFIUPUSDT","d":[]},{"s":"PANCAKESWAP:CDXWBNB_54BA7D.USD","d":[]},{"s":"PANCAKESWAP:LCCUSDT_F6507B","d":[]},{"s":"HONEYSWAP:STKAGVEAGVE_1B4E22.USD","d":[]},{"s":"PANCAKESWAP:VEGASWBNB_4C8282.USD","d":[]},{"s":"PANCAKESWAP:HAYBUSD_70C26E","d":[]},{"s":"PANCAKESWAP:WOOWBNB_89EE04.USD","d":[]},{"s":"PANCAKESWAP:SPEAIWBNB_A8EBC8","d":[]},{"s":"PANCAKESWAP:SHILLINGWBNB_A4695E","d":[]},{"s":"PANCAKESWAP:ELSAWBNB_3D158A.USD","d":[]},{"s":"PANCAKESWAP:CAFWBNB_0551CE.USD","d":[]},{"s":"PANCAKESWAP:FAMEWBNB_5F1BA0.USD","d":[]},{"s":"PANCAKESWAP:CRDNWBNB_0A8CA6.USD","d":[]},{"s":"PANCAKESWAP:SEEDUSDT_0E4D98","d":[]},{"s":"PANCAKESWAP:GNOXWBNB_D39EF9","d":[]},{"s":"PANCAKESWAP:BSCPADWBNB_1E47DA","d":[]},{"s":"PANCAKESWAP:NESTUSDT_04FF0E","d":[]},{"s":"BINANCE:BANDUSD","d":[]},{"s":"PANCAKESWAP:HFHWBNB_268639.USD","d":[]},{"s":"HONEYSWAP:RAIDWXDAI_C7BCD5","d":[]},{"s":"PANCAKESWAP:FIROWBNB_D4DE57.USD","d":[]},{"s":"PANCAKESWAP:2024WBNB_F253A5","d":[]},{"s":"PANCAKESWAP:BONYWBNB_00AC2F","d":[]},{"s":"PANCAKESWAP:HFTWBNB_5453BA.USD","d":[]},{"s":"PANCAKESWAP:BABYOKXWBNB_D9F431.USD","d":[]},{"s":"PANCAKESWAP:HAPPYWBNB_008604.USD","d":[]},{"s":"SUSHISWAP:XFTWETH_F39FF8","d":[]},{"s":"PANCAKESWAP:OMNIUSDT_28023C","d":[]},{"s":"KUCOIN:ALPHABTC","d":[]},{"s":"PANCAKESWAP:PETSWBNB_4BDECE","d":[]},{"s":"PANCAKESWAP:PPXUSDT_B69FCE","d":[]},{"s":"UPBIT:DOGEUSDT","d":[]},{"s":"SUSHISWAP:WBTCWETH_CEFF51.USD","d":[]},{"s":"PANCAKESWAP:JOKWBNB_9EBD35.USD","d":[]},{"s":"HONEYSWAP:XMOONHNY_E2AE19","d":[]},{"s":"PANCAKESWAP:OBBUSDT_FD33D3","d":[]},{"s":"PANCAKESWAP:BABYDRAGONWBNB_8551C9.USD","d":[]},{"s":"PANCAKESWAP:URUSWBNB_6A78CA","d":[]},{"s":"PANCAKESWAP:DIPAWBNB_398441","d":[]},{"s":"UPBIT:JUVBTC","d":[]},{"s":"PANCAKESWAP:AFIBWBNB_F69092.USD","d":[]},{"s":"PANCAKESWAP:TDCWBNB_181683.USD","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_D1EB9F.USD","d":[]},{"s":"KUCOIN:QKCUSDT","d":[]},{"s":"PANCAKESWAP:FOOTBALLSTARSWBNB_8D6F55","d":[]},{"s":"PANCAKESWAP:BURNFIREUSDT_1B80DE","d":[]},{"s":"PANCAKESWAP:TRIPLEWBNB_45FDF1.USD","d":[]},{"s":"PANCAKESWAP:TMTBUSD_2C7A7E","d":[]},{"s":"KUCOIN:GASUSDT","d":[]},{"s":"KUCOIN:MNTUSDT","d":[]},{"s":"UPBIT:OBSRBTC","d":[]},{"s":"PANCAKESWAP:NTNUSDT_653413","d":[]},{"s":"OKX:MYRIAUSDT","d":[]},{"s":"PANCAKESWAP:SHOOWBNB_D71C42.USD","d":[]},{"s":"PANCAKESWAP:GEMINIGROKWBNB_D695A9.USD","d":[]},{"s":"PANCAKESWAP:MIRWBNB_B7A19A","d":[]},{"s":"KUCOIN:VRADOWNUSDT","d":[]},{"s":"PANCAKESWAP:GTAIUSDT_AB1E06","d":[]},{"s":"PANCAKESWAP:MWMUSDT_65C7EF","d":[]},{"s":"PANCAKESWAP:SBNBWBNB_7E3D62","d":[]},{"s":"PANCAKESWAP:MESABUSD_13FE0D","d":[]},{"s":"PANCAKESWAP:ZTNUSDT_18251F","d":[]},{"s":"SUSHISWAP:FNCWETH_82ECDD","d":[]},{"s":"PANCAKESWAP:SRCXWBNB_F7C0D1","d":[]},{"s":"OKX:SUSHIUSDT","d":[]},{"s":"KUCOIN:UNBUSDT","d":[]},{"s":"PANCAKESWAP:HPSWBNB_16C21C.USD","d":[]},{"s":"PANCAKESWAP:CAWBNB_F77B81.USD","d":[]},{"s":"PANCAKESWAP:BTCBSCWBNB_46DEDF.USD","d":[]},{"s":"PANCAKESWAP:SHIBAAIWBNB_A3E547.USD","d":[]},{"s":"PANCAKESWAP:SEILUWBNB_E62A08","d":[]},{"s":"OKX:SDUSDT","d":[]},{"s":"PANCAKESWAP:GROKOLAUSWBNB_86C220.USD","d":[]},{"s":"PANCAKESWAP:WATERWBNB_3B6A0A.USD","d":[]},{"s":"PANCAKESWAP:KGTXWBNB_8BC832","d":[]},{"s":"PANCAKESWAP:PULSEDOGEWBNB_B65697.USD","d":[]},{"s":"SUSHISWAPPOLYGON:ETH2XFLIPWETH_ADD053","d":[]},{"s":"PANCAKESWAP:ETXWBNB_CF0B28.USD","d":[]},{"s":"PANCAKESWAP:LIQBTCB_768BC9","d":[]},{"s":"PANCAKESWAP:HOKKWBNB_E504A7","d":[]},{"s":"PANCAKESWAP:TCAKEWBNB_A9F1BA.USD","d":[]},{"s":"PANCAKESWAP:GLOWWBNB_378369.USD","d":[]},{"s":"PANCAKESWAP:VTUSDT_39EB5E","d":[]},{"s":"PANCAKESWAP:TTBUSD_6DA328","d":[]},{"s":"PANCAKESWAP:CDXWBNB_54BA7D","d":[]},{"s":"PANCAKESWAP:OSEANWBNB_8A7292.USD","d":[]},{"s":"PANCAKESWAP:RGOLDWBNB_947D6F.USD","d":[]},{"s":"HONEYSWAP:MIVAWXDAI_19B8EB","d":[]},{"s":"PANCAKESWAP:8676USDT_0C6B66","d":[]},{"s":"PANCAKESWAP:WSBBUSD_93AC8B","d":[]},{"s":"PANCAKESWAP:GDPUSDT_C69D73","d":[]},{"s":"PANCAKESWAP:OXAIUSDT_6870F7","d":[]},{"s":"KUCOIN:BCHUSDT.3S","d":[]},{"s":"PANCAKESWAP:VSIONWBNB_BADD8E","d":[]},{"s":"SUSHISWAP:NRCHWETH_161A49","d":[]},{"s":"KUCOIN:ARBUSDT.3L","d":[]},{"s":"PANCAKESWAP:VENOMAIWBNB_DBAC6A","d":[]},{"s":"PANCAKESWAP:AIRTWBNB_F0CB49","d":[]},{"s":"PANCAKESWAP:JNYWBNB_40E5E9.USD","d":[]},{"s":"SUSHISWAPPOLYGON:RBLSUSDT_BE6902","d":[]},{"s":"OKX:NULSUSDT","d":[]},{"s":"PANCAKESWAP:POVWBNB_6AE2B5.USD","d":[]},{"s":"PANCAKESWAP:AHGWBNB_ED7ABD.USD","d":[]},{"s":"PANCAKESWAP:WARSBUSD_75B93C","d":[]},{"s":"KUCOIN:DARBTC","d":[]},{"s":"PANCAKESWAP:ONIETH_08EB05.USD","d":[]},{"s":"PANCAKESWAP:WNAVWBNB_C31FC5","d":[]},{"s":"PANCAKESWAP:TGYPEC_C7CEBC","d":[]},{"s":"PANCAKESWAP:MNUWBNB_A7684A.USD","d":[]},{"s":"PANCAKESWAP:AFKUSDT_346986","d":[]},{"s":"PANCAKESWAP:FRENWBNB_7DF35E","d":[]},{"s":"PANCAKESWAP:AGCUSDT_6F9135","d":[]},{"s":"KUCOIN:EQXUSDT","d":[]},{"s":"PANCAKESWAP:WSLSBTCB_370165.USD","d":[]},{"s":"PANCAKESWAP:FISTWBNB_73424D","d":[]},{"s":"PANCAKESWAP:BUYWBNB_71336C","d":[]},{"s":"HONEYSWAP:WATERGIV_E96ADB.USD","d":[]},{"s":"HONEYSWAP:RENBTCUSDC_37EAF2","d":[]},{"s":"PANCAKESWAP:BTNTV2WBNB_33EC58.USD","d":[]},{"s":"PANCAKESWAP:HIBIKIWBNB_54AD5D.USD","d":[]},{"s":"PANCAKESWAP:SOURCEBUSD_3F026A","d":[]},{"s":"HONEYSWAP:BUSDHNY_08F64C","d":[]},{"s":"PANCAKESWAP:TELEBTCWBNB_BE7CBF.USD","d":[]},{"s":"PANCAKESWAP:OMWBNB_49837A.USD","d":[]},{"s":"OKX:GOALUSDT","d":[]},{"s":"KUCOIN:AMBUSDT","d":[]},{"s":"PANCAKESWAP:WSTBUSD_439EFD","d":[]},{"s":"KUCOIN:MTLBTC","d":[]},{"s":"OKX:LBRUSDT","d":[]},{"s":"PANCAKESWAP:QQWBNB_17BC51","d":[]},{"s":"KUCOIN:LTCUSDC","d":[]},{"s":"PANCAKESWAP:KZWBNB_DDABCC.USD","d":[]},{"s":"PANCAKESWAP:SMARTMEMEWBNB_27F134","d":[]},{"s":"OKX:STXUSDT","d":[]},{"s":"KUCOIN:FINCUSDT","d":[]},{"s":"OKX:WIFIUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:RAIDERWMATIC_2E7D64","d":[]},{"s":"PANCAKESWAP:TROLLWBNB_BCD579.USD","d":[]},{"s":"PANCAKESWAP:CRXWBNB_8B5203","d":[]},{"s":"PANCAKESWAP:SFWUSDT_67E85C","d":[]},{"s":"OKX:1INCHEUR","d":[]},{"s":"SUSHISWAP:CVXCRVCRV_33F6DD.USD","d":[]},{"s":"PANCAKESWAP:BEFEBRISE_08B07C","d":[]},{"s":"HONEYSWAP:AGVEWETH_EBA7CC.USD","d":[]},{"s":"PANCAKESWAP:ECWBNB_5473C3.USD","d":[]},{"s":"PANCAKESWAP:DYNAWBNB_B6148C.USD","d":[]},{"s":"PANCAKESWAP:BLECUSDT_B613DA","d":[]},{"s":"SUSHISWAP:BMIWETH_538132.USD","d":[]},{"s":"PANCAKESWAP:DFIWBNB_604419","d":[]},{"s":"PANCAKESWAP:CAROLWBNB_92FE02","d":[]},{"s":"PANCAKESWAP:KKMAWBNB_A63736.USD","d":[]},{"s":"HONEYSWAP:PRTCLEWXDAI_A527DB.USD","d":[]},{"s":"PANCAKESWAP:TRUMPPEPEWBNB_9D588C","d":[]},{"s":"PANCAKESWAP:BOGEYWBNB_7C3C8E.USD","d":[]},{"s":"KUCOIN:MTVBTC","d":[]},{"s":"KUCOIN:GALAXUSDT.3S","d":[]},{"s":"HONEYSWAP:NODEWETH_D8562E","d":[]},{"s":"KUCOIN:FEARUSDT","d":[]},{"s":"BINANCE:SOLUSDT.P","d":[]},{"s":"PANCAKESWAP:HALOUSDT_CBBF9E","d":[]},{"s":"PANCAKESWAP:FRENWBNB_7DF35E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:SUSHIWMATIC_597A9B","d":[]},{"s":"PANCAKESWAP:DOMIWBNB_80BA8C.USD","d":[]},{"s":"PANCAKESWAP:BRDGBUSD_A90F5E","d":[]},{"s":"PANCAKESWAP:MITABUSD_9AC893","d":[]},{"s":"PANCAKESWAP:XPPUSDT_4C6875","d":[]},{"s":"BINANCE:FLUXUSD","d":[]},{"s":"BINANCE:DGBUSDT.P","d":[]},{"s":"KUCOIN:EVERUSDT","d":[]},{"s":"PANCAKESWAP:WSPPWBNB_31FDF4.USD","d":[]},{"s":"PANCAKESWAP:BTTTUSD_F7C3BC","d":[]},{"s":"PANCAKESWAP:AVNWBNB_5EDE41","d":[]},{"s":"OKX:OMNUSDT","d":[]},{"s":"KUCOIN:SEIUPUSDT","d":[]},{"s":"PANCAKESWAP:DEXOUSDT_167126","d":[]},{"s":"PANCAKESWAP:DOVWBNB_E5BE1A.USD","d":[]},{"s":"PANCAKESWAP:ROCKETWBNB_A60118","d":[]},{"s":"HONEYSWAP:WATERGNO_3B74C8.USD","d":[]},{"s":"PANCAKESWAP:TROLLBNBWBNB_AC9825.USD","d":[]},{"s":"PANCAKESWAP:MOCEANSWBNB_C83796","d":[]},{"s":"OKX:MEMEUSDT","d":[]},{"s":"HONEYSWAP:BIDHNY_23DE74.USD","d":[]},{"s":"PANCAKESWAP:BELTWBNB_F3BC6F.USD","d":[]},{"s":"PANCAKESWAP:BTGTWBNB_7F001B.USD","d":[]},{"s":"PANCAKESWAP:AVECWBNB_409B61.USD","d":[]},{"s":"PANCAKESWAP:MOONWBNB_1FF116.USD","d":[]},{"s":"PANCAKESWAP:XGTWBNB_4DE0ED","d":[]},{"s":"PANCAKESWAP:DOGEWBNB_1D51F1.USD","d":[]},{"s":"KUCOIN:INJUPUSDT","d":[]},{"s":"PANCAKESWAP:RSCBUSD_CC1D4A","d":[]},{"s":"PANCAKESWAP:LIQWBNB_23C75A.USD","d":[]},{"s":"BINANCE:SFPUSD","d":[]},{"s":"BINANCE:ICPUSDT.P","d":[]},{"s":"KUCOIN:ZPAYUSDT","d":[]},{"s":"KUCOIN:PUNDIXBTC","d":[]},{"s":"KUCOIN:NYMUSDT","d":[]},{"s":"HONEYSWAP:WETHUSDC_1C9338","d":[]},{"s":"PANCAKESWAP:PEPESONUSDT_AE08E7","d":[]},{"s":"PANCAKESWAP:CTNRWBNB_15D080.USD","d":[]},{"s":"KUCOIN:POLXUSDT","d":[]},{"s":"KUCOIN:ZILUSDT","d":[]},{"s":"PANCAKESWAP:TASTEWBNB_75C7C7","d":[]},{"s":"PANCAKESWAP:HUBTWBNB_34BFBC","d":[]},{"s":"HONEYSWAP:CRVUSDT_061055","d":[]},{"s":"KUCOIN:LTCUSDT","d":[]},{"s":"PANCAKESWAP:SETWBNB_6BB64E","d":[]},{"s":"PANCAKESWAP:MFWBNB_FA5299","d":[]},{"s":"PANCAKESWAP:4JNETWBNB_A9BEBE.USD","d":[]},{"s":"PANCAKESWAP:PEPYWBNB_79942F.USD","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_FDFAF9.USD","d":[]},{"s":"PANCAKESWAP:CBPUSDT_D55001","d":[]},{"s":"PANCAKESWAP:PMEWBNB_041C70","d":[]},{"s":"PANCAKESWAP:SPLUSV2WBNB_97FC30.USD","d":[]},{"s":"BINANCE:AUDIOUSDT.P","d":[]},{"s":"PANCAKESWAP:HIPPOWBNB_40A383","d":[]},{"s":"PANCAKESWAP:EMOJIWBNB_E90D4A","d":[]},{"s":"PANCAKESWAP:PINKHAREUSDT_060DA9","d":[]},{"s":"PANCAKESWAP:RMDWBNB_D7B969.USD","d":[]},{"s":"SUSHISWAP:KGFWETH_EE464A","d":[]},{"s":"PANCAKESWAP:ULTIWBNB_C80815.USD","d":[]},{"s":"PANCAKESWAP:GCMEWBNB_E7CF56.USD","d":[]},{"s":"SUSHISWAP:BAOWETH_0EEE7F.USD","d":[]},{"s":"PANCAKESWAP:OSEANWBNB_8A7292","d":[]},{"s":"PANCAKESWAP:CUBEBWBNB_4A8273.USD","d":[]},{"s":"PANCAKESWAP:CLCTWBNB_933F48.USD","d":[]},{"s":"KUCOIN:KDAUSDC","d":[]},{"s":"KUCOIN:DYDXUPUSDT","d":[]},{"s":"KUCOIN:WINTRX","d":[]},{"s":"HONEYSWAP:LTIWXDAI_64AC1A.USD","d":[]},{"s":"BINANCE:LINAUSD","d":[]},{"s":"SUSHISWAP:FODLWETH_CE7E98","d":[]},{"s":"KUCOIN:HBARUSDT","d":[]},{"s":"PANCAKESWAP:MINERSWBNB_7D03F5","d":[]},{"s":"BINANCE:OXTUSD","d":[]},{"s":"PANCAKESWAP:ARCASWBNB_ACBEA9","d":[]},{"s":"PANCAKESWAP:BELTWBNB_F3BC6F","d":[]},{"s":"KUCOIN:ALGOKCS","d":[]},{"s":"PANCAKESWAP:CR7WBNB_804267","d":[]},{"s":"PANCAKESWAP:BTSUSDT_0B0893","d":[]},{"s":"HONEYSWAP:JOONWXDAI_960396.USD","d":[]},{"s":"PANCAKESWAP:SYNAPTICAIWBNB_5B1791.USD","d":[]},{"s":"PANCAKESWAP:DOSEPROS_B40871","d":[]},{"s":"SUSHISWAP:RENWETH_611CDE","d":[]},{"s":"PANCAKESWAP:STCWBNB_923D0C","d":[]},{"s":"BINANCE:SYSUSD","d":[]},{"s":"PANCAKESWAP:IBOXUSDT_AB0501","d":[]},{"s":"PANCAKESWAP:GGMBUSD_DEC0F2","d":[]},{"s":"PANCAKESWAP:ADGWBNB_D27652.USD","d":[]},{"s":"UPBIT:EOSBTC","d":[]},{"s":"PANCAKESWAP:DXTWBNB_C2B6DA","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_137DAE","d":[]},{"s":"SUSHISWAP:NSTWETH_75507B.USD","d":[]},{"s":"PANCAKESWAP:HYPERWBNB_4F6BEC.USD","d":[]},{"s":"HONEYSWAP:AGVEWXDAI_0E3E9C.USD","d":[]},{"s":"PANCAKESWAP:LEOWBNB_012BFA.USD","d":[]},{"s":"SUSHISWAP:PSPWETH_458AE8.USD","d":[]},{"s":"PANCAKESWAP:PEGWBNB_E20401","d":[]},{"s":"PANCAKESWAP:GEMSWBNB_463F57.USD","d":[]},{"s":"PANCAKESWAP:OCTFWBNB_A1BC47","d":[]},{"s":"PANCAKESWAP:ZTWBNB_CD791B","d":[]},{"s":"PANCAKESWAP:BNBGOLDWBNB_5CCAAB.USD","d":[]},{"s":"PANCAKESWAP:TBANKWBNB_E51852.USD","d":[]},{"s":"PANCAKESWAP:KAFGYINGLHGOXI_0E2EF2","d":[]},{"s":"PANCAKESWAP:RSPNWBNB_BE040C","d":[]},{"s":"PANCAKESWAP:KDSUSDT_060573","d":[]},{"s":"PANCAKESWAP:BABYBYTEWBNB_816AF8","d":[]},{"s":"PANCAKESWAP:USHWBNB_C9C33A.USD","d":[]},{"s":"PANCAKESWAP:MRLWBNB_B11743.USD","d":[]},{"s":"PANCAKESWAP:VCVCFGD_B3C1DE","d":[]},{"s":"SUSHISWAP:MKRWETH_BA13AF.USD","d":[]},{"s":"PANCAKESWAP:VLKWBNB_8659EC","d":[]},{"s":"HONEYSWAP:AMISMIVA_210609.USD","d":[]},{"s":"PANCAKESWAP:TECHNOVABNO_039F4E","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_269FC6","d":[]},{"s":"HONEYSWAP:SETHWETH_576E91","d":[]},{"s":"PANCAKESWAP:SALEWBNB_61CA6A","d":[]},{"s":"PANCAKESWAP:BCMCWBNB_3988F9.USD","d":[]},{"s":"PANCAKESWAP:ADOGEWBNB_C30211.USD","d":[]},{"s":"PANCAKESWAP:DSNUSDT_DD0B0F","d":[]},{"s":"PANCAKESWAP:CSTETH_F04CFD","d":[]},{"s":"PANCAKESWAP:CZUSDBUSD_D7C6FC","d":[]},{"s":"PANCAKESWAP:SHUSHBUSD_F90F2C","d":[]},{"s":"BINANCE:RSRUSDT.P","d":[]},{"s":"PANCAKESWAP:GROKKINGWBNB_0D54BC.USD","d":[]},{"s":"KUCOIN:BIISUSDT","d":[]},{"s":"KUCOIN:MATICUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:JPYCUSDC_FBAE8E","d":[]},{"s":"PANCAKESWAP:VNDCUSDT_40362F","d":[]},{"s":"PANCAKESWAP:XUSDWBNB_028AAB","d":[]},{"s":"PANCAKESWAP:MLWBNB_70F969.USD","d":[]},{"s":"PANCAKESWAP:CACWBNB_D063FB.USD","d":[]},{"s":"PANCAKESWAP:AMGDUSDT_28B508","d":[]},{"s":"PANCAKESWAP:SHAZUWBNB_94E6F6.USD","d":[]},{"s":"PANCAKESWAP:WEYUWBNB_913564","d":[]},{"s":"PANCAKESWAP:USHWBNB_C9C33A","d":[]},{"s":"PANCAKESWAP:BRYWBNB_5E3CD2","d":[]},{"s":"PANCAKESWAP:DHNBUSD_E0C9C4","d":[]},{"s":"PANCAKESWAP:CORGIWBNB_B82F12","d":[]},{"s":"PANCAKESWAP:HIGHBUSD_E98AC9","d":[]},{"s":"PANCAKESWAP:PROSWBNB_109CBF.USD","d":[]},{"s":"PANCAKESWAP:HUAWBNB_063236.USD","d":[]},{"s":"PANCAKESWAP:HODWBNB_434E3E.USD","d":[]},{"s":"SUSHISWAP:RAILWETH_7CF6A8.USD","d":[]},{"s":"PANCAKESWAP:COSMICWBNB_AD9D1E","d":[]},{"s":"KUCOIN:OPUSDC","d":[]},{"s":"PANCAKESWAP:ETHWBNB_70D892","d":[]},{"s":"KUCOIN:HIBEANZUSDT","d":[]},{"s":"HONEYSWAP:SNAFUHNY_90BF4E","d":[]},{"s":"PANCAKESWAP:DAOUSDT_029A75","d":[]},{"s":"OKX:ETCUSDT22H2024","d":[]},{"s":"KUCOIN:LSKETH","d":[]},{"s":"PANCAKESWAP:CINUWBNB_0210F6","d":[]},{"s":"PANCAKESWAP:GOLDWBNB_D58066.USD","d":[]},{"s":"PANCAKESWAP:ULTRAWBNB_48BAC9","d":[]},{"s":"PANCAKESWAP:VSLWBNB_E691B7.USD","d":[]},{"s":"BINANCE:UNFIUSD","d":[]},{"s":"BINANCE:CELRUSDT.P","d":[]},{"s":"PANCAKESWAP:BTLWBNB_CAF752.USD","d":[]},{"s":"HONEYSWAP:AMISDONUT_C8ECC5.USD","d":[]},{"s":"OKX:WOOUSDT","d":[]},{"s":"PANCAKESWAP:NSIWBNB_42EBFA.USD","d":[]},{"s":"PANCAKESWAP:SMRATWBNB_90B432","d":[]},{"s":"HONEYSWAP:TRIPSWXDAI_5426A4.USD","d":[]},{"s":"PANCAKESWAP:BZENWBNB_7D781F","d":[]},{"s":"KUCOIN:KNGLUSDT","d":[]},{"s":"PANCAKESWAP:KONWBNB_9D9EF9.USD","d":[]},{"s":"PANCAKESWAP:IXIRWBNB_26DE6A","d":[]},{"s":"PANCAKESWAP:BABYBNBWBNB_7ACED9","d":[]},{"s":"KUCOIN:RVNUSDT","d":[]},{"s":"PANCAKESWAP:STAUSDT_47830B","d":[]},{"s":"HONEYSWAP:XSUSHIWXDAI_30190D","d":[]},{"s":"PANCAKESWAP:MTRGBUSD_4DCA4D","d":[]},{"s":"OKX:FLOWUSDT","d":[]},{"s":"PANCAKESWAP:1MILWBNB_6E1163","d":[]},{"s":"PANCAKESWAP:GOW39WBNB_33A8BA","d":[]},{"s":"PANCAKESWAP:IRISWBNB_D83EFE.USD","d":[]},{"s":"PANCAKESWAP:MASKBUSD_F0E22B","d":[]},{"s":"SUSHISWAPPOLYGON:PZUGWETH_0A7F27.USD","d":[]},{"s":"PANCAKESWAP:PRIMALBUSD_4D4310","d":[]},{"s":"PANCAKESWAP:LUTOWBNB_A0445E","d":[]},{"s":"PANCAKESWAP:WNDWBNB_88919C","d":[]},{"s":"PANCAKESWAP:BOBWBNB_FD12FE.USD","d":[]},{"s":"HONEYSWAP:CARWXDAI_FA44BD.USD","d":[]},{"s":"PANCAKESWAP:VCWBNB_E46E97","d":[]},{"s":"PANCAKESWAP:DEBTDLG_EB7F2B.USD","d":[]},{"s":"PANCAKESWAP:BSCPADWBNB_1E47DA.USD","d":[]},{"s":"OKX:GRTUSDC","d":[]},{"s":"PANCAKESWAP:OINBUSD_6A00E4","d":[]},{"s":"PANCAKESWAP:AKBWBNB_23C626.USD","d":[]},{"s":"BINANCE:FIROUSD","d":[]},{"s":"PANCAKESWAP:BOLOUSDT_92EF3D","d":[]},{"s":"KUCOIN:AIPADUSDT","d":[]},{"s":"PANCAKESWAP:MYRO20WBNB_E8AB07.USD","d":[]},{"s":"PANCAKESWAP:20518BWBNB_59526B.USD","d":[]},{"s":"PANCAKESWAP:AREAWBNB_29C8B3.USD","d":[]},{"s":"PANCAKESWAP:LEEUSDT_5C6D8D","d":[]},{"s":"PANCAKESWAP:KISHIMOTOWBNB_1837EB.USD","d":[]},{"s":"HONEYSWAP:HBTCWBTC_B32A3F.USD","d":[]},{"s":"PANCAKESWAP:HMWBNB_B05F74.USD","d":[]},{"s":"SUSHISWAP:MULTIWETH_82917F.USD","d":[]},{"s":"PANCAKESWAP:SHABUSD_D27CA3","d":[]},{"s":"PANCAKESWAP:SAPWBNB_0010B1","d":[]},{"s":"HONEYSWAP:OCEANWXDAI_EBFAAB.USD","d":[]},{"s":"PANCAKESWAP:BABYWBNB_AD1BFA.USD","d":[]},{"s":"HONEYSWAP:YFTPHNY_0387AF","d":[]},{"s":"KUCOIN:MLKBTC","d":[]},{"s":"PANCAKESWAP:SNSWBNB_84D511.USD","d":[]},{"s":"PANCAKESWAP:FGDFGCA_7A899F.USD","d":[]},{"s":"PANCAKESWAP:HELLOWBNB_54E635.USD","d":[]},{"s":"KUCOIN:PONDBTC","d":[]},{"s":"PANCAKESWAP:PULSEDOGEWBNB_B65697","d":[]},{"s":"PANCAKESWAP:ODDUSDT_F93796","d":[]},{"s":"PANCAKESWAP:WATCHWBNB_13321A.USD","d":[]},{"s":"PANCAKESWAP:SAVANTAIWBNB_48246C","d":[]},{"s":"PANCAKESWAP:BTEWBNB_21AFE8","d":[]},{"s":"PANCAKESWAP:MMPROWBNB_8FD7B2","d":[]},{"s":"OKX:XRPUSD28M2024","d":[]},{"s":"OKX:MATICUSDC","d":[]},{"s":"PANCAKESWAP:SCJFUSDT_56A751","d":[]},{"s":"PANCAKESWAP:FCFWBNB_C58A80","d":[]},{"s":"OKX:BIGTIMEUSDT","d":[]},{"s":"OKX:YGGUSDC","d":[]},{"s":"PANCAKESWAP:ASSETWBNB_784914.USD","d":[]},{"s":"KUCOIN:ZILETH","d":[]},{"s":"KUCOIN:MTRGUSDT","d":[]},{"s":"KUCOIN:EOSUSDT.3S","d":[]},{"s":"PANCAKESWAP:CBEXWBNB_AA7E46","d":[]},{"s":"PANCAKESWAP:GEMITWBNB_671ADE","d":[]},{"s":"PANCAKESWAP:AIMWBNB_C0D1E8.USD","d":[]},{"s":"PANCAKESWAP:MUSKTROLLWBNB_90389D.USD","d":[]},{"s":"PANCAKESWAP:GAINSWBNB_CD0386","d":[]},{"s":"PANCAKESWAP:FRMWBNB_62C580.USD","d":[]},{"s":"PANCAKESWAP:ZENIQWBNB_604BD2.USD","d":[]},{"s":"BINANCE:REEFUSDT.P","d":[]},{"s":"PANCAKESWAP:UTLWBNB_B706D8","d":[]},{"s":"PANCAKESWAP:DCBUSDT_83D547","d":[]},{"s":"HONEYSWAP:STKAGVEAGVE_1B4E22","d":[]},{"s":"KUCOIN:OOEUSDT","d":[]},{"s":"PANCAKESWAP:MGTMUT_5F0A05.USD","d":[]},{"s":"PANCAKESWAP:PMASTERWBNB_91B5D3","d":[]},{"s":"PANCAKESWAP:GUMWBNB_28EA58","d":[]},{"s":"SUSHISWAP:SOSWETH_B84C45.USD","d":[]},{"s":"PANCAKESWAP:ADXBUSD_0648FF","d":[]},{"s":"PANCAKESWAP:MLTWBNB_66FE9C","d":[]},{"s":"PANCAKESWAP:DIABLOUSDT_E4FB5B","d":[]},{"s":"PANCAKESWAP:WPWBNB_AFAF62.USD","d":[]},{"s":"KUCOIN:WANBTC","d":[]},{"s":"PANCAKESWAP:SSCUSDT_C6BC4A","d":[]},{"s":"PANCAKESWAP:BEFXWBNB_71ECFE.USD","d":[]},{"s":"BINANCE:SSVUSD","d":[]},{"s":"PANCAKESWAP:INSRWBNB_915600","d":[]},{"s":"PANCAKESWAP:ETHSTRAC_A88AF4.USD","d":[]},{"s":"PANCAKESWAP:BNYTAWBNB_8AE440.USD","d":[]},{"s":"PANCAKESWAP:KEKAIWBNB_C52475.USD","d":[]},{"s":"PANCAKESWAP:TADPWBNB_FB5557.USD","d":[]},{"s":"SUSHISWAP:INJWETH_FB3CD0.USD","d":[]},{"s":"PANCAKESWAP:CALIXWBNB_28C20D.USD","d":[]},{"s":"PANCAKESWAP:CENXBRISE_C0BA84.USD","d":[]},{"s":"BINANCE:ANKRUSD","d":[]},{"s":"PANCAKESWAP:ERABBITWBNB_843685.USD","d":[]},{"s":"PANCAKESWAP:HOTVWBNB_CBE4CC.USD","d":[]},{"s":"SUSHISWAP:SPSWETH_1B803A.USD","d":[]},{"s":"PANCAKESWAP:SDTPLY_763262.USD","d":[]},{"s":"PANCAKESWAP:CMOONWBNB_892EE9.USD","d":[]},{"s":"KUCOIN:NMRBTC","d":[]},{"s":"PANCAKESWAP:RAIDWBNB_D892BC","d":[]},{"s":"PANCAKESWAP:LONGUSDT_F59751","d":[]},{"s":"BINANCE:MATICUSDT.P","d":[]},{"s":"PANCAKESWAP:MMETAWBNB_83DB9B.USD","d":[]},{"s":"PANCAKESWAP:AIUSDT_9A0CD8","d":[]},{"s":"KUCOIN:SWFTCUSDC","d":[]},{"s":"KUCOIN:KALTUSDT","d":[]},{"s":"PANCAKESWAP:DRAGONKINGWBNB_580F58","d":[]},{"s":"PANCAKESWAP:AGSWBNB_F35E09","d":[]},{"s":"PANCAKESWAP:CARBOBUSD_683128","d":[]},{"s":"PANCAKESWAP:MXRUSDT_BC7E81","d":[]},{"s":"PANCAKESWAP:PEACEWBNB_2C97E8.USD","d":[]},{"s":"PANCAKESWAP:UDAOUSDT_BC466B","d":[]},{"s":"PANCAKESWAP:FREELAWBNB_9EF4E1.USD","d":[]},{"s":"BINANCE:ZENUSDT.P","d":[]},{"s":"PANCAKESWAP:ZKSHIELDWBNB_18B631","d":[]},{"s":"PANCAKESWAP:CZUSDWBNB_5C3C3B","d":[]},{"s":"PANCAKESWAP:QUBEUSDT_7830AC","d":[]},{"s":"PANCAKESWAP:VFOXWBNB_E16EFD","d":[]},{"s":"SUSHISWAPPOLYGON:EPFBX_41D9DE","d":[]},{"s":"PANCAKESWAP:STRWBNB_66B7CF.USD","d":[]},{"s":"PANCAKESWAP:DEXWBNB_01B279","d":[]},{"s":"PANCAKESWAP:LANDWBNB_13F80C","d":[]},{"s":"OKX:ETHUSD22H2024","d":[]},{"s":"HONEYSWAP:HNYGMLU_9D61C2","d":[]},{"s":"PANCAKESWAP:BRNWBNB_817828.USD","d":[]},{"s":"KUCOIN:MJTUSDT","d":[]},{"s":"PANCAKESWAP:SAFEMONEYWBNB_358B3A.USD","d":[]},{"s":"PANCAKESWAP:PEXWBNB_CBCF65","d":[]},{"s":"PANCAKESWAP:GROKXAIWBNB_A3AF19.USD","d":[]},{"s":"PANCAKESWAP:WSASWBNB_FB206D.USD","d":[]},{"s":"HONEYSWAP:CARHNY_E7B019.USD","d":[]},{"s":"PANCAKESWAP:ZILLAWBNB_CC241A","d":[]},{"s":"PANCAKESWAP:DSLAWBNB_9C3050.USD","d":[]},{"s":"UPBIT:API3BTC","d":[]},{"s":"PANCAKESWAP:ZGLKINGWBNB_D384CA","d":[]},{"s":"PANCAKESWAP:WSCWBNB_B1E626","d":[]},{"s":"PANCAKESWAP:CUTWBNB_87B54C.USD","d":[]},{"s":"KUCOIN:DOTUSDT.3S","d":[]},{"s":"PANCAKESWAP:PUPDOGEWBNB_A551BB","d":[]},{"s":"PANCAKESWAP:CUWBNB_70ECDE.USD","d":[]},{"s":"PANCAKESWAP:CZRCZUSD_BF92A0","d":[]},{"s":"PANCAKESWAP:MOONWBNB_C2ECC8","d":[]},{"s":"BINANCE:REQUSD","d":[]},{"s":"KUCOIN:DGBETH","d":[]},{"s":"PANCAKESWAP:BIBWBNB_B9F28E.USD","d":[]},{"s":"PANCAKESWAP:LGTWBNB_621FDE","d":[]},{"s":"KUCOIN:SCRTUSDT","d":[]},{"s":"OKX:ETCUSDT28M2024","d":[]},{"s":"SUSHISWAP:GCAKEWETH_230813.USD","d":[]},{"s":"PANCAKESWAP:GAINSWBNB_8BFC60","d":[]},{"s":"PANCAKESWAP:TUUUWBNB_313C0E.USD","d":[]},{"s":"SUSHISWAP:SIWETH_30045A","d":[]},{"s":"PANCAKESWAP:HPSWBNB_219686","d":[]},{"s":"PANCAKESWAP:MONIWBNB_BCFD0D","d":[]},{"s":"PANCAKESWAP:GROKTETHERWBNB_CADDBC","d":[]},{"s":"PANCAKESWAP:BRAKWBNB_61AD4F.USD","d":[]},{"s":"PANCAKESWAP:MTYWBNB_C7A4DC.USD","d":[]},{"s":"KUCOIN:ZRXUSDT","d":[]},{"s":"PANCAKESWAP:SPACEDOGEWBNB_D8A2B7.USD","d":[]},{"s":"KUCOIN:XDCBTC","d":[]},{"s":"BINANCE:PYTHUSD","d":[]},{"s":"SUSHISWAP:SUSHIWETH_795065.USD","d":[]},{"s":"PANCAKESWAP:BASWBNB_B5C731.USD","d":[]},{"s":"PANCAKESWAP:ROCKETFIWBNB_CA8CB8","d":[]},{"s":"PANCAKESWAP:PXRWBNB_0B3E6F","d":[]},{"s":"PANCAKESWAP:CATBOYWBNB_EBA4BF","d":[]},{"s":"PANCAKESWAP:CVLC2WBNB_C53974.USD","d":[]},{"s":"PANCAKESWAP:KANG3NWBNB_70B6A4.USD","d":[]},{"s":"PANCAKESWAP:SFUELWBNB_E89044.USD","d":[]},{"s":"PANCAKESWAP:STEPWBNB_FE6CA8","d":[]},{"s":"KUCOIN:FXBTC","d":[]},{"s":"KUCOIN:POKTUSDT","d":[]},{"s":"PANCAKESWAP:BABYRATSWBNB_8FF260.USD","d":[]},{"s":"SUSHISWAP:NSTWETH_75507B","d":[]},{"s":"KUCOIN:DGBUSDT","d":[]},{"s":"PANCAKESWAP:IGTSFO_74E378.USD","d":[]},{"s":"PANCAKESWAP:SSGWBNB_AE6CDF","d":[]},{"s":"PANCAKESWAP:BDAOWBNB_1B20D4.USD","d":[]},{"s":"PANCAKESWAP:DEFCWBNB_8C79C3.USD","d":[]},{"s":"PANCAKESWAP:ORGNWBNB_61DC4C.USD","d":[]},{"s":"PANCAKESWAP:RUNBUSD_B3C793","d":[]},{"s":"BINANCE:GTCUSDT.P","d":[]},{"s":"OKX:VELODROMEUSDT","d":[]},{"s":"PANCAKESWAP:MINIGROKWBNB_2C345B.USD","d":[]},{"s":"PANCAKESWAP:XVWBNB_B7A6B1.USD","d":[]},{"s":"PANCAKESWAP:ERTBUSD_564748","d":[]},{"s":"PANCAKESWAP:VITRAWBNB_4D5FE8.USD","d":[]},{"s":"PANCAKESWAP:MSUNMIC_F9869B","d":[]},{"s":"BINANCE:DENTUSDT.P","d":[]},{"s":"KUCOIN:WAXPBTC","d":[]},{"s":"PANCAKESWAP:SUSHIETH_175803.USD","d":[]},{"s":"PANCAKESWAP:BLNWBNB_4B0E20","d":[]},{"s":"PANCAKESWAP:FTA1USDT_AA3CFC","d":[]},{"s":"SUSHISWAP:XAIUSDC_7BC735","d":[]},{"s":"PANCAKESWAP:DVIWBNB_89EBF9.USD","d":[]},{"s":"PANCAKESWAP:SIXWBNB_D8C811.USD","d":[]},{"s":"PANCAKESWAP:SDXWBNB_C380A7.USD","d":[]},{"s":"KUCOIN:ALGOBTC","d":[]},{"s":"UPBIT:CRVBTC","d":[]},{"s":"PANCAKESWAP:NNSWBNB_3B44B6","d":[]},{"s":"BINANCE:GMTUSDT.P","d":[]},{"s":"PANCAKESWAP:SM96WBNB_A5F54A","d":[]},{"s":"KUCOIN:DOTUSDC","d":[]},{"s":"PANCAKESWAP:GENEBUSD_5CC5AF","d":[]},{"s":"PANCAKESWAP:MATHBUSD_B7CADA","d":[]},{"s":"PANCAKESWAP:2024SDSSWBNB_9FDDC2.USD","d":[]},{"s":"PANCAKESWAP:BTCNOWWBNB_DBD741","d":[]},{"s":"KUCOIN:OTKUSDT","d":[]},{"s":"PANCAKESWAP:GSCUSDT_7B3FE8","d":[]},{"s":"PANCAKESWAP:RITZWBNB_0EDD55","d":[]},{"s":"PANCAKESWAP:ANIFIBUSD_D73633","d":[]},{"s":"PANCAKESWAP:ROCKBUSD_C5E078","d":[]},{"s":"KUCOIN:XECUSDT","d":[]},{"s":"PANCAKESWAP:BULLETWBNB_003A4C.USD","d":[]},{"s":"HONEYSWAP:DIGGWETH_9DEABF","d":[]},{"s":"HONEYSWAP:WXDAIUSDT_176FB4","d":[]},{"s":"PANCAKESWAP:METISWBNB_69AFE5.USD","d":[]},{"s":"PANCAKESWAP:MNYWBNB_3DBC8C","d":[]},{"s":"PANCAKESWAP:OSPDWBNB_AA728A","d":[]},{"s":"PANCAKESWAP:MANYWBNB_37C61D.USD","d":[]},{"s":"PANCAKESWAP:JEFFWBNB_3F44DA","d":[]},{"s":"PANCAKESWAP:HPWBNB_B07AC7","d":[]},{"s":"KUCOIN:SOLUSDT.3L","d":[]},{"s":"HONEYSWAP:AGVEWXDAI_0E3E9C","d":[]},{"s":"PANCAKESWAP:LAUNCHWBNB_770DF1.USD","d":[]},{"s":"PANCAKESWAP:BBBWBNB_3304AE.USD","d":[]},{"s":"SUSHISWAP:INJWETH_FB3CD0","d":[]},{"s":"PANCAKESWAP:GTTMWBNB_D69512","d":[]},{"s":"PANCAKESWAP:CVIPWBNB_4A49EF","d":[]},{"s":"OKX:DAIUSDT","d":[]},{"s":"KUCOIN:SUNUSDT","d":[]},{"s":"PANCAKESWAP:JEDALSWBNB_CC90EE","d":[]},{"s":"PANCAKESWAP:MHTBUSD_1D3428","d":[]},{"s":"PANCAKESWAP:NFTARTWBNB_03A4EE.USD","d":[]},{"s":"PANCAKESWAP:BFSWBNB_FBC5D7.USD","d":[]},{"s":"PANCAKESWAP:SNFTSSFUND_E4399D.USD","d":[]},{"s":"PANCAKESWAP:PEPEFWBNB_74281D.USD","d":[]},{"s":"OKX:ZRXUSDT","d":[]},{"s":"PANCAKESWAP:NMSBUSD_6B0A3E","d":[]},{"s":"PANCAKESWAP:DESUBUSD_C0FC8A","d":[]},{"s":"PANCAKESWAP:SAFEBTCWBNB_C760F8","d":[]},{"s":"PANCAKESWAP:AIWBNB_B993AD.USD","d":[]},{"s":"PANCAKESWAP:BUFFSWBNB_D5607E.USD","d":[]},{"s":"PANCAKESWAP:SLKWBNB_21D4FF.USD","d":[]},{"s":"KUCOIN:DREAMSUSDT","d":[]},{"s":"PANCAKESWAP:DFIWBNB_604419.USD","d":[]},{"s":"KUCOIN:XDCETH","d":[]},{"s":"PANCAKESWAP:LYSUSDT_AA59B9","d":[]},{"s":"OKX:ASTRUSDT","d":[]},{"s":"PANCAKESWAP:ORAIWBNB_F7697D","d":[]},{"s":"PANCAKESWAP:PAPADOGEWBNB_260370.USD","d":[]},{"s":"PANCAKESWAP:BABYDOGEWBNB_C736CA","d":[]},{"s":"KUCOIN:KAGIUSDT","d":[]},{"s":"PANCAKESWAP:SONUSDT_60D682","d":[]},{"s":"PANCAKESWAP:TATSUWBNB_282D3C.USD","d":[]},{"s":"HONEYSWAP:XYODONUT_DC8943","d":[]},{"s":"PANCAKESWAP:OLOGYWBNB_C3602D","d":[]},{"s":"HONEYSWAP:WTDAOWXDAI_6BE70A.USD","d":[]},{"s":"PANCAKESWAP:CAKESQUID_AD6400.USD","d":[]},{"s":"PANCAKESWAP:XCADBUSD_07C10E","d":[]},{"s":"PANCAKESWAP:YESBUSD_C1107A","d":[]},{"s":"PANCAKESWAP:STIUSDT_928C72","d":[]},{"s":"PANCAKESWAP:ARCWBNB_1ABAE3.USD","d":[]},{"s":"PANCAKESWAP:ANTTWBNB_4E1E37.USD","d":[]},{"s":"PANCAKESWAP:SPYUSDT_163969","d":[]},{"s":"PANCAKESWAP:DBXUSDT_90C96D","d":[]},{"s":"PANCAKESWAP:TARALWBNB_91BA95","d":[]},{"s":"PANCAKESWAP:MBAUSDT_7B7420","d":[]},{"s":"PANCAKESWAP:LNRWBNB_6A1FFE","d":[]},{"s":"UPBIT:QTCONBTC","d":[]},{"s":"KUCOIN:KRLBTC","d":[]},{"s":"PANCAKESWAP:FMBWBNB_CC1D9C.USD","d":[]},{"s":"KUCOIN:APEUSDC","d":[]},{"s":"UPBIT:POLYXBTC","d":[]},{"s":"PANCAKESWAP:OTWBNB_369C32.USD","d":[]},{"s":"PANCAKESWAP:GROKCMWBNB_4A38F7","d":[]},{"s":"PANCAKESWAP:HECTWBNB_00EFA2.USD","d":[]},{"s":"PANCAKESWAP:DMCWBNB_B98B3F","d":[]},{"s":"PANCAKESWAP:SLWBNB_09609F.USD","d":[]},{"s":"PANCAKESWAP:MINIDOGEWBNB_69BC3C.USD","d":[]},{"s":"PANCAKESWAP:UFLOKIWBNB_D7D71B","d":[]},{"s":"PANCAKESWAP:ASTROWBNB_F0C298.USD","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_1AAB5E","d":[]},{"s":"PANCAKESWAP:ZYNSPEC_02FF7B.USD","d":[]},{"s":"PANCAKESWAP:DINAUSDT_31358D","d":[]},{"s":"PANCAKESWAP:BTCBMETFI_43035D.USD","d":[]},{"s":"PANCAKESWAP:ESTUSDT_698267","d":[]},{"s":"HONEYSWAP:MDZAWXDAI_AA32BB","d":[]},{"s":"PANCAKESWAP:BLUEWBNB_36756D","d":[]},{"s":"PANCAKESWAP:LTCWBNB_71B01E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:IBBTCWBTC_8F8E95","d":[]},{"s":"HONEYSWAP:DEXPLINK_385922.USD","d":[]},{"s":"PANCAKESWAP:GROKXAIWBNB_A3AF19","d":[]},{"s":"PANCAKESWAP:AIAWBNB_46592F.USD","d":[]},{"s":"PANCAKESWAP:ERABBITWBNB_843685","d":[]},{"s":"PANCAKESWAP:BSCBURNWBNB_9110E1.USD","d":[]},{"s":"HONEYSWAP:WBTCWETH_B30110.USD","d":[]},{"s":"PANCAKESWAP:HONGBAOWBNB_009684","d":[]},{"s":"PANCAKESWAP:MINIGROKWBNB_2C345B","d":[]},{"s":"PANCAKESWAP:FIXSUSDT_A959CD","d":[]},{"s":"PANCAKESWAP:BRYWBNB_5E3CD2.USD","d":[]},{"s":"PANCAKESWAP:BNBSWBNB_EC531E.USD","d":[]},{"s":"PANCAKESWAP:XPBWBNB_5C6DEF","d":[]},{"s":"PANCAKESWAP:DOMEWBNB_1F4DA8","d":[]},{"s":"PANCAKESWAP:DEBTALUM_1387C8.USD","d":[]},{"s":"PANCAKESWAP:OPENAIUSDT_8143F8","d":[]},{"s":"PANCAKESWAP:BABYBYTEWBNB_816AF8.USD","d":[]},{"s":"KUCOIN:AERGOBTC","d":[]},{"s":"PANCAKESWAP:DOGE1WBNB_7ED1FF.USD","d":[]},{"s":"PANCAKESWAP:SHIBARMYWBNB_0D3867","d":[]},{"s":"PANCAKESWAP:SPNDWBNB_FBF772.USD","d":[]},{"s":"KUCOIN:LINKUSDT.3L","d":[]},{"s":"PANCAKESWAP:NORAWBNB_31B15C.USD","d":[]},{"s":"HONEYSWAP:RSRHNY_02D3FA","d":[]},{"s":"PANCAKESWAP:4MWWBNB_C9A275","d":[]},{"s":"PANCAKESWAP:BTFBTCB_C5E273.USD","d":[]},{"s":"PANCAKESWAP:BLFWBNB_8B84D9.USD","d":[]},{"s":"PANCAKESWAP:VFOXRFOX_864778","d":[]},{"s":"PANCAKESWAP:GGTKNWBNB_5DEEA1","d":[]},{"s":"SUSHISWAP:BITWETH_E12AF1","d":[]},{"s":"PANCAKESWAP:TONUSDT_BC5E97","d":[]},{"s":"PANCAKESWAP:ETFSWBNB_6FFA23.USD","d":[]},{"s":"SUSHISWAP:SHXWETH_EA59A3","d":[]},{"s":"PANCAKESWAP:BABYBTCWBNB_E81540.USD","d":[]},{"s":"PANCAKESWAP:DEBTBGLD_559D0D.USD","d":[]},{"s":"PANCAKESWAP:PDRAGONWBNB_3EBC80","d":[]},{"s":"PANCAKESWAP:AURWBNB_D95FCE.USD","d":[]},{"s":"KUCOIN:DOGEUSDT.3S","d":[]},{"s":"PANCAKESWAP:KOLFET_9D0435.USD","d":[]},{"s":"PANCAKESWAP:DOTWBNB_DD5BAD","d":[]},{"s":"SUSHISWAP:YELWETH_C83CE8.USD","d":[]},{"s":"PANCAKESWAP:XXUSDT_43AD2B","d":[]},{"s":"PANCAKESWAP:PIZZABUSD_7AC4CA","d":[]},{"s":"PANCAKESWAP:MSTUSDC_621B9A","d":[]},{"s":"PANCAKESWAP:BTOPWBNB_B591B8","d":[]},{"s":"PANCAKESWAP:POPEYEWBNB_F4DACB","d":[]},{"s":"PANCAKESWAP:40V2FIL_51251F","d":[]},{"s":"PANCAKESWAP:REEFERWBNB_93A776","d":[]},{"s":"KUCOIN:ATORUSDT","d":[]},{"s":"PANCAKESWAP:MONWBNB_F11DC0.USD","d":[]},{"s":"PANCAKESWAP:ANTUSDT_3EC6EA","d":[]},{"s":"PANCAKESWAP:SOTBUSD_315933","d":[]},{"s":"PANCAKESWAP:NEWBWBNB_6EF885.USD","d":[]},{"s":"PANCAKESWAP:QNIWBNB_6A7FB6.USD","d":[]},{"s":"PANCAKESWAP:LIGHTWBNB_826EDA.USD","d":[]},{"s":"HONEYSWAP:DOGEHNY_009D7F","d":[]},{"s":"PANCAKESWAP:TSDUSDT_F3EF12","d":[]},{"s":"KUCOIN:CROBTC","d":[]},{"s":"PANCAKESWAP:PWTWBNB_FF27CB","d":[]},{"s":"PANCAKESWAP:MANABUSD_63DE3B","d":[]},{"s":"PANCAKESWAP:DOGEZILLAWBNB_D20DE0","d":[]},{"s":"PANCAKESWAP:BIFIWBNB_3F1A9F.USD","d":[]},{"s":"PANCAKESWAP:POOPWBNB_3B65D0","d":[]},{"s":"PANCAKESWAP:BRETTWBNB_1DEA70","d":[]},{"s":"PANCAKESWAP:ETFWBNB_88D1A9.USD","d":[]},{"s":"PANCAKESWAP:BTSBUSD_E86493","d":[]},{"s":"PANCAKESWAP:BCGWBNB_2C9492.USD","d":[]},{"s":"PANCAKESWAP:JMZBUSD_121F3E","d":[]},{"s":"PANCAKESWAP:DRAGONMATIC_39B45A","d":[]},{"s":"PANCAKESWAP:LIFEBUSD_1D56AC","d":[]},{"s":"PANCAKESWAP:DONWBNB_E091FF","d":[]},{"s":"KUCOIN:XCVUSDT","d":[]},{"s":"PANCAKESWAP:PONYUSDT_13DEA3","d":[]},{"s":"PANCAKESWAP:CZUSDT_C63DAC","d":[]},{"s":"OKX:ARUSDC","d":[]},{"s":"BINANCE:VITEUSD","d":[]},{"s":"PANCAKESWAP:PLTWBNB_26CBC1.USD","d":[]},{"s":"PANCAKESWAP:SHIBWBNB_6B7B35.USD","d":[]},{"s":"PANCAKESWAP:BABYBONKWBNB_F2B4C0.USD","d":[]},{"s":"PANCAKESWAP:BRISEWBNB_7DD308","d":[]},{"s":"PANCAKESWAP:OREWBNB_64E64E.USD","d":[]},{"s":"PANCAKESWAP:IBATWBNB_EE87F8","d":[]},{"s":"BINANCE:LPTUSDT.P","d":[]},{"s":"KUCOIN:XDCUSDT","d":[]},{"s":"PANCAKESWAP:BULLWBNB_3AF4F2.USD","d":[]},{"s":"PANCAKESWAP:MILK2WBNB_9E8A0A","d":[]},{"s":"PANCAKESWAP:LAYERWBNB_AE0444","d":[]},{"s":"BINANCE:ATAUSDT.P","d":[]},{"s":"PANCAKESWAP:ZLWBNB_6BCA8D","d":[]},{"s":"PANCAKESWAP:DQQWBNB_0671E6","d":[]},{"s":"PANCAKESWAP:MDBWBNB_5B3110","d":[]},{"s":"PANCAKESWAP:PSYCHODOGEWBNB_D4052C.USD","d":[]},{"s":"PANCAKESWAP:KLTWBNB_E6691A.USD","d":[]},{"s":"PANCAKESWAP:ZKSHIELDWBNB_18B631.USD","d":[]},{"s":"HONEYSWAP:UNIWETH_5B6674","d":[]},{"s":"SUSHISWAP:BTTWETH_E9CF42","d":[]},{"s":"PANCAKESWAP:BTBSUSDT_923C8D","d":[]},{"s":"PANCAKESWAP:FSAFEWBNB_F3F4C6","d":[]},{"s":"PANCAKESWAP:WINUWBNB_8A6E21","d":[]},{"s":"PANCAKESWAP:ITOKENWBNB_E6A2B4.USD","d":[]},{"s":"HONEYSWAP:SBCWETH_6CFA43","d":[]},{"s":"PANCAKESWAP:NNNWBNB_6E3649.USD","d":[]},{"s":"OKX:STARLUSDT","d":[]},{"s":"BINANCE:DARUSDT.P","d":[]},{"s":"PANCAKESWAP:PIWBNB_D23131","d":[]},{"s":"BINANCE:ALCXUSD","d":[]},{"s":"PANCAKESWAP:VLXWBNB_48D807","d":[]},{"s":"PANCAKESWAP:COPIWBNB_73EDA5","d":[]},{"s":"PANCAKESWAP:COWWBNB_F7EDA8.USD","d":[]},{"s":"PANCAKESWAP:PAYZWBNB_650B6C.USD","d":[]},{"s":"PANCAKESWAP:HKEXWBNB_606288","d":[]},{"s":"PANCAKESWAP:ODDZWBNB_3C2C77","d":[]},{"s":"OKX:MATICUSDT","d":[]},{"s":"PANCAKESWAP:HDOGEWBNB_3CE7B9","d":[]},{"s":"PANCAKESWAP:HODLWBNB_AD8B51","d":[]},{"s":"PANCAKESWAP:MWMFAB_1AEBB9.USD","d":[]},{"s":"PANCAKESWAP:SODWBNB_766B81.USD","d":[]},{"s":"PANCAKESWAP:XRPWBNB_03F181.USD","d":[]},{"s":"PANCAKESWAP:DUETCAKE_BDF0AA","d":[]},{"s":"PANCAKESWAP:ETHBTCB_D171B2.USD","d":[]},{"s":"PANCAKESWAP:EHXWBNB_3407C5","d":[]},{"s":"PANCAKESWAP:DRACWBNB_D447D2","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_0FDF00.USD","d":[]},{"s":"UPBIT:AXLBTC","d":[]},{"s":"HONEYSWAP:XSUSHIWXDAI_30190D.USD","d":[]},{"s":"PANCAKESWAP:XLDL_DF4C30","d":[]},{"s":"SUSHISWAP:DATAWETH_4A73D9.USD","d":[]},{"s":"BINANCE:IOTXUSDT.P","d":[]},{"s":"PANCAKESWAP:2024WBNB_093227","d":[]},{"s":"PANCAKESWAP:SFUELWBNB_E89044","d":[]},{"s":"PANCAKESWAP:BANUSWBNB_B0A40C.USD","d":[]},{"s":"UPBIT:RVNUSDT","d":[]},{"s":"KUCOIN:BRISEUSDT","d":[]},{"s":"PANCAKESWAP:INUBWBNB_E6F416.USD","d":[]},{"s":"PANCAKESWAP:WAREWBNB_8F29F8.USD","d":[]},{"s":"PANCAKESWAP:COPWBNB_A5534B.USD","d":[]},{"s":"PANCAKESWAP:ORBSWBNB_079645.USD","d":[]},{"s":"PANCAKESWAP:IDENYWBNB_462945.USD","d":[]},{"s":"PANCAKESWAP:2CRZBUSD_186937","d":[]},{"s":"PANCAKESWAP:BABYPUTINWBNB_ECDD03.USD","d":[]},{"s":"PANCAKESWAP:ZDKWBNB_246D17.USD","d":[]},{"s":"PANCAKESWAP:CHCTOKENWBNB_662F24","d":[]},{"s":"PANCAKESWAP:PIGSYWBNB_A7E877.USD","d":[]},{"s":"PANCAKESWAP:NIXWBNB_7F01F3.USD","d":[]},{"s":"PANCAKESWAP:CRYFTWBNB_3AE9DC.USD","d":[]},{"s":"PANCAKESWAP:JERRYINUWBNB_5635CC.USD","d":[]},{"s":"PANCAKESWAP:SANKIWBNB_525ED2","d":[]},{"s":"PANCAKESWAP:TWEETYWBNB_FBBFD1","d":[]},{"s":"PANCAKESWAP:MEMEMINTWBNB_E313AC.USD","d":[]},{"s":"PANCAKESWAP:HTDAOWBNB_B27F4D","d":[]},{"s":"PANCAKESWAP:UFARMWBNB_6B19A3","d":[]},{"s":"PANCAKESWAP:WCWBNB_693D93.USD","d":[]},{"s":"PANCAKESWAP:WGUARDIANWBNB_4E38A4.USD","d":[]},{"s":"PANCAKESWAP:LAEEBWBNB_2BFB7E.USD","d":[]},{"s":"PANCAKESWAP:SHOEBUSD_490AB3","d":[]},{"s":"PANCAKESWAP:RACAWBNB_C016F9.USD","d":[]},{"s":"PANCAKESWAP:PIGEWBNB_01C3C0.USD","d":[]},{"s":"PANCAKESWAP:IBOXWBNB_B43343","d":[]},{"s":"PANCAKESWAP:UAEUSDT_9D13B1","d":[]},{"s":"PANCAKESWAP:BABYDOGE20WBNB_FD9397.USD","d":[]},{"s":"KUCOIN:ANKRBTC","d":[]},{"s":"KUCOIN:CEREUSDT","d":[]},{"s":"PANCAKESWAP:AVITAWBNB_970DDE","d":[]},{"s":"PANCAKESWAP:PLXWBNB_63730F.USD","d":[]},{"s":"KUCOIN:GOALUSDT","d":[]},{"s":"KUCOIN:SUKUBTC","d":[]},{"s":"KUCOIN:SENSOUSDT","d":[]},{"s":"KUCOIN:WEMIXUSDT","d":[]},{"s":"PANCAKESWAP:PEPE30WBNB_718AD3.USD","d":[]},{"s":"PANCAKESWAP:MCRNWBNB_E8D5D8","d":[]},{"s":"PANCAKESWAP:CORGIWBNB_205FE8.USD","d":[]},{"s":"BINANCE:METISUSDT.P","d":[]},{"s":"PANCAKESWAP:AIDOGEXWBNB_DB0B1C.USD","d":[]},{"s":"PANCAKESWAP:COPUSDT_CCA95F","d":[]},{"s":"PANCAKESWAP:NERVEWBNB_81FB58.USD","d":[]},{"s":"BINANCE:YGGUSDT.P","d":[]},{"s":"PANCAKESWAP:MULTIWBNB_429E89.USD","d":[]},{"s":"PANCAKESWAP:CYCWBNB_ECF30F.USD","d":[]},{"s":"OKX:LETUSDT","d":[]},{"s":"PANCAKESWAP:SOSHEWBNB_C1975B.USD","d":[]},{"s":"PANCAKESWAP:YDOGEWBNB_4B2A8B.USD","d":[]},{"s":"PANCAKESWAP:CBETWBNB_C80379","d":[]},{"s":"PANCAKESWAP:SISCWBNB_A5BC58.USD","d":[]},{"s":"PANCAKESWAP:BJSSWBNB_E7A947.USD","d":[]},{"s":"OKX:STRKUSDT","d":[]},{"s":"KUCOIN:TLOSBTC","d":[]},{"s":"KUCOIN:DASHBTC","d":[]},{"s":"PANCAKESWAP:WALLWBNB_CD7224.USD","d":[]},{"s":"PANCAKESWAP:PORTOWBNB_0A292E.USD","d":[]},{"s":"PANCAKESWAP:BEEWBNB_FBA050","d":[]},{"s":"PANCAKESWAP:GBSGSD_59EED7.USD","d":[]},{"s":"PANCAKESWAP:CTGUSDT_AE2A41","d":[]},{"s":"PANCAKESWAP:BATRIWBNB_C7943A.USD","d":[]},{"s":"HONEYSWAP:1INCHWXDAI_473F40.USD","d":[]},{"s":"PANCAKESWAP:BNBPWBNB_4C736D","d":[]},{"s":"PANCAKESWAP:UWBNB_4804D1.USD","d":[]},{"s":"UPBIT:XRPUSDT","d":[]},{"s":"PANCAKESWAP:PNTUSDT_0DFDC4","d":[]},{"s":"PANCAKESWAP:HODLWBNB_B93DE9","d":[]},{"s":"HONEYSWAP:LINKWETH_529410.USD","d":[]},{"s":"KUCOIN:LITHUSDT","d":[]},{"s":"HONEYSWAP:MATICWXDAI_70CD03.USD","d":[]},{"s":"PANCAKESWAP:NOKUBUSD_2DD8C7","d":[]},{"s":"PANCAKESWAP:AKAWBNB_747922.USD","d":[]},{"s":"PANCAKESWAP:STUDBUSD_B9F3A8","d":[]},{"s":"BINANCE:BNTUSDT.P","d":[]},{"s":"PANCAKESWAP:LYUMWBNB_9A9E1D.USD","d":[]},{"s":"PANCAKESWAP:CZSHARESWBNB_08E7B8.USD","d":[]},{"s":"PANCAKESWAP:BBWBNB_B33A9E.USD","d":[]},{"s":"PANCAKESWAP:CYBERTRUCKWBNB_2C3B3E.USD","d":[]},{"s":"PANCAKESWAP:DYNAWBNB_FA1163.USD","d":[]},{"s":"PANCAKESWAP:FLUSDT_1B0E46","d":[]},{"s":"PANCAKESWAP:BSAFUWBNB_5ECD81","d":[]},{"s":"PANCAKESWAP:ODSWBNB_3A4D75.USD","d":[]},{"s":"PANCAKESWAP:AMVWBNB_E3B2C4","d":[]},{"s":"PANCAKESWAP:HUBWBNB_065DBF.USD","d":[]},{"s":"PANCAKESWAP:EHXWBNB_3407C5.USD","d":[]},{"s":"OKX:KANUSDT","d":[]},{"s":"PANCAKESWAP:EXQUISITEUSDT_ADC97C","d":[]},{"s":"PANCAKESWAP:PORNHUBBONKWBNB_E0EBE9.USD","d":[]},{"s":"UPBIT:AUDIOBTC","d":[]},{"s":"PANCAKESWAP:RDFWBNB_9BB484","d":[]},{"s":"PANCAKESWAP:2049WBNB_CC37E6.USD","d":[]},{"s":"PANCAKESWAP:PEPEBABYWBNB_1F3833.USD","d":[]},{"s":"HONEYSWAP:PANTSWXDAI_642D92","d":[]},{"s":"PANCAKESWAP:3AIRBUSD_FF443E","d":[]},{"s":"OKX:ICPUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:MVIWETH_4642DA","d":[]},{"s":"HONEYSWAP:BRIGHTHNY_090723","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_D6898A","d":[]},{"s":"PANCAKESWAP:JTSWBNB_AF4685","d":[]},{"s":"BINANCE:TONUSDT.P","d":[]},{"s":"PANCAKESWAP:VAIUSDT_D94FEF","d":[]},{"s":"PANCAKESWAP:NKSUSDT_7DA288","d":[]},{"s":"PANCAKESWAP:TDXWBNB_BD24A8","d":[]},{"s":"BINANCE:ARBUSDT.P","d":[]},{"s":"PANCAKESWAP:BABYCAKEWBNB_B5E33F","d":[]},{"s":"PANCAKESWAP:MSGWBNB_52A41A.USD","d":[]},{"s":"PANCAKESWAP:HAMCHEESE_05714F","d":[]},{"s":"BINANCE:STRKUSDT.P","d":[]},{"s":"PANCAKESWAP:AALTOWBNB_4FEA74","d":[]},{"s":"PANCAKESWAP:SCPWBNB_1BA4B7.USD","d":[]},{"s":"PANCAKESWAP:UMIWBNB_AF49F3.USD","d":[]},{"s":"PANCAKESWAP:8PAYV2WBNB_D1B407","d":[]},{"s":"PANCAKESWAP:PROPELWBNB_49FB78.USD","d":[]},{"s":"PANCAKESWAP:BLASTWBNB_8D6A90","d":[]},{"s":"PANCAKESWAP:SPACEPIWBNB_7F1B11.USD","d":[]},{"s":"KUCOIN:KACEUSDT","d":[]},{"s":"BINANCE:MBLUSDT.P","d":[]},{"s":"PANCAKESWAP:VPCMT_230048","d":[]},{"s":"BINANCE:IMXUSDT.P","d":[]},{"s":"PANCAKESWAP:PMRWBNB_DD7D78.USD","d":[]},{"s":"SUSHISWAP:XSUSHIWETH_36E2FC","d":[]},{"s":"PANCAKESWAP:KOLLINK_16B5D0.USD","d":[]},{"s":"KUCOIN:LIKEUSDT","d":[]},{"s":"PANCAKESWAP:CAKEWBNB_A527A6.USD","d":[]},{"s":"PANCAKESWAP:FNDWBNB_076B01.USD","d":[]},{"s":"KUCOIN:FTMETH","d":[]},{"s":"BINANCE:NEOUSDT.P","d":[]},{"s":"PANCAKESWAP:SOLWBNB_40CC50.USD","d":[]},{"s":"HONEYSWAP:ROBOTWXDAI_6F5085","d":[]},{"s":"PANCAKESWAP:BABYSHIBAINUWBNB_C5E1B7","d":[]},{"s":"PANCAKESWAP:WORUSDT_F36669","d":[]},{"s":"KUCOIN:GTAIUSDT","d":[]},{"s":"KUCOIN:SHRBTC","d":[]},{"s":"PANCAKESWAP:POOPUSDT_2347C5","d":[]},{"s":"PANCAKESWAP:TAUWBNB_F94369.USD","d":[]},{"s":"PANCAKESWAP:SPOONWBNB_BAB520","d":[]},{"s":"SUSHISWAP:PUDGYWETH_5D472C.USD","d":[]},{"s":"BINANCE:AXSUSD","d":[]},{"s":"PANCAKESWAP:CENXWBNB_393170.USD","d":[]},{"s":"PANCAKESWAP:BULUSDT_1E2F94","d":[]},{"s":"KUCOIN:KNCBTC","d":[]},{"s":"HONEYSWAP:BAOHNY_8FA501","d":[]},{"s":"PANCAKESWAP:SQUIDBUSD_7A859C","d":[]},{"s":"HONEYSWAP:XBRICKHNY_00892C.USD","d":[]},{"s":"HONEYSWAP:STKAGVEHNY_878889.USD","d":[]},{"s":"PANCAKESWAP:STKBNBWBNB_AA2527","d":[]},{"s":"PANCAKESWAP:OZONUSDT_27E654","d":[]},{"s":"BINANCE:ALPHAUSD","d":[]},{"s":"PANCAKESWAP:TATGUSDT_062B06","d":[]},{"s":"SUSHISWAP:FXSWETH_61EB53","d":[]},{"s":"PANCAKESWAP:WETWBNB_36FEC0.USD","d":[]},{"s":"PANCAKESWAP:ASSETWBNB_784914","d":[]},{"s":"SUSHISWAP:MAIDWETH_C71750.USD","d":[]},{"s":"HONEYSWAP:Y3CRVWXDAI_FF1DD0","d":[]},{"s":"PANCAKESWAP:ERIWBNB_8C5EBF.USD","d":[]},{"s":"HONEYSWAP:EWTBWETH_7CB5BF.USD","d":[]},{"s":"PANCAKESWAP:ARTEMWBNB_E02416","d":[]},{"s":"PANCAKESWAP:STBUSD_10BD5A","d":[]},{"s":"KUCOIN:IOTXETH","d":[]},{"s":"PANCAKESWAP:IMRTLWBNB_C3AC59","d":[]},{"s":"PANCAKESWAP:JPWBNB_8F5F69.USD","d":[]},{"s":"PANCAKESWAP:HBWBNB_E9E288.USD","d":[]},{"s":"PANCAKESWAP:TONCOINUSDT_819A26","d":[]},{"s":"PANCAKESWAP:BUMBLEWBNB_754D2D.USD","d":[]},{"s":"PANCAKESWAP:HPEUSDT_02E490","d":[]},{"s":"KUCOIN:HALOUSDT","d":[]},{"s":"HONEYSWAP:WETHWXDAI_7BEA4A","d":[]},{"s":"OKX:LUNCUSDC","d":[]},{"s":"PANCAKESWAP:ATHWBNB_93C896.USD","d":[]},{"s":"HONEYSWAP:AAVEWETH_6DE2A5.USD","d":[]},{"s":"PANCAKESWAP:CTRL2XYWBNB_C683B1.USD","d":[]},{"s":"PANCAKESWAP:WOIDWBNB_72ED04.USD","d":[]},{"s":"PANCAKESWAP:VXCWBNB_692BED.USD","d":[]},{"s":"PANCAKESWAP:WISBSBNB_A43014","d":[]},{"s":"PANCAKESWAP:AGEURUSDT_1DEC73","d":[]},{"s":"PANCAKESWAP:HRSWBNB_C0761E","d":[]},{"s":"PANCAKESWAP:MOCHICATWBNB_A0F940","d":[]},{"s":"UPBIT:DENTBTC","d":[]},{"s":"PANCAKESWAP:MPLAIWBNB_5680B3.USD","d":[]},{"s":"PANCAKESWAP:REIGNWBNB_7C4AB8","d":[]},{"s":"KUCOIN:OUSDBTC","d":[]},{"s":"HONEYSWAP:YFIWXDAI_3A1E74.USD","d":[]},{"s":"PANCAKESWAP:BELANDWBNB_1202BE.USD","d":[]},{"s":"PANCAKESWAP:PTGWBNB_07B515.USD","d":[]},{"s":"HONEYSWAP:ROBOTWXDAI_6F5085.USD","d":[]},{"s":"PANCAKESWAP:RDBWBNB_02F0AC.USD","d":[]},{"s":"PANCAKESWAP:VICSWBNB_C07F88","d":[]},{"s":"PANCAKESWAP:MOVEZWBNB_AF28CD","d":[]},{"s":"PANCAKESWAP:UPRWBNB_2A6F7D","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_3182DF","d":[]},{"s":"PANCAKESWAP:GENIBUSD_BCDABE","d":[]},{"s":"PANCAKESWAP:ORBSWBNB_CD71C4","d":[]},{"s":"PANCAKESWAP:PEOWBNB_174C48.USD","d":[]},{"s":"BINANCE:SFPUSDT.P","d":[]},{"s":"HONEYSWAP:RENHNY_91CACD","d":[]},{"s":"PANCAKESWAP:TAMAWBNB_F234A0","d":[]},{"s":"PANCAKESWAP:BTCBWBNB_61EB78","d":[]},{"s":"PANCAKESWAP:SAFUWBNB_4B7B69","d":[]},{"s":"PANCAKESWAP:MCBWBNB_E4077A","d":[]},{"s":"PANCAKESWAP:GMRWBNB_62C834.USD","d":[]},{"s":"PANCAKESWAP:OREWBNB_9E6E05.USD","d":[]},{"s":"PANCAKESWAP:MTVUSDT_FB69BE","d":[]},{"s":"PANCAKESWAP:CFXWBNB_BA983B","d":[]},{"s":"PANCAKESWAP:MAFAWBNB_591B7B.USD","d":[]},{"s":"PANCAKESWAP:KEXWBNB_446A08","d":[]},{"s":"PANCAKESWAP:APCWBNB_20FA99.USD","d":[]},{"s":"PANCAKESWAP:A2EWBNB_E14561.USD","d":[]},{"s":"PANCAKESWAP:FABUSDT_B66D67","d":[]},{"s":"HONEYSWAP:DONUTWXDAI_077240.USD","d":[]},{"s":"PANCAKESWAP:GGTWBNB_E572F8","d":[]},{"s":"PANCAKESWAP:DDOGEWBNB_EAADA6.USD","d":[]},{"s":"PANCAKESWAP:SERSHUSDT_E18EB2","d":[]},{"s":"KUCOIN:BURGERBTC","d":[]},{"s":"PANCAKESWAP:WEDWBNB_EBFA0D.USD","d":[]},{"s":"PANCAKESWAP:CATWBNB_51D6E1.USD","d":[]},{"s":"PANCAKESWAP:MINIMYROWBNB_096D13","d":[]},{"s":"KUCOIN:WESTBTC","d":[]},{"s":"KUCOIN:TARAETH","d":[]},{"s":"PANCAKESWAP:BRISEWBNB_7DD308.USD","d":[]},{"s":"KUCOIN:HIFIUSDT","d":[]},{"s":"PANCAKESWAP:STMUSDT_A006C7","d":[]},{"s":"PANCAKESWAP:ANMLWBNB_30176D","d":[]},{"s":"PANCAKESWAP:SCAIWBNB_19BF76","d":[]},{"s":"PANCAKESWAP:BCNBUSD_433216","d":[]},{"s":"PANCAKESWAP:CTSWBNB_4E06D1.USD","d":[]},{"s":"HONEYSWAP:WETHTRINI_861856","d":[]},{"s":"BINANCE:ILVUSDT.P","d":[]},{"s":"PANCAKESWAP:NORAWBNB_31B15C","d":[]},{"s":"PANCAKESWAP:JAIHOWBNB_F63458.USD","d":[]},{"s":"PANCAKESWAP:FGDFGCA_7A899F","d":[]},{"s":"PANCAKESWAP:MFTNWBNB_6B0127","d":[]},{"s":"PANCAKESWAP:LHGOXIUSDT_BCB066","d":[]},{"s":"PANCAKESWAP:MGPWBNB_2B3DBB.USD","d":[]},{"s":"PANCAKESWAP:MLTWBNB_66FE9C.USD","d":[]},{"s":"HONEYSWAP:HIVEWATER0X71850B_9E4188","d":[]},{"s":"PANCAKESWAP:ISPWBNB_01EB17.USD","d":[]},{"s":"PANCAKESWAP:KLDWBNB_8483D0.USD","d":[]},{"s":"PANCAKESWAP:EDXWBNB_0B5F7A.USD","d":[]},{"s":"PANCAKESWAP:ROCKWBNB_C2CF6E.USD","d":[]},{"s":"PANCAKESWAP:ROOWBNB_2C97B5","d":[]},{"s":"PANCAKESWAP:CBFIWBNB_D8A042","d":[]},{"s":"PANCAKESWAP:LTCUSDT_36BB11","d":[]},{"s":"HONEYSWAP:HOPRWXDAI_429105.USD","d":[]},{"s":"PANCAKESWAP:GPTGUSDT_D606D6","d":[]},{"s":"BINANCE:PYRUSD","d":[]},{"s":"PANCAKESWAP:ARKNWBNB_9B1C23.USD","d":[]},{"s":"PANCAKESWAP:LINKWBNB_824EB9.USD","d":[]},{"s":"PANCAKESWAP:MFURIEWBNB_E0A664.USD","d":[]},{"s":"PANCAKESWAP:CTYWBNB_58EE40.USD","d":[]},{"s":"PANCAKESWAP:ABCUSDT_D77EC3","d":[]},{"s":"UPBIT:RLCBTC","d":[]},{"s":"PANCAKESWAP:DIORWBNB_683301.USD","d":[]},{"s":"KUCOIN:SRBPUSDT","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_583140","d":[]},{"s":"OKX:CELUSDT","d":[]},{"s":"PANCAKESWAP:FYHUSDT_ADDD1C","d":[]},{"s":"KUCOIN:XAIUSDT","d":[]},{"s":"PANCAKESWAP:TBDWBNB_E8F275","d":[]},{"s":"PANCAKESWAP:COSMICBUSD_FF5F8C","d":[]},{"s":"HONEYSWAP:PANHNY_0619E4.USD","d":[]},{"s":"PANCAKESWAP:DTCWBNB_9FB18E","d":[]},{"s":"KUCOIN:SOLVEBTC","d":[]},{"s":"PANCAKESWAP:JIXIANGLONGWBNB_697724.USD","d":[]},{"s":"SUSHISWAP:IQWETH_9D4508.USD","d":[]},{"s":"PANCAKESWAP:FADOBUSD_B66D30","d":[]},{"s":"PANCAKESWAP:CZBNBWBNB_6773C6","d":[]},{"s":"PANCAKESWAP:BITMOONWBNB_4FB328.USD","d":[]},{"s":"PANCAKESWAP:CWSWBNB_D61D66.USD","d":[]},{"s":"PANCAKESWAP:ONCSBUSD_FA8AD4","d":[]},{"s":"PANCAKESWAP:PEOWBNB_174C48","d":[]},{"s":"KUCOIN:NORDUSDT","d":[]},{"s":"PANCAKESWAP:WXDAGUSDT_51AD15","d":[]},{"s":"PANCAKESWAP:SIDWBNB_1EDDBA.USD","d":[]},{"s":"PANCAKESWAP:AFNTYWBNB_FCF326.USD","d":[]},{"s":"PANCAKESWAP:ACHUSDT_28BDB1","d":[]},{"s":"HONEYSWAP:UNILINK_2341B4","d":[]},{"s":"PANCAKESWAP:GALAWBNB_8DD5FC","d":[]},{"s":"KUCOIN:PENDLEUSDT","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_845E2D","d":[]},{"s":"SUSHISWAP:GCAKEWETH_230813","d":[]},{"s":"PANCAKESWAP:TTNUSDT_C89F58","d":[]},{"s":"PANCAKESWAP:DIGISWBNB_574887","d":[]},{"s":"BINANCE:ASTRUSD","d":[]},{"s":"PANCAKESWAP:NAMIWBNB_12581E","d":[]},{"s":"BINANCE:BNBUSD","d":[]},{"s":"PANCAKESWAP:ASYZUSDT_A9705A","d":[]},{"s":"PANCAKESWAP:BRTUSDT_138720","d":[]},{"s":"SUSHISWAP:MCAT17WETH_11A497","d":[]},{"s":"PANCAKESWAP:WBFCUSDT_4CD447","d":[]},{"s":"PANCAKESWAP:VNTBUSD_C6E9CB","d":[]},{"s":"PANCAKESWAP:VSLWBNB_E691B7","d":[]},{"s":"OKX:BLOKUSDT","d":[]},{"s":"PANCAKESWAP:EGLWBNB_778F47","d":[]},{"s":"PANCAKESWAP:CHIBAWBNB_639F71.USD","d":[]},{"s":"PANCAKESWAP:FJBWBNB_6684F7.USD","d":[]},{"s":"PANCAKESWAP:AMAUSDT_63072A","d":[]},{"s":"PANCAKESWAP:FFEWBNB_1BF8E6.USD","d":[]},{"s":"KUCOIN:ACQUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:ABIDAI_81FD1D.USD","d":[]},{"s":"BINANCE:DUSKUSDT.P","d":[]},{"s":"PANCAKESWAP:TRAVELWBNB_4E94E1","d":[]},{"s":"PANCAKESWAP:CCGDSUSDT_E82CE3","d":[]},{"s":"OKX:JSTUSDT","d":[]},{"s":"BINANCE:CLVUSD","d":[]},{"s":"SUSHISWAP:JPEGWETH_DB06A7.USD","d":[]},{"s":"PANCAKESWAP:BNBCEOWBNB_F37639","d":[]},{"s":"OKX:FORTHUSDT","d":[]},{"s":"PANCAKESWAP:KRPWBNB_ED85D0","d":[]},{"s":"UPBIT:ETCBTC","d":[]},{"s":"PANCAKESWAP:MASSBUSD_B07956","d":[]},{"s":"PANCAKESWAP:ELYSWBNB_420E63","d":[]},{"s":"PANCAKESWAP:HUBTWBNB_34BFBC.USD","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_622A7B.USD","d":[]},{"s":"PANCAKESWAP:WBFCUSDT_4CD447.USD","d":[]},{"s":"OKX:FLRUSDC","d":[]},{"s":"PANCAKESWAP:EXTWBNB_598AC8","d":[]},{"s":"BINANCE:CAKEUSDT.P","d":[]},{"s":"PANCAKESWAP:SAFTIWBNB_690DD9.USD","d":[]},{"s":"KUCOIN:CRPTETH","d":[]},{"s":"OKX:SLPUSDT","d":[]},{"s":"KUCOIN:VCOREUSDT","d":[]},{"s":"PANCAKESWAP:DEXEBUSD_3578B1","d":[]},{"s":"PANCAKESWAP:GYMAIWBNB_DE3ABD","d":[]},{"s":"KUCOIN:SOLSUSDT","d":[]},{"s":"PANCAKESWAP:KABOSUWBNB_A17D2C.USD","d":[]},{"s":"PANCAKESWAP:ESCROWWBNB_0AE1C4","d":[]},{"s":"PANCAKESWAP:GROKDOGEWBNB_1DA6AD.USD","d":[]},{"s":"PANCAKESWAP:SPKYWBNB_102B4D.USD","d":[]},{"s":"SUSHISWAP:TGTWETH_34E26D","d":[]},{"s":"PANCAKESWAP:GAFIBUSD_CF9765","d":[]},{"s":"PANCAKESWAP:DATTLEWBNB_4B7B96","d":[]},{"s":"PANCAKESWAP:WASPUSDT_4858C1","d":[]},{"s":"PANCAKESWAP:CDNUSDT_0F482E","d":[]},{"s":"PANCAKESWAP:BITUSDT_4DB194","d":[]},{"s":"PANCAKESWAP:MEOWWBNB_8AF9A9.USD","d":[]},{"s":"SUSHISWAP:SUSDWETH_F1F85B","d":[]},{"s":"PANCAKESWAP:SWCWBNB_8FE3C5","d":[]},{"s":"PANCAKESWAP:COWSWBNB_33504F","d":[]},{"s":"PANCAKESWAP:TGYPEC_C7CEBC.USD","d":[]},{"s":"PANCAKESWAP:SHAZUWBNB_94E6F6","d":[]},{"s":"PANCAKESWAP:QMALLWBNB_DD8124.USD","d":[]},{"s":"PANCAKESWAP:MICSBUSD_CC1726","d":[]},{"s":"KUCOIN:PYRBTC","d":[]},{"s":"PANCAKESWAP:ZAFIWBNB_0E983E.USD","d":[]},{"s":"PANCAKESWAP:KAIWBNB_06CDD8.USD","d":[]},{"s":"PANCAKESWAP:WEDWBNB_7435F2","d":[]},{"s":"KUCOIN:TOKENUSDT","d":[]},{"s":"SUSHISWAP:FTXTOKENWETH_7825DE","d":[]},{"s":"PANCAKESWAP:10SETWBNB_78B722.USD","d":[]},{"s":"PANCAKESWAP:ULABWBNB_CA05CE","d":[]},{"s":"SUSHISWAPPOLYGON:EPWETH_BF9E15","d":[]},{"s":"OKX:ADAUSDC","d":[]},{"s":"PANCAKESWAP:HGWBNB_5CCBDA","d":[]},{"s":"PANCAKESWAP:MIKAWBNB_A4179F","d":[]},{"s":"UPBIT:CYBERBTC","d":[]},{"s":"PANCAKESWAP:BABYSORAWBNB_CC812A.USD","d":[]},{"s":"PANCAKESWAP:GAMINGSHIBAWBNB_69969B.USD","d":[]},{"s":"PANCAKESWAP:BOJACKWBNB_0F520C.USD","d":[]},{"s":"HONEYSWAP:PAXGUSDC_14F96C","d":[]},{"s":"PANCAKESWAP:FOMOWBNB_942ECF","d":[]},{"s":"SUSHISWAPPOLYGON:WBANWETH_B556FE","d":[]},{"s":"PANCAKESWAP:SAUSDT_E0D464","d":[]},{"s":"PANCAKESWAP:SCZWBNB_796278","d":[]},{"s":"PANCAKESWAP:NFTYWBNB_8B2E48.USD","d":[]},{"s":"PANCAKESWAP:MRUNBUSD_F14A5C","d":[]},{"s":"PANCAKESWAP:DDFUSDT_4A75F0","d":[]},{"s":"PANCAKESWAP:BONDLYWBNB_A97D52.USD","d":[]},{"s":"PANCAKESWAP:FASTMOONWBNB_003CB8.USD","d":[]},{"s":"PANCAKESWAP:REEFERWBNB_93A776.USD","d":[]},{"s":"OKX:LRCUSDC","d":[]},{"s":"PANCAKESWAP:POLCWBNB_4689BF.USD","d":[]},{"s":"KUCOIN:BLOKUSDT","d":[]},{"s":"PANCAKESWAP:DANCEWBNB_0D23C7","d":[]},{"s":"PANCAKESWAP:STLWBNB_3D8074.USD","d":[]},{"s":"PANCAKESWAP:VLXPADWBNB_445E40.USD","d":[]},{"s":"PANCAKESWAP:TYGWBNB_20687D.USD","d":[]},{"s":"KUCOIN:MXMUSDT","d":[]},{"s":"PANCAKESWAP:TSXWBNB_444C8B.USD","d":[]},{"s":"PANCAKESWAP:EFUNWBNB_C89FFA","d":[]},{"s":"OKX:UNIBTC","d":[]},{"s":"PANCAKESWAP:ETHJUT_970AAB","d":[]},{"s":"OKX:FTMEUR","d":[]},{"s":"PANCAKESWAP:PERLWBNB_61010E.USD","d":[]},{"s":"PANCAKESWAP:PROPWBNB_4233C2.USD","d":[]},{"s":"PANCAKESWAP:SVBUSDT_77EF3C","d":[]},{"s":"KUCOIN:KLVUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:GHSTWMATIC_F69E93","d":[]},{"s":"HONEYSWAP:XCOMBUSDT_D8C7D8","d":[]},{"s":"PANCAKESWAP:LITWBNB_7661D6.USD","d":[]},{"s":"KUCOIN:FTUSDT","d":[]},{"s":"KUCOIN:MJTKCS","d":[]},{"s":"PANCAKESWAP:ROTTOWBNB_F8A99E","d":[]},{"s":"PANCAKESWAP:QQTUSDT_D86B98","d":[]},{"s":"PANCAKESWAP:LCNWBNB_AE02B0","d":[]},{"s":"KUCOIN:HTXUSDT","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_9B929F","d":[]},{"s":"HONEYSWAP:AMISBAO_38E10A.USD","d":[]},{"s":"KUCOIN:MTVETH","d":[]},{"s":"PANCAKESWAP:DPZWBNB_ADE807","d":[]},{"s":"PANCAKESWAP:KNCUSDT_86D52C","d":[]},{"s":"SUSHISWAP:TLOSWETH_C5E555","d":[]},{"s":"KUCOIN:ICEUSDT","d":[]},{"s":"PANCAKESWAP:GOBLINWBNB_CD4F9B.USD","d":[]},{"s":"SUSHISWAPPOLYGON:FISHWMATIC_CBF6F7.USD","d":[]},{"s":"PANCAKESWAP:FRTCWBNB_5908EE.USD","d":[]},{"s":"PANCAKESWAP:MSTRUSDT_25639C","d":[]},{"s":"PANCAKESWAP:GSZCWBNB_BF1762.USD","d":[]},{"s":"OKX:CEEKUSDT","d":[]},{"s":"OKX:DYDXUSDC","d":[]},{"s":"KUCOIN:DAPPXUSDT","d":[]},{"s":"PANCAKESWAP:SFEXWBNB_15F189.USD","d":[]},{"s":"PANCAKESWAP:SHINUWBNB_3B932D","d":[]},{"s":"PANCAKESWAP:WODOWBNB_981D2C","d":[]},{"s":"PANCAKESWAP:BEPRWBNB_864E6E","d":[]},{"s":"PANCAKESWAP:RUNEXUSDT_C23177","d":[]},{"s":"PANCAKESWAP:CAKEWBNB_A527A6","d":[]},{"s":"KUCOIN:ETHBRL","d":[]},{"s":"PANCAKESWAP:GMEEWBNB_6A24A8.USD","d":[]},{"s":"PANCAKESWAP:CPLTBUSD_4D68F5","d":[]},{"s":"BINANCE:GALAUSD","d":[]},{"s":"OKX:ENJUSDT","d":[]},{"s":"KUCOIN:SOULBTC","d":[]},{"s":"PANCAKESWAP:LUFFYWBNB_EF219E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:STGUSDC_A34EC0","d":[]},{"s":"KUCOIN:BCHUSDT.3L","d":[]},{"s":"PANCAKESWAP:PRACHTPAYWBNB_EFA6A1.USD","d":[]},{"s":"PANCAKESWAP:DOGKINGWBNB_F9E630","d":[]},{"s":"PANCAKESWAP:WPIBUSD_F6213F","d":[]},{"s":"KUCOIN:ADSUSDT","d":[]},{"s":"PANCAKESWAP:VFTWBNB_1AFE48.USD","d":[]},{"s":"PANCAKESWAP:ERTHAWBNB_70531B","d":[]},{"s":"PANCAKESWAP:FISTWBNB_EA30D4","d":[]},{"s":"BINANCE:LINKUSDC.P","d":[]},{"s":"OKX:USTCUSDT","d":[]},{"s":"PANCAKESWAP:FIBOWBNB_196E7B.USD","d":[]},{"s":"PANCAKESWAP:TAUMWBNB_E6C0DC","d":[]},{"s":"KUCOIN:ASDUSDT","d":[]},{"s":"PANCAKESWAP:BOMBBTCB_843926","d":[]},{"s":"KUCOIN:MTLUSDT","d":[]},{"s":"PANCAKESWAP:EMPETH_84821B.USD","d":[]},{"s":"PANCAKESWAP:BSCCWBNB_6C331B.USD","d":[]},{"s":"PANCAKESWAP:SPZWBNB_8077CC","d":[]},{"s":"UPBIT:BSVBTC","d":[]},{"s":"PANCAKESWAP:OUTWBNB_3A3509","d":[]},{"s":"PANCAKESWAP:EGLWBNB_778F47.USD","d":[]},{"s":"HONEYSWAP:BAOWXDAI_15954D","d":[]},{"s":"OKX:LINKEUR","d":[]},{"s":"PANCAKESWAP:OSWBNB_01B258.USD","d":[]},{"s":"PANCAKESWAP:GRVWBNB_96FEF7","d":[]},{"s":"PANCAKESWAP:XTOKENWBNB_7F8776.USD","d":[]},{"s":"KUCOIN:DPRUSDT","d":[]},{"s":"HONEYSWAP:GRTWXDAI_285A60.USD","d":[]},{"s":"PANCAKESWAP:BSCPADWBNB_BA0166","d":[]},{"s":"PANCAKESWAP:CENXBRISE_C0BA84","d":[]},{"s":"OKX:ALGOEUR","d":[]},{"s":"KUCOIN:NAKAUSDT","d":[]},{"s":"PANCAKESWAP:RCMETH_32EAC7.USD","d":[]},{"s":"PANCAKESWAP:ANKRWBNB_3147F9","d":[]},{"s":"SUSHISWAP:MASQWETH_26E6A3","d":[]},{"s":"PANCAKESWAP:NAGIWBNB_398478.USD","d":[]},{"s":"HONEYSWAP:MCRIBWXDAI_EADCC9.USD","d":[]},{"s":"PANCAKESWAP:MSTWBNB_4AFB62.USD","d":[]},{"s":"PANCAKESWAP:AICEXWBNB_B42074.USD","d":[]},{"s":"PANCAKESWAP:2024WBNB_F21EDB.USD","d":[]},{"s":"PANCAKESWAP:SOMWBNB_C0394D.USD","d":[]},{"s":"UPBIT:DGBUSDT","d":[]},{"s":"PANCAKESWAP:SMARTPEPEWBNB_E31829","d":[]},{"s":"PANCAKESWAP:WSASWBNB_FB206D","d":[]},{"s":"PANCAKESWAP:ADSTKRWBNB_3CFDB6","d":[]},{"s":"PANCAKESWAP:FLOKIMWBNB_0AD6B8.USD","d":[]},{"s":"PANCAKESWAP:BLESWBNB_B563FC","d":[]},{"s":"KUCOIN:TWTUSDT","d":[]},{"s":"PANCAKESWAP:XAIWBNB_279DBE.USD","d":[]},{"s":"HONEYSWAP:MCDCWXDAI_D743FA","d":[]},{"s":"PANCAKESWAP:AIOWBNB_864A46.USD","d":[]},{"s":"PANCAKESWAP:DNBSUSDT_C2A7CF","d":[]},{"s":"PANCAKESWAP:SAVANTAIWBNB_48246C.USD","d":[]},{"s":"PANCAKESWAP:LWUSDT_6D2D12","d":[]},{"s":"PANCAKESWAP:ZKSVMWBNB_1D443C","d":[]},{"s":"PANCAKESWAP:ONLINEWBNB_CC5019.USD","d":[]},{"s":"PANCAKESWAP:WEBUSD_622635","d":[]},{"s":"PANCAKESWAP:ANDYWBNB_9F29DC.USD","d":[]},{"s":"BINANCE:SNTUSD","d":[]},{"s":"BINANCE:MTLUSDT.P","d":[]},{"s":"PANCAKESWAP:KTBUSD_A08B49","d":[]},{"s":"PANCAKESWAP:HESBUSD_134501","d":[]},{"s":"PANCAKESWAP:BTLUSDC_157EC5","d":[]},{"s":"HONEYSWAP:DIGGUSDC_07E953","d":[]},{"s":"PANCAKESWAP:SIXWBNB_D8C811","d":[]},{"s":"KUCOIN:INJDOWNUSDT","d":[]},{"s":"PANCAKESWAP:BRICKWBNB_31304D","d":[]},{"s":"PANCAKESWAP:BRBWBNB_A67901.USD","d":[]},{"s":"PANCAKESWAP:FIGMAWBNB_EFFF4A","d":[]},{"s":"PANCAKESWAP:BASWBNB_91F3B2.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_AF64D0","d":[]},{"s":"PANCAKESWAP:NELUMWBNB_8BE9B7.USD","d":[]},{"s":"PANCAKESWAP:SHIBOTWBNB_90F453.USD","d":[]},{"s":"PANCAKESWAP:BTCSTWBNB_B2678C","d":[]},{"s":"PANCAKESWAP:VTVWBNB_DEF788","d":[]},{"s":"OKX:NMRUSDT","d":[]},{"s":"PANCAKESWAP:ZELEBOBAWBNB_A55B48.USD","d":[]},{"s":"PANCAKESWAP:MFTNWBNB_6B0127.USD","d":[]},{"s":"HONEYSWAP:NIFWXDAI_5EADA6.USD","d":[]},{"s":"KUCOIN:PMONUSDT","d":[]},{"s":"PANCAKESWAP:GOHOWBNB_D53E72.USD","d":[]},{"s":"PANCAKESWAP:SFPWBNB_942B29.USD","d":[]},{"s":"PANCAKESWAP:INUKOUSDT_D50B9B","d":[]},{"s":"PANCAKESWAP:FIFAUSDT_1C296F","d":[]},{"s":"PANCAKESWAP:CMOONWBNB_892EE9","d":[]},{"s":"PANCAKESWAP:BSHAREWBNB_130324","d":[]},{"s":"HONEYSWAP:AAVEWXDAI_67CDAA.USD","d":[]},{"s":"PANCAKESWAP:TWOGEWBNB_A3A88B.USD","d":[]},{"s":"PANCAKESWAP:METIS20WBNB_32FD9D","d":[]},{"s":"HONEYSWAP:SNAFUHNY_90BF4E.USD","d":[]},{"s":"PANCAKESWAP:QJUSDT_5B0AE6","d":[]},{"s":"PANCAKESWAP:JIAOZIWBNB_316140.USD","d":[]},{"s":"KUCOIN:APEUSDT","d":[]},{"s":"PANCAKESWAP:BURNKING20518B_78B00B","d":[]},{"s":"PANCAKESWAP:ACHWBNB_40E90B.USD","d":[]},{"s":"PANCAKESWAP:POOPUSDT_6D5441","d":[]},{"s":"PANCAKESWAP:ETHBETH_99D865","d":[]},{"s":"PANCAKESWAP:SPACWBNB_5F8F59.USD","d":[]},{"s":"PANCAKESWAP:PIXSWAPWBNB_8D7D24.USD","d":[]},{"s":"PANCAKESWAP:METABOTWBNB_DA5043.USD","d":[]},{"s":"PANCAKESWAP:AUTODOCTOKENWBNB_D2756E","d":[]},{"s":"PANCAKESWAP:BCATWBNB_91E5DE","d":[]},{"s":"PANCAKESWAP:QSDBUSD_CCB40C","d":[]},{"s":"PANCAKESWAP:BVCWBNB_6FD075","d":[]},{"s":"SUSHISWAP:PONDWETH_CCB42A","d":[]},{"s":"SUSHISWAP:DOGWETH_C96F20","d":[]},{"s":"PANCAKESWAP:200913USDT_BAB743","d":[]},{"s":"OKX:TRXUSDC","d":[]},{"s":"PANCAKESWAP:OREOWBNB_FA5939.USD","d":[]},{"s":"PANCAKESWAP:MPCWBNB_EF59AB.USD","d":[]},{"s":"PANCAKESWAP:BOSSWBNB_825F65.USD","d":[]},{"s":"PANCAKESWAP:BONFIREWBNB_D3F478.USD","d":[]},{"s":"PANCAKESWAP:MINECRAFTWBNB_F3A900","d":[]},{"s":"PANCAKESWAP:BBLWBNB_F4F2B6.USD","d":[]},{"s":"PANCAKESWAP:ZEFUWBNB_496103.USD","d":[]},{"s":"PANCAKESWAP:WILDWBNB_2D321D.USD","d":[]},{"s":"PANCAKESWAP:ADSTKRWBNB_3CFDB6.USD","d":[]},{"s":"PANCAKESWAP:PHOENIXJTS_4313D6.USD","d":[]},{"s":"PANCAKESWAP:HVTBUSD_6F1D62","d":[]},{"s":"PANCAKESWAP:KATAWBNB_693FF2","d":[]},{"s":"PANCAKESWAP:AIOZTHOREUM_C22707.USD","d":[]},{"s":"PANCAKESWAP:RABUSDT_48C89D","d":[]},{"s":"PANCAKESWAP:ASRUSDT_62D44C","d":[]},{"s":"PANCAKESWAP:CCUSDT_9B1087","d":[]},{"s":"PANCAKESWAP:CARATUSDT_498873","d":[]},{"s":"PANCAKESWAP:KATSWBNB_9C0E66.USD","d":[]},{"s":"PANCAKESWAP:POVWBNB_BC1E96.USD","d":[]},{"s":"KUCOIN:FCONUSDT","d":[]},{"s":"PANCAKESWAP:BSEROUSDT_C59795","d":[]},{"s":"OKX:VRAUSDT","d":[]},{"s":"PANCAKESWAP:XWINWBNB_D4A3DC.USD","d":[]},{"s":"PANCAKESWAP:YESUSDT_B519B0","d":[]},{"s":"HONEYSWAP:HNYUSDT_5687B6","d":[]},{"s":"KUCOIN:HIMFERSUSDT","d":[]},{"s":"PANCAKESWAP:WATERWBNB_3B6A0A","d":[]},{"s":"PANCAKESWAP:KGSOWBNB_B11243.USD","d":[]},{"s":"PANCAKESWAP:CCFWBNB_83A096.USD","d":[]},{"s":"PANCAKESWAP:HOLDXWBNB_97750C.USD","d":[]},{"s":"PANCAKESWAP:DAOPWBNB_C2FECA","d":[]},{"s":"HONEYSWAP:HIVEWATERWXDAI_D6D50E","d":[]},{"s":"PANCAKESWAP:KATAWBNB_693FF2.USD","d":[]},{"s":"PANCAKESWAP:LVLUSDT_69D6B9","d":[]},{"s":"PANCAKESWAP:PIGINUWBNB_ADDCEB.USD","d":[]},{"s":"BINANCE:STRKUSD","d":[]},{"s":"PANCAKESWAP:BUYWBNB_71336C.USD","d":[]},{"s":"UPBIT:ADAUSDT","d":[]},{"s":"PANCAKESWAP:IOTNWBNB_697F33.USD","d":[]},{"s":"PANCAKESWAP:SANTAWBNB_74FD1B","d":[]},{"s":"PANCAKESWAP:OBOTUSDT_B5E6DD","d":[]},{"s":"PANCAKESWAP:DFISHWBNB_398168","d":[]},{"s":"PANCAKESWAP:ETNAWBNB_A2FACC.USD","d":[]},{"s":"PANCAKESWAP:Y3WBNB_CB3F58","d":[]},{"s":"PANCAKESWAP:NMBENUSDT_7A9069","d":[]},{"s":"PANCAKESWAP:HPSWBNB_16C21C","d":[]},{"s":"PANCAKESWAP:USMXWBNB_DB0B7E.USD","d":[]},{"s":"PANCAKESWAP:SOFIWBNB_909976.USD","d":[]},{"s":"PANCAKESWAP:CTTWBNB_EDEE3E.USD","d":[]},{"s":"SUSHISWAP:KIRAUSDC_D3BBB7","d":[]},{"s":"KUCOIN:IGUBTC","d":[]},{"s":"PANCAKESWAP:CAWCEOWBNB_B1EBF2","d":[]},{"s":"KUCOIN:MAVUSDT","d":[]},{"s":"PANCAKESWAP:FRENWBNB_3EA0B7.USD","d":[]},{"s":"PANCAKESWAP:PEPEDASHAIWBNB_9026B3.USD","d":[]},{"s":"PANCAKESWAP:GMTBUSD_808B62","d":[]},{"s":"PANCAKESWAP:LANCWBNB_9E913A.USD","d":[]},{"s":"OKX:KNCUSDT","d":[]},{"s":"PANCAKESWAP:IRISTOKENWBNB_7D0987","d":[]},{"s":"PANCAKESWAP:TFFWBNB_A3E0BE.USD","d":[]},{"s":"SUSHISWAP:CVXCRVWETH_4B893B","d":[]},{"s":"HONEYSWAP:NUGGWXDAI_51D800","d":[]},{"s":"PANCAKESWAP:UPFANUSDT_FB590E","d":[]},{"s":"PANCAKESWAP:SANTAWBNB_74FD1B.USD","d":[]},{"s":"PANCAKESWAP:DEFXUSDT_484DEB","d":[]},{"s":"PANCAKESWAP:DOGSROCKWBNB_402415.USD","d":[]},{"s":"PANCAKESWAP:FINEDOGWBNB_06A961","d":[]},{"s":"KUCOIN:TUSDUSDT","d":[]},{"s":"PANCAKESWAP:1LONGWBNB_44BF2B.USD","d":[]},{"s":"PANCAKESWAP:BXWBNB_7537F9","d":[]},{"s":"PANCAKESWAP:TRUTHBUSD_9520F1","d":[]},{"s":"PANCAKESWAP:SQDWBNB_2E7776","d":[]},{"s":"PANCAKESWAP:TDRUSDT_D738F1","d":[]},{"s":"PANCAKESWAP:BSRWBNB_E1C69A","d":[]},{"s":"PANCAKESWAP:KILLERWBNB_7EA542.USD","d":[]},{"s":"PANCAKESWAP:ZYWBNB_9188F2","d":[]},{"s":"OKX:NYMUSDT","d":[]},{"s":"KUCOIN:AMUUSDT","d":[]},{"s":"PANCAKESWAP:ZGLWBNB_E63680.USD","d":[]},{"s":"PANCAKESWAP:ANATIONWBNB_1F5CB9","d":[]},{"s":"PANCAKESWAP:TOMATOSWBNB_B3E7B2.USD","d":[]},{"s":"HONEYSWAP:YDAIYUSDCYUSDTYTUSDWXDAI_10DEC2.USD","d":[]},{"s":"PANCAKESWAP:QJIUSDT_605F91","d":[]},{"s":"PANCAKESWAP:KMONWBNB_C9FC17.USD","d":[]},{"s":"PANCAKESWAP:BNTWBNB_94DE01","d":[]},{"s":"PANCAKESWAP:TOSTSNFT_F84AF7.USD","d":[]},{"s":"KUCOIN:XAVAUSDT","d":[]},{"s":"HONEYSWAP:HAUSUSDT_FF19E9","d":[]},{"s":"PANCAKESWAP:BTHBUSD_A5A1AD","d":[]},{"s":"OKX:AGIXUSDT","d":[]},{"s":"PANCAKESWAP:SATSUSDT_0586CC","d":[]},{"s":"PANCAKESWAP:AUDIWBNB_83D7C3.USD","d":[]},{"s":"BINANCE:HBARUSDT.P","d":[]},{"s":"PANCAKESWAP:ZONOV3WBNB_8AAD26.USD","d":[]},{"s":"PANCAKESWAP:BABYDOGEWBNB_9290D0.USD","d":[]},{"s":"PANCAKESWAP:DESUMMPRO_B12EF7","d":[]},{"s":"PANCAKESWAP:BIBI20WBNB_AF381D.USD","d":[]},{"s":"PANCAKESWAP:CX11WBNB_E4C4CD","d":[]},{"s":"PANCAKESWAP:AIWETH_87B443.USD","d":[]},{"s":"PANCAKESWAP:NSHIBAWBNB_F154E0.USD","d":[]},{"s":"PANCAKESWAP:HAMWBNB_99BF9C","d":[]},{"s":"OKX:XEMUSDT","d":[]},{"s":"PANCAKESWAP:UCWBNB_920969","d":[]},{"s":"PANCAKESWAP:CHEBUSD_CAE882","d":[]},{"s":"PANCAKESWAP:SATXWBNB_927D7A.USD","d":[]},{"s":"PANCAKESWAP:QWASPUSDT_069875","d":[]},{"s":"PANCAKESWAP:BABYLONGWBNB_2F26F5.USD","d":[]},{"s":"PANCAKESWAP:FEGWBNB_93D708","d":[]},{"s":"PANCAKESWAP:ALTBWBNB_B544C7.USD","d":[]},{"s":"SUSHISWAP:LINAUSDC_67E442","d":[]},{"s":"KUCOIN:KASDOWNUSDT","d":[]},{"s":"HONEYSWAP:PRTCLEHAUS_37251B","d":[]},{"s":"PANCAKESWAP:ETHPADWBNB_FE4819.USD","d":[]},{"s":"KUCOIN:LITBTC","d":[]},{"s":"PANCAKESWAP:HKDWBNB_D1FD32.USD","d":[]},{"s":"BINANCE:SUPERUSD","d":[]},{"s":"UPBIT:BLURBTC","d":[]},{"s":"PANCAKESWAP:MARSVOLSWBNB_CA4EDB.USD","d":[]},{"s":"PANCAKESWAP:IPOWBNB_2220CC","d":[]},{"s":"OKX:UNIEUR","d":[]},{"s":"PANCAKESWAP:B69189WBNB_89D459","d":[]},{"s":"PANCAKESWAP:AMSNFTUSDT_5BF611","d":[]},{"s":"KUCOIN:XCHUSDT","d":[]},{"s":"HONEYSWAP:STAKEAGVE_A3E904.USD","d":[]},{"s":"PANCAKESWAP:CPOWBNB_ABC433.USD","d":[]},{"s":"PANCAKESWAP:DGMOONWBNB_2DD97B","d":[]},{"s":"PANCAKESWAP:BNOUSDT_4EA212","d":[]},{"s":"PANCAKESWAP:SGSWBNB_35CCEC.USD","d":[]},{"s":"PANCAKESWAP:JTTWBNB_5BC37A","d":[]},{"s":"PANCAKESWAP:TIME2TIME_B13DCD.USD","d":[]},{"s":"SUSHISWAP:LILWETH_BE1728","d":[]},{"s":"PANCAKESWAP:IOTXBUSD_C13AA7","d":[]},{"s":"PANCAKESWAP:PSIWBNB_2AC9AB","d":[]},{"s":"KUCOIN:NOMUSDT","d":[]},{"s":"PANCAKESWAP:SPIDERWBNB_89B2B0.USD","d":[]},{"s":"PANCAKESWAP:MONIWBNB_BCFD0D.USD","d":[]},{"s":"PANCAKESWAP:LUSWBNB_081040","d":[]},{"s":"PANCAKESWAP:PECUSDT_C5329C","d":[]},{"s":"PANCAKESWAP:BEPRWBNB_864E6E.USD","d":[]},{"s":"PANCAKESWAP:2333USDT_18678F","d":[]},{"s":"OKX:EGLDUSDT","d":[]},{"s":"PANCAKESWAP:AIRIWBNB_3D3534","d":[]},{"s":"PANCAKESWAP:FLXWBNB_381523.USD","d":[]},{"s":"PANCAKESWAP:DDOSWBNB_3C7DF1.USD","d":[]},{"s":"PANCAKESWAP:CANNAGROWWBNB_6C91D0.USD","d":[]},{"s":"BINANCE:HOOKUSDT.P","d":[]},{"s":"PANCAKESWAP:TRDCWBNB_4AF7FB","d":[]},{"s":"PANCAKESWAP:LORDWBNB_22DA08.USD","d":[]},{"s":"PANCAKESWAP:DTGWBNB_D2E4A5","d":[]},{"s":"PANCAKESWAP:CR7WBNB_804267.USD","d":[]},{"s":"PANCAKESWAP:SHAREWBNB_F45C8E.USD","d":[]},{"s":"PANCAKESWAP:BMCCWBNB_9CEF33.USD","d":[]},{"s":"PANCAKESWAP:AIPWBNB_6B5138.USD","d":[]},{"s":"PANCAKESWAP:OVRWBNB_A73DF2","d":[]},{"s":"KUCOIN:AXSUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:SALEWMATIC_5A2BA6.USD","d":[]},{"s":"PANCAKESWAP:BABYFLOKIWBNB_8E1502.USD","d":[]},{"s":"PANCAKESWAP:SHUWBNB_EFFB1C","d":[]},{"s":"PANCAKESWAP:TGBSWBNB_779A0E.USD","d":[]},{"s":"PANCAKESWAP:CAKEHOOK_9E9B76","d":[]},{"s":"PANCAKESWAP:SUNWBNB_BF430C.USD","d":[]},{"s":"PANCAKESWAP:AN1USDT_14AD38","d":[]},{"s":"BINANCE:OXTUSDT.P","d":[]},{"s":"PANCAKESWAP:PATEXWBNB_F09D19.USD","d":[]},{"s":"PANCAKESWAP:BICSWBNB_E521EB.USD","d":[]},{"s":"PANCAKESWAP:BMXWBNB_594567.USD","d":[]},{"s":"PANCAKESWAP:FGPTWBNB_5F12A0.USD","d":[]},{"s":"PANCAKESWAP:MMWBNB_8A6A42.USD","d":[]},{"s":"PANCAKESWAP:GIGAWBNB_6C9608.USD","d":[]},{"s":"OKX:HBARUSDC","d":[]},{"s":"PANCAKESWAP:GMTWBNB_E9DE58.USD","d":[]},{"s":"PANCAKESWAP:BABAWBNB_F54AD4.USD","d":[]},{"s":"PANCAKESWAP:SK0WBNB_28251A.USD","d":[]},{"s":"BINANCE:AEVOUSD","d":[]},{"s":"PANCAKESWAP:JPEPEWBNB_BACC02.USD","d":[]},{"s":"PANCAKESWAP:LDOGEWBNB_2A6523.USD","d":[]},{"s":"PANCAKESWAP:AMZWBNB_DA34AD","d":[]},{"s":"PANCAKESWAP:BASWBNB_B5C731","d":[]},{"s":"SUSHISWAP:TLOSWETH_C5E555.USD","d":[]},{"s":"SUSHISWAP:FTXTOKENWETH_7825DE.USD","d":[]},{"s":"KUCOIN:HIODUSDT","d":[]},{"s":"PANCAKESWAP:ADAWBNB_28415F","d":[]},{"s":"PANCAKESWAP:GLFUSDT_08262C","d":[]},{"s":"PANCAKESWAP:GGGWBNB_3C11C5.USD","d":[]},{"s":"PANCAKESWAP:1ON8USDT_4F56C2","d":[]},{"s":"PANCAKESWAP:SATSSWBNB_362536.USD","d":[]},{"s":"KUCOIN:EOSUSDT.3L","d":[]},{"s":"KUCOIN:XDBUSDT","d":[]},{"s":"PANCAKESWAP:DAOCOUSDT_0D52E6","d":[]},{"s":"PANCAKESWAP:WDCWBNB_D8530F.USD","d":[]},{"s":"KUCOIN:HEARTUSDT","d":[]},{"s":"PANCAKESWAP:LDAOUSDT_E77237","d":[]},{"s":"PANCAKESWAP:CAFEWBNB_7442F9.USD","d":[]},{"s":"PANCAKESWAP:APEDWBNB_5893BF","d":[]},{"s":"PANCAKESWAP:FANTAWBNB_FE1279","d":[]},{"s":"PANCAKESWAP:SATWBNB_54E29A","d":[]},{"s":"PANCAKESWAP:DUETCAKE_BDF0AA.USD","d":[]},{"s":"PANCAKESWAP:MSCPWBNB_570D59.USD","d":[]},{"s":"PANCAKESWAP:MIDAIWBNB_770AD4","d":[]},{"s":"PANCAKESWAP:DXCTBUSD_6CC280","d":[]},{"s":"PANCAKESWAP:SAIUSDT_92FF13","d":[]},{"s":"BINANCE:RIFUSDT.P","d":[]},{"s":"OKX:AVAXEUR","d":[]},{"s":"PANCAKESWAP:CNSWBNB_50605A","d":[]},{"s":"PANCAKESWAP:NTRWBNB_2DDEF5.USD","d":[]},{"s":"PANCAKESWAP:MPGWBNB_7C15DC.USD","d":[]},{"s":"PANCAKESWAP:AMTBTCB_66CD75","d":[]},{"s":"PANCAKESWAP:TBANKWBNB_E51852","d":[]},{"s":"KUCOIN:JTOUSDT","d":[]},{"s":"PANCAKESWAP:FLOKIWBNB_231D9E.USD","d":[]},{"s":"KUCOIN:GARIUSDT","d":[]},{"s":"PANCAKESWAP:SQUIDSQUID_080AF9.USD","d":[]},{"s":"KUCOIN:ZECBTC","d":[]},{"s":"KUCOIN:ARKERUSDT","d":[]},{"s":"PANCAKESWAP:PINFRUSDT_0434DB","d":[]},{"s":"PANCAKESWAP:VPKBUSD_D986BE","d":[]},{"s":"OKX:FTMUSDT","d":[]},{"s":"PANCAKESWAP:VUSWBNB_32E887","d":[]},{"s":"PANCAKESWAP:TRAVAWBNB_865C77.USD","d":[]},{"s":"PANCAKESWAP:ALEOUSDT_4F36E3","d":[]},{"s":"PANCAKESWAP:GMRWBNB_62C834","d":[]},{"s":"KUCOIN:MYROUSDT","d":[]},{"s":"SUSHISWAP:OPIUMWETH_D84D55.USD","d":[]},{"s":"PANCAKESWAP:XMASGROKWBNB_5AA59D.USD","d":[]},{"s":"SUSHISWAP:PIXLWETH_7A9DDC","d":[]},{"s":"PANCAKESWAP:SSDWBNB_98C8FC.USD","d":[]},{"s":"PANCAKESWAP:FITAIWBNB_7978B6","d":[]},{"s":"SUSHISWAP:JPEGWETH_DB06A7","d":[]},{"s":"PANCAKESWAP:KINGBWBNB_B9AF31.USD","d":[]},{"s":"PANCAKESWAP:STNOWBNB_8EDB8C.USD","d":[]},{"s":"SUSHISWAP:DELTAWETH_1498BD.USD","d":[]},{"s":"PANCAKESWAP:COAEWBNB_25299C.USD","d":[]},{"s":"KUCOIN:XCNBTC","d":[]},{"s":"SUSHISWAP:SOKUWETH_0DE56B.USD","d":[]},{"s":"PANCAKESWAP:TTKBUSD_D1EBC1","d":[]},{"s":"PANCAKESWAP:DOGWBNB_ED87D7.USD","d":[]},{"s":"PANCAKESWAP:OMGWBNB_B928DA","d":[]},{"s":"PANCAKESWAP:WAIFUWBNB_D7D022","d":[]},{"s":"KUCOIN:HAIBTC","d":[]},{"s":"PANCAKESWAP:GRIMACEWBNB_318F2A","d":[]},{"s":"PANCAKESWAP:WNAVWBNB_C31FC5.USD","d":[]},{"s":"PANCAKESWAP:QTUSDT_6D7773","d":[]},{"s":"PANCAKESWAP:PURSEBUSD_081F4B","d":[]},{"s":"PANCAKESWAP:GBCWBNB_7A7A0A","d":[]},{"s":"PANCAKESWAP:AASTUSDT_0002E2","d":[]},{"s":"PANCAKESWAP:CUMMIESWBNB_114D53.USD","d":[]},{"s":"PANCAKESWAP:CDAOWBNB_93F7C5","d":[]},{"s":"PANCAKESWAP:FDDUSDT_31E724","d":[]},{"s":"PANCAKESWAP:ZGCUSDT_F418BB","d":[]},{"s":"PANCAKESWAP:KINGWBNB_785E2B.USD","d":[]},{"s":"PANCAKESWAP:HELENA2WBNB_CB3E69","d":[]},{"s":"KUCOIN:XCADUSDT","d":[]},{"s":"SUSHISWAP:VERSEWETH_BC3FFD.USD","d":[]},{"s":"PANCAKESWAP:SSTXWBNB_76719A.USD","d":[]},{"s":"SUSHISWAP:ONEBTCWBTC_D22708","d":[]},{"s":"PANCAKESWAP:BNDWBNB_E2D6D7.USD","d":[]},{"s":"PANCAKESWAP:RITEWBNB_163CC9","d":[]},{"s":"PANCAKESWAP:MINTWBNB_3EBA17","d":[]},{"s":"PANCAKESWAP:CSDBUSD_3E30A8","d":[]},{"s":"KUCOIN:PLUUSDT","d":[]},{"s":"PANCAKESWAP:SSPWBNB_9C6DA6","d":[]},{"s":"PANCAKESWAP:RNMWBNB_676B5A","d":[]},{"s":"PANCAKESWAP:MOOWBNB_284C46","d":[]},{"s":"BINANCE:ACAUSD","d":[]},{"s":"SUSHISWAP:KP3RLDO_79E0D4","d":[]},{"s":"PANCAKESWAP:ATOMWBNB_468B2D.USD","d":[]},{"s":"PANCAKESWAP:SEAMLESSWBNB_0482BE.USD","d":[]},{"s":"PANCAKESWAP:CENXBEFE_A2058F","d":[]},{"s":"PANCAKESWAP:VINUWBNB_DD9114","d":[]},{"s":"PANCAKESWAP:MAKEWBNB_D77E0B.USD","d":[]},{"s":"PANCAKESWAP:FRPWBNB_34A516","d":[]},{"s":"PANCAKESWAP:MOSSWBNB_7D0CD8.USD","d":[]},{"s":"OKX:BABYDOGEUSDT","d":[]},{"s":"PANCAKESWAP:TIPWBNB_B01403","d":[]},{"s":"KUCOIN:MANBTC","d":[]},{"s":"PANCAKESWAP:DASSWBNB_F5C376.USD","d":[]},{"s":"PANCAKESWAP:KXAWBNB_4F7609","d":[]},{"s":"KUCOIN:MAGICUSDT","d":[]},{"s":"PANCAKESWAP:TMONDBUSD_148330","d":[]},{"s":"PANCAKESWAP:SHIBARMYWBNB_0D3867.USD","d":[]},{"s":"HONEYSWAP:BTCCBWXDAI_7D0FFE.USD","d":[]},{"s":"PANCAKESWAP:BANKBTCUSDT_461073","d":[]},{"s":"PANCAKESWAP:SSUSUSDT_148E22","d":[]},{"s":"PANCAKESWAP:EFBAIWBNB_E6570D","d":[]},{"s":"PANCAKESWAP:NICHEMANWBNB_2F8693.USD","d":[]},{"s":"PANCAKESWAP:ETHFIUSDT_250CD0","d":[]},{"s":"PANCAKESWAP:SWPTWBNB_7469D4","d":[]},{"s":"PANCAKESWAP:KOLFET_9D0435","d":[]},{"s":"PANCAKESWAP:MURATIAIWBNB_DB79F9.USD","d":[]},{"s":"PANCAKESWAP:MEDAIWBNB_B820BA","d":[]},{"s":"PANCAKESWAP:ARKERWBNB_3091CC","d":[]},{"s":"SUSHISWAP:IDWETH_77337F","d":[]},{"s":"PANCAKESWAP:SQUIDDAOWBNB_DBF43F","d":[]},{"s":"PANCAKESWAP:SVWBNB_6CF721.USD","d":[]},{"s":"PANCAKESWAP:CRHTWBNB_B8E24F.USD","d":[]},{"s":"BINANCE:KAVAUSD","d":[]},{"s":"PANCAKESWAP:GROKOLAUSWBNB_86C220","d":[]},{"s":"PANCAKESWAP:XCEWBNB_9BBE2C","d":[]},{"s":"HONEYSWAP:WAXHNY_968CFC","d":[]},{"s":"PANCAKESWAP:FEARBUSD_8C7346","d":[]},{"s":"HONEYSWAP:BUSDWBTC_00BCDD.USD","d":[]},{"s":"PANCAKESWAP:ELLOWBNB_82FC80.USD","d":[]},{"s":"KUCOIN:TWTBTC","d":[]},{"s":"PANCAKESWAP:TAGBUSD_1DC585","d":[]},{"s":"PANCAKESWAP:RUNNINGRABBITUSDT_E20559","d":[]},{"s":"PANCAKESWAP:CESUSDT_3B0EF5","d":[]},{"s":"SUSHISWAP:MASQWETH_26E6A3.USD","d":[]},{"s":"OKX:RAYUSDT","d":[]},{"s":"PANCAKESWAP:GROKBNBWBNB_E17EA8","d":[]},{"s":"PANCAKESWAP:T23WBNB_A03AAD.USD","d":[]},{"s":"PANCAKESWAP:MFIUSDT_487D3C","d":[]},{"s":"PANCAKESWAP:BTCNOWWBNB_DBD741.USD","d":[]},{"s":"PANCAKESWAP:FWTBUSD_6FEA62","d":[]},{"s":"PANCAKESWAP:YFIWBNB_DC5FE9.USD","d":[]},{"s":"PANCAKESWAP:CHAMPBUSD_1D0F31","d":[]},{"s":"PANCAKESWAP:SIMPSONSINUWBNB_42257B.USD","d":[]},{"s":"PANCAKESWAP:PENDLEKOL_7F56DD.USD","d":[]},{"s":"PANCAKESWAP:SOCIALAIWBNB_0778C3","d":[]},{"s":"PANCAKESWAP:LAIKAWBNB_90070E.USD","d":[]},{"s":"PANCAKESWAP:XPNETWBNB_DE5833.USD","d":[]},{"s":"PANCAKESWAP:BTCDUSDT_795C1F","d":[]},{"s":"PANCAKESWAP:SCPBUSD_69312F","d":[]},{"s":"PANCAKESWAP:MLWBNB_9F67E1.USD","d":[]},{"s":"PANCAKESWAP:IOTNWBNB_697F33","d":[]},{"s":"PANCAKESWAP:TITUSDT_0A2451","d":[]},{"s":"PANCAKESWAP:AMALONG_6A1964.USD","d":[]},{"s":"HONEYSWAP:PANWETH_497A9D","d":[]},{"s":"PANCAKESWAP:ETAIWBNB_6CCDA3.USD","d":[]},{"s":"PANCAKESWAP:YBKWBNB_FD3AEB.USD","d":[]},{"s":"PANCAKESWAP:GMEEWBNB_6A24A8","d":[]},{"s":"PANCAKESWAP:SCAWBNB_88E2EA.USD","d":[]},{"s":"HONEYSWAP:BFEDWBTC_D6D83A","d":[]},{"s":"HONEYSWAP:XBRICKUSDC_F42253","d":[]},{"s":"PANCAKESWAP:PHONENIXWBNB_D53A0E.USD","d":[]},{"s":"PANCAKESWAP:WELTUSDC_F1686F","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_35D784","d":[]},{"s":"OKX:ETCUSDC","d":[]},{"s":"BINANCE:IOTAUSD","d":[]},{"s":"PANCAKESWAP:JMPTBUSD_5EFBDB","d":[]},{"s":"HONEYSWAP:LINKUSDC_2E0E53","d":[]},{"s":"HONEYSWAP:TBTCWBTC_8A328E","d":[]},{"s":"SUSHISWAPPOLYGON:ZEDWETH_374552.USD","d":[]},{"s":"PANCAKESWAP:FANHUAWBNB_574A9B.USD","d":[]},{"s":"KUCOIN:CTCBTC","d":[]},{"s":"UPBIT:VALBTC","d":[]},{"s":"PANCAKESWAP:CHANGEWBNB_9DEC95.USD","d":[]},{"s":"UPBIT:WAVESBTC","d":[]},{"s":"PANCAKESWAP:MWARWBNB_74AF40","d":[]},{"s":"BINANCE:NFPUSDT.P","d":[]},{"s":"UPBIT:MAGICBTC","d":[]},{"s":"KUCOIN:LOOMBTC","d":[]},{"s":"PANCAKESWAP:SILLYBONKWBNB_C3C782","d":[]},{"s":"PANCAKESWAP:FIBOWBNB_196E7B","d":[]},{"s":"PANCAKESWAP:A4MWBNB_E60B66.USD","d":[]},{"s":"PANCAKESWAP:FRGSTWBNB_3CCEF3","d":[]},{"s":"PANCAKESWAP:VOTEWBNB_9FA321.USD","d":[]},{"s":"PANCAKESWAP:NTXWBNB_6C805D.USD","d":[]},{"s":"PANCAKESWAP:HAPIWBNB_156658","d":[]},{"s":"PANCAKESWAP:DBTYCOONWBNB_AE0A98.USD","d":[]},{"s":"HONEYSWAP:CHEEMSWXDAI_CE5382.USD","d":[]},{"s":"SUSHISWAP:BICOWETH_55D8EC","d":[]},{"s":"PANCAKESWAP:9419USDT_5B4D39","d":[]},{"s":"KUCOIN:SUPERUSDT","d":[]},{"s":"BINANCE:RNDRUSD","d":[]},{"s":"KUCOIN:EDUUSDT","d":[]},{"s":"HONEYSWAP:HOTWXDAI_BCC8F4","d":[]},{"s":"KUCOIN:HIBIRDSUSDT","d":[]},{"s":"PANCAKESWAP:AIGPTWBNB_383973.USD","d":[]},{"s":"PANCAKESWAP:BABYTRUMPWBNB_5BDDFB.USD","d":[]},{"s":"PANCAKESWAP:XDRIPWBNB_CBBEF1.USD","d":[]},{"s":"PANCAKESWAP:MYROWBNB_4CD2F2","d":[]},{"s":"SUSHISWAP:SUKUWETH_2979FA","d":[]},{"s":"OKX:SHIBBTC","d":[]},{"s":"HONEYSWAP:RENHNY_91CACD.USD","d":[]},{"s":"PANCAKESWAP:JXLWBNB_228779","d":[]},{"s":"PANCAKESWAP:O5OWBNB_55EEE0.USD","d":[]},{"s":"UPBIT:HIFIBTC","d":[]},{"s":"PANCAKESWAP:SATSSWBNB_362536","d":[]},{"s":"PANCAKESWAP:WZYXWBNB_ADC079","d":[]},{"s":"PANCAKESWAP:GOWBNB_E2E8C6","d":[]},{"s":"PANCAKESWAP:COWRIEUSDT_4DB821","d":[]},{"s":"PANCAKESWAP:SHRIMPLEWBNB_5404E8.USD","d":[]},{"s":"PANCAKESWAP:TANGYUANWBNB_8D7147.USD","d":[]},{"s":"PANCAKESWAP:BSWWBNB_8CA3FF.USD","d":[]},{"s":"KUCOIN:ETHUSDC","d":[]},{"s":"HONEYSWAP:XCOMBAGVE_6125C2.USD","d":[]},{"s":"PANCAKESWAP:DADDYWBNB_8DDB1F","d":[]},{"s":"PANCAKESWAP:KKCUSDT_69F6FD","d":[]},{"s":"PANCAKESWAP:DBRUSDT_3DF454","d":[]},{"s":"PANCAKESWAP:315USDT_116BF4","d":[]},{"s":"PANCAKESWAP:KITTENSWBNB_93F44B.USD","d":[]},{"s":"OKX:DOTUSDC","d":[]},{"s":"PANCAKESWAP:DRIVENXWBNB_A8E72B","d":[]},{"s":"SUSHISWAP:YELWETH_C83CE8","d":[]},{"s":"HONEYSWAP:SUCWXDAI_F522A3.USD","d":[]},{"s":"BINANCE:LSKUSD","d":[]},{"s":"PANCAKESWAP:CAMLYUSDT_AADC3C","d":[]},{"s":"KUCOIN:LUNAUSDC","d":[]},{"s":"KUCOIN:SCLPUSDT","d":[]},{"s":"PANCAKESWAP:CLPSWBNB_88B20A","d":[]},{"s":"SUSHISWAP:INDEXWETH_A73DF6","d":[]},{"s":"PANCAKESWAP:SQUIDUSDT_1E9C69","d":[]},{"s":"PANCAKESWAP:FISTSWBNB_0E4A23","d":[]},{"s":"KUCOIN:1INCHUSDT","d":[]},{"s":"KUCOIN:XLMETH","d":[]},{"s":"PANCAKESWAP:XYFWBNB_DAA81D","d":[]},{"s":"PANCAKESWAP:PPMWBNB_6FBA41.USD","d":[]},{"s":"PANCAKESWAP:ATEMWBNB_1BE526","d":[]},{"s":"KUCOIN:SNXUSDT","d":[]},{"s":"PANCAKESWAP:KLTWBNB_E6691A","d":[]},{"s":"PANCAKESWAP:LSTUSDT_B5FB8B","d":[]},{"s":"OKX:BTCUSD28M2024","d":[]},{"s":"HONEYSWAP:UBTUSDC_5210CB","d":[]},{"s":"HONEYSWAP:WETCHNY_288ECD.USD","d":[]},{"s":"PANCAKESWAP:MOBUSDT_FEF301","d":[]},{"s":"KUCOIN:XRPUSDC","d":[]},{"s":"PANCAKESWAP:DAUMENWBNB_B1622F","d":[]},{"s":"PANCAKESWAP:SUIWBNB_46E7F5","d":[]},{"s":"KUCOIN:VETETH","d":[]},{"s":"PANCAKESWAP:HAREKINGUSDT_CF5BB5","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_622A7B","d":[]},{"s":"HONEYSWAP:DIGGWETH_9DEABF.USD","d":[]},{"s":"PANCAKESWAP:PCAWBNB_3A4430.USD","d":[]},{"s":"PANCAKESWAP:ANDYWBNB_9F29DC","d":[]},{"s":"PANCAKESWAP:FQSWBNB_839CD4","d":[]},{"s":"PANCAKESWAP:FINCUSDT_8C3D21","d":[]},{"s":"PANCAKESWAP:DSUNWBNB_03CB3F","d":[]},{"s":"PANCAKESWAP:CAPOWBNB_9C68CA.USD","d":[]},{"s":"OKX:EURTUSDT","d":[]},{"s":"BINANCE:STPTUSDT.P","d":[]},{"s":"KUCOIN:BANDUSDT","d":[]},{"s":"PANCAKESWAP:ZENAWBNB_5171F7","d":[]},{"s":"PANCAKESWAP:PIRATEWBNB_1C699B","d":[]},{"s":"PANCAKESWAP:RISCWBNB_0BBAA9","d":[]},{"s":"OKX:RNDRUSDT","d":[]},{"s":"PANCAKESWAP:WATERUSDT_97E4E7","d":[]},{"s":"KUCOIN:ACTUSDT","d":[]},{"s":"PANCAKESWAP:FLOKICEOWBNB_7C03A9.USD","d":[]},{"s":"PANCAKESWAP:STEPDWBNB_E9E883.USD","d":[]},{"s":"HONEYSWAP:BFEDUSDT_A67215","d":[]},{"s":"PANCAKESWAP:ARBWBNB_68D7DA","d":[]},{"s":"KUCOIN:GRTUSDT","d":[]},{"s":"PANCAKESWAP:ETCSWBNB_1D8209","d":[]},{"s":"PANCAKESWAP:ZKCWBNB_7CD01A","d":[]},{"s":"PANCAKESWAP:NECUSDT_83C17C","d":[]},{"s":"BINANCE:SUSHIUSD","d":[]},{"s":"UPBIT:SPURSBTC","d":[]},{"s":"PANCAKESWAP:BTCBWBNB_7561EE","d":[]},{"s":"KUCOIN:ATOMKCS","d":[]},{"s":"PANCAKESWAP:SCAIWBNB_19BF76.USD","d":[]},{"s":"PANCAKESWAP:JTSWBNB_21AFD3.USD","d":[]},{"s":"HONEYSWAP:STKAGVEWXDAI_08C9B2","d":[]},{"s":"PANCAKESWAP:1AMDWBNB_EB821D","d":[]},{"s":"OKX:LPTUSDT","d":[]},{"s":"PANCAKESWAP:KEYWBNB_930361","d":[]},{"s":"PANCAKESWAP:POOLZWBNB_77214C.USD","d":[]},{"s":"PANCAKESWAP:ABBWBNB_19F7CC.USD","d":[]},{"s":"SUSHISWAP:STZTOWER_40F513","d":[]},{"s":"BINANCE:GALUSDT.P","d":[]},{"s":"KUCOIN:INSPUSDT","d":[]},{"s":"PANCAKESWAP:KLINGBUSD_94433C","d":[]},{"s":"PANCAKESWAP:HAPIHAI_063AA8.USD","d":[]},{"s":"KUCOIN:USDDUSDC","d":[]},{"s":"PANCAKESWAP:DDWBNB_266B7F.USD","d":[]},{"s":"PANCAKESWAP:WROSETHOREUM_A188BF.USD","d":[]},{"s":"HONEYSWAP:STAKEWXDAI_1AF298.USD","d":[]},{"s":"PANCAKESWAP:MQSTBUSD_C19986","d":[]},{"s":"HONEYSWAP:PSPGNO_F63494","d":[]},{"s":"PANCAKESWAP:HAMCHEESE_05714F.USD","d":[]},{"s":"SUSHISWAP:COMPWETH_31503D.USD","d":[]},{"s":"PANCAKESWAP:QUONWBNB_140303","d":[]},{"s":"PANCAKESWAP:PENGUINUSDT_1F4505","d":[]},{"s":"BINANCE:AAVEUSDT.P","d":[]},{"s":"PANCAKESWAP:DISNEYWBNB_22134B","d":[]},{"s":"PANCAKESWAP:KALIWBNB_980357","d":[]},{"s":"PANCAKESWAP:ROYALEWBNB_022D84","d":[]},{"s":"PANCAKESWAP:SHIDOWBNB_D0A167.USD","d":[]},{"s":"PANCAKESWAP:GLONWBNB_39C214.USD","d":[]},{"s":"PANCAKESWAP:LOLWBNB_90D3AA","d":[]},{"s":"UPBIT:PSGBTC","d":[]},{"s":"PANCAKESWAP:BNBKINGWBNB_EBF9AA","d":[]},{"s":"PANCAKESWAP:LADYSWBNB_48ED4C.USD","d":[]},{"s":"KUCOIN:ODDZUSDT","d":[]},{"s":"BINANCE:RDNTUSDT.P","d":[]},{"s":"KUCOIN:MANAUSDT","d":[]},{"s":"PANCAKESWAP:JIANGNANYIWBNB_A145E9.USD","d":[]},{"s":"PANCAKESWAP:LINKWBNB_AEBE45","d":[]},{"s":"KUCOIN:PEPE2USDT","d":[]},{"s":"KUCOIN:XETAUSDT","d":[]},{"s":"PANCAKESWAP:BRIUMWBNB_7EA69A","d":[]},{"s":"KUCOIN:BBLUSDT","d":[]},{"s":"PANCAKESWAP:BGSWBNB_9DA8F4.USD","d":[]},{"s":"KUCOIN:ARUSDT","d":[]},{"s":"PANCAKESWAP:DAUSDT_8228A2","d":[]},{"s":"BINANCE:JOEUSD","d":[]},{"s":"PANCAKESWAP:PIUSDT_411922","d":[]},{"s":"PANCAKESWAP:OASISWBNB_A487E0","d":[]},{"s":"PANCAKESWAP:CO2USDT_D5407B","d":[]},{"s":"PANCAKESWAP:PPTWBNB_8A7839","d":[]},{"s":"BINANCE:BCHUSD","d":[]},{"s":"HONEYSWAP:MUSDDAI_A5BE61","d":[]},{"s":"SUSHISWAP:NFTXWETH_31D64F.USD","d":[]},{"s":"PANCAKESWAP:VOLTWBNB_3C577A","d":[]},{"s":"OKX:BONEUSDT","d":[]},{"s":"SUSHISWAP:TORNWETH_B27017","d":[]},{"s":"KUCOIN:WENUSDT","d":[]},{"s":"PANCAKESWAP:RTTWBNB_E5E760","d":[]},{"s":"KUCOIN:PMGUSDT","d":[]},{"s":"PANCAKESWAP:IHCWBNB_639469","d":[]},{"s":"BINANCE:BETAUSD","d":[]},{"s":"PANCAKESWAP:ESWBNB_72B9C5","d":[]},{"s":"PANCAKESWAP:LBUSDT_594305","d":[]},{"s":"OKX:DOGEUSDT","d":[]},{"s":"PANCAKESWAP:TRIPLEWBNB_45FDF1","d":[]},{"s":"PANCAKESWAP:CLUNAWBNB_B3D9F9","d":[]},{"s":"PANCAKESWAP:DZDUSDT_9F8434","d":[]},{"s":"PANCAKESWAP:OPTIMOUSEWBNB_8D5BC8","d":[]},{"s":"PANCAKESWAP:BIRBWBNB_B41B9A.USD","d":[]},{"s":"PANCAKESWAP:MRBEASTWBNB_3F36DC","d":[]},{"s":"PANCAKESWAP:PPUSDT_44A3DB","d":[]},{"s":"HONEYSWAP:HNYHAUS_9D6915","d":[]},{"s":"PANCAKESWAP:MARUWBNB_EE8F63","d":[]},{"s":"PANCAKESWAP:LTRBTWBNB_18BB14.USD","d":[]},{"s":"KUCOIN:REEFUSDT","d":[]},{"s":"PANCAKESWAP:BEACHWBNB_62B306","d":[]},{"s":"SUSHISWAP:SIWETH_30045A.USD","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_35D784.USD","d":[]},{"s":"HONEYSWAP:COLDHNY_159EB4.USD","d":[]},{"s":"PANCAKESWAP:PWRBUSD_3B6DC6","d":[]},{"s":"PANCAKESWAP:MIZUNUSDT_3E26ED","d":[]},{"s":"PANCAKESWAP:NEXWBNB_E9A97F","d":[]},{"s":"PANCAKESWAP:MKFWBNB_522010","d":[]},{"s":"PANCAKESWAP:UABWBNB_EF03EB","d":[]},{"s":"BINANCE:COMPUSD","d":[]},{"s":"KUCOIN:AKROBTC","d":[]},{"s":"HONEYSWAP:GIVGNO_5AA67E.USD","d":[]},{"s":"PANCAKESWAP:HYSSWBNB_CA1CF7.USD","d":[]},{"s":"PANCAKESWAP:VINUUSDT_76944C","d":[]},{"s":"OKX:VELOUSDT","d":[]},{"s":"PANCAKESWAP:FBOXWBNB_95DE02.USD","d":[]},{"s":"HONEYSWAP:HNYDXD_14C4F5","d":[]},{"s":"SUSHISWAP:PLRWETH_8FEDCA","d":[]},{"s":"PANCAKESWAP:TRIVIAWBNB_EF642C.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_8C1334","d":[]},{"s":"PANCAKESWAP:FIREWBNB_DD7145.USD","d":[]},{"s":"PANCAKESWAP:CLOUDWBNB_A91431","d":[]},{"s":"PANCAKESWAP:PORWBNB_D34ACA","d":[]},{"s":"PANCAKESWAP:CXDOWBNB_0E0E21","d":[]},{"s":"PANCAKESWAP:SPEPEWBNB_7F9800.USD","d":[]},{"s":"PANCAKESWAP:LIQETH_E9B662.USD","d":[]},{"s":"SUSHISWAPPOLYGON:AURUMUSDC_ABEE76","d":[]},{"s":"OKX:TAMAUSDT","d":[]},{"s":"PANCAKESWAP:ASHWBNB_D13C75.USD","d":[]},{"s":"KUCOIN:BNBUSDT","d":[]},{"s":"SUSHISWAP:DOGWETH_C96F20.USD","d":[]},{"s":"KUCOIN:GEMUSDT","d":[]},{"s":"PANCAKESWAP:YFIWBNB_704DF7.USD","d":[]},{"s":"PANCAKESWAP:LNTWBNB_323078.USD","d":[]},{"s":"PANCAKESWAP:LIQINDAOWBNB_C5941A.USD","d":[]},{"s":"HONEYSWAP:HEXWETH_7C6A19.USD","d":[]},{"s":"UPBIT:LOOMBTC","d":[]},{"s":"PANCAKESWAP:WATCHWBNB_13321A","d":[]},{"s":"PANCAKESWAP:RRSQUSDT_3B8B50","d":[]},{"s":"PANCAKESWAP:BSCXWBNB_20781B","d":[]},{"s":"HONEYSWAP:GIVGNO_5AA67E","d":[]},{"s":"PANCAKESWAP:4MWWBNB_C9A275.USD","d":[]},{"s":"PANCAKESWAP:KBCUSDT_1467CB","d":[]},{"s":"BINANCE:FILUSD","d":[]},{"s":"SUSHISWAPPOLYGON:PYQUSDC_D3924A","d":[]},{"s":"PANCAKESWAP:XWINWBNB_D4A3DC","d":[]},{"s":"PANCAKESWAP:ECTUSDT_FFE8CA","d":[]},{"s":"PANCAKESWAP:PIGGYWBNB_0AABD0","d":[]},{"s":"PANCAKESWAP:BTTWBNB_946696","d":[]},{"s":"PANCAKESWAP:HUNNYWBNB_361181.USD","d":[]},{"s":"PANCAKESWAP:DIMEIPIAO_9917E1.USD","d":[]},{"s":"HONEYSWAP:DIGGHNY_F6B37E.USD","d":[]},{"s":"OKX:1INCHUSDT","d":[]},{"s":"PANCAKESWAP:BTCBWSHIB_306F8D","d":[]},{"s":"HONEYSWAP:USDTDAI_94E388","d":[]},{"s":"PANCAKESWAP:BTNBUSDT_6F2F8F","d":[]},{"s":"PANCAKESWAP:JCWBNB_63AB51.USD","d":[]},{"s":"PANCAKESWAP:DEXWBNB_01B279.USD","d":[]},{"s":"BINANCE:HFTUSDT.P","d":[]},{"s":"KUCOIN:TOWERUSDT","d":[]},{"s":"BINANCE:IDEXUSD","d":[]},{"s":"PANCAKESWAP:FLOKIBURNWBNB_ED8EFB","d":[]},{"s":"PANCAKESWAP:PANDORAFLOKIWBNB_13B96F.USD","d":[]},{"s":"PANCAKESWAP:APCWBNB_20FA99","d":[]},{"s":"PANCAKESWAP:KOLNMT_6EBFF1.USD","d":[]},{"s":"PANCAKESWAP:MEMUSDT_B2DA3D","d":[]},{"s":"SUSHISWAPPOLYGON:FOXWETH_93EF61.USD","d":[]},{"s":"PANCAKESWAP:GROKWBNB_683323.USD","d":[]},{"s":"PANCAKESWAP:LUCAWBNB_46B30D.USD","d":[]},{"s":"PANCAKESWAP:BEASTWBNB_08BC50","d":[]},{"s":"HONEYSWAP:AMISDAI_EF5167","d":[]},{"s":"KUCOIN:QRDOUSDT","d":[]},{"s":"PANCAKESWAP:MAIWBNB_5AC5F3.USD","d":[]},{"s":"PANCAKESWAP:PESWBNB_BC6F94","d":[]},{"s":"SUSHISWAP:XSUSHIWETH_36E2FC.USD","d":[]},{"s":"KUCOIN:CGPTUSDT","d":[]},{"s":"HONEYSWAP:SBCWETH_6CFA43.USD","d":[]},{"s":"PANCAKESWAP:GEMSWBNB_5A9338.USD","d":[]},{"s":"PANCAKESWAP:MATICPADWBNB_817EDB","d":[]},{"s":"PANCAKESWAP:ATTUSDT_37F1DC","d":[]},{"s":"PANCAKESWAP:MAYAXUSDT_F2E1D9","d":[]},{"s":"UPBIT:POWRBTC","d":[]},{"s":"PANCAKESWAP:WEB2WBNB_AB416E.USD","d":[]},{"s":"PANCAKESWAP:RAKEWBNB_39F1FB","d":[]},{"s":"PANCAKESWAP:BTHWBNB_11F2D3.USD","d":[]},{"s":"PANCAKESWAP:AIMEMEUSDT_67C14A","d":[]},{"s":"BINANCE:SOLUSDC.P","d":[]},{"s":"SUSHISWAP:DDXUSDC_C2B0F2","d":[]},{"s":"PANCAKESWAP:INDCWBNB_6F5FDE.USD","d":[]},{"s":"PANCAKESWAP:PCGWBNB_1229E3.USD","d":[]},{"s":"KUCOIN:NEARUSDT.3L","d":[]},{"s":"PANCAKESWAP:FATHOMWBNB_2ADCDA.USD","d":[]},{"s":"KUCOIN:DEGOUSDT","d":[]},{"s":"KUCOIN:FLOWBTC","d":[]},{"s":"PANCAKESWAP:CCUSDT_6FD698","d":[]},{"s":"PANCAKESWAP:DMOONWBNB_3A7FF6.USD","d":[]},{"s":"PANCAKESWAP:WBNBBUSD_58F876","d":[]},{"s":"PANCAKESWAP:BWJUPWBNB_30C35B.USD","d":[]},{"s":"PANCAKESWAP:ZOONWBNB_5407D6","d":[]},{"s":"PANCAKESWAP:HASHDEXWBNB_13D708","d":[]},{"s":"UPBIT:ORBSBTC","d":[]},{"s":"PANCAKESWAP:VUZZWBNB_DAE9E5","d":[]},{"s":"PANCAKESWAP:UFIHAI_8666B2","d":[]},{"s":"KUCOIN:LUNAUSDT","d":[]},{"s":"PANCAKESWAP:CUBBHBD_93C52E","d":[]},{"s":"SUSHISWAP:BLOCKSWETH_DD5112","d":[]},{"s":"PANCAKESWAP:ALIUSDT_F6989E","d":[]},{"s":"PANCAKESWAP:XWBNB_529F56.USD","d":[]},{"s":"PANCAKESWAP:LOFIBUSD_2ECA24","d":[]},{"s":"PANCAKESWAP:MOABWBNB_A15E5D.USD","d":[]},{"s":"PANCAKESWAP:QLUSDT_FA38B8","d":[]},{"s":"BINANCE:DREPUSD","d":[]},{"s":"PANCAKESWAP:PEXWBNB_CBCF65.USD","d":[]},{"s":"PANCAKESWAP:ALYWBNB_36CDF4","d":[]},{"s":"KUCOIN:GFTUSDT","d":[]},{"s":"PANCAKESWAP:BUCKWBNB_28F6F5.USD","d":[]},{"s":"PANCAKESWAP:MAIWBNB_5AC5F3","d":[]},{"s":"KUCOIN:XRPBTC","d":[]},{"s":"PANCAKESWAP:WSAFUWBNB_075C77","d":[]},{"s":"PANCAKESWAP:WEBOOWBNB_E2F1BF","d":[]},{"s":"PANCAKESWAP:STARSHIPWBNB_0FFD12","d":[]},{"s":"PANCAKESWAP:APEXWBNB_7A0F0F.USD","d":[]},{"s":"HONEYSWAP:AGVEUSDC_692EE4","d":[]},{"s":"PANCAKESWAP:DMOONWBNB_3A7FF6","d":[]},{"s":"PANCAKESWAP:RJVWBNB_03AFA7","d":[]},{"s":"KUCOIN:NKNUSDT","d":[]},{"s":"PANCAKESWAP:MATICWBNB_5ACB99.USD","d":[]},{"s":"PANCAKESWAP:NEKOWBNB_202925","d":[]},{"s":"BINANCE:BLZUSD","d":[]},{"s":"HONEYSWAP:USDPWXDAI_568535","d":[]},{"s":"PANCAKESWAP:OGUSDT_2106CB","d":[]},{"s":"PANCAKESWAP:IDTTWBNB_846C8F","d":[]},{"s":"PANCAKESWAP:XEPBUSD_0A219C","d":[]},{"s":"PANCAKESWAP:CHIMWBNB_BEF459.USD","d":[]},{"s":"PANCAKESWAP:THINGWBNB_0534AB","d":[]},{"s":"PANCAKESWAP:SHIBAIWBNB_78035F","d":[]},{"s":"PANCAKESWAP:DIFIWBNB_DEB7DE","d":[]},{"s":"PANCAKESWAP:KABOSUWBNB_ADF337.USD","d":[]},{"s":"OKX:ETHUSDC22H2024","d":[]},{"s":"PANCAKESWAP:COAEWBNB_25299C","d":[]},{"s":"PANCAKESWAP:GLCHWBNB_CC4D5F","d":[]},{"s":"PANCAKESWAP:PKRWBNB_0D6CAE","d":[]},{"s":"PANCAKESWAP:SOMWBNB_C0394D","d":[]},{"s":"PANCAKESWAP:PIGINUWBNB_ADDCEB","d":[]},{"s":"PANCAKESWAP:MTXWBNB_A4F906.USD","d":[]},{"s":"PANCAKESWAP:LITWBNB_1F37D4.USD","d":[]},{"s":"PANCAKESWAP:SVUSDT_4AA604","d":[]},{"s":"KUCOIN:RMRKUSDT","d":[]},{"s":"SUSHISWAP:BENJIREVV_7B2024","d":[]},{"s":"PANCAKESWAP:KAFGYINGHANABC_437623","d":[]},{"s":"PANCAKESWAP:MUUWBNB_16B624","d":[]},{"s":"PANCAKESWAP:WEBAIWBNB_1D643D.USD","d":[]},{"s":"PANCAKESWAP:SOLOWBNB_F4796D","d":[]},{"s":"PANCAKESWAP:CRYPTOPESOSWBNB_6C7336.USD","d":[]},{"s":"PANCAKESWAP:LIZUSDT_52C400","d":[]},{"s":"PANCAKESWAP:KINDERINUWBNB_C0D1B2.USD","d":[]},{"s":"KUCOIN:SHIBDOGE","d":[]},{"s":"PANCAKESWAP:SHDOGFIBOPOLY_557601","d":[]},{"s":"PANCAKESWAP:BLXMUSDC_3DB1BA","d":[]},{"s":"PANCAKESWAP:FRZWBNB_81E356","d":[]},{"s":"PANCAKESWAP:SUPERUSDT_778FDE","d":[]},{"s":"PANCAKESWAP:PEACEUSDT_4B3B5B","d":[]},{"s":"PANCAKESWAP:MEMUSDT_2194CF","d":[]},{"s":"PANCAKESWAP:GMWBNB_83895B.USD","d":[]},{"s":"PANCAKESWAP:MCCUSDT_60ABF2","d":[]},{"s":"PANCAKESWAP:BITTWBNB_C8B100.USD","d":[]},{"s":"PANCAKESWAP:JGUSDT_8788DE","d":[]},{"s":"PANCAKESWAP:BNXBUSD_ED1C8B","d":[]},{"s":"PANCAKESWAP:BTDAOUSDT_AE6F43","d":[]},{"s":"PANCAKESWAP:ETHBTCB_7380E1","d":[]},{"s":"PANCAKESWAP:PINKIEWBNB_E94241.USD","d":[]},{"s":"PANCAKESWAP:BJSNUSDT_4E6FC6","d":[]},{"s":"PANCAKESWAP:GLORYWBNB_FEB4C1.USD","d":[]},{"s":"PANCAKESWAP:LOMWBNB_3CC62B.USD","d":[]},{"s":"PANCAKESWAP:AIWALLETWBNB_8E4573","d":[]},{"s":"OKX:ETHUSDC28M2024","d":[]},{"s":"KUCOIN:CPOOLUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:WBTCWETH_E62EC2","d":[]},{"s":"SUSHISWAPPOLYGON:PUSDUSDC_C30D6B","d":[]},{"s":"PANCAKESWAP:PAIDWBNB_4E8D14","d":[]},{"s":"HONEYSWAP:FOXWXDAI_C22313","d":[]},{"s":"PANCAKESWAP:ORIONBUSD_F468C9","d":[]},{"s":"PANCAKESWAP:AZYBUSD_83D7BF","d":[]},{"s":"PANCAKESWAP:GOCWBNB_1306AD.USD","d":[]},{"s":"PANCAKESWAP:AIOZTHOREUM_C22707","d":[]},{"s":"KUCOIN:WANETH","d":[]},{"s":"PANCAKESWAP:DFIBUSD_E7B18D","d":[]},{"s":"PANCAKESWAP:BIBWBNB_B9F28E","d":[]},{"s":"PANCAKESWAP:GAMESBUSD_205D59","d":[]},{"s":"PANCAKESWAP:STELIAWBNB_EBB9BB.USD","d":[]},{"s":"PANCAKESWAP:DAYAOWBNB_A017D4","d":[]},{"s":"PANCAKESWAP:IHUBWBNB_B2264E.USD","d":[]},{"s":"PANCAKESWAP:BHCWBNB_851DB0.USD","d":[]},{"s":"PANCAKESWAP:NXWBNB_769AB8","d":[]},{"s":"SUSHISWAP:PLAYDOUGH_AF491D.USD","d":[]},{"s":"KUCOIN:ACSUSDT","d":[]},{"s":"PANCAKESWAP:MTMWBNB_C1A0CF.USD","d":[]},{"s":"PANCAKESWAP:STARWBNB_F95010","d":[]},{"s":"HONEYSWAP:DONUTHNY_5A385B.USD","d":[]},{"s":"SUSHISWAP:VRNWETH_88024D","d":[]},{"s":"PANCAKESWAP:COCAWBNB_17AE76","d":[]},{"s":"PANCAKESWAP:HODLWBNB_F96B0D.USD","d":[]},{"s":"BINANCE:FLOWUSD","d":[]},{"s":"PANCAKESWAP:DOJOWBNB_37CC6A.USD","d":[]},{"s":"HONEYSWAP:DEXPHNY_002B85","d":[]},{"s":"BINANCE:MOVRUSD","d":[]},{"s":"BINANCE:RADUSDT.P","d":[]},{"s":"PANCAKESWAP:GRABUSD_875A46","d":[]},{"s":"PANCAKESWAP:EGAWBNB_535B24.USD","d":[]},{"s":"PANCAKESWAP:AMXUSDT_2B78F8","d":[]},{"s":"PANCAKESWAP:SENSIWBNB_BC7F6D.USD","d":[]},{"s":"PANCAKESWAP:BHBDBUSD_8B97F5","d":[]},{"s":"PANCAKESWAP:DREAMWBNB_9FC74D.USD","d":[]},{"s":"HONEYSWAP:AAHWETH_2C2B72.USD","d":[]},{"s":"PANCAKESWAP:HASHUSDT_76B0E0","d":[]},{"s":"PANCAKESWAP:GRVWBNB_96FEF7.USD","d":[]},{"s":"PANCAKESWAP:NEXWBNB_E9A97F.USD","d":[]},{"s":"PANCAKESWAP:VMTWBNB_659303","d":[]},{"s":"PANCAKESWAP:MATUSDT_5496D6","d":[]},{"s":"PANCAKESWAP:ONEWBNB_9745CF","d":[]},{"s":"PANCAKESWAP:SPACEPIWBNB_A73AD8","d":[]},{"s":"PANCAKESWAP:PS1WBNB_41138B","d":[]},{"s":"PANCAKESWAP:NXBTCX_CC855F","d":[]},{"s":"PANCAKESWAP:NASSRWBNB_072A96.USD","d":[]},{"s":"PANCAKESWAP:AIWBNB_BACBEA.USD","d":[]},{"s":"SUSHISWAPPOLYGON:POLYCUBUSDC_5AEFD5","d":[]},{"s":"PANCAKESWAP:BTCBETE_D0F48B.USD","d":[]},{"s":"PANCAKESWAP:ADAOWBNB_0475E8","d":[]},{"s":"PANCAKESWAP:PFTWBNB_34DB3E.USD","d":[]},{"s":"KUCOIN:ERNUSDT","d":[]},{"s":"SUSHISWAP:REMIOWETH_D6931C.USD","d":[]},{"s":"PANCAKESWAP:CADINUWBNB_FED93C","d":[]},{"s":"SUSHISWAPPOLYGON:RAIDERWETH_426A56.USD","d":[]},{"s":"HONEYSWAP:MRWXDAI_25343E.USD","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_2EDD45.USD","d":[]},{"s":"SUSHISWAP:SQGLWETH_698ABB.USD","d":[]},{"s":"PANCAKESWAP:SMNUSDT_0EBE86","d":[]},{"s":"PANCAKESWAP:SANTOSWBNB_06043B","d":[]},{"s":"PANCAKESWAP:MUSKDRAGONWBNB_588C46.USD","d":[]},{"s":"PANCAKESWAP:MBASWBNB_AB936B.USD","d":[]},{"s":"PANCAKESWAP:NEXTBUSD_234503","d":[]},{"s":"PANCAKESWAP:WNDWBNB_88919C.USD","d":[]},{"s":"PANCAKESWAP:GYMNETWBNB_F5D3CB.USD","d":[]},{"s":"PANCAKESWAP:SHENHUAWBNB_3AF47A.USD","d":[]},{"s":"PANCAKESWAP:RCHBUSD_8869FA","d":[]},{"s":"PANCAKESWAP:NLINKWBNB_562459.USD","d":[]},{"s":"PANCAKESWAP:BCOINWBNB_2EEBE0","d":[]},{"s":"SUSHISWAP:MKRWETH_BA13AF","d":[]},{"s":"SUSHISWAP:SATAWETH_1976BF","d":[]},{"s":"KUCOIN:DGBBTC","d":[]},{"s":"PANCAKESWAP:PANDAUSDT_879A0B","d":[]},{"s":"PANCAKESWAP:CPUSDT_6FE69C","d":[]},{"s":"PANCAKESWAP:KALMBTCB_7F10B4","d":[]},{"s":"PANCAKESWAP:KMLWBNB_20593A.USD","d":[]},{"s":"PANCAKESWAP:KLUVWBNB_BD2154","d":[]},{"s":"KUCOIN:AMPLUSDT","d":[]},{"s":"BINANCE:LOOMUSD","d":[]},{"s":"BINANCE:1000PEPEUSDT.P","d":[]},{"s":"PANCAKESWAP:ETHMORNINGSTAR_0440DE","d":[]},{"s":"PANCAKESWAP:XMSWBNB_BC7E92","d":[]},{"s":"PANCAKESWAP:QUCCUSDT_377199","d":[]},{"s":"PANCAKESWAP:RAINIWBNB_165C19.USD","d":[]},{"s":"PANCAKESWAP:HEARIFYAIWBNB_2415FF.USD","d":[]},{"s":"KUCOIN:ICXETH","d":[]},{"s":"PANCAKESWAP:TOHOLDWBNB_00DD59.USD","d":[]},{"s":"PANCAKESWAP:WLCWBNB_F07E48","d":[]},{"s":"PANCAKESWAP:PUSSWBNB_0E10EA","d":[]},{"s":"PANCAKESWAP:BUCKWBNB_28F6F5","d":[]},{"s":"PANCAKESWAP:PIPIWBNB_E101EF","d":[]},{"s":"PANCAKESWAP:KALMBTCB_7F10B4.USD","d":[]},{"s":"PANCAKESWAP:LIBUSDT_EF4461","d":[]},{"s":"HONEYSWAP:AMISUSDC_C68DF7","d":[]},{"s":"BINANCE:ARKMUSDT.P","d":[]},{"s":"PANCAKESWAP:EUSWBNB_CBD672","d":[]},{"s":"PANCAKESWAP:NEURONWBNB_D5E701","d":[]},{"s":"PANCAKESWAP:SHIBOTWBNB_90F453","d":[]},{"s":"PANCAKESWAP:TRUWBNB_C2F848","d":[]},{"s":"UPBIT:BORABTC","d":[]},{"s":"PANCAKESWAP:ASXETH_A97560","d":[]},{"s":"PANCAKESWAP:METTWBNB_855DD3.USD","d":[]},{"s":"PANCAKESWAP:LIOWBNB_636AD6","d":[]},{"s":"PANCAKESWAP:CHDUSDT_C45441","d":[]},{"s":"PANCAKESWAP:CORGIWBNB_205FE8","d":[]},{"s":"SUSHISWAP:YFIWETH_088EE5","d":[]},{"s":"PANCAKESWAP:GEMWBNB_8947C3","d":[]},{"s":"PANCAKESWAP:FRGSTWBNB_3CCEF3.USD","d":[]},{"s":"OKX:LQTYUSDT","d":[]},{"s":"PANCAKESWAP:LINKTHOREUM_7F3FC4","d":[]},{"s":"PANCAKESWAP:JMPTUSDT_BA6F75","d":[]},{"s":"SUSHISWAP:PWINGWETH_BE1E98.USD","d":[]},{"s":"OKX:REVVUSDT","d":[]},{"s":"KUCOIN:HIFLUFUSDT","d":[]},{"s":"PANCAKESWAP:SUBBUSD_C6064A","d":[]},{"s":"PANCAKESWAP:BOJACKWBNB_0F520C","d":[]},{"s":"PANCAKESWAP:AICRUSDT_AA3920","d":[]},{"s":"SUSHISWAP:SDEXUSDT_C20E6F","d":[]},{"s":"PANCAKESWAP:ULAMUSDT_8EF2DC","d":[]},{"s":"KUCOIN:WBTCBTC","d":[]},{"s":"PANCAKESWAP:SOLEUSDT_356C2C","d":[]},{"s":"PANCAKESWAP:KPADWBNB_B88C2D.USD","d":[]},{"s":"PANCAKESWAP:ARKNWBNB_9B1C23","d":[]},{"s":"PANCAKESWAP:HDOGEWBNB_3CE7B9.USD","d":[]},{"s":"PANCAKESWAP:CENXWBNB_393170","d":[]},{"s":"PANCAKESWAP:APEBUSD_3E0513","d":[]},{"s":"PANCAKESWAP:GOFWBNB_E412BB.USD","d":[]},{"s":"PANCAKESWAP:KRIPTONITDTINTRAST_1497DA.USD","d":[]},{"s":"KUCOIN:HIGHETH","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_9C2B3B.USD","d":[]},{"s":"PANCAKESWAP:UWBNB_4804D1","d":[]},{"s":"PANCAKESWAP:MUDIMEI_15D876","d":[]},{"s":"PANCAKESWAP:BTUUSDT_C1A500","d":[]},{"s":"PANCAKESWAP:BSCCWBNB_6C331B","d":[]},{"s":"PANCAKESWAP:DOMWBNB_6922E6.USD","d":[]},{"s":"PANCAKESWAP:AMESBUSD_81722A","d":[]},{"s":"PANCAKESWAP:REAUWBNB_7CC956","d":[]},{"s":"PANCAKESWAP:ARORWBNB_08C466","d":[]},{"s":"PANCAKESWAP:DODWBNB_AC7F3D","d":[]},{"s":"PANCAKESWAP:CBKUSDT_D8F303","d":[]},{"s":"PANCAKESWAP:NBFUSDT_65E607","d":[]},{"s":"BINANCE:SUIUSD","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_A24CF5.USD","d":[]},{"s":"HONEYSWAP:FOXGIV_75594F.USD","d":[]},{"s":"PANCAKESWAP:BENEVOLENTWBNB_02E9DF","d":[]},{"s":"PANCAKESWAP:TYGWBNB_20687D","d":[]},{"s":"PANCAKESWAP:SHIHTZUWBNB_7052AD.USD","d":[]},{"s":"PANCAKESWAP:MANIAWBNB_861269.USD","d":[]},{"s":"PANCAKESWAP:ABNWBNB_BA064F.USD","d":[]},{"s":"PANCAKESWAP:ELOINWBNB_A08CDD.USD","d":[]},{"s":"KUCOIN:BTCDAI","d":[]},{"s":"PANCAKESWAP:AGCUSDT_E3EFAC","d":[]},{"s":"PANCAKESWAP:ELENUSDC_907B59","d":[]},{"s":"PANCAKESWAP:CROGEWBNB_47E541.USD","d":[]},{"s":"PANCAKESWAP:SGTWBNB_AE7DB8.USD","d":[]},{"s":"KUCOIN:DERCUSDT","d":[]},{"s":"OKX:METISUSDT","d":[]},{"s":"PANCAKESWAP:FAMWBNB_9804FC.USD","d":[]},{"s":"PANCAKESWAP:BISTWBNB_EF156F","d":[]},{"s":"PANCAKESWAP:WPWBNB_B79E09","d":[]},{"s":"PANCAKESWAP:YESWBNB_6FC052","d":[]},{"s":"PANCAKESWAP:DAXEUSDT_B5D9B6","d":[]},{"s":"PANCAKESWAP:LEZWBNB_C7B911.USD","d":[]},{"s":"PANCAKESWAP:SHINEWBNB_1C0553.USD","d":[]},{"s":"KUCOIN:AUCTIONUSDT","d":[]},{"s":"PANCAKESWAP:CMCXUSDT_86AD4D","d":[]},{"s":"PANCAKESWAP:FRAWBNB_93F0D7","d":[]},{"s":"PANCAKESWAP:LONGBAOBAOWBNB_3D2173","d":[]},{"s":"PANCAKESWAP:2049WBNB_BE8DC5.USD","d":[]},{"s":"OKX:LINKUSDT","d":[]},{"s":"PANCAKESWAP:KGTXWBNB_8BC832.USD","d":[]},{"s":"HONEYSWAP:DATAWXDAI_0110F0.USD","d":[]},{"s":"PANCAKESWAP:CAKEBUSD_0ED8E0","d":[]},{"s":"PANCAKESWAP:THOREUMWBNB_3BBC26.USD","d":[]},{"s":"PANCAKESWAP:WDDUSDT_7EAE10","d":[]},{"s":"PANCAKESWAP:TOKOWBNB_E789C8.USD","d":[]},{"s":"PANCAKESWAP:QOPROWBNB_D7D52D.USD","d":[]},{"s":"PANCAKESWAP:INFINITYUSDT_1C1C72","d":[]},{"s":"PANCAKESWAP:DRACEBUSD_D4FAED","d":[]},{"s":"PANCAKESWAP:MVCWBNB_6D686C","d":[]},{"s":"PANCAKESWAP:AUTOWBNB_5657CA","d":[]},{"s":"UPBIT:PROMBTC","d":[]},{"s":"PANCAKESWAP:NYFWBNB_3AC6FA.USD","d":[]},{"s":"SUSHISWAP:PHUNKWETH_D3E31F","d":[]},{"s":"PANCAKESWAP:BEFEWBNB_D8A8F6","d":[]},{"s":"PANCAKESWAP:MMRUSDT_97012A","d":[]},{"s":"PANCAKESWAP:RBETWBNB_A18506.USD","d":[]},{"s":"PANCAKESWAP:BNBPWBNB_4C736D.USD","d":[]},{"s":"PANCAKESWAP:HDDWBNB_7635F1","d":[]},{"s":"PANCAKESWAP:FASTUSDC_6FBB58","d":[]},{"s":"PANCAKESWAP:COOKWBNB_48E29C","d":[]},{"s":"BINANCE:HFTUSD","d":[]},{"s":"PANCAKESWAP:CDOGEWBNB_42B717.USD","d":[]},{"s":"PANCAKESWAP:MOSUSDT_5D9837","d":[]},{"s":"PANCAKESWAP:LPIWBNB_625BC7","d":[]},{"s":"PANCAKESWAP:HOTCROSSWBNB_F23BAD.USD","d":[]},{"s":"SUSHISWAPPOLYGON:ZROWMATIC_CF63FC","d":[]},{"s":"OKX:TUPUSDT","d":[]},{"s":"PANCAKESWAP:VNLAWBNB_994743.USD","d":[]},{"s":"SUSHISWAP:BTC2XFLIWBTC_164FE0.USD","d":[]},{"s":"PANCAKESWAP:ZYBUSDT_C53893","d":[]},{"s":"PANCAKESWAP:DOGOUSDT_38275E","d":[]},{"s":"PANCAKESWAP:MFURIEWBNB_E0A664","d":[]},{"s":"PANCAKESWAP:MONXBUSD_15810F","d":[]},{"s":"KUCOIN:FLOWUSDT","d":[]},{"s":"PANCAKESWAP:VFOXWBNB_E16EFD.USD","d":[]},{"s":"PANCAKESWAP:FLONGWBNB_0B2E52.USD","d":[]},{"s":"PANCAKESWAP:MEPADWBNB_FA180F.USD","d":[]},{"s":"PANCAKESWAP:ASTARBUSD_4F2BE5","d":[]},{"s":"PANCAKESWAP:CHHWBNB_94CE65.USD","d":[]},{"s":"PANCAKESWAP:AISUPERWALLETWBNB_6147CF","d":[]},{"s":"PANCAKESWAP:HUTWBNB_A5173F","d":[]},{"s":"PANCAKESWAP:DEMONRCM_AC7F49","d":[]},{"s":"PANCAKESWAP:INDIAWBNB_139722","d":[]},{"s":"PANCAKESWAP:SOKUWBNB_78EA31.USD","d":[]},{"s":"KUCOIN:AXSUSDT.3L","d":[]},{"s":"BINANCE:UMAUSDT.P","d":[]},{"s":"HONEYSWAP:FRWXDAI_46A27B","d":[]},{"s":"KUCOIN:RACAUSDT","d":[]},{"s":"OKX:AIDOGEUSDT","d":[]},{"s":"UPBIT:NAPBTC","d":[]},{"s":"BINANCE:ORNUSD","d":[]},{"s":"PANCAKESWAP:ONEWBNB_9D2296.USD","d":[]},{"s":"PANCAKESWAP:WAGWBNB_C5E126","d":[]},{"s":"PANCAKESWAP:B69189WBNB_89D459.USD","d":[]},{"s":"PANCAKESWAP:STUARTWBNB_B950C1","d":[]},{"s":"PANCAKESWAP:EDOGEWBNB_13CAE0","d":[]},{"s":"PANCAKESWAP:ECPWBNB_0E2C2F","d":[]},{"s":"KUCOIN:NFTTRX","d":[]},{"s":"HONEYSWAP:XMOONAGVE_D79784","d":[]},{"s":"PANCAKESWAP:LUSDUSDT_A95238","d":[]},{"s":"PANCAKESWAP:VPPWBNB_AA59B0","d":[]},{"s":"PANCAKESWAP:371F57WBNB_619535.USD","d":[]},{"s":"PANCAKESWAP:INSPWBNB_705D65.USD","d":[]},{"s":"PANCAKESWAP:BULLBUSDT_8AC04D","d":[]},{"s":"PANCAKESWAP:KAVAWBNB_C993AC.USD","d":[]},{"s":"PANCAKESWAP:JOEYWBNB_241391.USD","d":[]},{"s":"KUCOIN:LPOOLBTC","d":[]},{"s":"PANCAKESWAP:COINSALEWBNB_A3B23C.USD","d":[]},{"s":"SUSHISWAPPOLYGON:USDTUSDC_4B1F1E","d":[]},{"s":"BINANCE:XLMUSD","d":[]},{"s":"PANCAKESWAP:SPATBUSD_FC4F57","d":[]},{"s":"KUCOIN:PAXGUSDT","d":[]},{"s":"SUSHISWAP:REVVPROS_821808","d":[]},{"s":"SUSHISWAP:YGGWETH_99B42F.USD","d":[]},{"s":"PANCAKESWAP:ETHSTRAC_A88AF4","d":[]},{"s":"PANCAKESWAP:SCOTTYWBNB_F3A319","d":[]},{"s":"HONEYSWAP:WCHIWXDAI_4E6226.USD","d":[]},{"s":"PANCAKESWAP:LGLWBNB_C9262B","d":[]},{"s":"BINANCE:SANDUSD","d":[]},{"s":"PANCAKESWAP:STKKUSDT_3EE8D6","d":[]},{"s":"PANCAKESWAP:CHAINCADEWBNB_8592F2.USD","d":[]},{"s":"OKX:ATOMEUR","d":[]},{"s":"PANCAKESWAP:GSKWBNB_3C0EC4","d":[]},{"s":"PANCAKESWAP:BABYBUSDWBNB_786BB9","d":[]},{"s":"PANCAKESWAP:RICEWBNB_F72231","d":[]},{"s":"PANCAKESWAP:FTTXUSDT_C32574","d":[]},{"s":"PANCAKESWAP:CATUSDT_95F703","d":[]},{"s":"OKX:POLYDOGEUSDT","d":[]},{"s":"UPBIT:NKNBTC","d":[]},{"s":"PANCAKESWAP:BBMUSDT_00B001","d":[]},{"s":"BINANCE:HIGHUSD","d":[]},{"s":"PANCAKESWAP:DOGECEOWBNB_2AB4AA.USD","d":[]},{"s":"SUSHISWAP:ALPHAWETH_F55C33","d":[]},{"s":"PANCAKESWAP:EGAWBNB_535B24","d":[]},{"s":"PANCAKESWAP:TODBUSD_628484","d":[]},{"s":"PANCAKESWAP:WKTWBNB_F9B826","d":[]},{"s":"PANCAKESWAP:TRUSTWBNB_6EEBF6.USD","d":[]},{"s":"SUSHISWAP:BENTDAI_5FA437","d":[]},{"s":"BINANCE:ENJUSDT.P","d":[]},{"s":"HONEYSWAP:XDBXHNY_2907F1.USD","d":[]},{"s":"PANCAKESWAP:HEDUSDT_6DF9C6","d":[]},{"s":"PANCAKESWAP:WBNBUSDT_20BCC3","d":[]},{"s":"PANCAKESWAP:FTSWBNB_C69F21.USD","d":[]},{"s":"PANCAKESWAP:AMPEREWBNB_97F14A","d":[]},{"s":"PANCAKESWAP:BALLWBNB_5B667B.USD","d":[]},{"s":"PANCAKESWAP:RUNELONGWBNB_FD6D13.USD","d":[]},{"s":"BINANCE:LINKUSDT.P","d":[]},{"s":"HONEYSWAP:PSPWXDAI_9BF1EB","d":[]},{"s":"PANCAKESWAP:LOUDWBNB_6A0386","d":[]},{"s":"PANCAKESWAP:BWWBNB_E519F3.USD","d":[]},{"s":"PANCAKESWAP:BLTWBNB_21FCFA.USD","d":[]},{"s":"PANCAKESWAP:HOPIUMWBNB_997EF0.USD","d":[]},{"s":"OKX:CVCUSDT","d":[]},{"s":"PANCAKESWAP:LEZWBNB_C7B911","d":[]},{"s":"KUCOIN:OPDOWNUSDT","d":[]},{"s":"PANCAKESWAP:ASTROWBNB_7396FF","d":[]},{"s":"UPBIT:ETHUSDT","d":[]},{"s":"HONEYSWAP:XDBXWXDAI_8E2A73.USD","d":[]},{"s":"PANCAKESWAP:PLAYBUSD_4BF1FD","d":[]},{"s":"PANCAKESWAP:BULLWBNB_D3A370","d":[]},{"s":"PANCAKESWAP:FFTWBNB_D83A5C.USD","d":[]},{"s":"PANCAKESWAP:FRTWBNB_2F82C2.USD","d":[]},{"s":"PANCAKESWAP:POWWBNB_AB20BB","d":[]},{"s":"KUCOIN:SUSHIUSDT","d":[]},{"s":"PANCAKESWAP:FISTWBNB_3FC593","d":[]},{"s":"PANCAKESWAP:PARMAWBNB_482BA3.USD","d":[]},{"s":"KUCOIN:UNOUSDT","d":[]},{"s":"PANCAKESWAP:PUPPYPEPEWBNB_D4C89E.USD","d":[]},{"s":"PANCAKESWAP:SKYXWBNB_418EFB.USD","d":[]},{"s":"PANCAKESWAP:RUSDBUSD_59FAC9","d":[]},{"s":"KUCOIN:LDOUSDT","d":[]},{"s":"PANCAKESWAP:UPCOINWBNB_095F73.USD","d":[]},{"s":"HONEYSWAP:GNOWXDAI_321704.USD","d":[]},{"s":"PANCAKESWAP:BONKINUWBNB_8FA420.USD","d":[]},{"s":"PANCAKESWAP:CROPWBNB_AB5BA5.USD","d":[]},{"s":"KUCOIN:HIFIDENZAUSDT","d":[]},{"s":"PANCAKESWAP:CLOAKWBNB_F7662C.USD","d":[]},{"s":"KUCOIN:PAXGBTC","d":[]},{"s":"PANCAKESWAP:GGGWBNB_50390C","d":[]},{"s":"PANCAKESWAP:UNICORNWBNB_0C8182.USD","d":[]},{"s":"PANCAKESWAP:RUYIBUSD_3D6551","d":[]},{"s":"PANCAKESWAP:WZRDBUSD_EE456D","d":[]},{"s":"PANCAKESWAP:HRSWBNB_C0761E.USD","d":[]},{"s":"PANCAKESWAP:ZEFUWBNB_496103","d":[]},{"s":"PANCAKESWAP:QUAWBNB_3389F7.USD","d":[]},{"s":"PANCAKESWAP:MAINWBNB_A8FEEA.USD","d":[]},{"s":"PANCAKESWAP:AEVOUSDT_79CDA9","d":[]},{"s":"PANCAKESWAP:MINTWBNB_3EBA17.USD","d":[]},{"s":"PANCAKESWAP:AUTOWBNB_4D0228.USD","d":[]},{"s":"PANCAKESWAP:SUBJECT3WBNB_848807.USD","d":[]},{"s":"PANCAKESWAP:LOVEWBNB_026B85","d":[]},{"s":"SUSHISWAPPOLYGON:RAIDERWETH_426A56","d":[]},{"s":"PANCAKESWAP:PINETWORKDEFIWBNB_A6FC06","d":[]},{"s":"PANCAKESWAP:BANBUSD_05A0D1","d":[]},{"s":"KUCOIN:GMTUSDC","d":[]},{"s":"PANCAKESWAP:MATHUSDT_6A4AF2","d":[]},{"s":"PANCAKESWAP:TERUSDT_95C277","d":[]},{"s":"PANCAKESWAP:CATSWBNB_56C272.USD","d":[]},{"s":"PANCAKESWAP:SERSHUSDT_EAFDE6","d":[]},{"s":"PANCAKESWAP:EFILWBNB_F4466B.USD","d":[]},{"s":"KUCOIN:DATABTC","d":[]},{"s":"PANCAKESWAP:AIRIWBNB_3D3534.USD","d":[]},{"s":"PANCAKESWAP:MOSASDIC_DA0C9C","d":[]},{"s":"PANCAKESWAP:TBLUSDT_47C607","d":[]},{"s":"KUCOIN:BAKEUPUSDT","d":[]},{"s":"PANCAKESWAP:ADOGEWBNB_C30211","d":[]},{"s":"PANCAKESWAP:GROKWBNB_0436F4.USD","d":[]},{"s":"PANCAKESWAP:BMCCWBNB_9CEF33","d":[]},{"s":"SUSHISWAP:DOGEPWETH_9D0BEE","d":[]},{"s":"PANCAKESWAP:BTCBSQUID_44CD68","d":[]},{"s":"KUCOIN:YLDUSDT","d":[]},{"s":"PANCAKESWAP:REIGNWBNB_7C4AB8.USD","d":[]},{"s":"PANCAKESWAP:FAMEUSDT_1BC230","d":[]},{"s":"PANCAKESWAP:MANEWBNB_AA0453.USD","d":[]},{"s":"HONEYSWAP:BFEDWETH_DA6976","d":[]},{"s":"PANCAKESWAP:ULANDWBNB_9A6E0F","d":[]},{"s":"PANCAKESWAP:MOVEWBNB_FEC2BE","d":[]},{"s":"PANCAKESWAP:CSWAPWBNB_7E7F18","d":[]},{"s":"PANCAKESWAP:FIVEBUSD_4C8DD2","d":[]},{"s":"PANCAKESWAP:YUTUWBNB_883DA3.USD","d":[]},{"s":"PANCAKESWAP:RENAWBNB_98E7F3","d":[]},{"s":"PANCAKESWAP:PRXWBNB_D18347","d":[]},{"s":"PANCAKESWAP:BTHWBNB_11F2D3","d":[]},{"s":"PANCAKESWAP:NIXWBNB_7F01F3","d":[]},{"s":"PANCAKESWAP:RAGEWBNB_DEB9CC.USD","d":[]},{"s":"KUCOIN:SUIUSDT.3L","d":[]},{"s":"PANCAKESWAP:XMTWBNB_706232","d":[]},{"s":"PANCAKESWAP:PANDAWBNB_BB9088","d":[]},{"s":"UPBIT:LINKBTC","d":[]},{"s":"PANCAKESWAP:FRGXWBNB_55F303.USD","d":[]},{"s":"PANCAKESWAP:CRPWBNB_8F37DF.USD","d":[]},{"s":"PANCAKESWAP:10363FWBNB_BC8ED9.USD","d":[]},{"s":"PANCAKESWAP:MJCWBNB_4BF1F5","d":[]},{"s":"KUCOIN:VSYSBTC","d":[]},{"s":"PANCAKESWAP:BURGERWBNB_D937FB","d":[]},{"s":"PANCAKESWAP:MD3WBNB_654D76.USD","d":[]},{"s":"KUCOIN:OMGUSDT","d":[]},{"s":"PANCAKESWAP:IBNBWBNB_2BF3EF.USD","d":[]},{"s":"PANCAKESWAP:MCONTENTWBNB_00105E","d":[]},{"s":"BINANCE:STGUSD","d":[]},{"s":"OKX:TRAUSDT","d":[]},{"s":"PANCAKESWAP:GMIWBNB_58D4B6","d":[]},{"s":"PANCAKESWAP:DETAWBNB_E3A0B1.USD","d":[]},{"s":"PANCAKESWAP:SANDWICHBUSD_EE4577","d":[]},{"s":"PANCAKESWAP:DOGOWBNB_06B0AF","d":[]},{"s":"PANCAKESWAP:GRBEBUSD_57F8E6","d":[]},{"s":"KUCOIN:DEFIUSDT","d":[]},{"s":"KUCOIN:HEROUSDT","d":[]},{"s":"HONEYSWAP:MUGWXDAI_943367.USD","d":[]},{"s":"PANCAKESWAP:CAIWBNB_BBEDD0.USD","d":[]},{"s":"PANCAKESWAP:GODZWBNB_4CB294.USD","d":[]},{"s":"PANCAKESWAP:VETTERWBNB_39D26B","d":[]},{"s":"PANCAKESWAP:PYOWBNB_BE9407.USD","d":[]},{"s":"KUCOIN:DOCKETH","d":[]},{"s":"PANCAKESWAP:ZAXWBNB_D9096C","d":[]},{"s":"PANCAKESWAP:PEOPLEBUSD_38EF44","d":[]},{"s":"BINANCE:UNIUSD","d":[]},{"s":"KUCOIN:CHZBTC","d":[]},{"s":"PANCAKESWAP:KTLYOWBNB_20F20B","d":[]},{"s":"PANCAKESWAP:EPTUSDT_49F2DF","d":[]},{"s":"OKX:GFUSDT","d":[]},{"s":"PANCAKESWAP:XIUUSDT_DCB52E","d":[]},{"s":"PANCAKESWAP:BNBGOLDWBNB_5CCAAB","d":[]},{"s":"PANCAKESWAP:NMTUSDT_85B362","d":[]},{"s":"PANCAKESWAP:LXBUSDT_E16B6A","d":[]},{"s":"PANCAKESWAP:NRWUSDT_346350","d":[]},{"s":"PANCAKESWAP:DECUSDC_AE2AE1","d":[]},{"s":"PANCAKESWAP:CSTWBNB_C971FF","d":[]},{"s":"PANCAKESWAP:RYDAOWBNB_70BE74","d":[]},{"s":"PANCAKESWAP:ATFUSDT_AC4C8F","d":[]},{"s":"HONEYSWAP:AMISDONUT_C8ECC5","d":[]},{"s":"HONEYSWAP:GRTWETH_F7CC77","d":[]},{"s":"PANCAKESWAP:ATAWBNB_EF7767","d":[]},{"s":"PANCAKESWAP:DINOWBNB_ACE95B.USD","d":[]},{"s":"PANCAKESWAP:ALUWBNB_3C7E71.USD","d":[]},{"s":"PANCAKESWAP:APPUSDT_4FC12A","d":[]},{"s":"PANCAKESWAP:MOSSWBNB_7D0CD8","d":[]},{"s":"PANCAKESWAP:OSLUSDT_8AA79C","d":[]},{"s":"PANCAKESWAP:BLASTERWBNB_69C148.USD","d":[]},{"s":"PANCAKESWAP:SM96WBNB_A5F54A.USD","d":[]},{"s":"PANCAKESWAP:KIBAWBNB_6499B4","d":[]},{"s":"PANCAKESWAP:PESAWBNB_51506F.USD","d":[]},{"s":"PANCAKESWAP:NYFUSDT_3C1FED","d":[]},{"s":"PANCAKESWAP:VEGASWBNB_4C8282","d":[]},{"s":"PANCAKESWAP:AIONEWBNB_9019E8","d":[]},{"s":"PANCAKESWAP:VUSWBNB_32E887.USD","d":[]},{"s":"PANCAKESWAP:VETBUSD_9FCA1D","d":[]},{"s":"PANCAKESWAP:TABOOWBNB_B4E7B2.USD","d":[]},{"s":"PANCAKESWAP:HEROWBNB_E26701.USD","d":[]},{"s":"KUCOIN:SHRUSDT","d":[]},{"s":"KUCOIN:SWASHUSDT","d":[]},{"s":"SUSHISWAP:UFTWETH_C4B26B.USD","d":[]},{"s":"PANCAKESWAP:PNPWBNB_1C5BD1.USD","d":[]},{"s":"PANCAKESWAP:APNUSDT_9756D5","d":[]},{"s":"KUCOIN:LADYSUSDT","d":[]},{"s":"PANCAKESWAP:EQUADWBNB_523F00.USD","d":[]},{"s":"PANCAKESWAP:AGROBUSD_72E30E","d":[]},{"s":"HONEYSWAP:SWASHWXDAI_FD8FE4.USD","d":[]},{"s":"PANCAKESWAP:PROTONWBNB_0B4506.USD","d":[]},{"s":"PANCAKESWAP:BTCBBUSD_F45CD2","d":[]},{"s":"BINANCE:OCEANUSD","d":[]},{"s":"PANCAKESWAP:RADR20WBNB_0894D9.USD","d":[]},{"s":"PANCAKESWAP:VIDWBNB_25947D","d":[]},{"s":"PANCAKESWAP:COREFIWBNB_D8CFC6.USD","d":[]},{"s":"PANCAKESWAP:SMCWBUSD_B2CE64","d":[]},{"s":"PANCAKESWAP:DYORWBNB_18D118","d":[]},{"s":"SUSHISWAPPOLYGON:PLEOWMATIC_F8095F","d":[]},{"s":"OKX:ENSUSDT","d":[]},{"s":"PANCAKESWAP:PVUUSDT_7B16F3","d":[]},{"s":"BINANCE:SANTOSUSD","d":[]},{"s":"PANCAKESWAP:ISPBSUSDT_B6E6AA","d":[]},{"s":"PANCAKESWAP:AFTWBNB_18BBFF.USD","d":[]},{"s":"BINANCE:ZECUSDT.P","d":[]},{"s":"PANCAKESWAP:MOVEWBNB_4547F9.USD","d":[]},{"s":"HONEYSWAP:Y3CRVUSDT_884847","d":[]},{"s":"PANCAKESWAP:BR34PWBNB_70E882","d":[]},{"s":"PANCAKESWAP:ZODIWBNB_DC0A12.USD","d":[]},{"s":"PANCAKESWAP:ZKLWBNB_A528AA.USD","d":[]},{"s":"PANCAKESWAP:TAUWBNB_D52E65","d":[]},{"s":"PANCAKESWAP:JTSUSDT_2E861E","d":[]},{"s":"HONEYSWAP:ALBCWETH_CBA6EE.USD","d":[]},{"s":"BINANCE:XTZUSDT.P","d":[]},{"s":"HONEYSWAP:RAIDWETH_256F3A.USD","d":[]},{"s":"HONEYSWAP:LINKWXDAI_10E0A7.USD","d":[]},{"s":"PANCAKESWAP:KYLNWBNB_D1B800.USD","d":[]},{"s":"PANCAKESWAP:BIBIWBNB_BABFB8","d":[]},{"s":"KUCOIN:XTAGUSDT","d":[]},{"s":"PANCAKESWAP:BUUNWBNB_76D2D4","d":[]},{"s":"PANCAKESWAP:BEASTWBNB_08BC50.USD","d":[]},{"s":"UPBIT:MANABTC","d":[]},{"s":"HONEYSWAP:MRWXDAI_25343E","d":[]},{"s":"PANCAKESWAP:HUSLWBNB_047D2F.USD","d":[]},{"s":"PANCAKESWAP:ZROWBNB_426AEC","d":[]},{"s":"PANCAKESWAP:ALGOPADWBNB_EBF595","d":[]},{"s":"PANCAKESWAP:DRTWBNB_1D1E02.USD","d":[]},{"s":"PANCAKESWAP:DEPAYWBNB_38145D.USD","d":[]},{"s":"HONEYSWAP:HEXDAI_9DE174","d":[]},{"s":"PANCAKESWAP:QDXWBNB_FCC577.USD","d":[]},{"s":"PANCAKESWAP:FISTUSDT_703F1C","d":[]},{"s":"OKX:XRPEUR","d":[]},{"s":"PANCAKESWAP:MAZIWBNB_AE5F88","d":[]},{"s":"PANCAKESWAP:SHENGWEIHUWBNB_54C790.USD","d":[]},{"s":"PANCAKESWAP:ALIENSQUIDWBNB_9E784C.USD","d":[]},{"s":"KUCOIN:GEEQUSDT","d":[]},{"s":"PANCAKESWAP:BELANDWBNB_1202BE","d":[]},{"s":"SUSHISWAP:VRNWETH_88024D.USD","d":[]},{"s":"PANCAKESWAP:AEVOWBNB_AF64D0.USD","d":[]},{"s":"PANCAKESWAP:SKYXWBNB_418EFB","d":[]},{"s":"PANCAKESWAP:TRXWBNB_3CD338.USD","d":[]},{"s":"PANCAKESWAP:MVEDAWBNB_5701D1","d":[]},{"s":"PANCAKESWAP:HEROWBNB_E26701","d":[]},{"s":"PANCAKESWAP:GOLDUSDT_988A0E","d":[]},{"s":"KUCOIN:XCURUSDT","d":[]},{"s":"PANCAKESWAP:FLIGHTUSDT_8AD579","d":[]},{"s":"BINANCE:ALICEUSD","d":[]},{"s":"HONEYSWAP:BASEHNY_F50600","d":[]},{"s":"PANCAKESWAP:JOJOWBNB_5226A2","d":[]},{"s":"PANCAKESWAP:PHOENIXWBNB_E3EF67.USD","d":[]},{"s":"PANCAKESWAP:HIPUSDT_EBDFB5","d":[]},{"s":"PANCAKESWAP:MWMFAB_1AEBB9","d":[]},{"s":"BINANCE:IDUSDT.P","d":[]},{"s":"PANCAKESWAP:BTHORUSDT_2373B1","d":[]},{"s":"PANCAKESWAP:SORAWBNB_CC6029.USD","d":[]},{"s":"OKX:CELUSDC","d":[]},{"s":"PANCAKESWAP:DADAWBNB_BE64A7.USD","d":[]},{"s":"PANCAKESWAP:AIWBNB_EFED08","d":[]},{"s":"PANCAKESWAP:WAGWBNB_FF61E3","d":[]},{"s":"PANCAKESWAP:WORMWBNB_F1BE99.USD","d":[]},{"s":"PANCAKESWAP:CXSWBNB_0AAFF4","d":[]},{"s":"PANCAKESWAP:BGCUSDT_B66717","d":[]},{"s":"SUSHISWAPPOLYGON:FISHWMATIC_CBF6F7","d":[]},{"s":"HONEYSWAP:CRVWXDAI_8EBFC0","d":[]},{"s":"PANCAKESWAP:LIQRWBNB_E1CEAD","d":[]},{"s":"PANCAKESWAP:SHIBCATWBNB_1EE8DF.USD","d":[]},{"s":"KUCOIN:ETCETH","d":[]},{"s":"PANCAKESWAP:Y24WBNB_446286","d":[]},{"s":"PANCAKESWAP:AISWBNB_01BB9C.USD","d":[]},{"s":"PANCAKESWAP:MYSMYEX_938352","d":[]},{"s":"SUSHISWAPPOLYGON:XSUSHISUSHI_6A3BB9.USD","d":[]},{"s":"PANCAKESWAP:CTOWBNB_BFF1FB.USD","d":[]},{"s":"UPBIT:SANDBTC","d":[]},{"s":"BINANCE:MANAUSDT.P","d":[]},{"s":"PANCAKESWAP:MELDWBNB_5057A3","d":[]},{"s":"PANCAKESWAP:NEKOWBNB_202925.USD","d":[]},{"s":"PANCAKESWAP:AIPWBNB_02511B.USD","d":[]},{"s":"PANCAKESWAP:XTMWBNB_0C2393.USD","d":[]},{"s":"OKX:CROBTC","d":[]},{"s":"PANCAKESWAP:DIPAWBNB_398441.USD","d":[]},{"s":"PANCAKESWAP:CREMATWBNB_DE592A","d":[]},{"s":"PANCAKESWAP:MIKAWBNB_A4179F.USD","d":[]},{"s":"PANCAKESWAP:CHTSWBNB_2D62FA","d":[]},{"s":"PANCAKESWAP:HBUSDT_AD5D01","d":[]},{"s":"PANCAKESWAP:EAGLEWBNB_9ACB1F.USD","d":[]},{"s":"HONEYSWAP:BFEDWXDAI_AAE0F1.USD","d":[]},{"s":"UPBIT:ELFBTC","d":[]},{"s":"PANCAKESWAP:BONDWBNB_5A2192.USD","d":[]},{"s":"PANCAKESWAP:MWPBUSD_5252EF","d":[]},{"s":"SUSHISWAP:AMPWETH_15E86E","d":[]},{"s":"PANCAKESWAP:PARAWBNB_7670DC.USD","d":[]},{"s":"PANCAKESWAP:HAI1ART_DF36E8","d":[]},{"s":"PANCAKESWAP:ADACASHWBNB_504D67.USD","d":[]},{"s":"PANCAKESWAP:LCGXUSDT_994EDC","d":[]},{"s":"PANCAKESWAP:SPOXWBNB_5CAFD2","d":[]},{"s":"PANCAKESWAP:BTAWBNB_B48D98","d":[]},{"s":"PANCAKESWAP:MATCHWBNB_91DB3A","d":[]},{"s":"PANCAKESWAP:OROWBNB_F439F8.USD","d":[]},{"s":"OKX:DAOUSDT","d":[]},{"s":"PANCAKESWAP:FLYUSDT_0D9EC3","d":[]},{"s":"PANCAKESWAP:COOKWBNB_48E29C.USD","d":[]},{"s":"PANCAKESWAP:CRKUSDT_C9F31D","d":[]},{"s":"OKX:ETHWUSDT","d":[]},{"s":"KUCOIN:COQUSDT","d":[]},{"s":"PANCAKESWAP:LEMONWBNB_C40D25","d":[]},{"s":"PANCAKESWAP:WKCWBNB_933477.USD","d":[]},{"s":"KUCOIN:MANAETH","d":[]},{"s":"PANCAKESWAP:ZILWBNB_6A9786.USD","d":[]},{"s":"PANCAKESWAP:MGCUSDT_073C16","d":[]},{"s":"BINANCE:AAVEUSD","d":[]},{"s":"HONEYSWAP:AAHWETH_2C2B72","d":[]},{"s":"OKX:BTCUSDT31K2024","d":[]},{"s":"PANCAKESWAP:JFUSDT_5BDEA3","d":[]},{"s":"PANCAKESWAP:ALEOWBNB_12AA13","d":[]},{"s":"PANCAKESWAP:EAGLEUSDT_44800C","d":[]},{"s":"PANCAKESWAP:SIMPSONWBNB_8B29A9.USD","d":[]},{"s":"PANCAKESWAP:MGCWBNB_C08019.USD","d":[]},{"s":"PANCAKESWAP:SHIBAAIWBNB_A3E547","d":[]},{"s":"UPBIT:YGGBTC","d":[]},{"s":"PANCAKESWAP:BITWBNB_DB0F7E","d":[]},{"s":"HONEYSWAP:PCTWXDAI_2F8940.USD","d":[]},{"s":"PANCAKESWAP:TMTBBDY_81FE0F","d":[]},{"s":"PANCAKESWAP:MOONARCHWBNB_A4D4B9.USD","d":[]},{"s":"PANCAKESWAP:POLYPADWBNB_45A38A","d":[]},{"s":"PANCAKESWAP:BETAWBNB_88A02D","d":[]},{"s":"PANCAKESWAP:BSCANT3WBNB_FD5CB1.USD","d":[]},{"s":"PANCAKESWAP:BOULPIKWBNB_7EF5B1","d":[]},{"s":"PANCAKESWAP:SDAOWBNB_43B959.USD","d":[]},{"s":"OKX:BTTUSDT","d":[]},{"s":"PANCAKESWAP:CHRBUSD_604593","d":[]},{"s":"SUSHISWAP:ILVWETH_6A091A","d":[]},{"s":"PANCAKESWAP:DOMIWBNB_80BA8C","d":[]},{"s":"PANCAKESWAP:DOGECOINWBNB_F6DDB5.USD","d":[]},{"s":"PANCAKESWAP:ARCONAETH_73E64E","d":[]},{"s":"PANCAKESWAP:KRPWBNB_ED85D0.USD","d":[]},{"s":"BINANCE:INJUSDT.P","d":[]},{"s":"KUCOIN:SYSBTC","d":[]},{"s":"PANCAKESWAP:KENSHIETH_28E276.USD","d":[]},{"s":"KUCOIN:RAYUSDT","d":[]},{"s":"OKCOIN:USDCUSDT","d":[]},{"s":"OKCOIN:USDTUSD","d":[]},{"s":"PANCAKESWAP:11UPWBNB_DC80BF","d":[]},{"s":"SUSHISWAP:UNIWETH_DAFD66","d":[]},{"s":"PANCAKESWAP:KANGWBNB_697618","d":[]},{"s":"PANCAKESWAP:SXPWBNB_D8E2F8.USD","d":[]},{"s":"PANCAKESWAP:MEITUANWBNB_1E4274","d":[]},{"s":"UPBIT:ENSBTC","d":[]},{"s":"PANCAKESWAP:PSTAKEBUSD_009C58","d":[]},{"s":"PANCAKESWAP:FTCUSDT_52672C","d":[]},{"s":"PANCAKESWAP:STTBUSD_32AE44","d":[]},{"s":"PANCAKESWAP:WIFWBNB_A23483","d":[]},{"s":"BINANCE:DYDXUSD","d":[]},{"s":"PANCAKESWAP:KUMAMONWBNB_5CC797.USD","d":[]},{"s":"OKX:BTCUSD22H2024","d":[]},{"s":"KUCOIN:HAPIUSDT","d":[]},{"s":"OKX:RADARUSDT","d":[]},{"s":"KUCOIN:TRIASUSDT","d":[]},{"s":"PANCAKESWAP:ARBUSDT_48C2E2","d":[]},{"s":"PANCAKESWAP:OCTAWBNB_42E32B.USD","d":[]},{"s":"PANCAKESWAP:IRTWBNB_E3EB84.USD","d":[]},{"s":"PANCAKESWAP:STACKWBNB_17E921","d":[]},{"s":"KUCOIN:SNSUSDT","d":[]},{"s":"SUSHISWAP:CTXWETH_2A9316.USD","d":[]},{"s":"PANCAKESWAP:ZESWBNB_AD52FC","d":[]},{"s":"PANCAKESWAP:CLISTWBNB_32CD27.USD","d":[]},{"s":"PANCAKESWAP:SMBRWBNB_D5E5AF.USD","d":[]},{"s":"PANCAKESWAP:CATSWBNB_56C272","d":[]},{"s":"PANCAKESWAP:XFTWBNB_AD217E.USD","d":[]},{"s":"UPBIT:RVNBTC","d":[]},{"s":"PANCAKESWAP:LIBEROWBNB_44BB33","d":[]},{"s":"PANCAKESWAP:ZIBUWBNB_C372BA.USD","d":[]},{"s":"PANCAKESWAP:YUMMYWBNB_09AE75.USD","d":[]},{"s":"BINANCE:FTMUSD","d":[]},{"s":"HONEYSWAP:XCOMBHNY_D791C9","d":[]},{"s":"KUCOIN:LBRUSDT","d":[]},{"s":"PANCAKESWAP:ESGWBNB_F63EAC","d":[]},{"s":"PANCAKESWAP:EVRWBNB_9E5EA1.USD","d":[]},{"s":"PANCAKESWAP:UDOGEWBNB_64F659.USD","d":[]},{"s":"KUCOIN:DFIUSDT","d":[]},{"s":"BINANCE:PDAUSD","d":[]},{"s":"OKX:ETHUSDT22H2024","d":[]},{"s":"PANCAKESWAP:OPHXWBNB_0FCE2C","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_A24CF5","d":[]},{"s":"PANCAKESWAP:KALMCAKE_B84ADF.USD","d":[]},{"s":"PANCAKESWAP:MBASWBNB_AB936B","d":[]},{"s":"PANCAKESWAP:FILTHOREUM_E1447B.USD","d":[]},{"s":"PANCAKESWAP:NAZARWBNB_C6FAA3.USD","d":[]},{"s":"PANCAKESWAP:BTGUSDT_310E2F","d":[]},{"s":"PANCAKESWAP:DLUSDT_C13C85","d":[]},{"s":"PANCAKESWAP:PLANETWBNB_25E176.USD","d":[]},{"s":"PANCAKESWAP:DMRETH_351994.USD","d":[]},{"s":"SUSHISWAP:QUARTZUSDC_1E8888","d":[]},{"s":"PANCAKESWAP:XFWBNB_04D045","d":[]},{"s":"PANCAKESWAP:BEFEBRISE_08B07C.USD","d":[]},{"s":"HONEYSWAP:MOONWASPHNY_F9D132.USD","d":[]},{"s":"PANCAKESWAP:RETROWBNB_98EFD6","d":[]},{"s":"SUSHISWAP:RAILWETH_7CF6A8","d":[]},{"s":"HONEYSWAP:PANTSWXDAI_642D92.USD","d":[]},{"s":"PANCAKESWAP:DGTLWBNB_1BDE5D.USD","d":[]},{"s":"SUSHISWAP:USHWETH_AAF448.USD","d":[]},{"s":"OKX:MOVEZUSDT","d":[]},{"s":"PANCAKESWAP:DGMVWBNB_C4F0AA.USD","d":[]},{"s":"PANCAKESWAP:DINGERWBNB_E69E56.USD","d":[]},{"s":"PANCAKESWAP:GOLDCATWBNB_A3EA5B.USD","d":[]},{"s":"PANCAKESWAP:CWTWBNB_EA7037","d":[]},{"s":"PANCAKESWAP:ETHSUSDT_C050E3","d":[]},{"s":"PANCAKESWAP:FISTSWBNB_C70742.USD","d":[]},{"s":"KUCOIN:TTUSDT","d":[]},{"s":"HONEYSWAP:BALWBTC_C119C4","d":[]},{"s":"PANCAKESWAP:LCOINWBNB_AEB3BC","d":[]},{"s":"PANCAKESWAP:DOGIWBNB_94AA38.USD","d":[]},{"s":"PANCAKESWAP:MIRWBNB_B7A19A.USD","d":[]},{"s":"PANCAKESWAP:WEDWBNB_EBFA0D","d":[]},{"s":"PANCAKESWAP:SPACWBNB_9B68B1","d":[]},{"s":"PANCAKESWAP:BSCMWBNB_6DD966.USD","d":[]},{"s":"PANCAKESWAP:FINANCEAIWBNB_080C8B","d":[]},{"s":"PANCAKESWAP:TOADWBNB_20A3DC.USD","d":[]},{"s":"PANCAKESWAP:SMBRWBNB_D5E5AF","d":[]},{"s":"PANCAKESWAP:KZWBNB_DDABCC","d":[]},{"s":"PANCAKESWAP:YELWBNB_8290D3.USD","d":[]},{"s":"KUCOIN:OXTETH","d":[]},{"s":"HONEYSWAP:HNYWETH_89E2F3","d":[]},{"s":"PANCAKESWAP:VGOWBNB_33BECF.USD","d":[]},{"s":"HONEYSWAP:AMISLINK_06477B","d":[]},{"s":"PANCAKESWAP:1CCUSDT_32DDCA","d":[]},{"s":"PANCAKESWAP:HLRWBNB_858586","d":[]},{"s":"PANCAKESWAP:21MWBNB_6923F8","d":[]},{"s":"PANCAKESWAP:MILKWBNB_ABCB20.USD","d":[]},{"s":"PANCAKESWAP:MEMERATSUSDT_DCC2ED","d":[]},{"s":"PANCAKESWAP:NFTWBNB_0ECC84.USD","d":[]},{"s":"PANCAKESWAP:BUNNYWBNB_7BB894.USD","d":[]},{"s":"PANCAKESWAP:BIBIWBNB_BABFB8.USD","d":[]},{"s":"SUSHISWAP:DIGGWBTC_9A1386","d":[]},{"s":"PANCAKESWAP:AZWWBNB_B867AE.USD","d":[]},{"s":"PANCAKESWAP:SCPTWBNB_CD730B.USD","d":[]},{"s":"PANCAKESWAP:FINEDOGWBNB_06A961.USD","d":[]},{"s":"SUSHISWAPPOLYGON:MHUNTWMATIC_D08244.USD","d":[]},{"s":"PANCAKESWAP:FNDZWBNB_5E2C18","d":[]},{"s":"PANCAKESWAP:BITTWBNB_C8B100","d":[]},{"s":"PANCAKESWAP:AIOZWBNB_3D2BCC","d":[]},{"s":"PANCAKESWAP:JASMYBUSD_6E7C78","d":[]},{"s":"PANCAKESWAP:SPINWBNB_89C680.USD","d":[]},{"s":"BINANCE:WLDUSDT.P","d":[]},{"s":"PANCAKESWAP:HPWBNB_AF5D55","d":[]},{"s":"PANCAKESWAP:TOOLWBNB_74BC7D.USD","d":[]},{"s":"PANCAKESWAP:BHCUSDT_97E4BC","d":[]},{"s":"KUCOIN:ACEUSDT","d":[]},{"s":"OKX:DCRUSDT","d":[]},{"s":"OKX:LINKUSDC","d":[]},{"s":"SUSHISWAP:WANUSDT_18C12A","d":[]},{"s":"OKX:CGLUSDT","d":[]},{"s":"UPBIT:CTCBTC","d":[]},{"s":"PANCAKESWAP:TRIVIAWBNB_EF642C","d":[]},{"s":"PANCAKESWAP:FCFWBNB_C58A80.USD","d":[]},{"s":"PANCAKESWAP:Y3WBNB_CB3F58.USD","d":[]},{"s":"PANCAKESWAP:LOVEBUSD_9E8AE3","d":[]},{"s":"PANCAKESWAP:WFCWBNB_F5F264.USD","d":[]},{"s":"PANCAKESWAP:BNBBACKWBNB_0B4938","d":[]},{"s":"PANCAKESWAP:GMWBNB_8D1E15","d":[]},{"s":"PANCAKESWAP:TR8WBNB_4C49F7.USD","d":[]},{"s":"SUSHISWAP:MULTIWETH_82917F","d":[]},{"s":"PANCAKESWAP:LITWBNB_7661D6","d":[]},{"s":"PANCAKESWAP:GUTPOW_26D0CE.USD","d":[]},{"s":"PANCAKESWAP:MCRTWBNB_F82092.USD","d":[]},{"s":"SUSHISWAP:PERCWETH_45B6FF","d":[]},{"s":"PANCAKESWAP:COCBUSD_89CA0D","d":[]},{"s":"PANCAKESWAP:PLANTUSDT_748DA3","d":[]},{"s":"PANCAKESWAP:ASIAWBNB_42E8EF.USD","d":[]},{"s":"PANCAKESWAP:BJSUSDT_44BFE9","d":[]},{"s":"PANCAKESWAP:COQPEPEXWBNB_D0C66A.USD","d":[]},{"s":"PANCAKESWAP:PULSEWBNB_426CD2.USD","d":[]},{"s":"KUCOIN:LINKKCS","d":[]},{"s":"PANCAKESWAP:ANYMTLXBUSD_02B0B1","d":[]},{"s":"PANCAKESWAP:MEERUSDT_521C79","d":[]},{"s":"HONEYSWAP:CFXQWXDAI_0B83A1.USD","d":[]},{"s":"PANCAKESWAP:BRYWBNB_21DD71.USD","d":[]},{"s":"BINANCE:LITUSD","d":[]},{"s":"PANCAKESWAP:OPINUWBNB_62D6D8","d":[]},{"s":"KUCOIN:ANKRUSDT","d":[]},{"s":"HONEYSWAP:HIVEWATERWXDAI_D6D50E.USD","d":[]},{"s":"KUCOIN:UOSUSDT","d":[]},{"s":"KUCOIN:GMMUSDT","d":[]},{"s":"OKX:EOSUSDT27U2024","d":[]},{"s":"KUCOIN:VRAUSDT","d":[]},{"s":"PANCAKESWAP:TOADUSDT_1D5D3A","d":[]},{"s":"KUCOIN:BTCGBP","d":[]},{"s":"HONEYSWAP:COLDWETH_347DD7","d":[]},{"s":"PANCAKESWAP:DFISHWBNB_398168.USD","d":[]},{"s":"UPBIT:HPOBTC","d":[]},{"s":"KUCOIN:ALGOUSDC","d":[]},{"s":"PANCAKESWAP:COSUSDT_452674","d":[]},{"s":"PANCAKESWAP:VPADBUSD_2EAC39","d":[]},{"s":"PANCAKESWAP:CREOBUSD_FB0DF0","d":[]},{"s":"PANCAKESWAP:METOWBNB_59A3D9.USD","d":[]},{"s":"PANCAKESWAP:COWWBNB_F7EDA8","d":[]},{"s":"PANCAKESWAP:BPXUSDT_3EF013","d":[]},{"s":"PANCAKESWAP:STACKSWBNB_A1AD3C.USD","d":[]},{"s":"PANCAKESWAP:DWTWBNB_C70163.USD","d":[]},{"s":"PANCAKESWAP:PECUSDT_F66691","d":[]},{"s":"PANCAKESWAP:SAMZUGAWBNB_1F8373","d":[]},{"s":"UPBIT:TONBTC","d":[]},{"s":"PANCAKESWAP:ALPACAWBNB_F3CE6A.USD","d":[]},{"s":"BINANCE:SNXUSDT.P","d":[]},{"s":"PANCAKESWAP:GINUXWBNB_85B446","d":[]},{"s":"PANCAKESWAP:ZEUMUSDT_DBED2C","d":[]},{"s":"PANCAKESWAP:VOOLACOINWBNB_86CD09","d":[]},{"s":"PANCAKESWAP:LORDWBNB_22DA08","d":[]},{"s":"PANCAKESWAP:TCAKEWBNB_A9F1BA","d":[]},{"s":"KUCOIN:CSPRUSDT","d":[]},{"s":"HONEYSWAP:WBTCWXDAI_8DB887.USD","d":[]},{"s":"PANCAKESWAP:SATOZWBNB_261596.USD","d":[]},{"s":"SUSHISWAP:AMPLWETH_CB2286","d":[]},{"s":"PANCAKESWAP:OUSDWBNB_CB9472.USD","d":[]},{"s":"PANCAKESWAP:RENAWBNB_98E7F3.USD","d":[]},{"s":"BINANCE:GNSUSD","d":[]},{"s":"BINANCE:MDTUSD","d":[]},{"s":"PANCAKESWAP:MARSRISEWBNB_25FF3B","d":[]},{"s":"KUCOIN:LINABTC","d":[]},{"s":"PANCAKESWAP:SUCWBNB_150208.USD","d":[]},{"s":"HONEYSWAP:CREAMWETH_3EE2C6.USD","d":[]},{"s":"PANCAKESWAP:BBCUSDT_BF0B1F","d":[]},{"s":"KUCOIN:POLKBTC","d":[]},{"s":"KUCOIN:LABSUSDT","d":[]},{"s":"OKX:COREUSDT","d":[]},{"s":"PANCAKESWAP:ROWWBNB_A22516","d":[]},{"s":"PANCAKESWAP:LONGFUWBNB_E861FE.USD","d":[]},{"s":"PANCAKESWAP:AKIWBNB_28EE2F","d":[]},{"s":"UPBIT:COMPBTC","d":[]},{"s":"SUSHISWAPPOLYGON:RUUFWETH_61F1D8","d":[]},{"s":"BINANCE:XRPUSD","d":[]},{"s":"HONEYSWAP:PCTWETH_0A823A","d":[]},{"s":"PANCAKESWAP:YYDSWBNB_1EDB26","d":[]},{"s":"PANCAKESWAP:MKMDSN_D00305.USD","d":[]},{"s":"HONEYSWAP:HODLLINK_77F933.USD","d":[]},{"s":"PANCAKESWAP:NCATWBNB_25FA63.USD","d":[]},{"s":"PANCAKESWAP:KDOEWBNB_3537C4","d":[]},{"s":"PANCAKESWAP:PRINCEFLOKIWBNB_324D7B","d":[]},{"s":"PANCAKESWAP:LEVEWBNB_810A53.USD","d":[]},{"s":"PANCAKESWAP:MHAMWBNB_99676A.USD","d":[]},{"s":"PANCAKESWAP:WEB4WBNB_FC5A25","d":[]},{"s":"PANCAKESWAP:SUCWBNB_150208","d":[]},{"s":"PANCAKESWAP:21MWBNB_6923F8.USD","d":[]},{"s":"KUCOIN:HAKAUSDT","d":[]},{"s":"PANCAKESWAP:BARWBNB_4D1ECC.USD","d":[]},{"s":"PANCAKESWAP:SQUIDDAOWBNB_DBF43F.USD","d":[]},{"s":"PANCAKESWAP:GALWBNB_BE6A4F.USD","d":[]},{"s":"PANCAKESWAP:PEPEAICEOWBNB_151441.USD","d":[]},{"s":"PANCAKESWAP:IRISTOKENWBNB_7D0987.USD","d":[]},{"s":"PANCAKESWAP:DRCUSDT_4AF2E2","d":[]},{"s":"PANCAKESWAP:COTIWBNB_9C9A03.USD","d":[]},{"s":"BINANCE:1000BONKUSDT.P","d":[]},{"s":"PANCAKESWAP:FROYOCAKE_1CCC3C.USD","d":[]},{"s":"OKX:XRPUSD22H2024","d":[]},{"s":"PANCAKESWAP:MAGICWBNB_0176C7","d":[]},{"s":"PANCAKESWAP:DUELWBNB_ABAB7A.USD","d":[]},{"s":"PANCAKESWAP:DGCUSDT_3584E8","d":[]},{"s":"PANCAKESWAP:THOREUMWBNB_3BBC26","d":[]},{"s":"SUSHISWAP:SATAWETH_1976BF.USD","d":[]},{"s":"BINANCE:CTSIUSDT.P","d":[]},{"s":"PANCAKESWAP:SEICLOUDWBNB_80EDAD.USD","d":[]},{"s":"SUSHISWAP:FRAXWETH_EC8C34","d":[]},{"s":"PANCAKESWAP:ETHWBNB_70D892.USD","d":[]},{"s":"KUCOIN:MATICBTC","d":[]},{"s":"PANCAKESWAP:NNSWBNB_3B44B6.USD","d":[]},{"s":"BINANCE:WBTCUSD","d":[]},{"s":"PANCAKESWAP:LUCAWBNB_46B30D","d":[]},{"s":"BINANCE:NEXOUSD","d":[]},{"s":"PANCAKESWAP:ROVERWBNB_B6F118","d":[]},{"s":"PANCAKESWAP:NEWFLOKIINUWBNB_ED89F4.USD","d":[]},{"s":"PANCAKESWAP:HNTRUSDT_4A593B","d":[]},{"s":"KUCOIN:MAVIAUSDT","d":[]},{"s":"OKX:AXSUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:TURINWBTC_3A96A8.USD","d":[]},{"s":"PANCAKESWAP:XJG20WBNB_225CA3.USD","d":[]},{"s":"PANCAKESWAP:DKNWBNB_88E361","d":[]},{"s":"PANCAKESWAP:OMAXWBNB_E9A645","d":[]},{"s":"OKX:ARBUSDT","d":[]},{"s":"PANCAKESWAP:BTCBTCB_8046FA.USD","d":[]},{"s":"HONEYSWAP:XYODONUT_DC8943.USD","d":[]},{"s":"PANCAKESWAP:UPRWBNB_2A6F7D.USD","d":[]},{"s":"PANCAKESWAP:FASTWBNB_3C50BE.USD","d":[]},{"s":"PANCAKESWAP:PINETWORKDEFIWBNB_A6FC06.USD","d":[]},{"s":"PANCAKESWAP:BRICKSWBNB_C47704","d":[]},{"s":"PANCAKESWAP:CCCLOWBNB_C00326.USD","d":[]},{"s":"PANCAKESWAP:CATSWBNB_1D49A3.USD","d":[]},{"s":"KUCOIN:LDOUSDC","d":[]},{"s":"PANCAKESWAP:PTTWBNB_EA37C7.USD","d":[]},{"s":"BINANCE:FXSUSDT.P","d":[]},{"s":"PANCAKESWAP:LANCWBNB_9E913A","d":[]},{"s":"PANCAKESWAP:ROOWBNB_2C97B5.USD","d":[]},{"s":"PANCAKESWAP:POLOWBNB_F99A5F","d":[]},{"s":"PANCAKESWAP:SMTYWBNB_EA585B.USD","d":[]},{"s":"PANCAKESWAP:MINUWBNB_91D8D7","d":[]},{"s":"PANCAKESWAP:CKPWBNB_01B1AF","d":[]},{"s":"PANCAKESWAP:GBTWBNB_2B0CCD","d":[]},{"s":"HONEYSWAP:PRTCLEHAUS_37251B.USD","d":[]},{"s":"PANCAKESWAP:ELDGWBNB_AA9AA0.USD","d":[]},{"s":"HONEYSWAP:WETHUSDT_693A25","d":[]},{"s":"PANCAKESWAP:REVOWBNB_388B28","d":[]},{"s":"PANCAKESWAP:PINKSALEWBNB_53028D.USD","d":[]},{"s":"PANCAKESWAP:SETNRGS_9D9D3A","d":[]},{"s":"PANCAKESWAP:MYRO20WBNB_E8AB07","d":[]},{"s":"PANCAKESWAP:CRYPTBUSD_01588C","d":[]},{"s":"PANCAKESWAP:MHUSDT_E3FC07","d":[]},{"s":"OKX:CROUSDT","d":[]},{"s":"HONEYSWAP:FRHNY_1417A3.USD","d":[]},{"s":"PANCAKESWAP:MINARWBNB_2455FC","d":[]},{"s":"OKX:BONKUSDT","d":[]},{"s":"PANCAKESWAP:ADAMUSDT_8C7F92","d":[]},{"s":"PANCAKESWAP:2024WBNB_093227.USD","d":[]},{"s":"SUSHISWAPPOLYGON:DHTWETH_A375D2","d":[]},{"s":"PANCAKESWAP:TINCWBNB_0D5B9A","d":[]},{"s":"KUCOIN:TOKOKCS","d":[]},{"s":"PANCAKESWAP:OPCUSDT_38D09F","d":[]},{"s":"PANCAKESWAP:HELMETWBNB_C869A9.USD","d":[]},{"s":"PANCAKESWAP:CAKEWBNB_0ED7E5","d":[]},{"s":"PANCAKESWAP:ADDUSDT_DD2993","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_5ED24A.USD","d":[]},{"s":"PANCAKESWAP:VIRTUWBNB_F2D6B2","d":[]},{"s":"PANCAKESWAP:ZIBUWBNB_C372BA","d":[]},{"s":"PANCAKESWAP:ZROUSDT_B7B69E","d":[]},{"s":"PANCAKESWAP:LNLWBNB_35DB84","d":[]},{"s":"PANCAKESWAP:FLOKIMWBNB_0AD6B8","d":[]},{"s":"BINANCE:LOKAUSD","d":[]},{"s":"PANCAKESWAP:ZKBWBNB_CB9744","d":[]},{"s":"PANCAKESWAP:MTUSDT_9F4B2F","d":[]},{"s":"PANCAKESWAP:TUTUWBNB_FF309B.USD","d":[]},{"s":"HONEYSWAP:DPIWXDAI_81E1DA","d":[]},{"s":"PANCAKESWAP:DXOWBNB_CED6EE.USD","d":[]},{"s":"SUSHISWAPPOLYGON:AAVEWETH_2813D4","d":[]},{"s":"PANCAKESWAP:ARBWBNB_82B91C.USD","d":[]},{"s":"PANCAKESWAP:MEGAWBNB_E70F61","d":[]},{"s":"HONEYSWAP:DOGEUSDT_F65FB1","d":[]},{"s":"BINANCE:1000RATSUSDT.P","d":[]},{"s":"BINANCE:ARDRUSD","d":[]},{"s":"KUCOIN:ATOMETH","d":[]},{"s":"KUCOIN:PIXELUSDT","d":[]},{"s":"PANCAKESWAP:AUTOWBNB_4D0228","d":[]},{"s":"PANCAKESWAP:BREWLABSWBNB_C9CC65.USD","d":[]},{"s":"PANCAKESWAP:NFTSWBNB_372186.USD","d":[]},{"s":"PANCAKESWAP:EXOSBUSD_593329","d":[]},{"s":"BINANCE:ETHBTC.P","d":[]},{"s":"OKX:AUCTIONUSDT","d":[]},{"s":"SUSHISWAP:OPIUMWETH_D84D55","d":[]},{"s":"HONEYSWAP:MEWLINK_58E2C1","d":[]},{"s":"KUCOIN:SPAETH","d":[]},{"s":"PANCAKESWAP:ACTUSDT_2BFC98","d":[]},{"s":"KUCOIN:RUNEBTC","d":[]},{"s":"PANCAKESWAP:ZKPMATIC_1AFF1C","d":[]},{"s":"PANCAKESWAP:WDFWBNB_AADDD2.USD","d":[]},{"s":"BINANCE:HOTUSDT.P","d":[]},{"s":"PANCAKESWAP:AMFWBNB_E57CB4","d":[]},{"s":"PANCAKESWAP:BTCPIUSDC_5D4141","d":[]},{"s":"PANCAKESWAP:WOOPWBNB_2AE94A.USD","d":[]},{"s":"PANCAKESWAP:XBEBEWBNB_1A776B","d":[]},{"s":"PANCAKESWAP:BABYCATWBNB_57F41E","d":[]},{"s":"HONEYSWAP:BFEDWBTC_D6D83A.USD","d":[]},{"s":"PANCAKESWAP:PHLUSDT_739812","d":[]},{"s":"KUCOIN:TXAUSDT","d":[]},{"s":"PANCAKESWAP:CHIMWBNB_BEF459","d":[]},{"s":"PANCAKESWAP:BABYLONWBNB_CE4762","d":[]},{"s":"PANCAKESWAP:IMCUSDT_1C0B9E","d":[]},{"s":"PANCAKESWAP:CHTSWBNB_2D62FA.USD","d":[]},{"s":"PANCAKESWAP:BOTEUSDT_A85970","d":[]},{"s":"HONEYSWAP:COLDAGVE_AA0200.USD","d":[]},{"s":"PANCAKESWAP:ROCKWBNB_C2CF6E","d":[]},{"s":"SUSHISWAP:PENDLEWETH_37922C","d":[]},{"s":"HONEYSWAP:MDZAHNY_5140DC","d":[]},{"s":"KUCOIN:NIMBTC","d":[]},{"s":"PANCAKESWAP:FMBWBNB_CC1D9C","d":[]},{"s":"PANCAKESWAP:IWRWBNB_A37FF2.USD","d":[]},{"s":"PANCAKESWAP:TOKINGUSDT_9E2BE1","d":[]},{"s":"KUCOIN:AXSUSDT.3S","d":[]},{"s":"PANCAKESWAP:MGKLWBNB_5BD45E","d":[]},{"s":"PANCAKESWAP:XMWBNB_4BC16C.USD","d":[]},{"s":"KUCOIN:USDJUSDT","d":[]},{"s":"PANCAKESWAP:DOTWBNB_BCD626","d":[]},{"s":"PANCAKESWAP:DOGEFYC_D7C249","d":[]},{"s":"PANCAKESWAP:BIGTIMEWBNB_5CC878.USD","d":[]},{"s":"OKX:SCUSDT","d":[]},{"s":"HONEYSWAP:GNOWXDAI_321704","d":[]},{"s":"BINANCE:LAZIOUSD","d":[]},{"s":"PANCAKESWAP:HPSWBNB_219686.USD","d":[]},{"s":"PANCAKESWAP:PAYUWBNB_5431AF.USD","d":[]},{"s":"PANCAKESWAP:DROGGYWBNB_34533E","d":[]},{"s":"PANCAKESWAP:SKERWBNB_D53622.USD","d":[]},{"s":"PANCAKESWAP:GTTMWBNB_D69512.USD","d":[]},{"s":"PANCAKESWAP:SRLTYWBNB_7E998D","d":[]},{"s":"PANCAKESWAP:VEMPWBNB_94B18F","d":[]},{"s":"PANCAKESWAP:SANJIWBNB_B74A1B.USD","d":[]},{"s":"PANCAKESWAP:F3USDT_4EA053","d":[]},{"s":"HONEYSWAP:RENBTCWETH_974182.USD","d":[]},{"s":"PANCAKESWAP:2023WBNB_0B7679","d":[]},{"s":"PANCAKESWAP:NFCWBNB_CFA938.USD","d":[]},{"s":"PANCAKESWAP:TURTLEKINGWBNB_785CD5","d":[]},{"s":"OKX:IOTAUSDT","d":[]},{"s":"PANCAKESWAP:FGDSCK_973C89","d":[]},{"s":"OKX:LUNCUSDT","d":[]},{"s":"PANCAKESWAP:EPIKBUSD_0F0DC9","d":[]},{"s":"HONEYSWAP:HODLXCOMB_6F38E5.USD","d":[]},{"s":"KUCOIN:HOTCROSSUSDT","d":[]},{"s":"PANCAKESWAP:QKQWBNB_3716DC","d":[]},{"s":"PANCAKESWAP:XRPCWBNB_4314AC","d":[]},{"s":"PANCAKESWAP:ZYAWBNB_B2ECB3","d":[]},{"s":"PANCAKESWAP:VFTWBNB_1AFE48","d":[]},{"s":"PANCAKESWAP:FQSWBNB_839CD4.USD","d":[]},{"s":"OKX:FILETH","d":[]},{"s":"PANCAKESWAP:AIWBNB_B993AD","d":[]},{"s":"PANCAKESWAP:WASABIWBNB_4AF56F","d":[]},{"s":"PANCAKESWAP:SHAROWBNB_0915D6.USD","d":[]},{"s":"PANCAKESWAP:DECHATUSDT_8625C2","d":[]},{"s":"PANCAKESWAP:MOSLTC_8D5647","d":[]},{"s":"PANCAKESWAP:JTSWBNB_AF4685.USD","d":[]},{"s":"PANCAKESWAP:CATUSDT_4D43A1","d":[]},{"s":"PANCAKESWAP:FAIUSDT_F4C8BD","d":[]},{"s":"PANCAKESWAP:SATS2USDT_7654D0","d":[]},{"s":"PANCAKESWAP:GBLUSDT_937196","d":[]},{"s":"PANCAKESWAP:SHINOWBNB_C1DD3F","d":[]},{"s":"PANCAKESWAP:FTRUSDT_4B8B18","d":[]},{"s":"PANCAKESWAP:GROKGODWBNB_7A9A8E","d":[]},{"s":"PANCAKESWAP:HUDIWBNB_9428D7.USD","d":[]},{"s":"PANCAKESWAP:MXRNWBNB_8C5985.USD","d":[]},{"s":"SUSHISWAP:ANGLEAGEUR_1F4C76","d":[]},{"s":"SUSHISWAP:AUCTIONWETH_0F8086.USD","d":[]},{"s":"PANCAKESWAP:BABYBTCWBNB_E81540","d":[]},{"s":"PANCAKESWAP:TONCOINYOFARM_055155","d":[]},{"s":"BINANCE:DOGEUSD","d":[]},{"s":"PANCAKESWAP:DEFIAIWBNB_45766B.USD","d":[]},{"s":"PANCAKESWAP:NYUSDT_0214E9","d":[]},{"s":"PANCAKESWAP:NMTTHOREUM_6A3E9C.USD","d":[]},{"s":"PANCAKESWAP:HTDUSDT_DC7FD4","d":[]},{"s":"PANCAKESWAP:BULLWBNB_FE6CF1","d":[]},{"s":"PANCAKESWAP:CSTETH_F04CFD.USD","d":[]},{"s":"PANCAKESWAP:XSPWBNB_3F5065.USD","d":[]},{"s":"BINANCE:FXSUSD","d":[]},{"s":"PANCAKESWAP:PAPA2049WBNB_067D25","d":[]},{"s":"PANCAKESWAP:MWARWBNB_74AF40.USD","d":[]},{"s":"PANCAKESWAP:CDAOWBNB_93F7C5.USD","d":[]},{"s":"PANCAKESWAP:MYROFLOKIWBNB_5B8A03","d":[]},{"s":"BINANCE:RDNTUSD","d":[]},{"s":"PANCAKESWAP:WROSEKOL_D324BC.USD","d":[]},{"s":"PANCAKESWAP:TATSUWBNB_282D3C","d":[]},{"s":"HONEYSWAP:HNYMR_3D31CA.USD","d":[]},{"s":"HONEYSWAP:LENDWXDAI_69D1DA.USD","d":[]},{"s":"KUCOIN:POLUSDT","d":[]},{"s":"PANCAKESWAP:FINKWBNB_72DD39.USD","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_04B56A","d":[]},{"s":"PANCAKESWAP:FDAOWBNB_819C3B.USD","d":[]},{"s":"PANCAKESWAP:MARSWBNB_F31FFF","d":[]},{"s":"KUCOIN:LUNCUSDC","d":[]},{"s":"PANCAKESWAP:EYEWBNB_D13250.USD","d":[]},{"s":"OKX:ZETAUSDT","d":[]},{"s":"PANCAKESWAP:X2049_8B8E7E.USD","d":[]},{"s":"KUCOIN:LOCUSUSDT","d":[]},{"s":"SUSHISWAP:PHUNKWETH_D3E31F.USD","d":[]},{"s":"PANCAKESWAP:SPUSDT_1FF383","d":[]},{"s":"BINANCE:MEMEUSDT.P","d":[]},{"s":"PANCAKESWAP:CABOWBNB_566067.USD","d":[]},{"s":"PANCAKESWAP:BALLWBNB_5B667B","d":[]},{"s":"SUSHISWAP:MAIDWETH_C71750","d":[]},{"s":"PANCAKESWAP:HEROSWBNB_44047C.USD","d":[]},{"s":"BINANCE:GRTUSD","d":[]},{"s":"PANCAKESWAP:ETHWBNB_74E471.USD","d":[]},{"s":"PANCAKESWAP:APEXWBNB_7A0F0F","d":[]},{"s":"PANCAKESWAP:BLACKHOLEUSDT_2053AF","d":[]},{"s":"PANCAKESWAP:ALPHAWBNB_482EFF.USD","d":[]},{"s":"PANCAKESWAP:PIGWBNB_51DCAF","d":[]},{"s":"HONEYSWAP:TECHWXDAI_CA2CB5","d":[]},{"s":"KUCOIN:STGUSDT","d":[]},{"s":"KUCOIN:AUDIOBTC","d":[]},{"s":"KUCOIN:OFNUSDT","d":[]},{"s":"PANCAKESWAP:FROGGYWBNB_92FE07","d":[]},{"s":"OKX:POLSUSDT","d":[]},{"s":"PANCAKESWAP:PHRYGESUSDT_FC78B4","d":[]},{"s":"PANCAKESWAP:AMTBTCB_66CD75.USD","d":[]},{"s":"PANCAKESWAP:DESUMMPRO_B12EF7.USD","d":[]},{"s":"PANCAKESWAP:TIPWBNB_DEC742.USD","d":[]},{"s":"OKX:ONEUSDT","d":[]},{"s":"PANCAKESWAP:AIPWBNB_02511B","d":[]},{"s":"PANCAKESWAP:MOBWBNB_A3F05E","d":[]},{"s":"PANCAKESWAP:ZMNBTCB_BF169A.USD","d":[]},{"s":"PANCAKESWAP:PARAWBNB_7670DC","d":[]},{"s":"PANCAKESWAP:DOGECEOCAKE_1500F7.USD","d":[]},{"s":"PANCAKESWAP:SHENSHOUA0B8B2_48C254.USD","d":[]},{"s":"BINANCE:ARKUSDT.P","d":[]},{"s":"PANCAKESWAP:METANIAWBNB_EA777D.USD","d":[]},{"s":"PANCAKESWAP:TSCWBNB_B43BC4","d":[]},{"s":"KUCOIN:ELAUSDT","d":[]},{"s":"PANCAKESWAP:LBRWBNB_9478AF","d":[]},{"s":"PANCAKESWAP:PEPEWBNB_1DE7C7.USD","d":[]},{"s":"PANCAKESWAP:GPTAIUSDT_58456C","d":[]},{"s":"PANCAKESWAP:SYNAPTICAIWBNB_5B1791","d":[]},{"s":"BINANCE:WINGUSD","d":[]},{"s":"UPBIT:ALGOBTC","d":[]},{"s":"PANCAKESWAP:PTGWBNB_48C1E9","d":[]},{"s":"PANCAKESWAP:BKBKUSDT_A62837","d":[]},{"s":"PANCAKESWAP:SOLTHOREUM_F9213F","d":[]},{"s":"UPBIT:SEIBTC","d":[]},{"s":"PANCAKESWAP:AIUSDT_E8169D","d":[]},{"s":"HONEYSWAP:YFIWETH_E9A254","d":[]},{"s":"PANCAKESWAP:SUCWBNB_69FAC9.USD","d":[]},{"s":"BINANCE:COSUSD","d":[]},{"s":"PANCAKESWAP:MARSRISEWBNB_25FF3B.USD","d":[]},{"s":"BINANCE:STORJUSD","d":[]},{"s":"PANCAKESWAP:BEBEWBNB_E72233.USD","d":[]},{"s":"PANCAKESWAP:CAKEWBNB_0ED7E5.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_7E6044","d":[]},{"s":"SUSHISWAPPOLYGON:LUXYUSDC_C2C88D","d":[]},{"s":"PANCAKESWAP:GROKBOYWBNB_3D951D.USD","d":[]},{"s":"PANCAKESWAP:SPACEWBNB_BF0E68.USD","d":[]},{"s":"PANCAKESWAP:BGNUSDT_09A9AA","d":[]},{"s":"PANCAKESWAP:FUCWBNB_4755B5","d":[]},{"s":"PANCAKESWAP:PAWTHWBNB_0BABBB","d":[]},{"s":"PANCAKESWAP:NMXUSDT_8D8B74","d":[]},{"s":"KUCOIN:PIXUSDT","d":[]},{"s":"HONEYSWAP:YFIHNY_3E580E.USD","d":[]},{"s":"KUCOIN:BOBUSDT","d":[]},{"s":"PANCAKESWAP:GATEWBNB_B2165D","d":[]},{"s":"UPBIT:FCT2BTC","d":[]},{"s":"HONEYSWAP:DONUTWXDAI_077240","d":[]},{"s":"PANCAKESWAP:TETEWBNB_409E72.USD","d":[]},{"s":"PANCAKESWAP:CRSWBNB_298815.USD","d":[]},{"s":"PANCAKESWAP:ARUWBNB_839905","d":[]},{"s":"KUCOIN:AAVEBTC","d":[]},{"s":"PANCAKESWAP:YATANCAKEWBNB_6F4A0A","d":[]},{"s":"PANCAKESWAP:PKBUSDT_D4CA7A","d":[]},{"s":"PANCAKESWAP:GAFAWBNB_102377.USD","d":[]},{"s":"BINANCE:ASTRUSDT.P","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_AF3820","d":[]},{"s":"KUCOIN:PORTALUSDT","d":[]},{"s":"PANCAKESWAP:GAIWBNB_AC0B12","d":[]},{"s":"PANCAKESWAP:AFNTYWBNB_FCF326","d":[]},{"s":"PANCAKESWAP:BOXCWBNB_555382.USD","d":[]},{"s":"PANCAKESWAP:CAKESQUID_AD6400","d":[]},{"s":"SUSHISWAP:CVXCRVWETH_4B893B.USD","d":[]},{"s":"SUSHISWAPPOLYGON:TXLWMATIC_3C2646.USD","d":[]},{"s":"KUCOIN:SDUSDT","d":[]},{"s":"PANCAKESWAP:KTUSDT_2F5300","d":[]},{"s":"KUCOIN:RBPUSDT","d":[]},{"s":"PANCAKESWAP:ELONGATEWBNB_4C82B6.USD","d":[]},{"s":"SUSHISWAP:GOGWETH_5C596C","d":[]},{"s":"PANCAKESWAP:CRYPTOFLOKIWBNB_09644B.USD","d":[]},{"s":"OKX:ATOMUSDT","d":[]},{"s":"KUCOIN:DIAUSDT","d":[]},{"s":"PANCAKESWAP:AAWBNB_B5AAD7.USD","d":[]},{"s":"KUCOIN:BTCUSDT","d":[]},{"s":"PANCAKESWAP:FWARWBNB_3D6DF1.USD","d":[]},{"s":"PANCAKESWAP:GHXWBNB_2E0938","d":[]},{"s":"BINANCE:ZETAUSDT.P","d":[]},{"s":"HONEYSWAP:AMISHNY_8CEEA7.USD","d":[]},{"s":"PANCAKESWAP:4CH5WBNB_E74B46.USD","d":[]},{"s":"PANCAKESWAP:TDOGEWBNB_FD8E63.USD","d":[]},{"s":"PANCAKESWAP:FUCWBNB_4755B5.USD","d":[]},{"s":"PANCAKESWAP:WSCWBNB_B1E626.USD","d":[]},{"s":"PANCAKESWAP:SYLWBNB_1B96E2","d":[]},{"s":"PANCAKESWAP:DEBTBGLD_559D0D","d":[]},{"s":"PANCAKESWAP:USDTVWBNB_277BEC.USD","d":[]},{"s":"BINANCE:ONGUSD","d":[]},{"s":"PANCAKESWAP:HGUSDT_ED86EE","d":[]},{"s":"PANCAKESWAP:BSCVWBNB_C13A53","d":[]},{"s":"PANCAKESWAP:BPRIVAWBNB_9CDE67.USD","d":[]},{"s":"PANCAKESWAP:STARUSDT_B97E6B","d":[]},{"s":"PANCAKESWAP:GLCSUSDT_017BCD","d":[]},{"s":"PANCAKESWAP:DMXWBNB_B24916.USD","d":[]},{"s":"PANCAKESWAP:EDACWBNB_46E5E2.USD","d":[]},{"s":"PANCAKESWAP:MAMOUSDT_B1EAFE","d":[]},{"s":"HONEYSWAP:FRIESWXDAI_108D18.USD","d":[]},{"s":"PANCAKESWAP:HAI1ART_DF36E8.USD","d":[]},{"s":"SUSHISWAP:DOGEGFWETH_A416DF.USD","d":[]},{"s":"PANCAKESWAP:VOYAWBNB_28421C","d":[]},{"s":"KUCOIN:DOGEKCS","d":[]},{"s":"UPBIT:ANKRBTC","d":[]},{"s":"PANCAKESWAP:LOWBUSDT_3642B5","d":[]},{"s":"PANCAKESWAP:VTYWBNB_0196EF.USD","d":[]},{"s":"PANCAKESWAP:DFSMWBNB_68E02E","d":[]},{"s":"KUCOIN:ROUPUSDT","d":[]},{"s":"PANCAKESWAP:SADFROGWBNB_C9D4D6","d":[]},{"s":"PANCAKESWAP:BABYLONWBNB_CE4762.USD","d":[]},{"s":"PANCAKESWAP:CASHDOGWBNB_393E67.USD","d":[]},{"s":"HONEYSWAP:CHICKWXDAI_6CBE7C","d":[]},{"s":"PANCAKESWAP:PVCBUSD_58E2C1","d":[]},{"s":"PANCAKESWAP:CIKWBNB_FDA87B","d":[]},{"s":"PANCAKESWAP:XMBTCB_5019D5.USD","d":[]},{"s":"PANCAKESWAP:WAHGWBNB_C6270D","d":[]},{"s":"PANCAKESWAP:WEDWBNB_7435F2.USD","d":[]},{"s":"PANCAKESWAP:PHUBBTCB_0CCF8B.USD","d":[]},{"s":"PANCAKESWAP:LORDZWBNB_583E9B.USD","d":[]},{"s":"KUCOIN:REQBTC","d":[]},{"s":"PANCAKESWAP:BABYTAOWBNB_1AF81C","d":[]},{"s":"PANCAKESWAP:MINERSWBNB_7D03F5.USD","d":[]},{"s":"PANCAKESWAP:BLAZEXWBNB_0032CE.USD","d":[]},{"s":"PANCAKESWAP:CAPSWBNB_9BAFEE.USD","d":[]},{"s":"KUCOIN:WAXPUSDT","d":[]},{"s":"KUCOIN:MBLUSDT","d":[]},{"s":"PANCAKESWAP:LGOWBNB_E73EB8","d":[]},{"s":"PANCAKESWAP:PECUSDT_DB5D2E","d":[]},{"s":"PANCAKESWAP:CLSWBNB_C8E6DD.USD","d":[]},{"s":"PANCAKESWAP:AFREPWBNB_8BD5EF","d":[]},{"s":"PANCAKESWAP:KGOWBNB_25D656.USD","d":[]},{"s":"PANCAKESWAP:MAVRBUSD_E6868C","d":[]},{"s":"PANCAKESWAP:ANTUSDT_EE7481","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_B6409F","d":[]},{"s":"PANCAKESWAP:PENGWBNB_740A55.USD","d":[]},{"s":"BINANCE:BANDUSDT.P","d":[]},{"s":"PANCAKESWAP:UMTWBNB_95E40B.USD","d":[]},{"s":"OKX:ALCXUSDT","d":[]},{"s":"PANCAKESWAP:OETUSDT_261026","d":[]},{"s":"HONEYSWAP:YFTPHNY_0387AF.USD","d":[]},{"s":"BINANCE:QTUMUSD","d":[]},{"s":"PANCAKESWAP:CELAWBNB_EF8158","d":[]},{"s":"PANCAKESWAP:GHXWBNB_2E0938.USD","d":[]},{"s":"PANCAKESWAP:YESWBNB_1DE0CE.USD","d":[]},{"s":"PANCAKESWAP:NOEWBNB_8B847E.USD","d":[]},{"s":"KUCOIN:SKLUSDT","d":[]},{"s":"PANCAKESWAP:NBMWBNB_E56926","d":[]},{"s":"PANCAKESWAP:RCMETH_32EAC7","d":[]},{"s":"PANCAKESWAP:TORIIWBNB_EE6739","d":[]},{"s":"SUSHISWAP:BONDLYWETH_65F550.USD","d":[]},{"s":"KUCOIN:XLMKCS","d":[]},{"s":"OKX:BTCUSDT28M2024","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_733BFC.USD","d":[]},{"s":"OKX:PRQUSDT","d":[]},{"s":"HONEYSWAP:DEXPWBTC_D9E97C.USD","d":[]},{"s":"PANCAKESWAP:SPACEWBNB_62616F.USD","d":[]},{"s":"PANCAKESWAP:JERRYUSDT_3404B9","d":[]},{"s":"PANCAKESWAP:HODLWBNB_AD8B51.USD","d":[]},{"s":"PANCAKESWAP:YFIDAOUSDT_4C46BB","d":[]},{"s":"KUCOIN:IDUSDT.3S","d":[]},{"s":"PANCAKESWAP:SCZWBNB_796278.USD","d":[]},{"s":"PANCAKESWAP:FLOKITRUMPWBNB_9D930B.USD","d":[]},{"s":"PANCAKESWAP:FWCLWBNB_CB9D83.USD","d":[]},{"s":"OKX:ONTUSDT","d":[]},{"s":"PANCAKESWAP:SSNFTUSDC_698BA5","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_387795","d":[]},{"s":"PANCAKESWAP:SHINOWBNB_C1DD3F.USD","d":[]},{"s":"PANCAKESWAP:ROYALEWBNB_022D84.USD","d":[]},{"s":"PANCAKESWAP:SMONBUSD_937817","d":[]},{"s":"PANCAKESWAP:ATCUSDT_E4B5AE","d":[]},{"s":"OKX:XRPUSDT28M2024","d":[]},{"s":"PANCAKESWAP:BUNNYWBNB_7BB894","d":[]},{"s":"OKX:TONEUR","d":[]},{"s":"PANCAKESWAP:BIVEUSDT_DCC6A0","d":[]},{"s":"PANCAKESWAP:GODZWBNB_4CB294","d":[]},{"s":"PANCAKESWAP:MODUSDT_04176F","d":[]},{"s":"PANCAKESWAP:FAMWBNB_9804FC","d":[]},{"s":"PANCAKESWAP:MTCUSDT_123DA7","d":[]},{"s":"PANCAKESWAP:MONGBNBWBNB_4A9F6D.USD","d":[]},{"s":"PANCAKESWAP:PIAOUSDT_ECF41A","d":[]},{"s":"PANCAKESWAP:MYUSDT_9BC4EB","d":[]},{"s":"PANCAKESWAP:GMEWBNB_0CA7F4","d":[]},{"s":"KUCOIN:ADAKCS","d":[]},{"s":"KUCOIN:WINUSDT","d":[]},{"s":"PANCAKESWAP:PENDLETHOREUM_1A1EE6.USD","d":[]},{"s":"PANCAKESWAP:SOLBUSD_EAD15C","d":[]},{"s":"PANCAKESWAP:DOGEMOBWBNB_153056","d":[]},{"s":"PANCAKESWAP:PALMBUSD_171B1C","d":[]},{"s":"PANCAKESWAP:SOLKOL_0717BE.USD","d":[]},{"s":"PANCAKESWAP:AMAWBNB_FA1B11.USD","d":[]},{"s":"PANCAKESWAP:QUACKWBNB_9EDFCE","d":[]},{"s":"PANCAKESWAP:DPADWBNB_A8383E","d":[]},{"s":"SUSHISWAP:KP3RWETH_AF988A","d":[]},{"s":"SUSHISWAP:GRTWETH_7B504A.USD","d":[]},{"s":"PANCAKESWAP:SLABWBNB_B70E80","d":[]},{"s":"PANCAKESWAP:BINWBNB_E432AF.USD","d":[]},{"s":"PANCAKESWAP:CCWBNB_AF345D","d":[]},{"s":"PANCAKESWAP:MHUNTWBNB_58AED2.USD","d":[]},{"s":"PANCAKESWAP:TAPTWBNB_B5AFE0.USD","d":[]},{"s":"PANCAKESWAP:GUMWBNB_28EA58.USD","d":[]},{"s":"PANCAKESWAP:POCOWBNB_ADDF6D.USD","d":[]},{"s":"PANCAKESWAP:VTYWBNB_0196EF","d":[]},{"s":"PANCAKESWAP:WSNWBNB_403225.USD","d":[]},{"s":"PANCAKESWAP:MAFAWBNB_591B7B","d":[]},{"s":"UPBIT:APTBTC","d":[]},{"s":"PANCAKESWAP:UMTBUSD_A6CBC3","d":[]},{"s":"PANCAKESWAP:WINWBNB_894BD5.USD","d":[]},{"s":"PANCAKESWAP:LINKWBNB_AEBE45.USD","d":[]},{"s":"PANCAKESWAP:FTCUSDT_12BE54","d":[]},{"s":"PANCAKESWAP:SK0WBNB_28251A","d":[]},{"s":"PANCAKESWAP:INRBUSD_78CA1D","d":[]},{"s":"PANCAKESWAP:WLCWBNB_CBACFD.USD","d":[]},{"s":"KUCOIN:MYRIAUSDT","d":[]},{"s":"KUCOIN:CFGUSDT","d":[]},{"s":"PANCAKESWAP:DALIWBNB_11A319.USD","d":[]},{"s":"HONEYSWAP:SHIBWBTC_6E16BD.USD","d":[]},{"s":"PANCAKESWAP:IGSUSDT_6D3FE2","d":[]},{"s":"BINANCE:JSTUSD","d":[]},{"s":"PANCAKESWAP:BABYFDWBNB_8BFE29.USD","d":[]},{"s":"PANCAKESWAP:ETHCOINUSDT_A41FEC","d":[]},{"s":"KUCOIN:MTVUSDT","d":[]},{"s":"PANCAKESWAP:XAIWBNB_8DCFD1","d":[]},{"s":"PANCAKESWAP:KOLNMT_6EBFF1","d":[]},{"s":"PANCAKESWAP:ECOINWBNB_BD151F","d":[]},{"s":"PANCAKESWAP:NPTWBNB_B00A22","d":[]},{"s":"PANCAKESWAP:WHALEUSDT_8B1CDD","d":[]},{"s":"PANCAKESWAP:ZUKIWBNB_93FC99.USD","d":[]},{"s":"PANCAKESWAP:UMTWBNB_95E40B","d":[]},{"s":"PANCAKESWAP:MFSDAOUSDT_2BDA6C","d":[]},{"s":"PANCAKESWAP:BNBMPWBNB_FDB18D.USD","d":[]},{"s":"PANCAKESWAP:TAUWBNB_59A566.USD","d":[]},{"s":"HONEYSWAP:BIDWXDAI_B41A23","d":[]},{"s":"PANCAKESWAP:YESUSDT_139161","d":[]},{"s":"PANCAKESWAP:RFTWBNB_6E8884.USD","d":[]},{"s":"PANCAKESWAP:KFR30USDT_E34EB9","d":[]},{"s":"SUSHISWAP:ADXWETH_9CBC2A.USD","d":[]},{"s":"PANCAKESWAP:BEFEBONKWBNB_D64DEA","d":[]},{"s":"HONEYSWAP:DPIWETH_8FA52A.USD","d":[]},{"s":"PANCAKESWAP:GBKWBNB_1C90E8.USD","d":[]},{"s":"PANCAKESWAP:SHIQWBNB_530814.USD","d":[]},{"s":"PANCAKESWAP:TRIBEXWBNB_20A056","d":[]},{"s":"UPBIT:MEDBTC","d":[]},{"s":"PANCAKESWAP:IMOVWBNB_017496.USD","d":[]},{"s":"PANCAKESWAP:KYTEWBNB_4F2EE7","d":[]},{"s":"PANCAKESWAP:WBNBDAI_C7C3CC","d":[]},{"s":"PANCAKESWAP:BRTUSDT_D608B8","d":[]},{"s":"PANCAKESWAP:BURNSWBNB_928CD6.USD","d":[]},{"s":"PANCAKESWAP:GROWDEBT_9C2DE8","d":[]},{"s":"PANCAKESWAP:SAFUWBNB_C83AC7","d":[]},{"s":"PANCAKESWAP:TTAIWBNB_D800BA.USD","d":[]},{"s":"PANCAKESWAP:PEACEWBNB_2C97E8","d":[]},{"s":"SUSHISWAPPOLYGON:LIMEWMATIC_DCB0C1","d":[]},{"s":"HONEYSWAP:TRACWXDAI_57E2F1.USD","d":[]},{"s":"BINANCE:OMGUSDT.P","d":[]},{"s":"PANCAKESWAP:ADAPADWBNB_1BAA21.USD","d":[]},{"s":"KUCOIN:ETHDAI","d":[]},{"s":"PANCAKESWAP:USDCUSDT_85F862","d":[]},{"s":"UPBIT:STEEMBTC","d":[]},{"s":"PANCAKESWAP:LUNAPADWBNB_48C866.USD","d":[]},{"s":"BINANCE:BNBUSDC.P","d":[]},{"s":"PANCAKESWAP:TREESWBNB_4446E4","d":[]},{"s":"PANCAKESWAP:CHANCEWBNB_9AB8B4.USD","d":[]},{"s":"PANCAKESWAP:LINKFIWBNB_12227C","d":[]},{"s":"PANCAKESWAP:MEMOWBNB_8A7562","d":[]},{"s":"PANCAKESWAP:UFDUSDT_BD8EA6","d":[]},{"s":"PANCAKESWAP:BBTWBNB_3D5A3E.USD","d":[]},{"s":"PANCAKESWAP:FSXUWBNB_4FE89A","d":[]},{"s":"PANCAKESWAP:EVSOLWBNB_DCCE26","d":[]},{"s":"PANCAKESWAP:MBEPROWBNB_E52B96.USD","d":[]},{"s":"HONEYSWAP:ETHOWXDAI_1B988C.USD","d":[]},{"s":"PANCAKESWAP:DIAOSUSDT_9E37AA","d":[]},{"s":"PANCAKESWAP:SHINUWBNB_3B932D.USD","d":[]},{"s":"KUCOIN:MUBIUSDT","d":[]},{"s":"PANCAKESWAP:LIONWBNB_DEA781.USD","d":[]},{"s":"SUSHISWAPPOLYGON:CRVWETH_396E65.USD","d":[]},{"s":"PANCAKESWAP:PLTWBNB_4786EE.USD","d":[]},{"s":"PANCAKESWAP:TPADWBNB_99B981.USD","d":[]},{"s":"PANCAKESWAP:ETNAWBNB_A2FACC","d":[]},{"s":"PANCAKESWAP:PAYXWBNB_31C77F.USD","d":[]},{"s":"PANCAKESWAP:XAIWBNB_DB039C.USD","d":[]},{"s":"PANCAKESWAP:LOLWBNB_90D3AA.USD","d":[]},{"s":"OKX:FLOWEUR","d":[]},{"s":"PANCAKESWAP:MOCEANSWBNB_C83796.USD","d":[]},{"s":"PANCAKESWAP:XROWWBNB_CD40C1.USD","d":[]},{"s":"PANCAKESWAP:SPACWBNB_F4B2E7","d":[]},{"s":"KUCOIN:PUSHBTC","d":[]},{"s":"OKX:EOSUSD28M2024","d":[]},{"s":"KUCOIN:TURBOSUSDT","d":[]},{"s":"OKX:BORAUSDT","d":[]},{"s":"OKX:STETHUSDT","d":[]},{"s":"PANCAKESWAP:NUMBUSD_3B17F6","d":[]},{"s":"KUCOIN:USTCUSDT","d":[]},{"s":"PANCAKESWAP:GYMAIWBNB_DE3ABD.USD","d":[]},{"s":"PANCAKESWAP:RJVWBNB_1A2291.USD","d":[]},{"s":"BINANCE:PHBUSD","d":[]},{"s":"PANCAKESWAP:STNOWBNB_8EDB8C","d":[]},{"s":"PANCAKESWAP:VIZSLASWAPWBNB_8D3CF6","d":[]},{"s":"PANCAKESWAP:LPUSDT_E74E57","d":[]},{"s":"PANCAKESWAP:40V2FIL_51251F.USD","d":[]},{"s":"PANCAKESWAP:ARPAWBNB_9730C7","d":[]},{"s":"PANCAKESWAP:XGTWBNB_4DE0ED.USD","d":[]},{"s":"PANCAKESWAP:ENERGYDOGEWBNB_27D336.USD","d":[]},{"s":"PANCAKESWAP:NFTSWBNB_DBF75D","d":[]},{"s":"PANCAKESWAP:FSVUSDT_7EF084","d":[]},{"s":"HONEYSWAP:WETCWETH_5F710A","d":[]},{"s":"UPBIT:MLKBTC","d":[]},{"s":"SUSHISWAPPOLYGON:BCTUSDC_1E6712","d":[]},{"s":"PANCAKESWAP:FISHWBNB_591DF7.USD","d":[]},{"s":"PANCAKESWAP:CATUSDT_F2F229","d":[]},{"s":"PANCAKESWAP:DEFIAIWBNB_45766B","d":[]},{"s":"HONEYSWAP:AAVEUSDT_3DBB09","d":[]},{"s":"PANCAKESWAP:EDACWBNB_46E5E2","d":[]},{"s":"SUSHISWAP:PXLDYWETH_E5F4C2","d":[]},{"s":"KUCOIN:SUIPUSDT","d":[]},{"s":"PANCAKESWAP:SHPUSDT_6E94C3","d":[]},{"s":"PANCAKESWAP:ULXUSDT_A8A003","d":[]},{"s":"SUSHISWAP:SUKUWETH_2979FA.USD","d":[]},{"s":"BINANCE:PORTALUSDT.P","d":[]},{"s":"HONEYSWAP:HEXDONUT_41D921","d":[]},{"s":"PANCAKESWAP:PITWBNB_B450CB","d":[]},{"s":"PANCAKESWAP:XAKITAWBNB_796C54.USD","d":[]},{"s":"PANCAKESWAP:LRTCZUSD_117C53.USD","d":[]},{"s":"KUCOIN:FETUSDT","d":[]},{"s":"PANCAKESWAP:TRUSTUSDT_FF77A0","d":[]},{"s":"KUCOIN:GRAPEUSDT","d":[]},{"s":"PANCAKESWAP:BENZE300USDT_A3B374","d":[]},{"s":"PANCAKESWAP:DORUSDT_31EA27","d":[]},{"s":"UPBIT:ZRXBTC","d":[]},{"s":"PANCAKESWAP:GIXWBNB_D1A4FD","d":[]},{"s":"PANCAKESWAP:DAIWBNB_99C49F.USD","d":[]},{"s":"PANCAKESWAP:HAREWBNB_CCD53B.USD","d":[]},{"s":"PANCAKESWAP:EGWBNB_0018F4","d":[]},{"s":"SUSHISWAP:DAOXWETH_5B64C8.USD","d":[]},{"s":"PANCAKESWAP:METAWBNB_713B14.USD","d":[]},{"s":"SUSHISWAP:XRUNEWETH_95CFA1.USD","d":[]},{"s":"PANCAKESWAP:MOONSTARWBNB_CA0D13","d":[]},{"s":"PANCAKESWAP:WBTCVWBNB_19FD7F","d":[]},{"s":"PANCAKESWAP:PIPWBNB_3605B0.USD","d":[]},{"s":"PANCAKESWAP:BTNBUSDT_ECA910","d":[]},{"s":"PANCAKESWAP:2024SDSSWBNB_9FDDC2","d":[]},{"s":"PANCAKESWAP:B2BWBNB_FA9B1A","d":[]},{"s":"BINANCE:QNTUSDT.P","d":[]},{"s":"PANCAKESWAP:PHONENIXWBNB_D53A0E","d":[]},{"s":"PANCAKESWAP:PIXELWBNB_8390B3.USD","d":[]},{"s":"PANCAKESWAP:SYCLCC_11844D.USD","d":[]},{"s":"OKX:RPLUSDC","d":[]},{"s":"PANCAKESWAP:EGLDWBNB_CD6885","d":[]},{"s":"KUCOIN:AOGUSDT","d":[]},{"s":"PANCAKESWAP:XPRESSBUSD_FA6CE6","d":[]},{"s":"PANCAKESWAP:CATEWBNB_6C6636","d":[]},{"s":"PANCAKESWAP:BEEUSDT_E94A77","d":[]},{"s":"PANCAKESWAP:POOCOINWBNB_0C5DA0.USD","d":[]},{"s":"PANCAKESWAP:BULLWBNB_97D715.USD","d":[]},{"s":"PANCAKESWAP:SPSWBNB_FDFDE3","d":[]},{"s":"UPBIT:ARBBTC","d":[]},{"s":"KUCOIN:XPRUSDT","d":[]},{"s":"PANCAKESWAP:WECOWBNB_3DB79A","d":[]},{"s":"PANCAKESWAP:CKD20USDT_83BDBA","d":[]},{"s":"PANCAKESWAP:DVFBWBNB_820B59","d":[]},{"s":"PANCAKESWAP:MOONARCHWBNB_A4D4B9","d":[]},{"s":"PANCAKESWAP:A2A476WBNB_FF3151.USD","d":[]},{"s":"KUCOIN:ECOXUSDT","d":[]},{"s":"UPBIT:SUIBTC","d":[]},{"s":"PANCAKESWAP:GTUSDT_8C1209","d":[]},{"s":"PANCAKESWAP:CRXWBNB_8B5203.USD","d":[]},{"s":"KUCOIN:TADAUSDT","d":[]},{"s":"PANCAKESWAP:DEXOWBNB_5DC452.USD","d":[]},{"s":"PANCAKESWAP:ABNWBNB_BA064F","d":[]},{"s":"BINANCE:RENUSD","d":[]},{"s":"PANCAKESWAP:CSWAPWBNB_7E7F18.USD","d":[]},{"s":"PANCAKESWAP:SJMNUSDT_3D70E9","d":[]},{"s":"KUCOIN:WAXPETH","d":[]},{"s":"PANCAKESWAP:HOTCROSSWBNB_F23BAD","d":[]},{"s":"KUCOIN:PEPEUPUSDT","d":[]},{"s":"PANCAKESWAP:ZGLKINGWBNB_D384CA.USD","d":[]},{"s":"PANCAKESWAP:SHAKEMILK2_223648","d":[]},{"s":"PANCAKESWAP:TAUUSDT_CD9D28","d":[]},{"s":"HONEYSWAP:MUSDWXDAI_2ED999.USD","d":[]},{"s":"PANCAKESWAP:KISHIMOTOWBNB_1837EB","d":[]},{"s":"SUSHISWAP:NFTLWETH_F79321.USD","d":[]},{"s":"PANCAKESWAP:TICUSDT_0E4BD5","d":[]},{"s":"PANCAKESWAP:USDDBUSD_004A9C","d":[]},{"s":"KUCOIN:RLCBTC","d":[]},{"s":"OKX:MRSTUSDT","d":[]},{"s":"PANCAKESWAP:ELONGATEWBNB_4C82B6","d":[]},{"s":"BINANCE:SPELLUSDT.P","d":[]},{"s":"PANCAKESWAP:CRYPTOTUBEAIWBNB_3F0858.USD","d":[]},{"s":"KUCOIN:CAPPETH","d":[]},{"s":"PANCAKESWAP:MKFWBNB_522010.USD","d":[]},{"s":"PANCAKESWAP:PATEXWBNB_F09D19","d":[]},{"s":"PANCAKESWAP:PNTPBTC_DAA89D.USD","d":[]},{"s":"OKX:BRWLUSDT","d":[]},{"s":"PANCAKESWAP:CHANCEWBNB_9AB8B4","d":[]},{"s":"PANCAKESWAP:MISTWBNB_5A26EB.USD","d":[]},{"s":"PANCAKESWAP:GYMNETWBNB_F5D3CB","d":[]},{"s":"PANCAKESWAP:SHODBUSD_9799A3","d":[]},{"s":"PANCAKESWAP:SAKAIUSDT_8F7C9E","d":[]},{"s":"PANCAKESWAP:STWWBNB_C1DE00.USD","d":[]},{"s":"BINANCE:ORBSUSDT.P","d":[]},{"s":"PANCAKESWAP:EOSWBNB_B6E34B.USD","d":[]},{"s":"PANCAKESWAP:WCOINWBNB_3713FB.USD","d":[]},{"s":"PANCAKESWAP:FOXV2WBNB_4D3D40","d":[]},{"s":"PANCAKESWAP:BABYBURNWBNB_8D44E6","d":[]},{"s":"PANCAKESWAP:GMPDBUSD_31A2E5","d":[]},{"s":"OKX:MINAUSDT","d":[]},{"s":"PANCAKESWAP:SOSHEWBNB_C1975B","d":[]},{"s":"BINANCE:SXPUSD","d":[]},{"s":"PANCAKESWAP:BITXCAKE_800B76.USD","d":[]},{"s":"PANCAKESWAP:FATEWBNB_E3EA5C","d":[]},{"s":"PANCAKESWAP:SRTWBNB_087D04.USD","d":[]},{"s":"PANCAKESWAP:MCBUSD_20AF74","d":[]},{"s":"PANCAKESWAP:MVSBUSD_0DFA50","d":[]},{"s":"PANCAKESWAP:SALEWBNB_61CA6A.USD","d":[]},{"s":"PANCAKESWAP:NMBTCWBNB_5ECDC6","d":[]},{"s":"HONEYSWAP:MKRWXDAI_A8A0C3","d":[]},{"s":"PANCAKESWAP:BTCBYOSTEP_E09818.USD","d":[]},{"s":"HONEYSWAP:HNYGNO_E1344F.USD","d":[]},{"s":"PANCAKESWAP:SAFEICARUSWBNB_238FA1.USD","d":[]},{"s":"SUSHISWAP:CURIOWETH_8A83B0.USD","d":[]},{"s":"PANCAKESWAP:CBDWBNB_0B4958.USD","d":[]},{"s":"PANCAKESWAP:NGAWBNB_396A47","d":[]},{"s":"PANCAKESWAP:BGGWBNB_703C6A","d":[]},{"s":"PANCAKESWAP:DELBUSD_ACB702","d":[]},{"s":"PANCAKESWAP:POPEWBNB_6EBFDC.USD","d":[]},{"s":"PANCAKESWAP:ELDGWBNB_AA9AA0","d":[]},{"s":"PANCAKESWAP:XCNWBNB_F01ED8","d":[]},{"s":"PANCAKESWAP:DELOTWBNB_18F453.USD","d":[]},{"s":"KUCOIN:XTZUSDT","d":[]},{"s":"PANCAKESWAP:B2BWBNB_FA9B1A.USD","d":[]},{"s":"PANCAKESWAP:PINKWBNB_F0F701","d":[]},{"s":"SUSHISWAP:WNCGWETH_877D9C.USD","d":[]},{"s":"PANCAKESWAP:BVVWBNB_964E7F.USD","d":[]},{"s":"PANCAKESWAP:GEEKOWBNB_F211AB","d":[]},{"s":"PANCAKESWAP:BFSWBNB_FBC5D7","d":[]},{"s":"PANCAKESWAP:BTCBMETFI_43035D","d":[]},{"s":"PANCAKESWAP:SSSWBNB_5A24B5","d":[]},{"s":"PANCAKESWAP:BEFXWBNB_71ECFE","d":[]},{"s":"PANCAKESWAP:CIKWBNB_FDA87B.USD","d":[]},{"s":"PANCAKESWAP:AMPLWBNB_A141E5.USD","d":[]},{"s":"PANCAKESWAP:QTMETH_A51385.USD","d":[]},{"s":"PANCAKESWAP:LINDACEOWBNB_9D433D.USD","d":[]},{"s":"PANCAKESWAP:BTCMPWBNB_29F24A.USD","d":[]},{"s":"PANCAKESWAP:GODELONWBNB_71A9A9.USD","d":[]},{"s":"SUSHISWAP:MILADYWETH_15A8E3.USD","d":[]},{"s":"PANCAKESWAP:BITBUSD_F1B66D","d":[]},{"s":"PANCAKESWAP:TNBBF_10B932.USD","d":[]},{"s":"BINANCE:MAVUSDT.P","d":[]},{"s":"OKX:XCHBTC","d":[]},{"s":"PANCAKESWAP:XWBNB_E88531","d":[]},{"s":"PANCAKESWAP:DCBBUSD_2ED957","d":[]},{"s":"PANCAKESWAP:AOSUSDT_76F4A2","d":[]},{"s":"KUCOIN:PSTAKEUSDT","d":[]},{"s":"PANCAKESWAP:YFSXUSDT_0D080C","d":[]},{"s":"PANCAKESWAP:EDEBUSD_D14E0B","d":[]},{"s":"PANCAKESWAP:CUBBNBSMARTCHAINHIVE_BB98F4.USD","d":[]},{"s":"PANCAKESWAP:ZROUSDT_F52AA7","d":[]},{"s":"PANCAKESWAP:SNPBUSD_468691","d":[]},{"s":"OKX:DOSEUSDT","d":[]},{"s":"PANCAKESWAP:SITMUSDT_B07354","d":[]},{"s":"PANCAKESWAP:ELONGATEWBNB_7F1BB2","d":[]},{"s":"BINANCE:ARKMUSD","d":[]},{"s":"PANCAKESWAP:LCEOWBNB_844EA8","d":[]},{"s":"SUSHISWAP:SPELLWETH_B5DE0C.USD","d":[]},{"s":"KUCOIN:RNDRUPUSDT","d":[]},{"s":"PANCAKESWAP:TREATWBNB_FA0C17","d":[]},{"s":"HONEYSWAP:ETHIXWETH_2B8D7A.USD","d":[]},{"s":"PANCAKESWAP:BENDOGWBNB_6F0476","d":[]},{"s":"PANCAKESWAP:BABYDOGEINUWBNB_99F513.USD","d":[]},{"s":"PANCAKESWAP:MZUSDT_AF2D88","d":[]},{"s":"PANCAKESWAP:GOROSUSDT_80D1E8","d":[]},{"s":"HONEYSWAP:WBTCWXDAI_8DB887","d":[]},{"s":"OKX:USDTEUR","d":[]},{"s":"KUCOIN:VLXBTC","d":[]},{"s":"PANCAKESWAP:GMMBUSD_EDEEC0","d":[]},{"s":"PANCAKESWAP:WARRRWBNB_F01575","d":[]},{"s":"PANCAKESWAP:STRIPWBNB_1EFA95","d":[]},{"s":"PANCAKESWAP:299DAOUSDT_7D6A47","d":[]},{"s":"PANCAKESWAP:MBPBUSD_74D857","d":[]},{"s":"SUSHISWAPPOLYGON:TUTWBTC_5D9AC8","d":[]},{"s":"SUSHISWAP:REMIOWETH_D6931C","d":[]},{"s":"HONEYSWAP:AGVEWETH_EBA7CC","d":[]},{"s":"PANCAKESWAP:ZKWBNB_A65662.USD","d":[]},{"s":"OKX:ERNUSDT","d":[]},{"s":"PANCAKESWAP:GHRTWBNB_F79043","d":[]},{"s":"PANCAKESWAP:ROFIBUSD_46BC56","d":[]},{"s":"PANCAKESWAP:VTVWBNB_D34147","d":[]},{"s":"PANCAKESWAP:SHFWBNB_08D50A.USD","d":[]},{"s":"PANCAKESWAP:SHDBWBNB_3F344F.USD","d":[]},{"s":"PANCAKESWAP:SMBRWBNB_D6F7A0.USD","d":[]},{"s":"PANCAKESWAP:FCLUSDT_2AB3BA","d":[]},{"s":"PANCAKESWAP:AGATAWBNB_C60B84.USD","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_615D78.USD","d":[]},{"s":"KUCOIN:TRBUSDT","d":[]},{"s":"KUCOIN:FXSUSDT","d":[]},{"s":"PANCAKESWAP:AMBWBNB_A274D4.USD","d":[]},{"s":"PANCAKESWAP:ETHJUT_970AAB.USD","d":[]},{"s":"BINANCE:ALGOUSDT.P","d":[]},{"s":"PANCAKESWAP:FREDWBNB_F48513","d":[]},{"s":"KUCOIN:AAUSDT","d":[]},{"s":"HONEYSWAP:HIVESHAREWXDAI_35ADA6","d":[]},{"s":"OKX:EOSUSDT29H2024","d":[]},{"s":"PANCAKESWAP:ZMTWBNB_030576.USD","d":[]},{"s":"PANCAKESWAP:GOLDWBNB_D58066","d":[]},{"s":"PANCAKESWAP:SCAWBNB_88E2EA","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_4DDCD0","d":[]},{"s":"PANCAKESWAP:LAZIOWBNB_11C0B2","d":[]},{"s":"PANCAKESWAP:CELLWBNB_1C15F4","d":[]},{"s":"PANCAKESWAP:PIFWBNB_FF64FD.USD","d":[]},{"s":"PANCAKESWAP:DOGAIWBNB_A87F56","d":[]},{"s":"PANCAKESWAP:GUTUSDT_7172F8","d":[]},{"s":"SUSHISWAP:MEEBWETH_E339C1","d":[]},{"s":"PANCAKESWAP:BTCETFWBNB_2B8D0B.USD","d":[]},{"s":"SUSHISWAP:PLAYDOUGH_AF491D","d":[]},{"s":"PANCAKESWAP:SOULKIND_73475F.USD","d":[]},{"s":"PANCAKESWAP:1CENTWBNB_D41B1A.USD","d":[]},{"s":"HONEYSWAP:WETHGIV_A8E7D3.USD","d":[]},{"s":"PANCAKESWAP:DORWBNB_E8B38B","d":[]},{"s":"PANCAKESWAP:DEXEDWBNB_B554A8.USD","d":[]},{"s":"PANCAKESWAP:OPZEKNDWBNB_BED90B.USD","d":[]},{"s":"PANCAKESWAP:ZTXWBNB_11805F.USD","d":[]},{"s":"HONEYSWAP:RENBTCWBTC_84F2FF","d":[]},{"s":"PANCAKESWAP:BJSUSDT_A5CFA0","d":[]},{"s":"PANCAKESWAP:SRCXWBNB_F7C0D1.USD","d":[]},{"s":"PANCAKESWAP:REFIWBNB_880D75","d":[]},{"s":"PANCAKESWAP:VOYAWBNB_8C213A.USD","d":[]},{"s":"PANCAKESWAP:BITBULLUSDT_EC1513","d":[]},{"s":"PANCAKESWAP:CAIBUSD_D840F1","d":[]},{"s":"SUSHISWAP:API3WETH_A8AEC0","d":[]},{"s":"KUCOIN:OOFPUSDT","d":[]},{"s":"PANCAKESWAP:ARMYWBNB_9DEF57.USD","d":[]},{"s":"PANCAKESWAP:MECHWBNB_73C590.USD","d":[]},{"s":"PANCAKESWAP:MTGUSDT_87C66E","d":[]},{"s":"KUCOIN:TRUBTC","d":[]},{"s":"HONEYSWAP:USDCGNO_42F741.USD","d":[]},{"s":"PANCAKESWAP:GROKFATHERWBNB_FAC0FC.USD","d":[]},{"s":"PANCAKESWAP:HBGWBNB_00407C","d":[]},{"s":"KUCOIN:FTMUSDT.3S","d":[]},{"s":"PANCAKESWAP:GROKDOGEWBNB_1DA6AD","d":[]},{"s":"PANCAKESWAP:HUTWBNB_A5173F.USD","d":[]},{"s":"HONEYSWAP:BODWXDAI_E9FB2C","d":[]},{"s":"HONEYSWAP:DATAWXDAI_3BB4EE","d":[]},{"s":"SUSHISWAPPOLYGON:SNXWETH_116FF0","d":[]},{"s":"PANCAKESWAP:EVOWBNB_829AF4","d":[]},{"s":"PANCAKESWAP:YUSEBUSD_7708A3","d":[]},{"s":"SUSHISWAP:CVXWETH_05767D.USD","d":[]},{"s":"PANCAKESWAP:ROYALSHIBAWBNB_5F733A.USD","d":[]},{"s":"PANCAKESWAP:BIRDWBNB_A6C06E","d":[]},{"s":"PANCAKESWAP:BMD30USDT_1FAD73","d":[]},{"s":"PANCAKESWAP:IDYPWBNB_1BC61D.USD","d":[]},{"s":"OKX:SUSHIEUR","d":[]},{"s":"PANCAKESWAP:NNNWBNB_01E65D","d":[]},{"s":"PANCAKESWAP:BABYSHIBWBNB_078AD1.USD","d":[]},{"s":"PANCAKESWAP:OPTIMOUSEWBNB_8D5BC8.USD","d":[]},{"s":"PANCAKESWAP:DUCKYAIWBNB_819F8C.USD","d":[]},{"s":"KUCOIN:XRPUSDT","d":[]},{"s":"PANCAKESWAP:ZIGTHOREUM_37FFB7","d":[]},{"s":"SUSHISWAP:BLURWETH_90A709","d":[]},{"s":"PANCAKESWAP:YAGWBNB_36A0C6","d":[]},{"s":"KUCOIN:NEARUSDT.3S","d":[]},{"s":"SUSHISWAP:YVBOOSTWETH_946117.USD","d":[]},{"s":"KUCOIN:OMGETH","d":[]},{"s":"PANCAKESWAP:DECODEUSDT_2B6004","d":[]},{"s":"PANCAKESWAP:AIWBNB_EC9E76","d":[]},{"s":"PANCAKESWAP:KRPZAUSDT_33894C","d":[]},{"s":"PANCAKESWAP:TITDAOETH_ED971B","d":[]},{"s":"PANCAKESWAP:AIWBNB_EC9E76.USD","d":[]},{"s":"KUCOIN:NIMETH","d":[]},{"s":"BINANCE:LTCUSDT.P","d":[]},{"s":"SUSHISWAP:KP3RWETH_AF988A.USD","d":[]},{"s":"PANCAKESWAP:FEEDWBNB_CF3ED0.USD","d":[]},{"s":"PANCAKESWAP:BUYUSDT_A122D2","d":[]},{"s":"PANCAKESWAP:SHIBOWBNB_386543.USD","d":[]},{"s":"SUSHISWAP:MANAWETH_1BEC4D","d":[]},{"s":"OKX:PITUSDT","d":[]},{"s":"PANCAKESWAP:BONKFORKWBNB_1D7720","d":[]},{"s":"PANCAKESWAP:MYROFLOKIWBNB_5B8A03.USD","d":[]},{"s":"PANCAKESWAP:BOOMWBNB_258799.USD","d":[]},{"s":"PANCAKESWAP:FROGWBNB_7DAE75","d":[]},{"s":"PANCAKESWAP:DVIWBNB_89EBF9","d":[]},{"s":"PANCAKESWAP:AMWBNB_FC19F7.USD","d":[]},{"s":"HONEYSWAP:PAXGWXDAI_E736A4","d":[]},{"s":"OKX:BNBUSDT","d":[]},{"s":"PANCAKESWAP:NELUMWBNB_8BE9B7","d":[]},{"s":"SUSHISWAP:XFTWETH_DAC032","d":[]},{"s":"PANCAKESWAP:PEPEWBNB_A8D36A.USD","d":[]},{"s":"KUCOIN:BONDLYETH","d":[]},{"s":"PANCAKESWAP:DHRWBNB_0CB1B9.USD","d":[]},{"s":"PANCAKESWAP:ELMONWBNB_58C341.USD","d":[]},{"s":"PANCAKESWAP:PMPWBNB_A7D494","d":[]},{"s":"PANCAKESWAP:ZSTUSDC_2CC1AC","d":[]},{"s":"OKX:TONUSDT","d":[]},{"s":"PANCAKESWAP:HFHWBNB_268639","d":[]},{"s":"PANCAKESWAP:PEPEPCC_D0D7A7","d":[]},{"s":"PANCAKESWAP:CRACEWBNB_C17158.USD","d":[]},{"s":"PANCAKESWAP:TKOWBNB_496A8B","d":[]},{"s":"PANCAKESWAP:ICATUSDT_5D54B7","d":[]},{"s":"OKX:CELRUSDT","d":[]},{"s":"PANCAKESWAP:SABLEWBNB_A0D4E2","d":[]},{"s":"HONEYSWAP:YFTPWXDAI_52CE77.USD","d":[]},{"s":"SUSHISWAP:APEUSDT_B27C7B","d":[]},{"s":"HONEYSWAP:SUCHNY_0E9090.USD","d":[]},{"s":"PANCAKESWAP:ASHWBNB_D13C75","d":[]},{"s":"PANCAKESWAP:FPSWBNB_C04DE4","d":[]},{"s":"SUSHISWAPPOLYGON:JRTWETH_A769C6","d":[]},{"s":"HONEYSWAP:SHIBUSDC_5D29C0","d":[]},{"s":"KUCOIN:WBTCUSDT","d":[]},{"s":"SUSHISWAP:FRAXWETH_EC8C34.USD","d":[]},{"s":"OKX:USDTUSDC","d":[]},{"s":"KUCOIN:DVPNUSDT","d":[]},{"s":"HONEYSWAP:FOXHNY_8A0BEE.USD","d":[]},{"s":"PANCAKESWAP:BDAOWBNB_1B20D4","d":[]},{"s":"PANCAKESWAP:UIMBUSD_F5377A","d":[]},{"s":"SUSHISWAPPOLYGON:TURINWBTC_3A96A8","d":[]},{"s":"PANCAKESWAP:GROKCEOWBNB_6DFD2C.USD","d":[]},{"s":"KUCOIN:UNFIUSDT","d":[]},{"s":"PANCAKESWAP:BOCWBNB_E35C9F","d":[]},{"s":"PANCAKESWAP:DSCPLUSDT_C325F6","d":[]},{"s":"KUCOIN:LRCUSDT","d":[]},{"s":"PANCAKESWAP:HPWBNB_B07AC7.USD","d":[]},{"s":"PANCAKESWAP:PANAWBNB_C1B8CC","d":[]},{"s":"PANCAKESWAP:RVLWBNB_851F4F","d":[]},{"s":"PANCAKESWAP:HEROESBUSD_928BE3","d":[]},{"s":"PANCAKESWAP:SNSWBNB_84D511","d":[]},{"s":"PANCAKESWAP:ETWBNB_AAA4EB.USD","d":[]},{"s":"SUSHISWAPPOLYGON:SNXWETH_116FF0.USD","d":[]},{"s":"PANCAKESWAP:ARUWBNB_839905.USD","d":[]},{"s":"PANCAKESWAP:NOAHUSDT_C767BE","d":[]},{"s":"SUSHISWAP:INVDOLA_5BA61C","d":[]},{"s":"PANCAKESWAP:PEPELONWBNB_E61913.USD","d":[]},{"s":"PANCAKESWAP:LHARWBNB_1FF832","d":[]},{"s":"OKX:RDNTUSDC","d":[]},{"s":"PANCAKESWAP:QBTWBNB_67EFEF.USD","d":[]},{"s":"PANCAKESWAP:QATARWBNB_F39DB1.USD","d":[]},{"s":"PANCAKESWAP:TRUNKWBNB_C979B1","d":[]},{"s":"PANCAKESWAP:EDEWBNB_A8CD0C","d":[]},{"s":"PANCAKESWAP:FOXGIRLWBNB_86213E.USD","d":[]},{"s":"PANCAKESWAP:MEMOWBNB_8A7562.USD","d":[]},{"s":"BINANCE:DOGEUSDC.P","d":[]},{"s":"PANCAKESWAP:KBOXUSDT_0614C3","d":[]},{"s":"PANCAKESWAP:BARMYWBNB_DFDC22.USD","d":[]},{"s":"PANCAKESWAP:VIZSLASWAPLGC_06979D.USD","d":[]},{"s":"PANCAKESWAP:NOVAWBNB_38F82D.USD","d":[]},{"s":"UPBIT:STRIKEBTC","d":[]},{"s":"PANCAKESWAP:STYLWBNB_C52D9D","d":[]},{"s":"PANCAKESWAP:BABYANGELUSDT_9CA145","d":[]},{"s":"PANCAKESWAP:FTUSDT_E41D1F","d":[]},{"s":"PANCAKESWAP:METAUSDT_BDA39A","d":[]},{"s":"HONEYSWAP:BUSDUSDC_03F5B0","d":[]},{"s":"PANCAKESWAP:WODUSDT_2FC69A","d":[]},{"s":"PANCAKESWAP:SQUAWBNB_C70734.USD","d":[]},{"s":"PANCAKESWAP:SAFEMARSWBNB_FA8387.USD","d":[]},{"s":"PANCAKESWAP:X2049_8B8E7E","d":[]},{"s":"PANCAKESWAP:CZWBNB_616735.USD","d":[]},{"s":"BINANCE:LEVERUSDT.P","d":[]},{"s":"HONEYSWAP:XBRICKDONUT_466D88.USD","d":[]},{"s":"PANCAKESWAP:LAMBROWBNB_4D080A.USD","d":[]},{"s":"PANCAKESWAP:AMFWBNB_E57CB4.USD","d":[]},{"s":"PANCAKESWAP:TANGYUANWBNB_F3B6CD.USD","d":[]},{"s":"PANCAKESWAP:BTDBUSD_EBAAA6","d":[]},{"s":"BINANCE:ONEUSD","d":[]},{"s":"KUCOIN:DEXEBTC","d":[]},{"s":"PANCAKESWAP:XTOKENWBNB_7F8776","d":[]},{"s":"PANCAKESWAP:TTDAOUSDT_0A7891","d":[]},{"s":"PANCAKESWAP:ENFTWBNB_E225F2.USD","d":[]},{"s":"PANCAKESWAP:TTDSUSDT_81494A","d":[]},{"s":"KUCOIN:FTMUSDC","d":[]},{"s":"PANCAKESWAP:Y5WBNB_3C3AF4.USD","d":[]},{"s":"PANCAKESWAP:TENTWBNB_30E181","d":[]},{"s":"PANCAKESWAP:KAIWBNB_06CDD8","d":[]},{"s":"PANCAKESWAP:WCHIETH_8EEE2D","d":[]},{"s":"PANCAKESWAP:TWDOWBNB_C31116.USD","d":[]},{"s":"UPBIT:FXBTC","d":[]},{"s":"PANCAKESWAP:SUSHIETH_175803","d":[]},{"s":"BINANCE:QIUSD","d":[]},{"s":"PANCAKESWAP:NFTPADWBNB_4A24D6","d":[]},{"s":"PANCAKESWAP:MVCWBNB_6D686C.USD","d":[]},{"s":"SUSHISWAPPOLYGON:TXLWMATIC_3C2646","d":[]},{"s":"PANCAKESWAP:SHILLINGWBNB_A4695E.USD","d":[]},{"s":"PANCAKESWAP:AGGWBNB_F26483","d":[]},{"s":"KUCOIN:ABBCUSDT","d":[]},{"s":"PANCAKESWAP:WIRUSDT_0A1303","d":[]},{"s":"PANCAKESWAP:JEFFWBNB_3F44DA.USD","d":[]},{"s":"PANCAKESWAP:ASVABUSD_583C2A","d":[]},{"s":"OKX:BTCUSD27U2024","d":[]},{"s":"PANCAKESWAP:SHIWBNB_703D9C","d":[]},{"s":"BINANCE:FISUSD","d":[]},{"s":"PANCAKESWAP:TCTWBNB_53D469","d":[]},{"s":"HONEYSWAP:USDPWXDAI_568535.USD","d":[]},{"s":"OKX:ATOMBTC","d":[]},{"s":"PANCAKESWAP:KSWWBNB_7D21E0.USD","d":[]},{"s":"BINANCE:LRCUSD","d":[]},{"s":"PANCAKESWAP:SPIDEYWBNB_FC74A6.USD","d":[]},{"s":"PANCAKESWAP:MIMIWBNB_B00AEF.USD","d":[]},{"s":"PANCAKESWAP:4TOKENWBNB_9673F9","d":[]},{"s":"BINANCE:HIVEUSD","d":[]},{"s":"PANCAKESWAP:BZENWBNB_7D781F.USD","d":[]},{"s":"PANCAKESWAP:PEAKBUSD_D7804D","d":[]},{"s":"KUCOIN:NXRAUSDT","d":[]},{"s":"PANCAKESWAP:LITEUSDT_0D9DE8","d":[]},{"s":"OKX:ETHUSDT28M2024","d":[]},{"s":"HONEYSWAP:UBTWXDAI_77FDFC","d":[]},{"s":"PANCAKESWAP:BINSWBNB_82118D","d":[]},{"s":"PANCAKESWAP:XUSDSKMT_A9360E.USD","d":[]},{"s":"PANCAKESWAP:4SHENSHOU_5D6354.USD","d":[]},{"s":"SUSHISWAP:GRTWETH_7B504A","d":[]},{"s":"PANCAKESWAP:LONGUSDT_70BA87","d":[]},{"s":"PANCAKESWAP:APENUSDT_BFBAFD","d":[]},{"s":"PANCAKESWAP:KSOSWBNB_9F2FCB","d":[]},{"s":"PANCAKESWAP:ORTWBNB_6E8EF1","d":[]},{"s":"SUSHISWAP:GODSWETH_295685.USD","d":[]},{"s":"BINANCE:KEYUSDT.P","d":[]},{"s":"KUCOIN:UQCUSDT","d":[]},{"s":"PANCAKESWAP:PEPELONGWBNB_31848B","d":[]},{"s":"PANCAKESWAP:NGAWBNB_396A47.USD","d":[]},{"s":"PANCAKESWAP:FWARWBNB_3D6DF1","d":[]},{"s":"PANCAKESWAP:GEARWBNB_D16E57","d":[]},{"s":"SUSHISWAP:PERCWETH_45B6FF.USD","d":[]},{"s":"PANCAKESWAP:EQNOXBUSD_95DC08","d":[]},{"s":"PANCAKESWAP:KLUVWBNB_BD2154.USD","d":[]},{"s":"SUSHISWAP:DIGGWBTC_9A1386.USD","d":[]},{"s":"KUCOIN:XLMUSDT","d":[]},{"s":"PANCAKESWAP:BLESWBNB_B563FC.USD","d":[]},{"s":"PANCAKESWAP:XCBWBNB_476900.USD","d":[]},{"s":"SUSHISWAP:BANKWETH_938625","d":[]},{"s":"HONEYSWAP:GHOWXDAI_6BB283.USD","d":[]},{"s":"PANCAKESWAP:HGHGBUSD_1CCDAF","d":[]},{"s":"PANCAKESWAP:HUBWBNB_065DBF","d":[]},{"s":"KUCOIN:POLSUSDT","d":[]},{"s":"SUSHISWAP:MODAWETH_1C934B.USD","d":[]},{"s":"PANCAKESWAP:GMWBNB_83895B","d":[]},{"s":"PANCAKESWAP:GALAXYWBNB_3BC18C.USD","d":[]},{"s":"PANCAKESWAP:TPTBUSD_6D0C83","d":[]},{"s":"PANCAKESWAP:ADACASHWBNB_504D67","d":[]},{"s":"KUCOIN:ETHUSDT.3S","d":[]},{"s":"PANCAKESWAP:CBCWBNB_D4C99B.USD","d":[]},{"s":"PANCAKESWAP:GFIWBNB_4E4042","d":[]},{"s":"PANCAKESWAP:PEPEUSDT_3401D3","d":[]},{"s":"PANCAKESWAP:XAIWBNB_4F14D4","d":[]},{"s":"PANCAKESWAP:GLCWBNB_913A16","d":[]},{"s":"SUSHISWAP:OOKIWETH_EAADDE","d":[]},{"s":"PANCAKESWAP:SORAWBNB_293DE7.USD","d":[]},{"s":"PANCAKESWAP:CLCTWBNB_933F48","d":[]},{"s":"PANCAKESWAP:NLCUSDT_0CC338","d":[]},{"s":"KUCOIN:CWEBUSDT","d":[]},{"s":"PANCAKESWAP:SAPWBNB_0010B1.USD","d":[]},{"s":"PANCAKESWAP:MGKLWBNB_5BD45E.USD","d":[]},{"s":"KUCOIN:QKCBTC","d":[]},{"s":"PANCAKESWAP:SPAYBUSD_92DD3E","d":[]},{"s":"PANCAKESWAP:GEMSWBNB_5A9338","d":[]},{"s":"SUSHISWAP:SYLOWETH_0B1ED1","d":[]},{"s":"PANCAKESWAP:CYBRRRDOGEWBNB_3F7D13.USD","d":[]},{"s":"PANCAKESWAP:CRUXWBNB_3C4247.USD","d":[]},{"s":"PANCAKESWAP:PIPAWBNB_CF1F61.USD","d":[]},{"s":"SUSHISWAP:BITWETH_E12AF1.USD","d":[]},{"s":"KUCOIN:BNBUSDT.3S","d":[]},{"s":"PANCAKESWAP:GERMANYUSDT_2315FA","d":[]},{"s":"SUSHISWAP:INDEXWETH_A73DF6.USD","d":[]},{"s":"KUCOIN:GTCUSDT","d":[]},{"s":"KUCOIN:GRAILUSDT","d":[]},{"s":"PANCAKESWAP:PNDRBUSD_CFE81B","d":[]},{"s":"PANCAKESWAP:NOEWBNB_8B847E","d":[]},{"s":"PANCAKESWAP:HZNWBNB_DC9A57.USD","d":[]},{"s":"PANCAKESWAP:MSTWBNB_C6931C.USD","d":[]},{"s":"PANCAKESWAP:DRAGWBNB_EAD6EC","d":[]},{"s":"PANCAKESWAP:SOMUSDT_43ACC9","d":[]},{"s":"BINANCE:MKRUSD","d":[]},{"s":"PANCAKESWAP:AGIUSDT_27795F","d":[]},{"s":"PANCAKESWAP:EFBAIWBNB_E6570D.USD","d":[]},{"s":"PANCAKESWAP:SXUSDT_2159E7","d":[]},{"s":"PANCAKESWAP:DNXCBUSD_196F1D","d":[]},{"s":"HONEYSWAP:SHIBWETH_478AC0","d":[]},{"s":"SUSHISWAP:WETHUSDT_06DA0F","d":[]},{"s":"PANCAKESWAP:NEARWBNB_9191B0","d":[]},{"s":"PANCAKESWAP:CDTWBNB_0C8011","d":[]},{"s":"HONEYSWAP:FTMWXDAI_3FE53A.USD","d":[]},{"s":"KUCOIN:FITFIUSDT","d":[]},{"s":"BINANCE:POLYXUSDT.P","d":[]},{"s":"KUCOIN:KARATEUSDT","d":[]},{"s":"PANCAKESWAP:MEMEETFWBNB_441098","d":[]},{"s":"OKX:KDAUSDT","d":[]},{"s":"KUCOIN:NEOUSDT","d":[]},{"s":"OKX:XRPUSD29H2024","d":[]},{"s":"BINANCE:DYMUSDT.P","d":[]},{"s":"PANCAKESWAP:BABYGROKWBNB_DA5740.USD","d":[]},{"s":"PANCAKESWAP:FILUSDT_7DCC03","d":[]},{"s":"PANCAKESWAP:PERLWBNB_044E99.USD","d":[]},{"s":"BINANCE:OGUSD","d":[]},{"s":"PANCAKESWAP:EKAUSDT_1A4FE2","d":[]},{"s":"PANCAKESWAP:YMIIUSDT_6B6B2D","d":[]},{"s":"HONEYSWAP:SNXWXDAI_E01977.USD","d":[]},{"s":"HONEYSWAP:FOXGIV_75594F","d":[]},{"s":"PANCAKESWAP:ETSUSDT_75C269","d":[]},{"s":"PANCAKESWAP:PHXWBNB_993358.USD","d":[]},{"s":"PANCAKESWAP:ZYCUSDT_D8FB85","d":[]},{"s":"PANCAKESWAP:VDONBUSD_B71C8E","d":[]},{"s":"OKX:BCHBTC","d":[]},{"s":"BINANCE:XMRUSDT.P","d":[]},{"s":"PANCAKESWAP:LACEWBNB_0C03AA","d":[]},{"s":"PANCAKESWAP:MINIBTCWBNB_D0DB39.USD","d":[]},{"s":"PANCAKESWAP:TURTKINGWBNB_D8CD0C.USD","d":[]},{"s":"BINANCE:RUNEUSD","d":[]},{"s":"KUCOIN:RANKERUSDT","d":[]},{"s":"PANCAKESWAP:LVMWBNB_B6AA23","d":[]},{"s":"PANCAKESWAP:MDOBUSD_D65F81","d":[]},{"s":"PANCAKESWAP:DEXSHAREWBNB_65D834","d":[]},{"s":"SUSHISWAP:WNCGWETH_877D9C","d":[]},{"s":"OKX:TRXBTC","d":[]},{"s":"KUCOIN:XRDUSDT","d":[]},{"s":"KUCOIN:CLVUSDT","d":[]},{"s":"PANCAKESWAP:LCWBNB_AC4DCB","d":[]},{"s":"PANCAKESWAP:NUDESBUSD_BE9309","d":[]},{"s":"PANCAKESWAP:RXSBUSD_E576EB","d":[]},{"s":"PANCAKESWAP:LUCKYDOGEUSDT_DA9BCC","d":[]},{"s":"PANCAKESWAP:CMSCUSDT_608463","d":[]},{"s":"PANCAKESWAP:BMXWBNB_594567","d":[]},{"s":"KUCOIN:LTOUSDT","d":[]},{"s":"OKX:CHZBTC","d":[]},{"s":"PANCAKESWAP:BONEWBNB_0693CA.USD","d":[]},{"s":"KUCOIN:UNIUSDT","d":[]},{"s":"BINANCE:SKLUSDT.P","d":[]},{"s":"PANCAKESWAP:METADOGEAIWBNB_E8B8E6.USD","d":[]},{"s":"PANCAKESWAP:HKMOONWBNB_D5E2A0.USD","d":[]},{"s":"PANCAKESWAP:MUDIMEI_15D876.USD","d":[]},{"s":"PANCAKESWAP:20518BWBNB_59526B","d":[]},{"s":"KUCOIN:AKTUSDT","d":[]},{"s":"BINANCE:CHRUSD","d":[]},{"s":"BINANCE:RLCUSDT.P","d":[]},{"s":"PANCAKESWAP:BNCHWBNB_6A0CE6","d":[]},{"s":"PANCAKESWAP:GORILLAWBNB_727616.USD","d":[]},{"s":"PANCAKESWAP:MSTWBNB_4AFB62","d":[]},{"s":"PANCAKESWAP:SMOONWBNB_519E37.USD","d":[]},{"s":"KUCOIN:AVAUSDT","d":[]},{"s":"PANCAKESWAP:QXXCGRV_E0725F","d":[]},{"s":"PANCAKESWAP:VGOWBNB_D212FD","d":[]},{"s":"PANCAKESWAP:MFOBUSD_2E85AC","d":[]},{"s":"PANCAKESWAP:DAOPWBNB_C2FECA.USD","d":[]},{"s":"PANCAKESWAP:PERLWBNB_044E99","d":[]},{"s":"PANCAKESWAP:SMARTPEPEWBNB_E31829.USD","d":[]},{"s":"KUCOIN:NGCUSDT","d":[]},{"s":"PANCAKESWAP:TGBTCB_04711B","d":[]},{"s":"PANCAKESWAP:CFLUSDT_44FF3C","d":[]},{"s":"PANCAKESWAP:EBYTWBNB_861306.USD","d":[]},{"s":"PANCAKESWAP:AEVOUSDT_FE5B25","d":[]},{"s":"PANCAKESWAP:SMPFWBNB_04EC43","d":[]},{"s":"PANCAKESWAP:MARSWBNB_2A05BF.USD","d":[]},{"s":"PANCAKESWAP:TANKSWBNB_810F86.USD","d":[]},{"s":"HONEYSWAP:ALBCUSDC_0443D1","d":[]},{"s":"PANCAKESWAP:YAGWBNB_36A0C6.USD","d":[]},{"s":"PANCAKESWAP:ZTDAOUSDT_638431","d":[]},{"s":"PANCAKESWAP:TOHOLDWBNB_00DD59","d":[]},{"s":"PANCAKESWAP:SRUSDT_EAE383","d":[]},{"s":"PANCAKESWAP:SHENRONXWBNB_3628BD.USD","d":[]},{"s":"PANCAKESWAP:SHIBAIBUSD_B083A2","d":[]},{"s":"SUSHISWAP:FODLUSDC_A5C475","d":[]},{"s":"PANCAKESWAP:STSTLONG_B622FD","d":[]},{"s":"PANCAKESWAP:TAUWBNB_D52E65.USD","d":[]},{"s":"PANCAKESWAP:GLRUSDT_85682B","d":[]},{"s":"PANCAKESWAP:PEPECHAINWBNB_4F20FE","d":[]},{"s":"PANCAKESWAP:MJCTWBNB_FAE697","d":[]},{"s":"PANCAKESWAP:YYDSUSDT_BB553F","d":[]},{"s":"PANCAKESWAP:POLCWBNB_4689BF","d":[]},{"s":"PANCAKESWAP:BTCBTCB_8046FA","d":[]},{"s":"PANCAKESWAP:GOKUWBNB_959E2A","d":[]},{"s":"PANCAKESWAP:W3WWBNB_FE9EA6.USD","d":[]},{"s":"PANCAKESWAP:BLOVELYWBNB_C680DC","d":[]},{"s":"PANCAKESWAP:NSIWBNB_42EBFA","d":[]},{"s":"PANCAKESWAP:ELFWBNB_BAC7D7","d":[]},{"s":"BINANCE:BNXUSDT.P","d":[]},{"s":"PANCAKESWAP:NOSFERATUSWBNB_CF6813","d":[]},{"s":"BINANCE:QNTUSD","d":[]},{"s":"PANCAKESWAP:XJLUSDT_4D08E2","d":[]},{"s":"PANCAKESWAP:EBAWBNB_89EFBF","d":[]},{"s":"PANCAKESWAP:ORAIWBNB_F7697D.USD","d":[]},{"s":"PANCAKESWAP:RDFWBNB_9BB484.USD","d":[]},{"s":"UPBIT:ZRXUSDT","d":[]},{"s":"PANCAKESWAP:TOKWBNB_EA7EA2.USD","d":[]},{"s":"PANCAKESWAP:CARESV2WBNB_CAE4DC","d":[]},{"s":"HONEYSWAP:BRIGHTGIV_094CF5.USD","d":[]},{"s":"PANCAKESWAP:ALPACAWBNB_1099C2.USD","d":[]},{"s":"PANCAKESWAP:SAFUWBNB_C83AC7.USD","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_0CD82A.USD","d":[]},{"s":"PANCAKESWAP:COPWBNB_A5534B","d":[]},{"s":"PANCAKESWAP:DOTWBNB_DD5BAD.USD","d":[]},{"s":"PANCAKESWAP:FIFA24USDT_247733","d":[]},{"s":"PANCAKESWAP:BCHATUSDT_D999B1","d":[]},{"s":"PANCAKESWAP:DORMONWBNB_719718","d":[]},{"s":"HONEYSWAP:BALWETH_848049","d":[]},{"s":"PANCAKESWAP:MOONMOONWBNB_4A75B6","d":[]},{"s":"BINANCE:MATICUSD","d":[]},{"s":"PANCAKESWAP:OPTIMUSAIWBNB_DEC50C.USD","d":[]},{"s":"PANCAKESWAP:GLOWWBNB_378369","d":[]},{"s":"PANCAKESWAP:OPCATWBNB_910CDC","d":[]},{"s":"PANCAKESWAP:GROKDRAGONWBNB_62E901.USD","d":[]},{"s":"PANCAKESWAP:ZROWBNB_9D8D17.USD","d":[]},{"s":"KUCOIN:HFTUSDC","d":[]},{"s":"PANCAKESWAP:GGTKNBUSD_4B6A98","d":[]},{"s":"KUCOIN:AIEPKUSDT","d":[]},{"s":"OKX:OMGUSDT","d":[]},{"s":"PANCAKESWAP:MICUSDT_3E3D8E","d":[]},{"s":"PANCAKESWAP:REALMWBNB_C75B3D.USD","d":[]},{"s":"PANCAKESWAP:METIS20WBNB_32FD9D.USD","d":[]},{"s":"PANCAKESWAP:ZROWBNB_426AEC.USD","d":[]},{"s":"PANCAKESWAP:TRUBGRWBNB_884D42.USD","d":[]},{"s":"PANCAKESWAP:AITROLLDADWBNB_E5F71C.USD","d":[]},{"s":"PANCAKESWAP:LORDZWBNB_339D3D","d":[]},{"s":"PANCAKESWAP:HAZEWBNB_F0176F.USD","d":[]},{"s":"PANCAKESWAP:DWTWBNB_535939","d":[]},{"s":"HONEYSWAP:BUSDWXDAI_476E86.USD","d":[]},{"s":"KUCOIN:TOMIUSDT","d":[]},{"s":"PANCAKESWAP:LTTWBNB_98D797.USD","d":[]},{"s":"KUCOIN:ROUTEUSDT","d":[]},{"s":"KUCOIN:BANDBTC","d":[]},{"s":"BINANCE:1000FLOKIUSDT.P","d":[]},{"s":"PANCAKESWAP:BNBHWBNB_AD178E","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_D3B216","d":[]},{"s":"PANCAKESWAP:CTGUSDT_C0380E","d":[]},{"s":"PANCAKESWAP:EYEWBNB_D13250","d":[]},{"s":"PANCAKESWAP:TREEWBNB_62BB4B","d":[]},{"s":"PANCAKESWAP:MYRAWBNB_BDC085","d":[]},{"s":"HONEYSWAP:BIDUSDC_901E9A","d":[]},{"s":"PANCAKESWAP:EPSWBNB_F90458.USD","d":[]},{"s":"PANCAKESWAP:GANGNAMWBNB_F3E046","d":[]},{"s":"PANCAKESWAP:DFAUSDT_FA45C2","d":[]},{"s":"PANCAKESWAP:JXUSDT_CB2F3C","d":[]},{"s":"PANCAKESWAP:XOXWBNB_8D3279.USD","d":[]},{"s":"PANCAKESWAP:MGFWBNB_CE58AD","d":[]},{"s":"PANCAKESWAP:KALMUSDC_C80208","d":[]},{"s":"PANCAKESWAP:SMGSPIN_EFED8E.USD","d":[]},{"s":"BINANCE:ANKRUSDT.P","d":[]},{"s":"PANCAKESWAP:ALTWBNB_31AD3C.USD","d":[]},{"s":"SUSHISWAP:DATAWETH_4A73D9","d":[]},{"s":"KUCOIN:LRCBTC","d":[]},{"s":"SUSHISWAPPOLYGON:BRIDGEWETH_26B7C7","d":[]},{"s":"PANCAKESWAP:LOOTBUSD_155D20","d":[]},{"s":"PANCAKESWAP:NFTBWBNB_FABEF0.USD","d":[]},{"s":"PANCAKESWAP:PENGWBNB_740A55","d":[]},{"s":"KUCOIN:HIUNDEADUSDT","d":[]},{"s":"PANCAKESWAP:JUICEWBNB_1B6D91","d":[]},{"s":"HONEYSWAP:YDAIYUSDCYUSDTYTUSDWETH_EDE99E.USD","d":[]},{"s":"KUCOIN:NORDBTC","d":[]},{"s":"PANCAKESWAP:TRUBGRWBNB_884D42","d":[]},{"s":"PANCAKESWAP:SVWBNB_6CF721","d":[]},{"s":"PANCAKESWAP:MICMEB_D3659D.USD","d":[]},{"s":"PANCAKESWAP:GROKSUSDT_6C3D7B","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_9C2B3B","d":[]},{"s":"PANCAKESWAP:PARMAWBNB_482BA3","d":[]},{"s":"OKX:WSMUSDT","d":[]},{"s":"KUCOIN:NEOETH","d":[]},{"s":"PANCAKESWAP:IRYDEWBNB_86246A","d":[]},{"s":"SUSHISWAP:DOSEWETH_E2E998.USD","d":[]},{"s":"PANCAKESWAP:SOWBNB_79C852.USD","d":[]},{"s":"PANCAKESWAP:APIWBNB_1ABD90.USD","d":[]},{"s":"SUSHISWAP:FOLDWETH_A914A9.USD","d":[]},{"s":"HONEYSWAP:MCDCWETH_41AC11.USD","d":[]},{"s":"PANCAKESWAP:ZABUSDT_9D4167","d":[]},{"s":"PANCAKESWAP:PIUSDT_D89D5A","d":[]},{"s":"PANCAKESWAP:QLWBNB_244A19.USD","d":[]},{"s":"KUCOIN:HTRUSDT","d":[]},{"s":"PANCAKESWAP:AGGWBNB_516BA8.USD","d":[]},{"s":"BINANCE:KAVAUSDT.P","d":[]},{"s":"PANCAKESWAP:SOPHWBNB_79083C","d":[]},{"s":"PANCAKESWAP:BONKGROKWBNB_CC972D.USD","d":[]},{"s":"PANCAKESWAP:ERAWBNB_53A63A","d":[]},{"s":"PANCAKESWAP:XCTUSDT_2C5D15","d":[]},{"s":"PANCAKESWAP:BANUSWBNB_B0A40C","d":[]},{"s":"PANCAKESWAP:GZONEWBNB_8ACB24","d":[]},{"s":"PANCAKESWAP:KELWBNB_F38963","d":[]},{"s":"PANCAKESWAP:NLIFEWBNB_56971E.USD","d":[]},{"s":"PANCAKESWAP:GEGEWBNB_239E47.USD","d":[]},{"s":"PANCAKESWAP:MAIWBNB_36AE9B","d":[]},{"s":"PANCAKESWAP:LOAWBNB_98D6D2","d":[]},{"s":"PANCAKESWAP:CROOGEWBNB_B1BEF3","d":[]},{"s":"PANCAKESWAP:BRKLUSDT_F06818","d":[]},{"s":"PANCAKESWAP:GWORKWBNB_FEC69E.USD","d":[]},{"s":"PANCAKESWAP:TURCUSDT_5F03EF","d":[]},{"s":"PANCAKESWAP:KINGSHIBWBNB_C943E8.USD","d":[]},{"s":"PANCAKESWAP:MRKCWBNB_841A23","d":[]},{"s":"SUSHISWAP:SUSHIFRAX_E06F8D.USD","d":[]},{"s":"PANCAKESWAP:MJCTWBNB_FAE697.USD","d":[]},{"s":"PANCAKESWAP:DCSUSDT_133047","d":[]},{"s":"PANCAKESWAP:CINUWBNB_0210F6.USD","d":[]},{"s":"PANCAKESWAP:MUVWBNB_856CAA.USD","d":[]},{"s":"PANCAKESWAP:HLSWBNB_51ED5F","d":[]},{"s":"HONEYSWAP:STAKEWETH_F95D38.USD","d":[]},{"s":"PANCAKESWAP:DARWBNB_062F88","d":[]},{"s":"PANCAKESWAP:TXPWBNB_A1A09E","d":[]},{"s":"PANCAKESWAP:PRZSWBNB_E2F4A4","d":[]},{"s":"HONEYSWAP:HNYGIV_08EA9F","d":[]},{"s":"PANCAKESWAP:MEMELONGWBNB_CFB211","d":[]},{"s":"SUSHISWAP:C98WETH_557B08","d":[]},{"s":"PANCAKESWAP:GEMINIWBNB_CD10ED.USD","d":[]},{"s":"PANCAKESWAP:TINUWBNB_61CEFE.USD","d":[]},{"s":"OKX:AXSEUR","d":[]},{"s":"PANCAKESWAP:SUBWBNB_CF5A3F.USD","d":[]},{"s":"PANCAKESWAP:SSGWBNB_AE6CDF.USD","d":[]},{"s":"PANCAKESWAP:ROYALSHIBAWBNB_5F733A","d":[]},{"s":"PANCAKESWAP:HOPWBNB_462674.USD","d":[]},{"s":"HONEYSWAP:XYOWXDAI_F9CAD1","d":[]},{"s":"PANCAKESWAP:FTTWBNB_DA6F70","d":[]},{"s":"OKX:BTCUSD26J2024","d":[]},{"s":"PANCAKESWAP:TWEETYWBNB_FBBFD1.USD","d":[]},{"s":"PANCAKESWAP:PEPEDUBAIWBNB_94D84F.USD","d":[]},{"s":"PANCAKESWAP:THOREUMETH_4004E3.USD","d":[]},{"s":"PANCAKESWAP:EPTARR_ADF74C","d":[]},{"s":"PANCAKESWAP:CHIUSDT_3500B4","d":[]},{"s":"BINANCE:ACEUSDT.P","d":[]},{"s":"KUCOIN:DMTRUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:GENEWETH_3D4219","d":[]},{"s":"PANCAKESWAP:ADGWBNB_D27652","d":[]},{"s":"PANCAKESWAP:ONSWBNB_AF5434","d":[]},{"s":"PANCAKESWAP:DEBTDLG_EB7F2B","d":[]},{"s":"PANCAKESWAP:XCADCAKE_50E483","d":[]},{"s":"KUCOIN:PBXUSDT","d":[]},{"s":"PANCAKESWAP:ANARCHYWBNB_36ACA8","d":[]},{"s":"PANCAKESWAP:PNTBTCB_C387F3.USD","d":[]},{"s":"PANCAKESWAP:FLOKINYWBNB_331B77","d":[]},{"s":"BINANCE:MINAUSD","d":[]},{"s":"SUSHISWAP:WXRPUSDC_EA9B00","d":[]},{"s":"KUCOIN:MVUSDT","d":[]},{"s":"PANCAKESWAP:TEAUSDT_2691F9","d":[]},{"s":"PANCAKESWAP:POPEWBNB_6EBFDC","d":[]},{"s":"PANCAKESWAP:WESWBNB_C28C58.USD","d":[]},{"s":"OKX:WBTCUSDT","d":[]},{"s":"OKX:LTCUSD28M2024","d":[]},{"s":"UPBIT:HBDBTC","d":[]},{"s":"PANCAKESWAP:KGOLDUSDT_D74D66","d":[]},{"s":"PANCAKESWAP:ABBWBNB_19F7CC","d":[]},{"s":"KUCOIN:HIMEEBITSUSDT","d":[]},{"s":"PANCAKESWAP:SLTUSDT_AB0007","d":[]},{"s":"BINANCE:PROMUSD","d":[]},{"s":"PANCAKESWAP:IBGBUSD_36B8EE","d":[]},{"s":"PANCAKESWAP:GPTCWBNB_83E126","d":[]},{"s":"OKX:USDTTRY","d":[]},{"s":"PANCAKESWAP:FYTWBNB_0E13C9","d":[]},{"s":"PANCAKESWAP:MONABUSD_FC7B8B","d":[]},{"s":"SUSHISWAP:BIFIWETH_0BEC54.USD","d":[]},{"s":"SUSHISWAP:AAVEWETH_D75EA1.USD","d":[]},{"s":"HONEYSWAP:WETHTRINI_861856.USD","d":[]},{"s":"PANCAKESWAP:METABTBUSD_3F7C4E","d":[]},{"s":"KUCOIN:MKRUSDT","d":[]},{"s":"PANCAKESWAP:DADAWBNB_B9F257.USD","d":[]},{"s":"PANCAKESWAP:POOCOINWBNB_0C5DA0","d":[]},{"s":"PANCAKESWAP:LIGHTWBNB_D469F2.USD","d":[]},{"s":"PANCAKESWAP:VFOXRFOX_864778.USD","d":[]},{"s":"PANCAKESWAP:FITWBNB_5E8CE1","d":[]},{"s":"PANCAKESWAP:YATANCAKEWBNB_6F4A0A.USD","d":[]},{"s":"BINANCE:RLCUSD","d":[]},{"s":"PANCAKESWAP:CUTWBNB_87B54C","d":[]},{"s":"PANCAKESWAP:SDXWBNB_C380A7","d":[]},{"s":"PANCAKESWAP:KAVAWBNB_C993AC","d":[]},{"s":"PANCAKESWAP:RYOSHIWBNB_3C6378","d":[]},{"s":"PANCAKESWAP:FLOBOWBNB_39FBA9.USD","d":[]},{"s":"PANCAKESWAP:7BUSDT_46DB53","d":[]},{"s":"HONEYSWAP:SYMMWXDAI_4DEE7B","d":[]},{"s":"PANCAKESWAP:OPHXWBNB_0FCE2C.USD","d":[]},{"s":"PANCAKESWAP:KUBICWOOP_7B8B26","d":[]},{"s":"BINANCE:BADGERUSDT.P","d":[]},{"s":"PANCAKESWAP:GORGEOUSWBNB_D35AF8","d":[]},{"s":"PANCAKESWAP:ABCDWBNB_D79308","d":[]},{"s":"PANCAKESWAP:BSWWBNB_8CA3FF","d":[]},{"s":"KUCOIN:IGUUSDT","d":[]},{"s":"HONEYSWAP:HEXWETH_7C6A19","d":[]},{"s":"PANCAKESWAP:MBEWBNB_191439.USD","d":[]},{"s":"HONEYSWAP:UNCXWXDAI_40E931.USD","d":[]},{"s":"PANCAKESWAP:PFYWBNB_FD1A80","d":[]},{"s":"PANCAKESWAP:ANTWBNB_53E23D.USD","d":[]},{"s":"PANCAKESWAP:ZOONWBNB_5407D6.USD","d":[]},{"s":"HONEYSWAP:ACUSDC_673C77","d":[]},{"s":"PANCAKESWAP:TOCKTWBNB_639EF5.USD","d":[]},{"s":"PANCAKESWAP:ANCHORWBNB_942986","d":[]},{"s":"HONEYSWAP:BFEDWXDAI_AAE0F1","d":[]},{"s":"PANCAKESWAP:BIBITOKENWBNB_720BE4.USD","d":[]},{"s":"PANCAKESWAP:SLOTHBUSD_A9F9ED","d":[]},{"s":"SUSHISWAP:DYDXWETH_E4EBD8.USD","d":[]},{"s":"HONEYSWAP:UNIHNY_02DB42","d":[]},{"s":"PANCAKESWAP:NEROWBNB_EC5B53.USD","d":[]},{"s":"PANCAKESWAP:BULLWBNB_97D715","d":[]},{"s":"KUCOIN:CELOUSDT","d":[]},{"s":"PANCAKESWAP:SHINJIWBNB_9ECDB3.USD","d":[]},{"s":"PANCAKESWAP:STWWBNB_C1DE00","d":[]},{"s":"KUCOIN:PUSHUSDT","d":[]},{"s":"BINANCE:CFXUSD","d":[]},{"s":"SUSHISWAP:CREAMWETH_F169CE.USD","d":[]},{"s":"PANCAKESWAP:MMGBUSD_EF2167","d":[]},{"s":"PANCAKESWAP:XMCUSDT_B4DE6F","d":[]},{"s":"PANCAKESWAP:PHICWBNB_14540C.USD","d":[]},{"s":"PANCAKESWAP:LNTWBNB_323078","d":[]},{"s":"BINANCE:DIAUSD","d":[]},{"s":"KUCOIN:ACQUSDC","d":[]},{"s":"PANCAKESWAP:SFILWBNB_E687E8.USD","d":[]},{"s":"PANCAKESWAP:PNTPBTC_DAA89D","d":[]},{"s":"KUCOIN:CTIETH","d":[]},{"s":"PANCAKESWAP:JYBUSDT_956AA5","d":[]},{"s":"HONEYSWAP:COLDWETH_347DD7.USD","d":[]},{"s":"PANCAKESWAP:STELIAWBNB_EBB9BB","d":[]},{"s":"PANCAKESWAP:TLMWBNB_E6B421.USD","d":[]},{"s":"PANCAKESWAP:SAFEWBNB_9129D0.USD","d":[]},{"s":"OKX:MKRUSDC","d":[]},{"s":"PANCAKESWAP:BLINUWBNB_0791E0.USD","d":[]},{"s":"PANCAKESWAP:DOGELEGIONWBNB_3C384B","d":[]},{"s":"PANCAKESWAP:AMZWBNB_DA34AD.USD","d":[]},{"s":"OKX:BTCUSDC28M2024","d":[]},{"s":"PANCAKESWAP:WLCWBNB_315F9C","d":[]},{"s":"PANCAKESWAP:BABYBNBWBNB_7ACED9.USD","d":[]},{"s":"PANCAKESWAP:CLEARWBNB_6E0F00.USD","d":[]},{"s":"PANCAKESWAP:BURNKINGWBNB_ED1E97.USD","d":[]},{"s":"PANCAKESWAP:ORBSWBNB_CD71C4.USD","d":[]},{"s":"PANCAKESWAP:MBSWBNB_ECA67E.USD","d":[]},{"s":"PANCAKESWAP:WSLSBTCB_370165","d":[]},{"s":"PANCAKESWAP:DECBUSD_612502","d":[]},{"s":"PANCAKESWAP:TKCWBNB_BEE567.USD","d":[]},{"s":"PANCAKESWAP:SFILWBNB_E687E8","d":[]},{"s":"PANCAKESWAP:DTCWBNB_7905A6","d":[]},{"s":"PANCAKESWAP:KSNUSDT_57E5D2","d":[]},{"s":"PANCAKESWAP:VTVWBNB_CDAFF7.USD","d":[]},{"s":"PANCAKESWAP:SORAWBNB_BC91C6.USD","d":[]},{"s":"PANCAKESWAP:MARSWBNB_BB478F.USD","d":[]},{"s":"PANCAKESWAP:LBBUSDT_EA4798","d":[]},{"s":"PANCAKESWAP:RVLWBNB_851F4F.USD","d":[]},{"s":"KUCOIN:LMRBTC","d":[]},{"s":"PANCAKESWAP:TRUTHWBNB_7B575E.USD","d":[]},{"s":"PANCAKESWAP:HYKWBNB_D94470","d":[]},{"s":"PANCAKESWAP:BACD2WBNB_12A79D","d":[]},{"s":"PANCAKESWAP:GBTWBNB_E7B72F","d":[]},{"s":"PANCAKESWAP:KNTBUSD_CC6B11","d":[]},{"s":"PANCAKESWAP:EVRWBNB_BCC876.USD","d":[]},{"s":"PANCAKESWAP:QJUSDT_7298BD","d":[]},{"s":"HONEYSWAP:AMISLINK_06477B.USD","d":[]},{"s":"PANCAKESWAP:MLZWBNB_4F664D.USD","d":[]},{"s":"PANCAKESWAP:WISHWBNB_20EEF1","d":[]},{"s":"BINANCE:ATOMUSD","d":[]},{"s":"PANCAKESWAP:APYSWBNB_510B29","d":[]},{"s":"PANCAKESWAP:YESWBNB_6FC052.USD","d":[]},{"s":"PANCAKESWAP:FLOSHIDOWBNB_982D5D","d":[]},{"s":"PANCAKESWAP:PCDUSDT_397A65","d":[]},{"s":"PANCAKESWAP:CCCLOWBNB_C00326","d":[]},{"s":"PANCAKESWAP:ECOINWBNB_BD151F.USD","d":[]},{"s":"PANCAKESWAP:BRICKSWBNB_C47704.USD","d":[]},{"s":"PANCAKESWAP:IDMUSDT_899C93","d":[]},{"s":"OKX:GODSUSDT","d":[]},{"s":"PANCAKESWAP:FJBWBNB_6684F7","d":[]},{"s":"PANCAKESWAP:MCUSDT_D2937B","d":[]},{"s":"BINANCE:BAKEUSD","d":[]},{"s":"PANCAKESWAP:MINARWBNB_2455FC.USD","d":[]},{"s":"SUSHISWAP:RAILDAI_7F5176","d":[]},{"s":"BINANCE:SUPERUSDT.P","d":[]},{"s":"PANCAKESWAP:SPEPEWBNB_B5DAE7.USD","d":[]},{"s":"KUCOIN:DARUSDT","d":[]},{"s":"PANCAKESWAP:ASSWBNB_2407A0.USD","d":[]},{"s":"PANCAKESWAP:TROLLWBNB_76B1F5","d":[]},{"s":"KUCOIN:AMPLBTC","d":[]},{"s":"PANCAKESWAP:APPAWBNB_8AE3FA","d":[]},{"s":"OKX:LTCUSDT28M2024","d":[]},{"s":"HONEYSWAP:TBTCWBTC_8A328E.USD","d":[]},{"s":"OKX:ARBEUR","d":[]},{"s":"SUSHISWAPPOLYGON:PZUGWETH_0A7F27","d":[]},{"s":"PANCAKESWAP:AOGUSDT_BC92D2","d":[]},{"s":"PANCAKESWAP:USDEXUSDC_79F3BB","d":[]},{"s":"PANCAKESWAP:MOONRISEWBNB_D29B84.USD","d":[]},{"s":"PANCAKESWAP:KMCWBNB_8747D8.USD","d":[]},{"s":"PANCAKESWAP:DTGWBNB_D2E4A5.USD","d":[]},{"s":"PANCAKESWAP:SAFEMOONCASHWBNB_AD6892.USD","d":[]},{"s":"PANCAKESWAP:OCEANSWBNB_9BA68A","d":[]},{"s":"KUCOIN:YGGUSDT","d":[]},{"s":"PANCAKESWAP:LOOMUSDC_59EED4","d":[]},{"s":"PANCAKESWAP:SHINEWBNB_1C0553","d":[]},{"s":"PANCAKESWAP:ETHBUSD_7213A3","d":[]},{"s":"UPBIT:STPTBTC","d":[]},{"s":"UPBIT:XRPBTC","d":[]},{"s":"PANCAKESWAP:MNFTBUSD_FB0651","d":[]},{"s":"PANCAKESWAP:HASEEUSDT_0E99D6","d":[]},{"s":"HONEYSWAP:WETHGIV_A8E7D3","d":[]},{"s":"PANCAKESWAP:QSQWBNB_4DD257.USD","d":[]},{"s":"OKX:BETHUSDT","d":[]},{"s":"KUCOIN:UNFIDOWNUSDT","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_733BFC","d":[]},{"s":"PANCAKESWAP:BTLUSDT_91B185","d":[]},{"s":"PANCAKESWAP:SQUIDSQUID_080AF9","d":[]},{"s":"PANCAKESWAP:ATAWBNB_EF7767.USD","d":[]},{"s":"PANCAKESWAP:GROKCMWBNB_4A38F7.USD","d":[]},{"s":"PANCAKESWAP:QANXWBNB_798BF5","d":[]},{"s":"PANCAKESWAP:BURNBTCWBNB_AA290F.USD","d":[]},{"s":"PANCAKESWAP:KENGGODUSDT_F427ED","d":[]},{"s":"HONEYSWAP:COLDHNY_159EB4","d":[]},{"s":"SUSHISWAPPOLYGON:WETHUSDC_34965B","d":[]},{"s":"PANCAKESWAP:MRWBNB_B172EF","d":[]},{"s":"KUCOIN:SUIUSDT.3S","d":[]},{"s":"PANCAKESWAP:KIRBYWBNB_68F8A4.USD","d":[]},{"s":"PANCAKESWAP:BINUWBNB_2706D7","d":[]},{"s":"PANCAKESWAP:RABBITUSDT_0A1FB3","d":[]},{"s":"PANCAKESWAP:AURWBNB_D95FCE","d":[]},{"s":"HONEYSWAP:WAXHNY_968CFC.USD","d":[]},{"s":"PANCAKESWAP:HOOPSWBNB_797D2F.USD","d":[]},{"s":"PANCAKESWAP:FOTAUSDT_D9ABAD","d":[]},{"s":"PANCAKESWAP:AMCWBNB_01738B.USD","d":[]},{"s":"PANCAKESWAP:CSDETH_6555A0","d":[]},{"s":"SUSHISWAP:SDTWETH_22DEF8","d":[]},{"s":"BINANCE:ONGUSDT.P","d":[]},{"s":"SUSHISWAP:PICKLEWETH_269DB9","d":[]},{"s":"KUCOIN:XTMUSDT","d":[]},{"s":"PANCAKESWAP:BIRDWBNB_A6C06E.USD","d":[]},{"s":"PANCAKESWAP:SPITZWBNB_2588F4","d":[]},{"s":"PANCAKESWAP:MTFWBNB_D06F58.USD","d":[]},{"s":"SUSHISWAPPOLYGON:C3FRAX_B56007.USD","d":[]},{"s":"PANCAKESWAP:WATCHDOWBNB_76A398","d":[]},{"s":"PANCAKESWAP:LENDAWBNB_52711F.USD","d":[]},{"s":"PANCAKESWAP:WAVAXBUSD_8DD90A","d":[]},{"s":"PANCAKESWAP:XCADWBNB_2C8C84.USD","d":[]},{"s":"SUSHISWAPPOLYGON:AVAXWETH_1274DE.USD","d":[]},{"s":"PANCAKESWAP:PRACHTPAYWBNB_EFA6A1","d":[]},{"s":"PANCAKESWAP:LORDZWBNB_583E9B","d":[]},{"s":"PANCAKESWAP:REVOWBNB_828E5D","d":[]},{"s":"PANCAKESWAP:ETHBETH_09EA4C","d":[]},{"s":"PANCAKESWAP:EQUADWBNB_523F00","d":[]},{"s":"PANCAKESWAP:PINKSALEWBNB_53028D","d":[]},{"s":"PANCAKESWAP:DCMUSDT_C88943","d":[]},{"s":"PANCAKESWAP:ZUNAWBNB_475CDB.USD","d":[]},{"s":"PANCAKESWAP:SRDWBNB_1F3A87","d":[]},{"s":"KUCOIN:GALAXUSDT.3L","d":[]},{"s":"PANCAKESWAP:TNTWBNB_01EC38.USD","d":[]},{"s":"PANCAKESWAP:KUBICWOOP_7B8B26.USD","d":[]},{"s":"PANCAKESWAP:CZPWWBNB_59AFE2.USD","d":[]},{"s":"PANCAKESWAP:AKIWBNB_28EE2F.USD","d":[]},{"s":"PANCAKESWAP:XVRWBNB_1F4F24.USD","d":[]},{"s":"OKX:FITFIUSDT","d":[]},{"s":"KUCOIN:CVCBTC","d":[]},{"s":"PANCAKESWAP:AFDWBNB_2139C4.USD","d":[]},{"s":"PANCAKESWAP:TWTWBNB_610E7A","d":[]},{"s":"PANCAKESWAP:OBTWBNB_2EBAA4","d":[]},{"s":"PANCAKESWAP:BATHBUSD_EE90C6","d":[]},{"s":"PANCAKESWAP:DRWBNB_2E0F47","d":[]},{"s":"PANCAKESWAP:LOVELYWBNB_BEE4B8.USD","d":[]},{"s":"HONEYSWAP:WETHGNO_28DBD3.USD","d":[]},{"s":"PANCAKESWAP:BBBWBNB_3304AE","d":[]},{"s":"PANCAKESWAP:BIRBWBNB_C5F6DB","d":[]},{"s":"PANCAKESWAP:VUZZWBNB_DAE9E5.USD","d":[]},{"s":"PANCAKESWAP:FISTSUSDT_DFED3F","d":[]},{"s":"KUCOIN:ZBCUSDT","d":[]},{"s":"PANCAKESWAP:PITWBNB_2828C6","d":[]},{"s":"PANCAKESWAP:HDVBUSD_52E9BF","d":[]},{"s":"UPBIT:BFCBTC","d":[]},{"s":"KUCOIN:ASTRUSDT","d":[]},{"s":"PANCAKESWAP:MARTIANDOGEWBNB_185BF3","d":[]},{"s":"PANCAKESWAP:DKCWBNB_F9D5E7.USD","d":[]},{"s":"OKX:FXSUSDT","d":[]},{"s":"PANCAKESWAP:GNTWBNB_3747E3.USD","d":[]},{"s":"BINANCE:ICXUSD","d":[]},{"s":"PANCAKESWAP:DEXSHAREWBNB_65D834.USD","d":[]},{"s":"PANCAKESWAP:LGOWBNB_E73EB8.USD","d":[]},{"s":"BINANCE:NEARUSD","d":[]},{"s":"PANCAKESWAP:YYDSWBNB_FDF022.USD","d":[]},{"s":"PANCAKESWAP:BALTOWBNB_6B7597","d":[]},{"s":"PANCAKESWAP:CAFWBNB_D60733.USD","d":[]},{"s":"KUCOIN:ARBTC","d":[]},{"s":"PANCAKESWAP:FLXWBNB_381523","d":[]},{"s":"PANCAKESWAP:FFEWBNB_1BF8E6","d":[]},{"s":"PANCAKESWAP:RODUSDT_E8ABFE","d":[]},{"s":"HONEYSWAP:WATERGNO_3B74C8","d":[]},{"s":"PANCAKESWAP:MINIMYROWBNB_096D13.USD","d":[]},{"s":"PANCAKESWAP:DOGE20WBNB_1524EF.USD","d":[]},{"s":"PANCAKESWAP:SHYTCOINWBNB_8E8098.USD","d":[]},{"s":"PANCAKESWAP:APOWBNB_547AFD","d":[]},{"s":"PANCAKESWAP:WBNBBUSD_1B96B9","d":[]},{"s":"PANCAKESWAP:DIGIWBNB_C2868E","d":[]},{"s":"PANCAKESWAP:MFSUSDT_2B63F6","d":[]},{"s":"PANCAKESWAP:IDRTWBNB_5F4C3A","d":[]},{"s":"PANCAKESWAP:MARUWBNB_EE8F63.USD","d":[]},{"s":"PANCAKESWAP:SPIDEYWBNB_FC74A6","d":[]},{"s":"PANCAKESWAP:LOMWBNB_3CC62B","d":[]},{"s":"PANCAKESWAP:KINGKONGUSDT_73019D","d":[]},{"s":"PANCAKESWAP:MNUWBNB_A7684A","d":[]},{"s":"PANCAKESWAP:NNNWBNB_6E3649","d":[]},{"s":"PANCAKESWAP:LOOTWBNB_411F24.USD","d":[]},{"s":"PANCAKESWAP:FCCWBNB_E7ABCC.USD","d":[]},{"s":"PANCAKESWAP:YODAUSDT_3AAEA0","d":[]},{"s":"PANCAKESWAP:FHWBNB_400BD5","d":[]},{"s":"PANCAKESWAP:ZOABUSD_BD8CAD","d":[]},{"s":"PANCAKESWAP:DFIUSDT_1211C6","d":[]},{"s":"SUSHISWAP:SGTWETH_41BFBA","d":[]},{"s":"PANCAKESWAP:CSROADWBNB_152E16.USD","d":[]},{"s":"PANCAKESWAP:HTBWBNB_2A995D","d":[]},{"s":"SUSHISWAP:BDIWETH_8D782C","d":[]},{"s":"PANCAKESWAP:BNXBUSD_B72723","d":[]},{"s":"KUCOIN:AUSDUSDT","d":[]},{"s":"PANCAKESWAP:FMAUSDT_FA6BB7","d":[]},{"s":"PANCAKESWAP:CRYPTOTUBEAIWBNB_3F0858","d":[]},{"s":"PANCAKESWAP:LSWAPWBNB_49E6B1.USD","d":[]},{"s":"BINANCE:CHRUSDT.P","d":[]},{"s":"PANCAKESWAP:IOTCUSDT_DDC9F5","d":[]},{"s":"PANCAKESWAP:IDBUSD_6296CB","d":[]},{"s":"KUCOIN:CIRUSUSDT","d":[]},{"s":"PANCAKESWAP:TWBWBNB_0CD67A.USD","d":[]},{"s":"PANCAKESWAP:SENSEIWBNB_9CC839","d":[]},{"s":"PANCAKESWAP:OREWBNB_9E6E05","d":[]},{"s":"PANCAKESWAP:CROWNWBNB_3CCFD6","d":[]},{"s":"SUSHISWAP:OXYWETH_D1B430.USD","d":[]},{"s":"PANCAKESWAP:SASUSDT_3AD4BA","d":[]},{"s":"SUSHISWAPPOLYGON:CRVWETH_396E65","d":[]},{"s":"OKX:DEPUSDT","d":[]},{"s":"PANCAKESWAP:PRNTWBNB_A71A33","d":[]},{"s":"PANCAKESWAP:BLASTERWBNB_69C148","d":[]},{"s":"PANCAKESWAP:BITXWBNB_65B823.USD","d":[]},{"s":"PANCAKESWAP:KXAWBNB_4F7609.USD","d":[]},{"s":"BINANCE:FILUSDT.P","d":[]},{"s":"KUCOIN:WINBTC","d":[]},{"s":"SUSHISWAP:SWINGBYWETH_4A9C7B.USD","d":[]},{"s":"PANCAKESWAP:MKMUSDT_75DE36","d":[]},{"s":"SUSHISWAP:BANDWETH_A75F7C.USD","d":[]},{"s":"SUSHISWAP:PUDGYWETH_5D472C","d":[]},{"s":"PANCAKESWAP:GROKXWBNB_23D965","d":[]},{"s":"PANCAKESWAP:LEOWBNB_A747E2.USD","d":[]},{"s":"PANCAKESWAP:ONIBUSD_E16733","d":[]},{"s":"PANCAKESWAP:DMRETH_351994","d":[]},{"s":"PANCAKESWAP:ROYAWBNB_ED644B","d":[]},{"s":"SUSHISWAP:RADARWETH_559EBE.USD","d":[]},{"s":"OKX:EOSEUR","d":[]},{"s":"PANCAKESWAP:UNMWBNB_0B21C4","d":[]},{"s":"PANCAKESWAP:TUQJUSDT_8D4B3A","d":[]},{"s":"HONEYSWAP:BALWXDAI_3AEB16.USD","d":[]},{"s":"PANCAKESWAP:EATUSDT_54DF4A","d":[]},{"s":"PANCAKESWAP:TUNAWBNB_607439","d":[]},{"s":"PANCAKESWAP:CXDOWBNB_0E0E21.USD","d":[]},{"s":"PANCAKESWAP:TGPTUSDT_78005A","d":[]},{"s":"PANCAKESWAP:RH31WBNB_F24853.USD","d":[]},{"s":"PANCAKESWAP:ELAUNCHWBNB_4335D8.USD","d":[]},{"s":"PANCAKESWAP:MAGICUSDC_4ACE88","d":[]},{"s":"PANCAKESWAP:CHCBUSD_5B88B3","d":[]},{"s":"PANCAKESWAP:AIXWBNB_E46E9A.USD","d":[]},{"s":"PANCAKESWAP:ESCROWWBNB_0AE1C4.USD","d":[]},{"s":"PANCAKESWAP:CORUSDT_9A43F3","d":[]},{"s":"HONEYSWAP:AMISBAO_38E10A","d":[]},{"s":"PANCAKESWAP:XETABUSD_4C98E6","d":[]},{"s":"BINANCE:SEIUSD","d":[]},{"s":"PANCAKESWAP:BAKEWBNB_434C8F.USD","d":[]},{"s":"PANCAKESWAP:LGTUSDT_516265","d":[]},{"s":"PANCAKESWAP:TBCCWBNB_D65B21.USD","d":[]},{"s":"PANCAKESWAP:RDNTWBNB_346575.USD","d":[]},{"s":"PANCAKESWAP:HTXDAOWBNB_CFD74C","d":[]},{"s":"KUCOIN:BOSONETH","d":[]},{"s":"PANCAKESWAP:CRYSTALBUSD_486C9C","d":[]},{"s":"PANCAKESWAP:PUBBUSD_301D15","d":[]},{"s":"PANCAKESWAP:IGUPBUSD_8F2007","d":[]},{"s":"PANCAKESWAP:OCTFWBNB_A1BC47.USD","d":[]},{"s":"PANCAKESWAP:TRVLBUSD_441855","d":[]},{"s":"PANCAKESWAP:TIFWBNB_059C82","d":[]},{"s":"OKX:KARUSDT","d":[]},{"s":"PANCAKESWAP:PEPEDWBNB_D305B8.USD","d":[]},{"s":"PANCAKESWAP:TGDAOBUSD_F5BBD3","d":[]},{"s":"PANCAKESWAP:KENGUSDT_D74383","d":[]},{"s":"PANCAKESWAP:AGGLWBNB_326C6F.USD","d":[]},{"s":"PANCAKESWAP:ECWBNB_5473C3","d":[]},{"s":"KUCOIN:1CATUSDT","d":[]},{"s":"HONEYSWAP:RAIDWETH_256F3A","d":[]},{"s":"PANCAKESWAP:DRAGONKINGUSDT_9CB0FA","d":[]},{"s":"HONEYSWAP:AAHWXDAI_CC8F5C.USD","d":[]},{"s":"SUSHISWAP:ICEWETH_94B86C","d":[]},{"s":"PANCAKESWAP:KDGBUSD_557F1A","d":[]},{"s":"PANCAKESWAP:BABYLONGWBNB_E4956B","d":[]},{"s":"KUCOIN:OPULUSDT","d":[]},{"s":"PANCAKESWAP:WNKUSDC_BEC630","d":[]},{"s":"PANCAKESWAP:XDOGEWBNB_D06A1F.USD","d":[]},{"s":"PANCAKESWAP:METAVWBNB_2B274E.USD","d":[]},{"s":"PANCAKESWAP:PICCUSDT_45EF0B","d":[]},{"s":"PANCAKESWAP:AVGWBNB_8A8EEA.USD","d":[]},{"s":"PANCAKESWAP:BOMBBTCB_843926.USD","d":[]},{"s":"PANCAKESWAP:MOOOBUSD_45A33C","d":[]},{"s":"KUCOIN:IOIUSDT","d":[]},{"s":"KUCOIN:VOXELETH","d":[]},{"s":"HONEYSWAP:NODEWXDAI_EB4317","d":[]},{"s":"HONEYSWAP:0XMRWXDAI_4DF1E4","d":[]},{"s":"PANCAKESWAP:SABAWBNB_3823BE","d":[]},{"s":"PANCAKESWAP:MAXXWBNB_6B3ECA.USD","d":[]},{"s":"PANCAKESWAP:CHCTOKENWBNB_662F24.USD","d":[]},{"s":"PANCAKESWAP:MALTESEWBNB_8A4188.USD","d":[]},{"s":"OKX:DOTEUR","d":[]},{"s":"PANCAKESWAP:ATPADBUSD_D02BAA","d":[]},{"s":"UPBIT:RADBTC","d":[]},{"s":"PANCAKESWAP:VAIWBNB_1830F8.USD","d":[]},{"s":"PANCAKESWAP:HAPIHAI_063AA8","d":[]},{"s":"PANCAKESWAP:SLKUSDT_35FFFA","d":[]},{"s":"PANCAKESWAP:CROGEWBNB_47E541","d":[]},{"s":"PANCAKESWAP:FFWBNB_06B849.USD","d":[]},{"s":"PANCAKESWAP:FRENWBNB_3EA0B7","d":[]},{"s":"PANCAKESWAP:MOLEBUSD_FA71B4","d":[]},{"s":"PANCAKESWAP:MXMWBNB_846D14.USD","d":[]},{"s":"PANCAKESWAP:DOJOWBNB_37CC6A","d":[]},{"s":"PANCAKESWAP:GAMINGSHIBAWBNB_59B8E5","d":[]},{"s":"PANCAKESWAP:SPLASHWBNB_F1492F","d":[]},{"s":"PANCAKESWAP:GOWBNB_5B8CFF.USD","d":[]},{"s":"BINANCE:TRXUSDT.P","d":[]},{"s":"PANCAKESWAP:WEEDWBNB_3B3BAA.USD","d":[]},{"s":"PANCAKESWAP:MLTWBNB_CF7DF7.USD","d":[]},{"s":"PANCAKESWAP:WXPCUSDT_3B60B9","d":[]},{"s":"HONEYSWAP:PANHNY_0619E4","d":[]},{"s":"PANCAKESWAP:LANTUSDT_E082D6","d":[]},{"s":"SUSHISWAP:ENTRUSDC_83B546","d":[]},{"s":"SUSHISWAP:LILWETH_BE1728.USD","d":[]},{"s":"PANCAKESWAP:FDOUSDT_54A4C7","d":[]},{"s":"PANCAKESWAP:DBMEWBNB_363160.USD","d":[]},{"s":"PANCAKESWAP:MXMWBNB_846D14","d":[]},{"s":"PANCAKESWAP:MATBUSD_21DB3D","d":[]},{"s":"PANCAKESWAP:BABYFLOKIWBNB_E37B5F","d":[]},{"s":"BINANCE:ALICEUSDT.P","d":[]},{"s":"PANCAKESWAP:XWAPWBNB_F7C848","d":[]},{"s":"UPBIT:CVCBTC","d":[]},{"s":"PANCAKESWAP:AIPEPEWBNB_47E20E.USD","d":[]},{"s":"PANCAKESWAP:LXLWBNB_612998","d":[]},{"s":"PANCAKESWAP:DXTWBNB_C2B6DA.USD","d":[]},{"s":"BINANCE:BALUSDT.P","d":[]},{"s":"OKX:ADABTC","d":[]},{"s":"PANCAKESWAP:NADAWBNB_9ABE3C.USD","d":[]},{"s":"PANCAKESWAP:FOXV2WBNB_4D3D40.USD","d":[]},{"s":"KUCOIN:AAVEUSDT.3L","d":[]},{"s":"PANCAKESWAP:LTTWBNB_98D797","d":[]},{"s":"PANCAKESWAP:BSKTWBNB_448BD0.USD","d":[]},{"s":"PANCAKESWAP:PEPEDCWBNB_E8C8E4.USD","d":[]},{"s":"PANCAKESWAP:HUSLWBNB_047D2F","d":[]},{"s":"PANCAKESWAP:FLYUSDT_201275","d":[]},{"s":"PANCAKESWAP:BNBAGIWBNB_8B4C7C.USD","d":[]},{"s":"PANCAKESWAP:WMXBUSD_E86EAA","d":[]},{"s":"PANCAKESWAP:AIMWBNB_C0D1E8","d":[]},{"s":"PANCAKESWAP:APRILWBNB_843008","d":[]},{"s":"PANCAKESWAP:SFPWBNB_CBE2CF","d":[]},{"s":"PANCAKESWAP:TRUMPPEPEWBNB_4224F2","d":[]},{"s":"PANCAKESWAP:SANCWBNB_F81250","d":[]},{"s":"PANCAKESWAP:AGATAWBNB_C60B84","d":[]},{"s":"PANCAKESWAP:FLUFWBNB_6103F5.USD","d":[]},{"s":"PANCAKESWAP:RYOSHIWBNB_3C6378.USD","d":[]},{"s":"PANCAKESWAP:POWUSDT_A3C4FE","d":[]},{"s":"PANCAKESWAP:XRPWBNB_03F181","d":[]},{"s":"PANCAKESWAP:TREESWBNB_4446E4.USD","d":[]},{"s":"PANCAKESWAP:ECCUSDT_82FCED","d":[]},{"s":"PANCAKESWAP:VGOWBNB_33BECF","d":[]},{"s":"PANCAKESWAP:NOIDWBNB_41E572.USD","d":[]},{"s":"KUCOIN:SAROSUSDT","d":[]},{"s":"PANCAKESWAP:SHIBLITEWBNB_707E5D.USD","d":[]},{"s":"PANCAKESWAP:FISTSWBNB_C70742","d":[]},{"s":"PANCAKESWAP:CPDBUSD_25D81B","d":[]},{"s":"PANCAKESWAP:CAWCEOWBNB_B1EBF2.USD","d":[]},{"s":"HONEYSWAP:UNIUSDC_6DEBD9","d":[]},{"s":"PANCAKESWAP:JIJIWBNB_1AA125.USD","d":[]},{"s":"PANCAKESWAP:UMTUSDT_721CFE","d":[]},{"s":"PANCAKESWAP:RFOXWBNB_8E04B3","d":[]},{"s":"PANCAKESWAP:XYFWBNB_DAA81D.USD","d":[]},{"s":"HONEYSWAP:AUDIOWXDAI_683721.USD","d":[]},{"s":"PANCAKESWAP:KKTWBNB_52DB9D","d":[]},{"s":"PANCAKESWAP:MEVRWBNB_E43991.USD","d":[]},{"s":"KUCOIN:LQTYUSDT","d":[]},{"s":"BINANCE:CRVUSD","d":[]},{"s":"KUCOIN:RSRUSDT","d":[]},{"s":"PANCAKESWAP:RENMINEWBNB_63E105","d":[]},{"s":"PANCAKESWAP:PTGWBNB_48C1E9.USD","d":[]},{"s":"OKX:APEUSDC","d":[]},{"s":"PANCAKESWAP:TIMEUSDT_AD1FED","d":[]},{"s":"OKX:PHAUSDT","d":[]},{"s":"PANCAKESWAP:XDGWBNB_3121D5","d":[]},{"s":"PANCAKESWAP:RSPNWBNB_BE040C.USD","d":[]},{"s":"KUCOIN:VRABTC","d":[]},{"s":"PANCAKESWAP:SOLTHOREUM_F9213F.USD","d":[]},{"s":"SUSHISWAP:IDLEWETH_A7F11E.USD","d":[]},{"s":"HONEYSWAP:DEXPWXDAI_1E2634.USD","d":[]},{"s":"PANCAKESWAP:TOCKTWBNB_639EF5","d":[]},{"s":"PANCAKESWAP:ZLWBNB_6BCA8D.USD","d":[]},{"s":"PANCAKESWAP:FORMBUSD_3E19C1","d":[]},{"s":"PANCAKESWAP:EGGWBNB_D1B59D","d":[]},{"s":"PANCAKESWAP:RGOLDWBNB_947D6F","d":[]},{"s":"PANCAKESWAP:IXIRWBNB_26DE6A.USD","d":[]},{"s":"PANCAKESWAP:XYSLBUSD_B5996F","d":[]},{"s":"KUCOIN:MANAUSDT.3L","d":[]},{"s":"PANCAKESWAP:YYDUSDT_5BFA80","d":[]},{"s":"PANCAKESWAP:LAFIUSDT_4A17C5","d":[]},{"s":"PANCAKESWAP:NFTLWBNB_70F6F0.USD","d":[]},{"s":"PANCAKESWAP:AFREPWBNB_8BD5EF.USD","d":[]},{"s":"PANCAKESWAP:SILVAWBNB_6EE52C.USD","d":[]},{"s":"PANCAKESWAP:LPVWBNB_0C59A0","d":[]},{"s":"PANCAKESWAP:RWTUSDT_ADAD97","d":[]},{"s":"PANCAKESWAP:SCRLUSDT_485766","d":[]},{"s":"KUCOIN:DECHATUSDT","d":[]},{"s":"KUCOIN:ORBSUSDT","d":[]},{"s":"PANCAKESWAP:XCCUSDT_AA1818","d":[]},{"s":"PANCAKESWAP:SARTWBNB_74EF46.USD","d":[]},{"s":"SUSHISWAP:PSPWETH_458AE8","d":[]},{"s":"PANCAKESWAP:FOXWBNB_3027AD.USD","d":[]},{"s":"HONEYSWAP:UNIAGVE_2B91ED.USD","d":[]},{"s":"PANCAKESWAP:TSXWBNB_444C8B","d":[]},{"s":"OKX:AVAXUSDT","d":[]},{"s":"OKX:XPRUSDT","d":[]},{"s":"PANCAKESWAP:ELSAWBNB_3D158A","d":[]},{"s":"PANCAKESWAP:BABYPANDORAWBNB_417FED","d":[]},{"s":"PANCAKESWAP:ARBWBNB_82B91C","d":[]},{"s":"PANCAKESWAP:DOGECOLAWBNB_CB7342","d":[]},{"s":"HONEYSWAP:YDAIYUSDCYUSDTYTUSDWXDAI_10DEC2","d":[]},{"s":"PANCAKESWAP:SNSTUSDT_5D91DD","d":[]},{"s":"HONEYSWAP:BTCCBWXDAI_7D0FFE","d":[]},{"s":"KUCOIN:BULLUSDT","d":[]},{"s":"PANCAKESWAP:SISWBNB_BCA905","d":[]},{"s":"PANCAKESWAP:TRUMPBTCWBNB_875926.USD","d":[]},{"s":"PANCAKESWAP:TTCUSDT_3FB910","d":[]},{"s":"PANCAKESWAP:STATELLITETROLLWBNB_1D24B5","d":[]},{"s":"PANCAKESWAP:SHIBAYWBNB_6FFC3F.USD","d":[]},{"s":"BINANCE:MYROUSDT.P","d":[]},{"s":"PANCAKESWAP:LONGSHINEWBNB_2F19E7","d":[]},{"s":"PANCAKESWAP:BIXOWBNB_E3BC2F.USD","d":[]},{"s":"OKX:KSMUSDT","d":[]},{"s":"OKX:SSVUSDT","d":[]},{"s":"KUCOIN:TELBTC","d":[]},{"s":"PANCAKESWAP:TAPUSDT_68815B","d":[]},{"s":"SUSHISWAP:BICOWETH_55D8EC.USD","d":[]},{"s":"PANCAKESWAP:SCATSWBNB_990103","d":[]},{"s":"PANCAKESWAP:AI3WBNB_747EEB","d":[]},{"s":"KUCOIN:FLRUSDT","d":[]},{"s":"PANCAKESWAP:LIQWBNB_1F04BF.USD","d":[]},{"s":"BINANCE:LQTYUSD","d":[]},{"s":"OKX:XETAUSDT","d":[]},{"s":"PANCAKESWAP:BIDAWBNB_10FD62.USD","d":[]},{"s":"PANCAKESWAP:AIBTWBNB_9A0233","d":[]},{"s":"PANCAKESWAP:SAFEMOONWBNB_9ADC6F","d":[]},{"s":"KUCOIN:PEPEUSDT","d":[]},{"s":"PANCAKESWAP:SBQWBNB_FA8F5F","d":[]},{"s":"PANCAKESWAP:O4DXUSDT_65E82A","d":[]},{"s":"PANCAKESWAP:HAIUSDT_20B15E","d":[]},{"s":"PANCAKESWAP:ADOWBNB_113096.USD","d":[]},{"s":"PANCAKESWAP:BULLWBNB_8C739D","d":[]},{"s":"SUSHISWAP:WFLOWWETH_5A7051","d":[]},{"s":"PANCAKESWAP:CCOINBUSD_1225BA","d":[]},{"s":"PANCAKESWAP:BHOWBNB_6E7C0B.USD","d":[]},{"s":"UPBIT:ETHBTC","d":[]},{"s":"PANCAKESWAP:8PAYBUSD_92C3E2","d":[]},{"s":"PANCAKESWAP:DEBTALUM_1387C8","d":[]},{"s":"PANCAKESWAP:BUNDYWBNB_3057CA.USD","d":[]},{"s":"PANCAKESWAP:ZINUWBNB_1EBAD0.USD","d":[]},{"s":"OKX:BTCUSDT26J2024","d":[]},{"s":"KUCOIN:DENTETH","d":[]},{"s":"PANCAKESWAP:GOGEWBNB_B88357.USD","d":[]},{"s":"HONEYSWAP:WETHDAI_BDA633","d":[]},{"s":"PANCAKESWAP:BTICWBNB_EEC999","d":[]},{"s":"PANCAKESWAP:XPERPSWBNB_187CAF","d":[]},{"s":"PANCAKESWAP:PPVGUSDC_E55BE3","d":[]},{"s":"UPBIT:EGLDBTC","d":[]},{"s":"SUSHISWAP:SNXWETH_A1D7B2.USD","d":[]},{"s":"PANCAKESWAP:HOOPSWBNB_797D2F","d":[]},{"s":"PANCAKESWAP:BAMAWBNB_AA8B19.USD","d":[]},{"s":"PANCAKESWAP:STEPGSUPE_86CF0F","d":[]},{"s":"PANCAKESWAP:QUANTICWBNB_00D32E","d":[]},{"s":"PANCAKESWAP:WBIDUSDT_297C93","d":[]},{"s":"PANCAKESWAP:TSTWBNB_5D701C","d":[]},{"s":"PANCAKESWAP:SUTERWBNB_2D5DB8","d":[]},{"s":"PANCAKESWAP:TRUMPWBNB_A67125","d":[]},{"s":"PANCAKESWAP:NIBIUSDT_A400C5","d":[]},{"s":"KUCOIN:DAGBTC","d":[]},{"s":"KUCOIN:CANDYUSDT","d":[]},{"s":"HONEYSWAP:RENLINK_CEE385.USD","d":[]},{"s":"PANCAKESWAP:SPYWBNB_19E3AD.USD","d":[]},{"s":"PANCAKESWAP:VCGWBNB_AE3691.USD","d":[]},{"s":"PANCAKESWAP:GYMNETUSDT_C3EA38","d":[]},{"s":"HONEYSWAP:AMISGNO_5B9E5B.USD","d":[]},{"s":"PANCAKESWAP:DIAMONDWBNB_A925A5.USD","d":[]},{"s":"PANCAKESWAP:EGGBUSD_19E7CB","d":[]},{"s":"PANCAKESWAP:BNBBACKWBNB_0B4938.USD","d":[]},{"s":"PANCAKESWAP:PMASTERWBNB_91B5D3.USD","d":[]},{"s":"PANCAKESWAP:SUBWBNB_E003E5","d":[]},{"s":"PANCAKESWAP:SHIBAWBNB_CDB901","d":[]},{"s":"PANCAKESWAP:9419USDT_9A0CCC","d":[]},{"s":"PANCAKESWAP:ERTHAWBNB_70531B.USD","d":[]},{"s":"PANCAKESWAP:TKINGWBNB_2C69FA","d":[]},{"s":"PANCAKESWAP:MUSOWBNB_7DC7F9","d":[]},{"s":"KUCOIN:OPUPUSDT","d":[]},{"s":"OKX:XAUTUSDT","d":[]},{"s":"HONEYSWAP:LENDWXDAI_69D1DA","d":[]},{"s":"PANCAKESWAP:MPIUSDT_9E7190","d":[]},{"s":"PANCAKESWAP:HOUNDUSDT_CFFEB1","d":[]},{"s":"PANCAKESWAP:BANDWBNB_168B27.USD","d":[]},{"s":"PANCAKESWAP:HOGEWBNB_CED4F9.USD","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_4C8F6C","d":[]},{"s":"PANCAKESWAP:SWPRSWBNB_5B7ECF.USD","d":[]},{"s":"PANCAKESWAP:AIOZWBNB_3D2BCC.USD","d":[]},{"s":"PANCAKESWAP:SGSWBNB_35CCEC","d":[]},{"s":"KUCOIN:DODOUSDT","d":[]},{"s":"OKX:DORAUSDT","d":[]},{"s":"BINANCE:SCRTUSD","d":[]},{"s":"OKX:ILVUSDT","d":[]},{"s":"PANCAKESWAP:CDOWBNB_1370EE.USD","d":[]},{"s":"PANCAKESWAP:BOJIWBNB_E64B2E","d":[]},{"s":"PANCAKESWAP:FOCWBNB_4D2681.USD","d":[]},{"s":"PANCAKESWAP:GOKUWBNB_959E2A.USD","d":[]},{"s":"PANCAKESWAP:TARALWBNB_91BA95.USD","d":[]},{"s":"HONEYSWAP:MOMMIESWXDAI_B3557B.USD","d":[]},{"s":"KUCOIN:SOLUSDT.3S","d":[]},{"s":"PANCAKESWAP:MPGWBNB_7C15DC","d":[]},{"s":"KUCOIN:PREUSDT","d":[]},{"s":"PANCAKESWAP:HOUSDT_1B7AA2","d":[]},{"s":"PANCAKESWAP:MVDBXWBNB_38451B.USD","d":[]},{"s":"KUCOIN:NOIAUSDT","d":[]},{"s":"PANCAKESWAP:COTIWBNB_9C9A03","d":[]},{"s":"PANCAKESWAP:NNXWBNB_F2BF55","d":[]},{"s":"SUSHISWAP:LYRAWETH_52DAC0.USD","d":[]},{"s":"PANCAKESWAP:DEXTWBNB_4B729D","d":[]},{"s":"PANCAKESWAP:LULUWBNB_2A7C97.USD","d":[]},{"s":"PANCAKESWAP:ALTBWBNB_B544C7","d":[]},{"s":"PANCAKESWAP:SAFEMDC_93AA9A.USD","d":[]},{"s":"PANCAKESWAP:CAWBNB_F77B81","d":[]},{"s":"PANCAKESWAP:WEJSBUSD_58889B","d":[]},{"s":"PANCAKESWAP:OGSFMWBNB_FC8594.USD","d":[]},{"s":"PANCAKESWAP:BABYBIDENWBNB_37A609.USD","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_269FC6.USD","d":[]},{"s":"PANCAKESWAP:ANYWBNB_BC7B18","d":[]},{"s":"PANCAKESWAP:BWWBNB_E519F3","d":[]},{"s":"PANCAKESWAP:SQDWBNB_34DCED","d":[]},{"s":"PANCAKESWAP:DRTWBNB_1D1E02","d":[]},{"s":"PANCAKESWAP:0XFIWBNB_753E4B","d":[]},{"s":"PANCAKESWAP:REVVWBNB_1CC189","d":[]},{"s":"KUCOIN:JASMYUSDT.3L","d":[]},{"s":"PANCAKESWAP:BITETH_BC000C.USD","d":[]},{"s":"BINANCE:CAKEUSD","d":[]},{"s":"HONEYSWAP:AUDIOUSDC_130B74","d":[]},{"s":"PANCAKESWAP:EVERNESTUSDT_21813D","d":[]},{"s":"PANCAKESWAP:ALGOBLKBUSD_9E1765","d":[]},{"s":"OKX:UTKUSDT","d":[]},{"s":"PANCAKESWAP:MICUSDT_B3611B","d":[]},{"s":"PANCAKESWAP:HAMBTCB_6C8095.USD","d":[]},{"s":"PANCAKESWAP:QUACKWBNB_9EDFCE.USD","d":[]},{"s":"PANCAKESWAP:WETHWBNB_D5F81B","d":[]},{"s":"PANCAKESWAP:ATEMUSDC_83AD81","d":[]},{"s":"PANCAKESWAP:BEACHWBNB_62B306.USD","d":[]},{"s":"PANCAKESWAP:WRONGWBNB_91EB1F","d":[]},{"s":"BINANCE:ADXUSD","d":[]},{"s":"PANCAKESWAP:PIG9WBNB_45FC0B","d":[]},{"s":"PANCAKESWAP:XQUOKWBNB_8E6531.USD","d":[]},{"s":"BINANCE:BLUEBIRDUSDT.P","d":[]},{"s":"HONEYSWAP:HNYWBTC_8C573E.USD","d":[]},{"s":"PANCAKESWAP:BWJWBNB_8E0195","d":[]},{"s":"PANCAKESWAP:EAIWBNB_9A850C.USD","d":[]},{"s":"PANCAKESWAP:BITCOINBTCB_1DEC19.USD","d":[]},{"s":"PANCAKESWAP:NTNWBNB_E45217","d":[]},{"s":"KUCOIN:SYNUSDT","d":[]},{"s":"PANCAKESWAP:WDFWBNB_AADDD2","d":[]},{"s":"PANCAKESWAP:CNFWBNB_C66821.USD","d":[]},{"s":"SUSHISWAPPOLYGON:CGGWMATIC_D74D23.USD","d":[]},{"s":"PANCAKESWAP:DLYWBNB_09CBC1","d":[]},{"s":"PANCAKESWAP:JAIHOWBNB_F63458","d":[]},{"s":"PANCAKESWAP:DFHWBNB_C5F99B","d":[]},{"s":"KUCOIN:WLDUPUSDT","d":[]},{"s":"PANCAKESWAP:FIREWBNB_DD7145","d":[]},{"s":"PANCAKESWAP:UNBWBNB_053D57","d":[]},{"s":"UPBIT:SXPBTC","d":[]},{"s":"PANCAKESWAP:YFIWBNB_704DF7","d":[]},{"s":"PANCAKESWAP:BBADGERBTCB_5A5860","d":[]},{"s":"PANCAKESWAP:XYFWBNB_76C2B0","d":[]},{"s":"PANCAKESWAP:PEXWBNB_5CA96E","d":[]},{"s":"PANCAKESWAP:MFIWBNB_02E25E","d":[]},{"s":"PANCAKESWAP:SHIB20WBNB_5820F2.USD","d":[]},{"s":"PANCAKESWAP:KRMAWBNB_DF0555.USD","d":[]},{"s":"PANCAKESWAP:PFYWBNB_FD1A80.USD","d":[]},{"s":"PANCAKESWAP:LANAUSDT_B83BFC","d":[]},{"s":"PANCAKESWAP:MMWBNB_8A6A42","d":[]},{"s":"SUSHISWAP:TRUWETH_FCEAAF","d":[]},{"s":"PANCAKESWAP:BLUEWBNB_84E738","d":[]},{"s":"KUCOIN:VRTXUSDT","d":[]},{"s":"KUCOIN:ASTRAUSDT","d":[]},{"s":"PANCAKESWAP:BSLWBNB_1AF0C5","d":[]},{"s":"PANCAKESWAP:DOGKINGSONWBNB_0F29FE.USD","d":[]},{"s":"PANCAKESWAP:4TOKENWBNB_9673F9.USD","d":[]},{"s":"PANCAKESWAP:FSAFEWBNB_F3F4C6.USD","d":[]},{"s":"PANCAKESWAP:WNCGWBNB_D38FC9.USD","d":[]},{"s":"BINANCE:BNXUSD","d":[]},{"s":"SUSHISWAP:SAK3WETH_FED8E8","d":[]},{"s":"PANCAKESWAP:DONSWBNB_CADBF7.USD","d":[]},{"s":"PANCAKESWAP:PEPAWBNB_B1626E.USD","d":[]},{"s":"PANCAKESWAP:PEPECEOWBNB_89245C.USD","d":[]},{"s":"PANCAKESWAP:VAFFAWBNB_0D13D7.USD","d":[]},{"s":"PANCAKESWAP:FOAWBNB_41EB46","d":[]},{"s":"PANCAKESWAP:DOVWBNB_E5BE1A","d":[]},{"s":"PANCAKESWAP:GREENWBNB_B07337","d":[]},{"s":"HONEYSWAP:CFXQWXDAI_0B83A1","d":[]},{"s":"PANCAKESWAP:QKQWBNB_3716DC.USD","d":[]},{"s":"PANCAKESWAP:BURNIFYAIWBNB_4B9E6A.USD","d":[]},{"s":"PANCAKESWAP:BABYTRUMPWBNB_5BDDFB","d":[]},{"s":"OKX:AAVEUSDT","d":[]},{"s":"PANCAKESWAP:AGTWBNB_B05E75","d":[]},{"s":"PANCAKESWAP:ORIGENWBNB_56CFEC","d":[]},{"s":"HONEYSWAP:XCOMBWXDAI_9E8E5E.USD","d":[]},{"s":"HONEYSWAP:TECHWXDAI_CA2CB5.USD","d":[]},{"s":"PANCAKESWAP:PIINWBNB_FDAA9F","d":[]},{"s":"HONEYSWAP:FRHNY_1417A3","d":[]},{"s":"PANCAKESWAP:FRAWBNB_93F0D7.USD","d":[]},{"s":"PANCAKESWAP:CANCERWBNB_25FECC","d":[]},{"s":"PANCAKESWAP:BHBDBNBSMARTCHAINHIVE_625E67","d":[]},{"s":"PANCAKESWAP:WAREWBNB_8F29F8","d":[]},{"s":"OKX:LTCUSDT22H2024","d":[]},{"s":"PANCAKESWAP:UXEWBNB_4F9096","d":[]},{"s":"KUCOIN:DSLABTC","d":[]},{"s":"PANCAKESWAP:SLSWBNB_0A17F3","d":[]},{"s":"PANCAKESWAP:ZKSYNCUSDT_629593","d":[]},{"s":"PANCAKESWAP:PITWBNB_FFF58A.USD","d":[]},{"s":"PANCAKESWAP:NFTYWBNB_8B2E48","d":[]},{"s":"PANCAKESWAP:RYOSHIWBNB_255493","d":[]},{"s":"PANCAKESWAP:BURNLONGWBNB_CF4F1F","d":[]},{"s":"KUCOIN:LINKUSDT","d":[]},{"s":"PANCAKESWAP:SELLCWBNB_358EFC.USD","d":[]},{"s":"PANCAKESWAP:FGIWBNB_C67946.USD","d":[]},{"s":"PANCAKESWAP:SDTWBNB_0FEEE9.USD","d":[]},{"s":"SUSHISWAP:RLCWETH_75382C.USD","d":[]},{"s":"KUCOIN:RDNTUSDT","d":[]},{"s":"PANCAKESWAP:CXSWBNB_0AAFF4.USD","d":[]},{"s":"UPBIT:BNTBTC","d":[]},{"s":"PANCAKESWAP:ARTIWBNB_F8C332.USD","d":[]},{"s":"PANCAKESWAP:LONGWBNB_63264B.USD","d":[]},{"s":"PANCAKESWAP:SFCWBNB_A6916E","d":[]},{"s":"PANCAKESWAP:DIKEUSDT_17C285","d":[]},{"s":"PANCAKESWAP:RITZWBNB_0EDD55.USD","d":[]},{"s":"PANCAKESWAP:TOTEMWBNB_EADF79.USD","d":[]},{"s":"PANCAKESWAP:GYMWBNB_670369.USD","d":[]},{"s":"PANCAKESWAP:TKCWBNB_BEE567","d":[]},{"s":"SUSHISWAPPOLYGON:ICEWETH_941EB2.USD","d":[]},{"s":"PANCAKESWAP:AITBUSD_1B3695","d":[]},{"s":"PANCAKESWAP:SATTWBNB_065024.USD","d":[]},{"s":"KUCOIN:OSMOUSDT","d":[]},{"s":"KUCOIN:UNIUSDT.3L","d":[]},{"s":"PANCAKESWAP:PIG9WBNB_45FC0B.USD","d":[]},{"s":"PANCAKESWAP:DUWUSDT_59CEF1","d":[]},{"s":"PANCAKESWAP:MSHDWBNB_10DA36.USD","d":[]},{"s":"PANCAKESWAP:TFIWBNB_B1C508","d":[]},{"s":"PANCAKESWAP:DADA2024WBNB_D3A075","d":[]},{"s":"PANCAKESWAP:DRIVBUSD_4ED0EE","d":[]},{"s":"PANCAKESWAP:STONEUSDT_7BA30C","d":[]},{"s":"PANCAKESWAP:HEPBUSD_72DB36","d":[]},{"s":"PANCAKESWAP:NOSECUSDT_3AA724","d":[]},{"s":"KUCOIN:TOKOBTC","d":[]},{"s":"PANCAKESWAP:SIRWBNB_5097A3.USD","d":[]},{"s":"PANCAKESWAP:UNIUSDT_A56D15","d":[]},{"s":"PANCAKESWAP:VOYAWBNB_8C213A","d":[]},{"s":"BINANCE:TRBUSDT.P","d":[]},{"s":"PANCAKESWAP:OCFUSDT_5B081F","d":[]},{"s":"PANCAKESWAP:ATMUSDT_EC797E","d":[]},{"s":"OKX:CRVUSDT","d":[]},{"s":"PANCAKESWAP:NEXTBUSD_AD7044","d":[]},{"s":"KUCOIN:NWCBTC","d":[]},{"s":"PANCAKESWAP:JOKWBNB_9EBD35","d":[]},{"s":"KUCOIN:VEGAETH","d":[]},{"s":"HONEYSWAP:BRIGHTWXDAI_A1B4DF.USD","d":[]},{"s":"PANCAKESWAP:NUBTCWBNB_54D374.USD","d":[]},{"s":"PANCAKESWAP:AMAWBNB_FA1B11","d":[]},{"s":"OKX:LTCUSD29H2024","d":[]},{"s":"PANCAKESWAP:GROKWBNB_AC54DD.USD","d":[]},{"s":"HONEYSWAP:PRTCLEHNY_AAEFC5.USD","d":[]},{"s":"PANCAKESWAP:JXLWBNB_228779.USD","d":[]},{"s":"KUCOIN:STAMPUSDT","d":[]},{"s":"PANCAKESWAP:PCWSWBNB_6615CE.USD","d":[]},{"s":"PANCAKESWAP:VSBUSDT_460720","d":[]},{"s":"PANCAKESWAP:TAGWBNB_E9AC7B","d":[]},{"s":"PANCAKESWAP:MRUNWBNB_C33113","d":[]},{"s":"OKX:BTCUSDC","d":[]},{"s":"PANCAKESWAP:MRHBUSDT_A32BBA","d":[]},{"s":"PANCAKESWAP:DEMONRCM_AC7F49.USD","d":[]},{"s":"PANCAKESWAP:NAFTWBNB_2D9B41.USD","d":[]},{"s":"PANCAKESWAP:CAPOWBNB_9C68CA","d":[]},{"s":"PANCAKESWAP:LINABUSD_C5768C","d":[]},{"s":"PANCAKESWAP:OX2USDT_BA4522","d":[]},{"s":"PANCAKESWAP:ANKRBNBWBNB_02E387.USD","d":[]},{"s":"PANCAKESWAP:SHIAWBNB_E7649C","d":[]},{"s":"PANCAKESWAP:DISWBNB_1FA3D2.USD","d":[]},{"s":"PANCAKESWAP:DEBTNATG_0A2110.USD","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_C31AC7.USD","d":[]},{"s":"PANCAKESWAP:AVAWBNB_F24D24.USD","d":[]},{"s":"PANCAKESWAP:NFTARTWBNB_2B7FC6.USD","d":[]},{"s":"KUCOIN:SATSUSDT","d":[]},{"s":"PANCAKESWAP:PAYWBNB_D28620.USD","d":[]},{"s":"HONEYSWAP:PAXGWBTC_A98427","d":[]},{"s":"PANCAKESWAP:LDDWBNB_D0B76A.USD","d":[]},{"s":"PANCAKESWAP:ELON2024WBNB_8B9A45.USD","d":[]},{"s":"PANCAKESWAP:BFWBNB_EF06C9.USD","d":[]},{"s":"PANCAKESWAP:TRTWBNB_44A490","d":[]},{"s":"PANCAKESWAP:TIPUSDT_E5F7E5","d":[]},{"s":"PANCAKESWAP:METAWBNB_D66D06.USD","d":[]},{"s":"PANCAKESWAP:TTWBNB_FA72A5.USD","d":[]},{"s":"BINANCE:FORUSD","d":[]},{"s":"PANCAKESWAP:LNLWBNB_35DB84.USD","d":[]},{"s":"PANCAKESWAP:CALOWBNB_67FB2B.USD","d":[]},{"s":"PANCAKESWAP:HMRBUSD_6B4DD8","d":[]},{"s":"KUCOIN:TRIBLUSDT","d":[]},{"s":"OKX:OPEUR","d":[]},{"s":"PANCAKESWAP:MMETAWBNB_83DB9B","d":[]},{"s":"PANCAKESWAP:MUSDMEB_CCF241","d":[]},{"s":"PANCAKESWAP:CCYXWBNB_16AE37.USD","d":[]},{"s":"PANCAKESWAP:ANYWBNB_BC7B18.USD","d":[]},{"s":"KUCOIN:JAMUSDT","d":[]},{"s":"PANCAKESWAP:CVTWBNB_B5B806.USD","d":[]},{"s":"PANCAKESWAP:MNGWBNB_D87D5E.USD","d":[]},{"s":"BINANCE:LOOMUSDT.P","d":[]},{"s":"HONEYSWAP:PANWXDAI_D7313D","d":[]},{"s":"PANCAKESWAP:GOGEWBNB_B88357","d":[]},{"s":"PANCAKESWAP:TSTSUSDT_52F3EA","d":[]},{"s":"BINANCE:XTZUSD","d":[]},{"s":"PANCAKESWAP:TITDAOETH_ED971B.USD","d":[]},{"s":"OKX:INJUSDT","d":[]},{"s":"HONEYSWAP:FTMWXDAI_3FE53A","d":[]},{"s":"PANCAKESWAP:PRNTWBNB_A71A33.USD","d":[]},{"s":"PANCAKESWAP:HOODWBNB_04E5FD","d":[]},{"s":"PANCAKESWAP:WWYWBNB_1368E2.USD","d":[]},{"s":"PANCAKESWAP:OPWBNB_30B857","d":[]},{"s":"HONEYSWAP:FCLWXDAI_E8ECF5.USD","d":[]},{"s":"PANCAKESWAP:CSWBNB_A5045F.USD","d":[]},{"s":"PANCAKESWAP:CXPADWBNB_02127E.USD","d":[]},{"s":"HONEYSWAP:YFIHNY_3E580E","d":[]},{"s":"PANCAKESWAP:HKWB3USDT_05951A","d":[]},{"s":"PANCAKESWAP:YOOSHIWBNB_E7987F.USD","d":[]},{"s":"PANCAKESWAP:BOBAWBNB_1A63DC.USD","d":[]},{"s":"PANCAKESWAP:TWBWBNB_0CD67A","d":[]},{"s":"PANCAKESWAP:SKUYWBNB_19E8DE","d":[]},{"s":"SUSHISWAP:SDLLINK_D27B7D.USD","d":[]},{"s":"PANCAKESWAP:AIDTOKENWBNB_7CE628.USD","d":[]},{"s":"KUCOIN:AMBBTC","d":[]},{"s":"PANCAKESWAP:NLCWBNB_69D5B8.USD","d":[]},{"s":"PANCAKESWAP:MCOINWBNB_E87C9C","d":[]},{"s":"PANCAKESWAP:DISNEYWBNB_22134B.USD","d":[]},{"s":"OKX:BTCDAI","d":[]},{"s":"PANCAKESWAP:MICROFLOKIWBNB_AF8F23.USD","d":[]},{"s":"PANCAKESWAP:INFICLOUDWBNB_85CE39.USD","d":[]},{"s":"PANCAKESWAP:PPHBBWBNB_ED5625","d":[]},{"s":"PANCAKESWAP:REGENTWBNB_CF8822.USD","d":[]},{"s":"PANCAKESWAP:COCWBNB_C24189.USD","d":[]},{"s":"PANCAKESWAP:LOCKPAY2BUSD_EB4CE5","d":[]},{"s":"PANCAKESWAP:FNTUSDT_EDFBDD","d":[]},{"s":"KUCOIN:LUNCDOWNUSDT","d":[]},{"s":"PANCAKESWAP:DLMWBNB_29D54F.USD","d":[]},{"s":"PANCAKESWAP:CZGOATWBNB_4C98F1.USD","d":[]},{"s":"PANCAKESWAP:TIME2TIME_B13DCD","d":[]},{"s":"PANCAKESWAP:YESWBNB_1DE0CE","d":[]},{"s":"KUCOIN:COMPUSDT","d":[]},{"s":"PANCAKESWAP:PSIWBNB_2AC9AB.USD","d":[]},{"s":"PANCAKESWAP:FIFAUSDT_23D24B","d":[]},{"s":"PANCAKESWAP:EFBPWBNB_66E9DE","d":[]},{"s":"SUSHISWAPPOLYGON:C3FRAX_B56007","d":[]},{"s":"PANCAKESWAP:ARKMWBNB_15714B","d":[]},{"s":"PANCAKESWAP:SPOLWBNB_C44604.USD","d":[]},{"s":"PANCAKESWAP:MUUWBNB_16B624.USD","d":[]},{"s":"SUSHISWAP:FNCWETH_82ECDD.USD","d":[]},{"s":"PANCAKESWAP:WDYMWBNB_74BCDD.USD","d":[]},{"s":"PANCAKESWAP:APWBNB_332C1A","d":[]},{"s":"PANCAKESWAP:YOSTEPWBNB_505661.USD","d":[]},{"s":"PANCAKESWAP:UVTUVC_73F7F4","d":[]},{"s":"PANCAKESWAP:CATBOYWBNB_EBA4BF.USD","d":[]},{"s":"PANCAKESWAP:CHTWBNB_578989","d":[]},{"s":"KUCOIN:WHALEUSDT","d":[]},{"s":"SUSHISWAP:THORWETH_3D3F13","d":[]},{"s":"PANCAKESWAP:GLCWBNB_913A16.USD","d":[]},{"s":"OKX:1INCHUSDC","d":[]},{"s":"PANCAKESWAP:MBSWBNB_ECA67E","d":[]},{"s":"PANCAKESWAP:ELFWBNB_BAC7D7.USD","d":[]},{"s":"PANCAKESWAP:BNKSYWBNB_08F5B4.USD","d":[]},{"s":"PANCAKESWAP:ASXWBNB_9F0FAA.USD","d":[]},{"s":"PANCAKESWAP:BABYAKITAWBNB_069822.USD","d":[]},{"s":"PANCAKESWAP:BTXJWBNB_CA8701","d":[]},{"s":"PANCAKESWAP:GINZAUSDT_DD3F95","d":[]},{"s":"HONEYSWAP:NIFWXDAI_5EADA6","d":[]},{"s":"PANCAKESWAP:SMARSWBNB_FD94E3.USD","d":[]},{"s":"PANCAKESWAP:ZENAWBNB_5171F7.USD","d":[]},{"s":"KUCOIN:SCLPBTC","d":[]},{"s":"PANCAKESWAP:DIBSWBNB_9BEBE1","d":[]},{"s":"PANCAKESWAP:PEPEQUWBNB_29B203","d":[]},{"s":"KUCOIN:VRUSDT","d":[]},{"s":"PANCAKESWAP:ORTWBNB_6E8EF1.USD","d":[]},{"s":"KUCOIN:ROSEUSDT","d":[]},{"s":"PANCAKESWAP:SHIBUSDT_2D515B","d":[]},{"s":"PANCAKESWAP:LGLWBNB_C9262B.USD","d":[]},{"s":"OKX:ARTYUSDT","d":[]},{"s":"PANCAKESWAP:PORTOWBNB_0A292E","d":[]},{"s":"PANCAKESWAP:MTGWBNB_7C27FB","d":[]},{"s":"SUSHISWAPPOLYGON:FOXWETH_93EF61","d":[]},{"s":"KUCOIN:TIMEUSDT","d":[]},{"s":"HONEYSWAP:ALBCWXDAI_C24980","d":[]},{"s":"PANCAKESWAP:COMPUWBNB_344A35.USD","d":[]},{"s":"KUCOIN:ORDIUPUSDT","d":[]},{"s":"PANCAKESWAP:GYROUSDD_54C182.USD","d":[]},{"s":"BINANCE:API3USDT.P","d":[]},{"s":"KUCOIN:XNOUSDT","d":[]},{"s":"PANCAKESWAP:HOTTESTWBNB_5C05E7","d":[]},{"s":"PANCAKESWAP:TENWWBNB_8BB13B.USD","d":[]},{"s":"PANCAKESWAP:MORAWBNB_1A01A2.USD","d":[]},{"s":"PANCAKESWAP:PAYBITUSDT_7062BA","d":[]},{"s":"PANCAKESWAP:FRMWBNB_62C580","d":[]},{"s":"OKX:THETAUSDT","d":[]},{"s":"PANCAKESWAP:CCAUSDT_1F3154","d":[]},{"s":"PANCAKESWAP:FHWBNB_400BD5.USD","d":[]},{"s":"SUSHISWAP:XFTWETH_DAC032.USD","d":[]},{"s":"PANCAKESWAP:MEFAWBNB_47F838","d":[]},{"s":"PANCAKESWAP:XPERPSWBNB_187CAF.USD","d":[]},{"s":"KUCOIN:ZENDUSDT","d":[]},{"s":"KUCOIN:LTCUSDT.3L","d":[]},{"s":"BINANCE:TIAUSD","d":[]},{"s":"PANCAKESWAP:FAIRWBNB_E19855","d":[]},{"s":"KUCOIN:UNOBTC","d":[]},{"s":"PANCAKESWAP:PDLMHUSDT_D8E780","d":[]},{"s":"PANCAKESWAP:PAPAWBNB_D8C0D3.USD","d":[]},{"s":"BINANCE:MKRUSDT.P","d":[]},{"s":"PANCAKESWAP:CMAIWBNB_C14E98.USD","d":[]},{"s":"PANCAKESWAP:KINGUWBNB_2AB815","d":[]},{"s":"PANCAKESWAP:GEONTRIAS_DFCAC8","d":[]},{"s":"PANCAKESWAP:LUCKBUSD_DC090C","d":[]},{"s":"OKX:ETHUSDC27U2024","d":[]},{"s":"KUCOIN:CREAMUSDT","d":[]},{"s":"PANCAKESWAP:XMBWBNB_9AD9F9","d":[]},{"s":"PANCAKESWAP:WORLDWBNB_1E97EB","d":[]},{"s":"PANCAKESWAP:NFTPADWBNB_4A24D6.USD","d":[]},{"s":"KUCOIN:ETHUPUSDT","d":[]},{"s":"PANCAKESWAP:DCIPWBNB_4799B0","d":[]},{"s":"PANCAKESWAP:BALTOWBNB_6B7597.USD","d":[]},{"s":"PANCAKESWAP:KABOSUWBNB_A17D2C","d":[]},{"s":"KUCOIN:BTCUSDT.3S","d":[]},{"s":"PANCAKESWAP:XPXWBNB_439B8E.USD","d":[]},{"s":"PANCAKESWAP:DISWBNB_1FA3D2","d":[]},{"s":"PANCAKESWAP:FYTWBNB_0E13C9.USD","d":[]},{"s":"UPBIT:CROBTC","d":[]},{"s":"PANCAKESWAP:PESAWBNB_51506F","d":[]},{"s":"PANCAKESWAP:ATAWBNB_BEDE92.USD","d":[]},{"s":"PANCAKESWAP:BABYCATUSDT_AD0EFE","d":[]},{"s":"PANCAKESWAP:DOGEFORKWBNB_4107DE.USD","d":[]},{"s":"PANCAKESWAP:SEONWBNB_F40583.USD","d":[]},{"s":"PANCAKESWAP:PAYXWBNB_31C77F","d":[]},{"s":"KUCOIN:ADSBTC","d":[]},{"s":"PANCAKESWAP:PEPYWBNB_79942F","d":[]},{"s":"HONEYSWAP:HODLHNY_E3C571.USD","d":[]},{"s":"PANCAKESWAP:JGNWBNB_727527.USD","d":[]},{"s":"PANCAKESWAP:10SETWBNB_78B722","d":[]},{"s":"PANCAKESWAP:MSUNMIC_F9869B.USD","d":[]},{"s":"PANCAKESWAP:TBCWBNB_F86D87.USD","d":[]},{"s":"PANCAKESWAP:IDENYWBNB_462945","d":[]},{"s":"PANCAKESWAP:LGCWBNB_9E217B.USD","d":[]},{"s":"PANCAKESWAP:GEMINIGROKWBNB_D695A9","d":[]},{"s":"PANCAKESWAP:LTOWBNB_A5BB44","d":[]},{"s":"PANCAKESWAP:DSCWBNB_64D761.USD","d":[]},{"s":"PANCAKESWAP:BYASBUSD_D3283F","d":[]},{"s":"PANCAKESWAP:TIMENTIME2_9DCE8C.USD","d":[]},{"s":"KUCOIN:ATAUSDT","d":[]},{"s":"PANCAKESWAP:VOLTWBNB_3C577A.USD","d":[]},{"s":"PANCAKESWAP:BRWBNB_A9DCAA.USD","d":[]},{"s":"PANCAKESWAP:COINSCOPEWBNB_AD1BA3","d":[]},{"s":"OKX:ARUSDT","d":[]},{"s":"KUCOIN:SWEATUSDT","d":[]},{"s":"PANCAKESWAP:PEPEZILLAWBNB_32345E.USD","d":[]},{"s":"PANCAKESWAP:TGBTCB_04711B.USD","d":[]},{"s":"BINANCE:KASUSDT.P","d":[]},{"s":"PANCAKESWAP:SFILUSDT_07095E","d":[]},{"s":"PANCAKESWAP:WHYWBNB_2B7757","d":[]},{"s":"PANCAKESWAP:TBDWBNB_E8F275.USD","d":[]},{"s":"KUCOIN:SLPUSDT","d":[]},{"s":"HONEYSWAP:XMOONWETH_0AC17A","d":[]},{"s":"PANCAKESWAP:RWAWBNB_4C4B04.USD","d":[]},{"s":"PANCAKESWAP:WXWBNB_BEAD04","d":[]},{"s":"OKX:ETHBTC","d":[]},{"s":"HONEYSWAP:WETCHNY_288ECD","d":[]},{"s":"PANCAKESWAP:EFBWBNB_D3D1BA.USD","d":[]},{"s":"PANCAKESWAP:ASIAWBNB_42E8EF","d":[]},{"s":"PANCAKESWAP:LUCAUSDC_09E618","d":[]},{"s":"SUSHISWAP:DAOXWETH_5B64C8","d":[]},{"s":"PANCAKESWAP:FATCATWBNB_0F5A93.USD","d":[]},{"s":"PANCAKESWAP:LILCWBNB_A8220E.USD","d":[]},{"s":"PANCAKESWAP:CZGOATWBNB_4C98F1","d":[]},{"s":"PANCAKESWAP:OUTWBNB_3A3509.USD","d":[]},{"s":"PANCAKESWAP:TAZWBNB_E5487E.USD","d":[]},{"s":"PANCAKESWAP:MOSETH_B95105","d":[]},{"s":"OKX:API3USDT","d":[]},{"s":"OKX:OMUSDT","d":[]},{"s":"SUSHISWAP:ENSWETH_A11814.USD","d":[]},{"s":"PANCAKESWAP:SBTWBNB_B043D6.USD","d":[]},{"s":"PANCAKESWAP:BOTWBNB_F270C9","d":[]},{"s":"PANCAKESWAP:UCLXWBNB_0F4220.USD","d":[]},{"s":"PANCAKESWAP:NUSICUSDT_4664DD","d":[]},{"s":"PANCAKESWAP:NEURALAIWBNB_35C05B","d":[]},{"s":"PANCAKESWAP:OZONEUSDT_740186","d":[]},{"s":"PANCAKESWAP:CATWBNB_63230C.USD","d":[]},{"s":"UPBIT:NMRBTC","d":[]},{"s":"PANCAKESWAP:UNOWBNB_F26E78","d":[]},{"s":"KUCOIN:ENJUSDT","d":[]},{"s":"HONEYSWAP:HNYHOPR_39417D","d":[]},{"s":"PANCAKESWAP:KANGWBNB_697618.USD","d":[]},{"s":"HONEYSWAP:CARWXDAI_C67E09","d":[]},{"s":"PANCAKESWAP:VOIDWBNB_200F5D","d":[]},{"s":"HONEYSWAP:STAKEDAI_2D4BE7","d":[]},{"s":"PANCAKESWAP:BABYTROLLWBNB_C92522.USD","d":[]},{"s":"PANCAKESWAP:FREELAWBNB_9EF4E1","d":[]},{"s":"HONEYSWAP:ALBCWBTC_21C210","d":[]},{"s":"PANCAKESWAP:ZKGAPUSDT_4909E9","d":[]},{"s":"PANCAKESWAP:AEVOUSDT_583321","d":[]},{"s":"BINANCE:QUICKUSD","d":[]},{"s":"PANCAKESWAP:PKRWBNB_0D6CAE.USD","d":[]},{"s":"PANCAKESWAP:KABYBUSD_E2DFCF","d":[]},{"s":"KUCOIN:GRTKCS","d":[]},{"s":"PANCAKESWAP:FAYDWBNB_DABBF9.USD","d":[]},{"s":"SUSHISWAP:MUSTWETH_A872D2","d":[]},{"s":"OKX:RSRUSDT","d":[]},{"s":"PANCAKESWAP:GREEDWBNB_CDFF87","d":[]},{"s":"PANCAKESWAP:PANDAIWBNB_81B136","d":[]},{"s":"PANCAKESWAP:BSTSWBNB_5CAE7F.USD","d":[]},{"s":"PANCAKESWAP:XENDWBNB_CECFC2","d":[]},{"s":"PANCAKESWAP:BABYBONKWBNB_51B688.USD","d":[]},{"s":"PANCAKESWAP:TLWBNB_F79536.USD","d":[]},{"s":"PANCAKESWAP:TOTEMWBNB_EADF79","d":[]},{"s":"PANCAKESWAP:METAWARBUSD_53DFDE","d":[]},{"s":"PANCAKESWAP:YFIUSDT_CBA12D","d":[]},{"s":"KUCOIN:USDTBRL","d":[]},{"s":"PANCAKESWAP:NWTDAOWBNB_7E7825","d":[]},{"s":"PANCAKESWAP:SHENGWEIHUWBNB_54C790","d":[]},{"s":"KUCOIN:CFXUSDT","d":[]},{"s":"PANCAKESWAP:SPKYWBNB_102B4D","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_D1EB9F","d":[]},{"s":"PANCAKESWAP:PHICWBNB_14540C","d":[]},{"s":"PANCAKESWAP:DYPWBNB_3FBCA1.USD","d":[]},{"s":"PANCAKESWAP:TRUMPYWBNB_36CB72.USD","d":[]},{"s":"PANCAKESWAP:STEPGWBNB_2D21BE","d":[]},{"s":"PANCAKESWAP:HOHOHOWBNB_0FABBA.USD","d":[]},{"s":"PANCAKESWAP:DRACWBNB_D447D2.USD","d":[]},{"s":"PANCAKESWAP:0X00WBNB_EE7FDF.USD","d":[]},{"s":"KUCOIN:BONDUSDT","d":[]},{"s":"HONEYSWAP:WBNBWXDAI_ADE590","d":[]},{"s":"KUCOIN:ETHGBP","d":[]},{"s":"PANCAKESWAP:ADEUSDT_CB33F8","d":[]},{"s":"PANCAKESWAP:HUAWBNB_063236","d":[]},{"s":"KUCOIN:LRCETH","d":[]},{"s":"PANCAKESWAP:GROKJESUSWBNB_6EDBA9","d":[]},{"s":"PANCAKESWAP:KAFGYINGHANABC_437623.USD","d":[]},{"s":"PANCAKESWAP:CHAINCADEWBNB_8592F2","d":[]},{"s":"SUSHISWAPPOLYGON:FXSFRAX_DF45B5.USD","d":[]},{"s":"PANCAKESWAP:ULANDWBNB_9A6E0F.USD","d":[]},{"s":"PANCAKESWAP:ATAUSDT_D64B3E","d":[]},{"s":"PANCAKESWAP:MGPBUSD_76B0D1","d":[]},{"s":"PANCAKESWAP:MOONMOONWBNB_4A75B6.USD","d":[]},{"s":"KUCOIN:PYTHDOWNUSDT","d":[]},{"s":"UPBIT:GRSBTC","d":[]},{"s":"KUCOIN:ELAETH","d":[]},{"s":"PANCAKESWAP:KLHBUSD_7F1A1D","d":[]},{"s":"PANCAKESWAP:RASTAWBNB_950B73.USD","d":[]},{"s":"KUCOIN:ZOOAUSDT","d":[]},{"s":"PANCAKESWAP:QANXWBNB_215973.USD","d":[]},{"s":"OKX:EOSUSDT22H2024","d":[]},{"s":"KUCOIN:CREAMBTC","d":[]},{"s":"SUSHISWAP:SQGLWETH_698ABB","d":[]},{"s":"PANCAKESWAP:MCRNWBNB_E8D5D8.USD","d":[]},{"s":"PANCAKESWAP:SYAWBNB_3A2AFA.USD","d":[]},{"s":"PANCAKESWAP:CLPSWBNB_88B20A.USD","d":[]},{"s":"PANCAKESWAP:KEKWBNB_5A13E3.USD","d":[]},{"s":"PANCAKESWAP:DYZILLAUSDT_C0BF5D","d":[]},{"s":"PANCAKESWAP:PONGWBNB_E1264F.USD","d":[]},{"s":"SUSHISWAP:YAMWETH_0F82E5","d":[]},{"s":"PANCAKESWAP:CVZWBNB_61D50F","d":[]},{"s":"OKX:FLOKIUSDT","d":[]},{"s":"PANCAKESWAP:TEDWBNB_2F5890","d":[]},{"s":"BINANCE:LDOUSDT.P","d":[]},{"s":"PANCAKESWAP:SPINBUSD_0F8A16","d":[]},{"s":"PANCAKESWAP:PDWBNB_003D7A.USD","d":[]},{"s":"PANCAKESWAP:LOAWBNB_98D6D2.USD","d":[]},{"s":"PANCAKESWAP:BULLUSDT_EABC0D","d":[]},{"s":"PANCAKESWAP:PAPAWBNB_D8C0D3","d":[]},{"s":"PANCAKESWAP:SHENSHOUUSDT_D91B61","d":[]},{"s":"PANCAKESWAP:KCALWBNB_D1F59C.USD","d":[]},{"s":"PANCAKESWAP:NMTTHOREUM_6A3E9C","d":[]},{"s":"OKX:ALGOUSDC","d":[]},{"s":"PANCAKESWAP:TBACWBNB_DD2DE4.USD","d":[]},{"s":"SUSHISWAP:TRUWETH_FCEAAF.USD","d":[]},{"s":"BINANCE:VANRYUSDT.P","d":[]},{"s":"PANCAKESWAP:HAPPYDOGEWBNB_5DFF64","d":[]},{"s":"PANCAKESWAP:SHIBKINGWBNB_369AFE.USD","d":[]},{"s":"KUCOIN:KASBTC","d":[]},{"s":"PANCAKESWAP:FIREUSDT_E38BFC","d":[]},{"s":"PANCAKESWAP:BRGWBNB_EB5FCB","d":[]},{"s":"SUSHISWAP:UNQTWETH_B1035D.USD","d":[]},{"s":"PANCAKESWAP:HKBUSDT_E3F057","d":[]},{"s":"BINANCE:NFPUSD","d":[]},{"s":"KUCOIN:KMDUSDT","d":[]},{"s":"PANCAKESWAP:NOVAUSDT_663CF5","d":[]},{"s":"PANCAKESWAP:ELONCATWBNB_CCD310.USD","d":[]},{"s":"PANCAKESWAP:MOCHICATWBNB_A0F940.USD","d":[]},{"s":"PANCAKESWAP:GOLDUSDT_6E8688","d":[]},{"s":"KUCOIN:FORTHUSDT","d":[]},{"s":"UPBIT:MTLBTC","d":[]},{"s":"KUCOIN:INJBTC","d":[]},{"s":"PANCAKESWAP:FHTNBUSD_DC31F7","d":[]},{"s":"KUCOIN:EGLDBTC","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_387795.USD","d":[]},{"s":"PANCAKESWAP:ADCWBNB_DFD778","d":[]},{"s":"PANCAKESWAP:BIBITOKENWBNB_720BE4","d":[]},{"s":"PANCAKESWAP:FROGGYWBNB_92FE07.USD","d":[]},{"s":"PANCAKESWAP:INVESTWBNB_2B43A6.USD","d":[]},{"s":"PANCAKESWAP:2023USDT_EA6328","d":[]},{"s":"BINANCE:1000XECUSDT.P","d":[]},{"s":"PANCAKESWAP:ALGOPADWBNB_EBF595.USD","d":[]},{"s":"PANCAKESWAP:KMONWBNB_C9FC17","d":[]},{"s":"PANCAKESWAP:GWINKBUSD_0BFE19","d":[]},{"s":"PANCAKESWAP:FETCHUSDT_3F460C","d":[]},{"s":"PANCAKESWAP:HASHUSDT_63735D","d":[]},{"s":"BINANCE:KDAUSD","d":[]},{"s":"PANCAKESWAP:PIRATEWBNB_1C699B.USD","d":[]},{"s":"PANCAKESWAP:WKDWBNB_F19F17.USD","d":[]},{"s":"PANCAKESWAP:SAFUUWBNB_F5D9B8","d":[]},{"s":"PANCAKESWAP:SEABUSD_69903C","d":[]},{"s":"PANCAKESWAP:ZEPUSDT_7114E0","d":[]},{"s":"PANCAKESWAP:HOOPBUSD_DE8A4F","d":[]},{"s":"PANCAKESWAP:BULLWBNB_D3A370.USD","d":[]},{"s":"PANCAKESWAP:TANGYUANWBNB_A06A83.USD","d":[]},{"s":"PANCAKESWAP:MAVIAWBNB_32139D.USD","d":[]},{"s":"SUSHISWAP:XFTWETH_F39FF8.USD","d":[]},{"s":"PANCAKESWAP:ETCS20WBNB_39C42D.USD","d":[]},{"s":"PANCAKESWAP:MDSWBNB_B834AF","d":[]},{"s":"PANCAKESWAP:BURNBTCWBNB_AA290F","d":[]},{"s":"SUSHISWAP:DPIWETH_34B13F.USD","d":[]},{"s":"PANCAKESWAP:NEUROSWBNB_E30410","d":[]},{"s":"HONEYSWAP:MIVAGNO_3935BB.USD","d":[]},{"s":"BINANCE:DASHUSD","d":[]},{"s":"KUCOIN:PHAUSDT","d":[]},{"s":"KUCOIN:OLTUSDT","d":[]},{"s":"PANCAKESWAP:LIBEROWBNB_44BB33.USD","d":[]},{"s":"PANCAKESWAP:STEPGWBNB_2D21BE.USD","d":[]},{"s":"PANCAKESWAP:KAIINUWBNB_1D4166.USD","d":[]},{"s":"BINANCE:FLOWUSDT.P","d":[]},{"s":"PANCAKESWAP:LBRWBNB_74B4E3.USD","d":[]},{"s":"KUCOIN:KAVAUSDT","d":[]},{"s":"PANCAKESWAP:MUSKITOWBNB_42D85D","d":[]},{"s":"PANCAKESWAP:IPUSDT_3EBE93","d":[]},{"s":"PANCAKESWAP:SETWBNB_6BB64E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:BRIDGEWETH_26B7C7.USD","d":[]},{"s":"PANCAKESWAP:CHAMPSWBNB_D18029.USD","d":[]},{"s":"PANCAKESWAP:OPENAIWBNB_7E6044.USD","d":[]},{"s":"PANCAKESWAP:XSIJUSDT_15063F","d":[]},{"s":"OKX:SKLUSDT","d":[]},{"s":"PANCAKESWAP:FISTWBNB_3FC593.USD","d":[]},{"s":"PANCAKESWAP:XPSUSDT_7BDC45","d":[]},{"s":"PANCAKESWAP:MIMBUSD_9911E9","d":[]},{"s":"KUCOIN:PONDUSDT","d":[]},{"s":"KUCOIN:BRWLUSDT","d":[]},{"s":"PANCAKESWAP:MOSBTCB_302AF8.USD","d":[]},{"s":"PANCAKESWAP:CLOAKWBNB_F7662C","d":[]},{"s":"OKX:LDOUSDT","d":[]},{"s":"PANCAKESWAP:TROLLWBNB_76B1F5.USD","d":[]},{"s":"PANCAKESWAP:666USDT_7E252A","d":[]},{"s":"PANCAKESWAP:LSPHEREWBNB_D15185.USD","d":[]},{"s":"HONEYSWAP:XWRKZWXDAI_0E145F","d":[]},{"s":"KUCOIN:PIPUSDT","d":[]},{"s":"PANCAKESWAP:DOGE1WBNB_013FFB.USD","d":[]},{"s":"OKX:OKBUSDC","d":[]},{"s":"PANCAKESWAP:BLACKWBNB_5C5487.USD","d":[]},{"s":"UPBIT:UPPBTC","d":[]},{"s":"PANCAKESWAP:AIROBOTWBNB_AA0B99.USD","d":[]},{"s":"HONEYSWAP:DEXPUSDT_17A4E0","d":[]},{"s":"PANCAKESWAP:FITMWBNB_DD123E","d":[]},{"s":"KUCOIN:BALUSDT","d":[]},{"s":"BINANCE:BLZUSDT.P","d":[]},{"s":"HONEYSWAP:HNYAGVE_50A486","d":[]},{"s":"PANCAKESWAP:TFFWBNB_A3E0BE","d":[]},{"s":"PANCAKESWAP:PDAUSDT_AB2B22","d":[]},{"s":"HONEYSWAP:STAKEBAO_0CE463.USD","d":[]},{"s":"KUCOIN:LAYERUSDT","d":[]},{"s":"PANCAKESWAP:ELONGATEWBNB_7F1BB2.USD","d":[]},{"s":"PANCAKESWAP:FREDWBNB_845C21","d":[]},{"s":"PANCAKESWAP:KKWBNB_30E1D0.USD","d":[]},{"s":"PANCAKESWAP:SWINGBYWBNB_4FD6D3.USD","d":[]},{"s":"PANCAKESWAP:MAPEBUSD_14075B","d":[]},{"s":"HONEYSWAP:SNAFUWXDAI_D6C8AD","d":[]},{"s":"PANCAKESWAP:ANIWBNB_C6524A","d":[]},{"s":"PANCAKESWAP:VANGUARDWBNB_71C750","d":[]},{"s":"PANCAKESWAP:CELLWBNB_061550.USD","d":[]},{"s":"PANCAKESWAP:FETCHWBNB_CFDE1B.USD","d":[]},{"s":"HONEYSWAP:UNIWETH_5B6674.USD","d":[]},{"s":"PANCAKESWAP:0XLSDUSDT_47E9CB","d":[]},{"s":"KUCOIN:PROMBTC","d":[]},{"s":"PANCAKESWAP:SPEWBNB_B5A687.USD","d":[]},{"s":"PANCAKESWAP:LITBUSD_4F8B3E","d":[]},{"s":"PANCAKESWAP:SHFWBNB_08D50A","d":[]},{"s":"PANCAKESWAP:BDOBUSD_C5B0D7","d":[]},{"s":"PANCAKESWAP:DOBBYWBNB_4DB7A3.USD","d":[]},{"s":"KUCOIN:IRLUSDT","d":[]},{"s":"PANCAKESWAP:BPADWBNB_DAB856","d":[]},{"s":"PANCAKESWAP:PARUSDT_E12C5A","d":[]},{"s":"PANCAKESWAP:SABAWBNB_3823BE.USD","d":[]},{"s":"PANCAKESWAP:COXUSDT_E50179","d":[]},{"s":"PANCAKESWAP:WODBUSD_97F419","d":[]},{"s":"PANCAKESWAP:SFCUSDT_B08C1F","d":[]},{"s":"PANCAKESWAP:BBAUSDT_7A7E15","d":[]},{"s":"PANCAKESWAP:MFPSWBNB_731901.USD","d":[]},{"s":"PANCAKESWAP:SOLARIXUSDT_0E7E4B","d":[]},{"s":"PANCAKESWAP:FALCON9SWBNB_3A0F06.USD","d":[]},{"s":"PANCAKESWAP:SHJWBNB_79A6D5.USD","d":[]},{"s":"PANCAKESWAP:CSOWBNB_08C758.USD","d":[]},{"s":"PANCAKESWAP:NGLBUSD_0DEE94","d":[]},{"s":"PANCAKESWAP:DRAXWBNB_1853B9.USD","d":[]},{"s":"PANCAKESWAP:TECHNOVABNO_039F4E.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GRIMWEEDAURUM_89176D","d":[]},{"s":"PANCAKESWAP:ROCKETWBNB_97A463","d":[]},{"s":"KUCOIN:SKLBTC","d":[]},{"s":"PANCAKESWAP:LOFWBNB_4E7150.USD","d":[]},{"s":"PANCAKESWAP:SFUNDWBNB_74FA51","d":[]},{"s":"SUSHISWAP:DONAWETH_7CD4EB.USD","d":[]},{"s":"PANCAKESWAP:SIEWBNB_63349D","d":[]},{"s":"PANCAKESWAP:BURNIFYAIWBNB_4B9E6A","d":[]},{"s":"PANCAKESWAP:SCROOGEWBNB_2553C7","d":[]},{"s":"SUSHISWAP:APWWETH_53162D.USD","d":[]},{"s":"PANCAKESWAP:ZKVAULTWBNB_E5EC95","d":[]},{"s":"PANCAKESWAP:CUREWBNB_98164B.USD","d":[]},{"s":"PANCAKESWAP:APEDWBNB_5893BF.USD","d":[]},{"s":"KUCOIN:UMAUSDT","d":[]},{"s":"PANCAKESWAP:OSKSUSDT_672D58","d":[]},{"s":"OKX:MKRBTC","d":[]},{"s":"PANCAKESWAP:ZGMUSDT_8778F4","d":[]},{"s":"PANCAKESWAP:LIQINDAOWBNB_C5941A","d":[]},{"s":"KUCOIN:TOKOUSDT","d":[]},{"s":"PANCAKESWAP:XYUSDT_BD5D01","d":[]},{"s":"KUCOIN:KASUSDT","d":[]},{"s":"PANCAKESWAP:BIT360WBNB_720914","d":[]},{"s":"OKX:ETCUSDT29H2024","d":[]},{"s":"PANCAKESWAP:ITUSDT_742F43","d":[]},{"s":"PANCAKESWAP:AIOWBNB_864A46","d":[]},{"s":"KUCOIN:SOULETH","d":[]},{"s":"PANCAKESWAP:ZGLWBNB_E63680","d":[]},{"s":"SUSHISWAP:MEZZWETH_1AD651.USD","d":[]},{"s":"PANCAKESWAP:MSPWBNB_BBBF50","d":[]},{"s":"UPBIT:ADABTC","d":[]},{"s":"PANCAKESWAP:VICSWBNB_C07F88.USD","d":[]},{"s":"PANCAKESWAP:BITDAOUSDT_391BD9","d":[]},{"s":"PANCAKESWAP:ENGWBNB_E09F42","d":[]},{"s":"PANCAKESWAP:TRUTHWBNB_D9C67F","d":[]},{"s":"PANCAKESWAP:CVIPWBNB_4A49EF.USD","d":[]},{"s":"PANCAKESWAP:MBTWBNB_C9854B","d":[]},{"s":"PANCAKESWAP:DEBTWBNB_2B26ED","d":[]},{"s":"PANCAKESWAP:BABYSHIBAINUWBNB_C5E1B7.USD","d":[]},{"s":"PANCAKESWAP:VTTWBNB_700EB5.USD","d":[]},{"s":"PANCAKESWAP:JHBUSDT_7672B6","d":[]},{"s":"HONEYSWAP:WCHIWXDAI_4E6226","d":[]},{"s":"PANCAKESWAP:COCWBNB_C24189","d":[]},{"s":"BINANCE:KSMUSDT.P","d":[]},{"s":"UPBIT:AGLDBTC","d":[]},{"s":"PANCAKESWAP:MIKEWBNB_F08F77","d":[]},{"s":"SUSHISWAPPOLYGON:IXTUSDT_C879BC","d":[]},{"s":"PANCAKESWAP:KIBAWBNB_6499B4.USD","d":[]},{"s":"PANCAKESWAP:FSWBNB_BF76FB.USD","d":[]},{"s":"PANCAKESWAP:OPZEKNDWBNB_BED90B","d":[]},{"s":"PANCAKESWAP:FOMOWBNB_942ECF.USD","d":[]},{"s":"BINANCE:DGBUSD","d":[]},{"s":"PANCAKESWAP:QMXWBNB_01274E.USD","d":[]},{"s":"PANCAKESWAP:MRBEASTWBNB_3F36DC.USD","d":[]},{"s":"OKX:BTCUSDC22H2024","d":[]},{"s":"PANCAKESWAP:METADOGEWBNB_67D6C4.USD","d":[]},{"s":"HONEYSWAP:MEWLINK_58E2C1.USD","d":[]},{"s":"PANCAKESWAP:ZGLCSROAD_F671D5","d":[]},{"s":"PANCAKESWAP:SHELKUSDT_543F6B","d":[]},{"s":"SUSHISWAPPOLYGON:GFCWETH_D8E7D3.USD","d":[]},{"s":"SUSHISWAPPOLYGON:PMONWMATIC_BB2100","d":[]},{"s":"HONEYSWAP:SUSHIHNY_827C64.USD","d":[]},{"s":"PANCAKESWAP:ODDZWBNB_3C2C77.USD","d":[]},{"s":"PANCAKESWAP:TANKSWBNB_810F86","d":[]},{"s":"HONEYSWAP:LEVINWXDAI_7B21FD","d":[]},{"s":"PANCAKESWAP:GOLD8WBNB_768B64","d":[]},{"s":"SUSHISWAP:GODSWETH_295685","d":[]},{"s":"HONEYSWAP:SYMMHNY_3CBF43.USD","d":[]},{"s":"PANCAKESWAP:PURRWBNB_49A417.USD","d":[]},{"s":"PANCAKESWAP:PINKWBNB_711DE3","d":[]},{"s":"KUCOIN:TRXUSDC","d":[]},{"s":"PANCAKESWAP:BTPUSDT_858DE6","d":[]},{"s":"PANCAKESWAP:ETEWBNB_B4F23E","d":[]},{"s":"PANCAKESWAP:2023MOONWBNB_304491","d":[]},{"s":"KUCOIN:VXVUSDT","d":[]},{"s":"OKX:CFGUSDT","d":[]},{"s":"PANCAKESWAP:BINUWBNB_2706D7.USD","d":[]},{"s":"PANCAKESWAP:GOINBUSD_025DB8","d":[]},{"s":"PANCAKESWAP:MEGAWBNB_E70F61.USD","d":[]},{"s":"PANCAKESWAP:UDAOWBNB_2CA779","d":[]},{"s":"KUCOIN:TRIASBTC","d":[]},{"s":"PANCAKESWAP:DOGEKINGWBNB_D28DAE.USD","d":[]},{"s":"PANCAKESWAP:PORTALWBNB_8E82CF.USD","d":[]},{"s":"PANCAKESWAP:VSIONWBNB_BADD8E.USD","d":[]},{"s":"PANCAKESWAP:LFWWBNB_F7F7BB","d":[]},{"s":"PANCAKESWAP:TADUSDT_578977","d":[]},{"s":"KUCOIN:AMBETH","d":[]},{"s":"SUSHISWAP:DIVERUSDC_FE9A77","d":[]},{"s":"BINANCE:USDCUSDT.P","d":[]},{"s":"BINANCE:TOKENUSDT.P","d":[]},{"s":"PANCAKESWAP:ONSWBNB_AF5434.USD","d":[]},{"s":"HONEYSWAP:HOPRWXDAI_429105","d":[]},{"s":"PANCAKESWAP:BBANKWBNB_3577F3.USD","d":[]},{"s":"OKX:IMXEUR","d":[]},{"s":"PANCAKESWAP:DADDYDOGEWBNB_B5EA07","d":[]},{"s":"KUCOIN:QUICKUSDT","d":[]},{"s":"PANCAKESWAP:UVTUSDT_B33797","d":[]},{"s":"PANCAKESWAP:KINGSHIBUSDT_AFD045","d":[]},{"s":"PANCAKESWAP:TUQJUSDT_CB195E","d":[]},{"s":"PANCAKESWAP:JETSWBNB_CAA8CB","d":[]},{"s":"PANCAKESWAP:PERLWBNB_61010E","d":[]},{"s":"PANCAKESWAP:TWDWBNB_4F61C7.USD","d":[]},{"s":"KUCOIN:TRBUPUSDT","d":[]},{"s":"PANCAKESWAP:WSYNTHWBNB_B5D6C2.USD","d":[]},{"s":"HONEYSWAP:DEXPAGVE_EE8480","d":[]},{"s":"PANCAKESWAP:USDTDWBNB_F9CB25","d":[]},{"s":"PANCAKESWAP:IBIKSWBNB_734CCC","d":[]},{"s":"PANCAKESWAP:THOREUMETH_4004E3","d":[]},{"s":"PANCAKESWAP:VRTWBNB_EF5212","d":[]},{"s":"UPBIT:ACSBTC","d":[]},{"s":"PANCAKESWAP:UDAOWBNB_2CA779.USD","d":[]},{"s":"PANCAKESWAP:LILCWBNB_A8220E","d":[]},{"s":"PANCAKESWAP:XAIWBNB_8DCFD1.USD","d":[]},{"s":"PANCAKESWAP:SVRWBNB_982AA7","d":[]},{"s":"PANCAKESWAP:WLCWBNB_315F9C.USD","d":[]},{"s":"KUCOIN:ARBUSDT.3S","d":[]},{"s":"PANCAKESWAP:AETHBETH_402108.USD","d":[]},{"s":"BINANCE:TWTUSDT.P","d":[]},{"s":"PANCAKESWAP:DPSWBNB_18BE96.USD","d":[]},{"s":"PANCAKESWAP:WSIWBNB_84773B","d":[]},{"s":"PANCAKESWAP:XAIWBNB_4A52AE","d":[]},{"s":"PANCAKESWAP:SHDBWBNB_3F344F","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_D6898A.USD","d":[]},{"s":"PANCAKESWAP:FRGXBUSD_3B6721","d":[]},{"s":"PANCAKESWAP:NNNWBNB_01E65D.USD","d":[]},{"s":"PANCAKESWAP:ZIRWBNB_B760BB.USD","d":[]},{"s":"PANCAKESWAP:FITAIWBNB_7978B6.USD","d":[]},{"s":"SUSHISWAPPOLYGON:IDOLUSDC_34F28A","d":[]},{"s":"BINANCE:OPUSDT.P","d":[]},{"s":"PANCAKESWAP:SCLPWBNB_BF8BCB.USD","d":[]},{"s":"KUCOIN:ZECUSDT","d":[]},{"s":"PANCAKESWAP:FROYOCAKE_1CCC3C","d":[]},{"s":"BINANCE:PORTALUSD","d":[]},{"s":"PANCAKESWAP:QIWBNB_F924E6","d":[]},{"s":"PANCAKESWAP:AMCWBNB_01738B","d":[]},{"s":"PANCAKESWAP:NLITEUSDT_5F75FC","d":[]},{"s":"PANCAKESWAP:STKCUSDT_BA44FD","d":[]},{"s":"PANCAKESWAP:WALBTWBNB_BFF97D.USD","d":[]},{"s":"PANCAKESWAP:DADDYDOGEWBNB_B5EA07.USD","d":[]},{"s":"PANCAKESWAP:SUPERWBNB_AB69C5.USD","d":[]},{"s":"PANCAKESWAP:KEKWBNB_5A13E3","d":[]},{"s":"PANCAKESWAP:WALVWBNB_A0F983.USD","d":[]},{"s":"PANCAKESWAP:AGGLWBNB_326C6F","d":[]},{"s":"PANCAKESWAP:MDBWBNB_B592BF.USD","d":[]},{"s":"PANCAKESWAP:413USDT_226BE4","d":[]},{"s":"PANCAKESWAP:SXFUSDT_0D1373","d":[]},{"s":"PANCAKESWAP:BIBI20WBNB_AF381D","d":[]},{"s":"KUCOIN:TLMBTC","d":[]},{"s":"PANCAKESWAP:NUBTCWBNB_54D374","d":[]},{"s":"PANCAKESWAP:WLDWETH_D59C9A.USD","d":[]},{"s":"KUCOIN:MELOSUSDT","d":[]},{"s":"PANCAKESWAP:IPOUSDT_8EB6FE","d":[]},{"s":"PANCAKESWAP:DOPWBNB_4208E1.USD","d":[]},{"s":"PANCAKESWAP:GEUROWBNB_5AADC6.USD","d":[]},{"s":"PANCAKESWAP:RYIUWBNB_B9AD1F.USD","d":[]},{"s":"KUCOIN:LITUSDT","d":[]},{"s":"HONEYSWAP:HIVEWATERGRT_665497.USD","d":[]},{"s":"PANCAKESWAP:INCOMEWBNB_972CE2","d":[]},{"s":"PANCAKESWAP:RICEWBNB_F72231.USD","d":[]},{"s":"HONEYSWAP:AAVEWETH_6DE2A5","d":[]},{"s":"PANCAKESWAP:LIMEWBNB_7FCF9B.USD","d":[]},{"s":"PANCAKESWAP:TFTBUSD_4A2DBA","d":[]},{"s":"PANCAKESWAP:STRXWBNB_472E71.USD","d":[]},{"s":"BINANCE:SSVUSDT.P","d":[]},{"s":"PANCAKESWAP:TPADWBNB_99B981","d":[]},{"s":"PANCAKESWAP:SBONEWBNB_7F3E1E.USD","d":[]},{"s":"OKX:CSPRUSDT","d":[]},{"s":"PANCAKESWAP:CSUSDT_5AE06F","d":[]},{"s":"PANCAKESWAP:PMONBUSD_CDB001","d":[]},{"s":"PANCAKESWAP:URUSWBNB_6A78CA.USD","d":[]},{"s":"PANCAKESWAP:MEMELONGWBNB_CFB211.USD","d":[]},{"s":"PANCAKESWAP:INUBWBNB_E6F416","d":[]},{"s":"PANCAKESWAP:MARIOWBNB_DB4B14.USD","d":[]},{"s":"PANCAKESWAP:ZBCCAKE_269043.USD","d":[]},{"s":"BINANCE:NULSUSD","d":[]},{"s":"PANCAKESWAP:DROVERSWBNB_F3468F.USD","d":[]},{"s":"HONEYSWAP:GRTHNY_BA31E6","d":[]},{"s":"UPBIT:GRTBTC","d":[]},{"s":"PANCAKESWAP:XSPACEWBNB_AF3BD9.USD","d":[]},{"s":"KUCOIN:PSLUSDT","d":[]},{"s":"PANCAKESWAP:RLDMWBNB_18D9B9","d":[]},{"s":"KUCOIN:AGIXETH","d":[]},{"s":"PANCAKESWAP:UNIWBNB_014608.USD","d":[]},{"s":"PANCAKESWAP:LONGCHENCHENWBNB_A8946C.USD","d":[]},{"s":"SUSHISWAP:ONXWETH_065268","d":[]},{"s":"PANCAKESWAP:NEVISBUSD_0CC1DD","d":[]},{"s":"PANCAKESWAP:DREAMPADWBNB_96A434","d":[]},{"s":"PANCAKESWAP:BLNWBNB_4B0E20.USD","d":[]},{"s":"SUSHISWAP:PENDLEWETH_37922C.USD","d":[]},{"s":"PANCAKESWAP:TKOWBNB_FFD4B2","d":[]},{"s":"PANCAKESWAP:LOUISXIIIUSDT_1F706F","d":[]},{"s":"PANCAKESWAP:ZKPMATIC_1AFF1C.USD","d":[]},{"s":"PANCAKESWAP:CATZWBNB_09096D.USD","d":[]},{"s":"PANCAKESWAP:DCKBUSD_7B768B","d":[]},{"s":"PANCAKESWAP:BURNSWBNB_928CD6","d":[]},{"s":"PANCAKESWAP:EXZOWBNB_31E428","d":[]},{"s":"PANCAKESWAP:NFTSWBNB_372186","d":[]},{"s":"PANCAKESWAP:EMPIREWBNB_60C9BD","d":[]},{"s":"PANCAKESWAP:YEETWBNB_2F0FB3.USD","d":[]},{"s":"PANCAKESWAP:YDZWBNB_BE3997","d":[]},{"s":"KUCOIN:GGGUSDT","d":[]},{"s":"HONEYSWAP:XDBXWXDAI_8E2A73","d":[]},{"s":"OKX:SOLUSDC","d":[]},{"s":"KUCOIN:REVVUSDT","d":[]},{"s":"PANCAKESWAP:BISTWBNB_EF156F.USD","d":[]},{"s":"PANCAKESWAP:XYFWBNB_76C2B0.USD","d":[]},{"s":"PANCAKESWAP:PEPEWETH_982CB5.USD","d":[]},{"s":"PANCAKESWAP:HKDWBNB_D1FD32","d":[]},{"s":"PANCAKESWAP:GIFTWBNB_49B835.USD","d":[]},{"s":"PANCAKESWAP:MIAWBNB_3D0469.USD","d":[]},{"s":"KUCOIN:SUIUSDT","d":[]},{"s":"PANCAKESWAP:ZKVAULTWBNB_E5EC95.USD","d":[]},{"s":"PANCAKESWAP:BENZWBNB_6EF086.USD","d":[]},{"s":"HONEYSWAP:0XMRWXDAI_4DF1E4.USD","d":[]},{"s":"PANCAKESWAP:ENGWBNB_E09F42.USD","d":[]},{"s":"KUCOIN:WRXBTC","d":[]},{"s":"PANCAKESWAP:MEDAIWBNB_B820BA.USD","d":[]},{"s":"PANCAKESWAP:CRPWBNB_8F37DF","d":[]},{"s":"PANCAKESWAP:AMOUSDT_212677","d":[]},{"s":"PANCAKESWAP:WFXCWBNB_F92F24","d":[]},{"s":"PANCAKESWAP:FEGWBNB_F53A1D","d":[]},{"s":"PANCAKESWAP:XCADWBNB_2C8C84","d":[]},{"s":"PANCAKESWAP:SAFEMOOWBNB_5957C1","d":[]},{"s":"SUSHISWAP:MANAWETH_1BEC4D.USD","d":[]},{"s":"SUSHISWAP:SOSWETH_B84C45","d":[]},{"s":"KUCOIN:INJUSDT","d":[]},{"s":"PANCAKESWAP:BRETTWBNB_1DEA70.USD","d":[]},{"s":"PANCAKESWAP:AMTBUSD_49EC1B","d":[]},{"s":"BINANCE:NTRNUSDT.P","d":[]},{"s":"PANCAKESWAP:LAYERWBNB_AE0444.USD","d":[]},{"s":"HONEYSWAP:RSURFWXDAI_51B9F4","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_CE2552.USD","d":[]},{"s":"PANCAKESWAP:CRIMSONWBNB_CE505D.USD","d":[]},{"s":"OKX:EOSUSD27U2024","d":[]},{"s":"OKX:ETHUSDT","d":[]},{"s":"SUSHISWAP:TOKEWETH_D4E7A6.USD","d":[]},{"s":"PANCAKESWAP:BABYPEPEWBNB_C0E6A3.USD","d":[]},{"s":"PANCAKESWAP:XWBNB_AFBABC.USD","d":[]},{"s":"PANCAKESWAP:GLCAUSDT_78BD96","d":[]},{"s":"PANCAKESWAP:MOWAWBNB_C94214.USD","d":[]},{"s":"PANCAKESWAP:ALITAWBNB_0EA66D","d":[]},{"s":"PANCAKESWAP:JESUSWBNB_DA8C61.USD","d":[]},{"s":"HONEYSWAP:JOONWXDAI_960396","d":[]},{"s":"PANCAKESWAP:RULEWBNB_464930.USD","d":[]},{"s":"PANCAKESWAP:IGUBUSD_BE4511","d":[]},{"s":"OKX:AVAXUSDC","d":[]},{"s":"PANCAKESWAP:POWAWBNB_4C4C67","d":[]},{"s":"PANCAKESWAP:WWYWBNB_1368E2","d":[]},{"s":"SUSHISWAP:BAYCWETH_D829DE","d":[]},{"s":"PANCAKESWAP:FCUSDT_138EF6","d":[]},{"s":"PANCAKESWAP:CAKEBOTWBNB_2FFDCD.USD","d":[]},{"s":"HONEYSWAP:DATAWXDAI_0110F0","d":[]},{"s":"HONEYSWAP:MUSDUSDC_4DB1DE","d":[]},{"s":"SUSHISWAP:OOKIWETH_EAADDE.USD","d":[]},{"s":"PANCAKESWAP:PCAWBNB_3A4430","d":[]},{"s":"PANCAKESWAP:NRGSUSDT_777EB6","d":[]},{"s":"PANCAKESWAP:LTTBUSD_786932","d":[]},{"s":"KUCOIN:MOBILEUSDT","d":[]},{"s":"PANCAKESWAP:PDRAGONWBNB_3EBC80.USD","d":[]},{"s":"PANCAKESWAP:MAIWBNB_36AE9B.USD","d":[]},{"s":"PANCAKESWAP:AIAIWBNB_A1718B","d":[]},{"s":"HONEYSWAP:YFIWXDAI_3A1E74","d":[]},{"s":"PANCAKESWAP:ITAMWBNB_D02DA7","d":[]},{"s":"PANCAKESWAP:DEFCWBNB_8C79C3","d":[]},{"s":"OKX:GMTUSDT","d":[]},{"s":"PANCAKESWAP:BETAWBNB_88A02D.USD","d":[]},{"s":"PANCAKESWAP:SOLWBNB_40CC50","d":[]},{"s":"PANCAKESWAP:FATHERWBNB_1ECB51.USD","d":[]},{"s":"PANCAKESWAP:PETHWBNB_89155B.USD","d":[]},{"s":"PANCAKESWAP:SHDOGFIBOPOLY_557601.USD","d":[]},{"s":"PANCAKESWAP:SCKBUSD_AC1F5E","d":[]},{"s":"KUCOIN:DCKUSDT","d":[]},{"s":"PANCAKESWAP:COPIWBNB_73EDA5.USD","d":[]},{"s":"PANCAKESWAP:PTCUSDT_9ECE0D","d":[]},{"s":"PANCAKESWAP:UNDUSDT_62E4D3","d":[]},{"s":"PANCAKESWAP:GMMWBNB_CA532C","d":[]},{"s":"HONEYSWAP:PSPUSDT_6CE4A8","d":[]},{"s":"PANCAKESWAP:HAPPYWBNB_008604","d":[]},{"s":"PANCAKESWAP:NCORAIBUSD_762E6A","d":[]},{"s":"SUSHISWAP:NFDWETH_EEFA3B.USD","d":[]},{"s":"PANCAKESWAP:JGNWBNB_727527","d":[]},{"s":"PANCAKESWAP:HELENA2WBNB_CB3E69.USD","d":[]},{"s":"PANCAKESWAP:HTKWBNB_14FD21.USD","d":[]},{"s":"PANCAKESWAP:MTUSDT_2EB55E","d":[]},{"s":"PANCAKESWAP:REDUSDT_2DDC27","d":[]},{"s":"PANCAKESWAP:BLUEWBNB_84E738.USD","d":[]},{"s":"PANCAKESWAP:BABYMARIOWBNB_914BE5.USD","d":[]},{"s":"PANCAKESWAP:INFINITYXUSDT_A7752E","d":[]},{"s":"PANCAKESWAP:TBSWBNB_2C5D70","d":[]},{"s":"PANCAKESWAP:NEBULAWBNB_6C519D","d":[]},{"s":"PANCAKESWAP:BLOCKBUSD_DF54E0","d":[]},{"s":"KUCOIN:TIMEBTC","d":[]},{"s":"PANCAKESWAP:GROKXAIWBNB_CA5C44.USD","d":[]},{"s":"PANCAKESWAP:APXWBNB_AF839F","d":[]},{"s":"PANCAKESWAP:CGXWBNB_222A51.USD","d":[]},{"s":"OKX:FILUSDC","d":[]},{"s":"PANCAKESWAP:TRADEXWBNB_276054.USD","d":[]},{"s":"PANCAKESWAP:IOTXWBNB_1C4D17.USD","d":[]},{"s":"PANCAKESWAP:CTUSDT_C4D23F","d":[]},{"s":"PANCAKESWAP:SPHRIBUSD_31EDED","d":[]},{"s":"PANCAKESWAP:TSLUSDT_9217AD","d":[]},{"s":"KUCOIN:HISAND33USDT","d":[]},{"s":"PANCAKESWAP:ELVWBNB_C9D6F2","d":[]},{"s":"PANCAKESWAP:WMTWBNB_3C46A3","d":[]},{"s":"PANCAKESWAP:AXLWBNB_43AAF7.USD","d":[]},{"s":"PANCAKESWAP:JOEYWBNB_241391","d":[]},{"s":"KUCOIN:AEGUSDT","d":[]},{"s":"OKX:OKTETH","d":[]},{"s":"PANCAKESWAP:SILLYWBNB_F70EEF","d":[]},{"s":"PANCAKESWAP:DUBAICATWBNB_B27E59.USD","d":[]},{"s":"PANCAKESWAP:DEXEDWBNB_B554A8","d":[]},{"s":"PANCAKESWAP:POGBUSD_56830E","d":[]},{"s":"PANCAKESWAP:HFUSDT_C681D9","d":[]},{"s":"HONEYSWAP:DEXPLINK_385922","d":[]},{"s":"PANCAKESWAP:VENOMAIWBNB_DBAC6A.USD","d":[]},{"s":"PANCAKESWAP:MOVEWBNB_FEC2BE.USD","d":[]},{"s":"SUSHISWAP:MIMWETH_07D569.USD","d":[]},{"s":"PANCAKESWAP:RUBYWBNB_E3A88A.USD","d":[]},{"s":"PANCAKESWAP:EVCOINWBNB_6E7DEC","d":[]},{"s":"BINANCE:PEOPLEUSDT.P","d":[]},{"s":"PANCAKESWAP:LCOINV2WBNB_D02EDC.USD","d":[]},{"s":"PANCAKESWAP:EVBUSD_9902C6","d":[]},{"s":"BINANCE:COTIUSDT.P","d":[]},{"s":"PANCAKESWAP:BUNNYUSDT_809F89","d":[]},{"s":"BINANCE:GLMRUSD","d":[]},{"s":"PANCAKESWAP:MONWBNB_F11DC0","d":[]},{"s":"PANCAKESWAP:HONORUSDT_DB1EB9","d":[]},{"s":"UPBIT:GMTBTC","d":[]},{"s":"PANCAKESWAP:CHITCATWBNB_85D14F.USD","d":[]},{"s":"PANCAKESWAP:MYRAWBNB_BDC085.USD","d":[]},{"s":"PANCAKESWAP:DBZWBNB_79BCAD","d":[]},{"s":"SUSHISWAP:BFCWETH_281DF7","d":[]},{"s":"HONEYSWAP:CREAMWXDAI_DACF00","d":[]},{"s":"PANCAKESWAP:QANXWBNB_798BF5.USD","d":[]},{"s":"PANCAKESWAP:GILBUSD_F4F59A","d":[]},{"s":"PANCAKESWAP:EPSWBNB_DDE420.USD","d":[]},{"s":"KUCOIN:RLCUSDT","d":[]},{"s":"PANCAKESWAP:DATTLEWBNB_4B7B96.USD","d":[]},{"s":"HONEYSWAP:GHOWXDAI_6BB283","d":[]},{"s":"BINANCE:BTCUSDC.P","d":[]},{"s":"PANCAKESWAP:YACHTWBNB_18CB8F","d":[]},{"s":"PANCAKESWAP:METAWUSDT_EAF2DC","d":[]},{"s":"PANCAKESWAP:ANONWBNB_3A8C02.USD","d":[]},{"s":"SUSHISWAP:ARAUSDC_81EF0C","d":[]},{"s":"PANCAKESWAP:TBANKWBNB_CED806.USD","d":[]},{"s":"PANCAKESWAP:GSTBUSD_15C397","d":[]},{"s":"KUCOIN:CETUSUSDT","d":[]},{"s":"KUCOIN:TRXUSDT","d":[]},{"s":"PANCAKESWAP:MARIOWBNB_6EF30F.USD","d":[]},{"s":"PANCAKESWAP:PECLWBNB_0AFA45","d":[]},{"s":"PANCAKESWAP:DIFIWBNB_77F8C1","d":[]},{"s":"SUSHISWAP:NFDWETH_EEFA3B","d":[]},{"s":"BINANCE:XLMUSDT.P","d":[]},{"s":"PANCAKESWAP:WEB3WBNB_072CE9","d":[]},{"s":"OKX:EGLDUSDC","d":[]},{"s":"PANCAKESWAP:FRPWBNB_34A516.USD","d":[]},{"s":"OKX:OKBBTC","d":[]},{"s":"PANCAKESWAP:ONEUSDT_63428B","d":[]},{"s":"SUSHISWAP:DOUGHWETH_97F34C.USD","d":[]},{"s":"OKX:BCHUSDC","d":[]},{"s":"PANCAKESWAP:A8WBNB_227D61","d":[]},{"s":"PANCAKESWAP:BTAWBNB_B48D98.USD","d":[]},{"s":"PANCAKESWAP:MINUWBNB_91D8D7.USD","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_215BE1.USD","d":[]},{"s":"PANCAKESWAP:ETHBTCB_D171B2","d":[]},{"s":"PANCAKESWAP:GLTWBNB_861FAE.USD","d":[]},{"s":"HONEYSWAP:1INCHWXDAI_473F40","d":[]},{"s":"HONEYSWAP:AMISWETH_460270","d":[]},{"s":"OKX:ASTUSDT","d":[]},{"s":"PANCAKESWAP:DEBTUSDT_BE4681","d":[]},{"s":"PANCAKESWAP:AVECWBNB_409B61","d":[]},{"s":"SUSHISWAPPOLYGON:MHUNTWMATIC_D08244","d":[]},{"s":"KUCOIN:SFPUSDT","d":[]},{"s":"BINANCE:JOEUSDT.P","d":[]},{"s":"PANCAKESWAP:LOONGWBNB_C17D23.USD","d":[]},{"s":"BINANCE:OMUSDT.P","d":[]},{"s":"PANCAKESWAP:BABYMUSKWBNB_F1D5C6.USD","d":[]},{"s":"PANCAKESWAP:BSLWBNB_1AF0C5.USD","d":[]},{"s":"PANCAKESWAP:GROKSORAXWBNB_4CB77B.USD","d":[]},{"s":"PANCAKESWAP:USDTVWBNB_277BEC","d":[]},{"s":"PANCAKESWAP:ALEOWBNB_771AF3.USD","d":[]},{"s":"PANCAKESWAP:WLKNUSDT_AC5158","d":[]},{"s":"PANCAKESWAP:GOFWBNB_E412BB","d":[]},{"s":"PANCAKESWAP:BEEWBNB_FBA050.USD","d":[]},{"s":"KUCOIN:SOLUSDT","d":[]},{"s":"KUCOIN:NEARUSDC","d":[]},{"s":"PANCAKESWAP:NLCWBNB_69D5B8","d":[]},{"s":"PANCAKESWAP:VINUWBNB_DD9114.USD","d":[]},{"s":"PANCAKESWAP:RLDWBNB_19AAD7","d":[]},{"s":"HONEYSWAP:EWTBWXDAI_CBB497.USD","d":[]},{"s":"PANCAKESWAP:WDYMWBNB_74BCDD","d":[]},{"s":"PANCAKESWAP:JCBUSDT_B275F9","d":[]},{"s":"PANCAKESWAP:NFCWBNB_CFA938","d":[]},{"s":"PANCAKESWAP:TOSTSNFT_F84AF7","d":[]},{"s":"OKX:EOSUSDC","d":[]},{"s":"PANCAKESWAP:IDNAUSDT_003934","d":[]},{"s":"BINANCE:LTCUSD","d":[]},{"s":"PANCAKESWAP:SRLTYWBNB_7E998D.USD","d":[]},{"s":"HONEYSWAP:HNYGMLU_9D61C2.USD","d":[]},{"s":"PANCAKESWAP:TENTWBNB_30E181.USD","d":[]},{"s":"PANCAKESWAP:ZBCPOSE_C6EA71.USD","d":[]},{"s":"KUCOIN:STORJETH","d":[]},{"s":"HONEYSWAP:ALBCWETH_CBA6EE","d":[]},{"s":"PANCAKESWAP:TRADEXWBNB_276054","d":[]},{"s":"OKX:BLURUSDC","d":[]},{"s":"PANCAKESWAP:PEPEBWBNB_B57581.USD","d":[]},{"s":"PANCAKESWAP:BTLWBNB_CAF752","d":[]},{"s":"KUCOIN:DMAILUSDT","d":[]},{"s":"PANCAKESWAP:LINKTHOREUM_7F3FC4.USD","d":[]},{"s":"KUCOIN:ERTHAUSDT","d":[]},{"s":"BINANCE:CTKUSD","d":[]},{"s":"PANCAKESWAP:WRONGWBNB_91EB1F.USD","d":[]},{"s":"PANCAKESWAP:TANKBUSD_4E1449","d":[]},{"s":"OKX:PORUSDT","d":[]},{"s":"KUCOIN:AMPUSDT","d":[]},{"s":"UPBIT:LRCBTC","d":[]},{"s":"HONEYSWAP:AMISGNO_5B9E5B","d":[]},{"s":"PANCAKESWAP:WJXNWBNB_D55FFE.USD","d":[]},{"s":"KUCOIN:KMDBTC","d":[]},{"s":"OKX:XECUSDT","d":[]},{"s":"PANCAKESWAP:YBK20WBNB_0C48F5.USD","d":[]},{"s":"PANCAKESWAP:SRXWBNB_A9FAD6.USD","d":[]},{"s":"HONEYSWAP:VITAWETH_0AF1BB.USD","d":[]},{"s":"PANCAKESWAP:ADXUSDT_8B0FA4","d":[]},{"s":"PANCAKESWAP:PSWAPWBNB_E55072.USD","d":[]},{"s":"PANCAKESWAP:TAMWBNB_A3B357","d":[]},{"s":"PANCAKESWAP:GWMUSDT_CABED7","d":[]},{"s":"PANCAKESWAP:SQUIDWBNB_038329.USD","d":[]},{"s":"OKX:ETHWUSDC","d":[]},{"s":"PANCAKESWAP:FBLUSDT_61DF85","d":[]},{"s":"PANCAKESWAP:CMCCWBNB_BEE295","d":[]},{"s":"PANCAKESWAP:WFTCFTC_0C25D2","d":[]},{"s":"PANCAKESWAP:TWITTERXWBNB_E824C6.USD","d":[]},{"s":"PANCAKESWAP:ARCONAETH_73E64E.USD","d":[]},{"s":"PANCAKESWAP:ETHFIWBNB_6B4D15.USD","d":[]},{"s":"PANCAKESWAP:IOIBUSD_D62BAF","d":[]},{"s":"PANCAKESWAP:TROLLMODEWBNB_B4BDF4.USD","d":[]},{"s":"KUCOIN:ONDOUSDT","d":[]},{"s":"PANCAKESWAP:PECLWBNB_0AFA45.USD","d":[]},{"s":"PANCAKESWAP:PEPEPCC_D0D7A7.USD","d":[]},{"s":"PANCAKESWAP:DRAGONWBNB_A7E7C3.USD","d":[]},{"s":"PANCAKESWAP:SCLPWBNB_BF8BCB","d":[]},{"s":"OKX:LUNAUSDC","d":[]},{"s":"SUSHISWAP:BTTWETH_E9CF42.USD","d":[]},{"s":"PANCAKESWAP:MLWBNB_9F67E1","d":[]},{"s":"PANCAKESWAP:STLWBNB_3D8074","d":[]},{"s":"PANCAKESWAP:MYROWBNB_4CD2F2.USD","d":[]},{"s":"PANCAKESWAP:SPORTSAIWBNB_853EFD.USD","d":[]},{"s":"PANCAKESWAP:MANEWBNB_AA0453","d":[]},{"s":"PANCAKESWAP:DREPBUSD_6897F7","d":[]},{"s":"PANCAKESWAP:THGWBNB_486697.USD","d":[]},{"s":"SUSHISWAP:YVBOOSTWETH_946117","d":[]},{"s":"PANCAKESWAP:TDOGEWBNB_FD8E63","d":[]},{"s":"PANCAKESWAP:SETNRGS_9D9D3A.USD","d":[]},{"s":"PANCAKESWAP:FAUSDT_53E612","d":[]},{"s":"PANCAKESWAP:PURRWBNB_1813A5","d":[]},{"s":"SUSHISWAP:OCEANWETH_EE35E5","d":[]},{"s":"HONEYSWAP:ALBCUSDT_55800C","d":[]},{"s":"PANCAKESWAP:MLTWBNB_CF7DF7","d":[]},{"s":"PANCAKESWAP:HOLBUSD_CD109E","d":[]},{"s":"PANCAKESWAP:FOTUSDT_0E1C7D","d":[]},{"s":"PANCAKESWAP:SHDOGSSNFT_A7F7A5.USD","d":[]},{"s":"PANCAKESWAP:MEDOCWBNB_A1D78B.USD","d":[]},{"s":"PANCAKESWAP:METFIWBNB_6E6EDB","d":[]},{"s":"PANCAKESWAP:LUFFYWBNB_D6DF60","d":[]},{"s":"PANCAKESWAP:DOGOWBNB_06B0AF.USD","d":[]},{"s":"OKX:VELAUSDT","d":[]},{"s":"KUCOIN:DYPUSDT","d":[]},{"s":"HONEYSWAP:DPIWXDAI_81E1DA.USD","d":[]},{"s":"PANCAKESWAP:FIPIWBNB_C0BF68","d":[]},{"s":"PANCAKESWAP:LSCUSDT_40BF32","d":[]},{"s":"PANCAKESWAP:HUHWBNB_FFC490.USD","d":[]},{"s":"PANCAKESWAP:MGCUSDT_3EFB94","d":[]},{"s":"KUCOIN:WELLUSDT","d":[]},{"s":"PANCAKESWAP:ALEOWBNB_12AA13.USD","d":[]},{"s":"PANCAKESWAP:TIPSYWBNB_20E325.USD","d":[]},{"s":"PANCAKESWAP:VMTWBNB_659303.USD","d":[]},{"s":"PANCAKESWAP:NOIDWBNB_41E572","d":[]},{"s":"PANCAKESWAP:YFIIIWBNB_68F9A6.USD","d":[]},{"s":"PANCAKESWAP:ADAOWBNB_0475E8.USD","d":[]},{"s":"PANCAKESWAP:OSKUSDT_470A47","d":[]},{"s":"PANCAKESWAP:VNYWBNB_2B55B0.USD","d":[]},{"s":"SUSHISWAP:FTMWETH_0E26A2.USD","d":[]},{"s":"PANCAKESWAP:SOMWBNB_237665.USD","d":[]},{"s":"UPBIT:ZILBTC","d":[]},{"s":"PANCAKESWAP:ECLIPSEWBNB_0B2520","d":[]},{"s":"PANCAKESWAP:DRAWBNB_A050B0","d":[]},{"s":"PANCAKESWAP:RASTAWBNB_950B73","d":[]},{"s":"PANCAKESWAP:DFSMWBNB_309118","d":[]},{"s":"OKX:ETCUSDT","d":[]},{"s":"PANCAKESWAP:PNBWBNB_B06327.USD","d":[]},{"s":"PANCAKESWAP:DSHAREWBNB_5998AF","d":[]},{"s":"PANCAKESWAP:SONICWBNB_7BA2D2.USD","d":[]},{"s":"BINANCE:GASUSDT.P","d":[]},{"s":"PANCAKESWAP:SHIBACASHWBNB_55D2AA.USD","d":[]},{"s":"PANCAKESWAP:SHENSHOUC95E16_B576DA.USD","d":[]},{"s":"PANCAKESWAP:ALIAWBNB_358173","d":[]},{"s":"PANCAKESWAP:EXZOWBNB_31E428.USD","d":[]},{"s":"PANCAKESWAP:BEFEWBNB_D8A8F6.USD","d":[]},{"s":"PANCAKESWAP:DUELWBNB_ABAB7A","d":[]},{"s":"PANCAKESWAP:UCOBUSD_9B94BB","d":[]},{"s":"PANCAKESWAP:9MGWBNB_60893B","d":[]},{"s":"KUCOIN:MAHABTC","d":[]},{"s":"PANCAKESWAP:ROCKETWBNB_97A463.USD","d":[]},{"s":"PANCAKESWAP:LONGCHENUSDT_0C0D54","d":[]},{"s":"BINANCE:POWRUSDT.P","d":[]},{"s":"SUSHISWAP:ICHIWETH_9CD028","d":[]},{"s":"PANCAKESWAP:CLSWBNB_C8E6DD","d":[]},{"s":"PANCAKESWAP:VIRTUWBNB_F2D6B2.USD","d":[]},{"s":"PANCAKESWAP:GAMEKINGUSDT_FF3CBE","d":[]},{"s":"PANCAKESWAP:GMEXWBNB_632963","d":[]},{"s":"HONEYSWAP:COMPWXDAI_C2FFBF","d":[]},{"s":"PANCAKESWAP:SQDWBNB_34DCED.USD","d":[]},{"s":"PANCAKESWAP:UNCLWBNB_38904C.USD","d":[]},{"s":"PANCAKESWAP:FECLIPSEWBNB_6F8AED.USD","d":[]},{"s":"PANCAKESWAP:SHIBSCWBNB_0B85DD.USD","d":[]},{"s":"PANCAKESWAP:ACSWETH_806E91","d":[]},{"s":"OKX:ACEUSDT","d":[]},{"s":"PANCAKESWAP:HOGEWBNB_CED4F9","d":[]},{"s":"PANCAKESWAP:MASAWBNB_C783E0","d":[]},{"s":"PANCAKESWAP:CREUSDT_58931D","d":[]},{"s":"PANCAKESWAP:IMRTLWBNB_C3AC59.USD","d":[]},{"s":"PANCAKESWAP:DXWBNB_10DE2C.USD","d":[]},{"s":"PANCAKESWAP:DRAGWBNB_EAD6EC.USD","d":[]},{"s":"HONEYSWAP:SNAFUWXDAI_D6C8AD.USD","d":[]},{"s":"HONEYSWAP:HNYWBTC_8C573E","d":[]},{"s":"PANCAKESWAP:CMDWBNB_BB6B96","d":[]},{"s":"PANCAKESWAP:JACKDAOUSDT_F25677","d":[]},{"s":"HONEYSWAP:WXHOPRWXDAI_82BFB0","d":[]},{"s":"BINANCE:BNTUSD","d":[]},{"s":"KUCOIN:DFIBTC","d":[]},{"s":"OKX:SNTUSDT","d":[]},{"s":"PANCAKESWAP:LUFFYWBNB_4586B9.USD","d":[]},{"s":"PANCAKESWAP:DIAMONDWBNB_A925A5","d":[]},{"s":"PANCAKESWAP:VANGUARDWBNB_71C750.USD","d":[]},{"s":"PANCAKESWAP:CFXWBNB_BA983B.USD","d":[]},{"s":"PANCAKESWAP:SDTPLY_763262","d":[]},{"s":"PANCAKESWAP:CR7WBNB_1B1729.USD","d":[]},{"s":"KUCOIN:CELOBTC","d":[]},{"s":"PANCAKESWAP:XDRIPWBNB_CBBEF1","d":[]},{"s":"KUCOIN:TFUELBTC","d":[]},{"s":"PANCAKESWAP:A8WBNB_227D61.USD","d":[]},{"s":"PANCAKESWAP:MIRRORWBNB_9255EC.USD","d":[]},{"s":"PANCAKESWAP:DIDUSDT_59EAF1","d":[]},{"s":"PANCAKESWAP:MEUSDT_52CB76","d":[]},{"s":"PANCAKESWAP:EVSOLWBNB_DCCE26.USD","d":[]},{"s":"PANCAKESWAP:MINUWBNB_6928A2","d":[]},{"s":"PANCAKESWAP:KALMUSDT_B7168F","d":[]},{"s":"PANCAKESWAP:SPEAIWBNB_A8EBC8.USD","d":[]},{"s":"BINANCE:WAXPUSD","d":[]},{"s":"PANCAKESWAP:NFTDBUSD_C543F1","d":[]},{"s":"HONEYSWAP:RAIDAGVE_9FDB14","d":[]},{"s":"PANCAKESWAP:UWUWBNB_3EC4FE","d":[]},{"s":"PANCAKESWAP:BNXUSDT_9C5BA1","d":[]},{"s":"PANCAKESWAP:TRTWBNB_E74957.USD","d":[]},{"s":"PANCAKESWAP:CABOWBNB_566067","d":[]},{"s":"HONEYSWAP:MEWWETH_AE704C.USD","d":[]},{"s":"PANCAKESWAP:MDBWBNB_B592BF","d":[]},{"s":"PANCAKESWAP:ZAMUSDT_40B901","d":[]},{"s":"PANCAKESWAP:TLDAOUSDT_ADA597","d":[]},{"s":"OKX:AERGOUSDT","d":[]},{"s":"SUSHISWAPPOLYGON:JRTWETH_A769C6.USD","d":[]},{"s":"PANCAKESWAP:SPINERTHA_591E33.USD","d":[]},{"s":"KUCOIN:FLUXUSDT","d":[]},{"s":"PANCAKESWAP:VAIBUSD_FF17FF","d":[]},{"s":"KUCOIN:BDXUSDT","d":[]},{"s":"PANCAKESWAP:APWBNB_332C1A.USD","d":[]},{"s":"PANCAKESWAP:DONWBNB_E091FF.USD","d":[]},{"s":"HONEYSWAP:WETCWXDAI_FDE35C","d":[]},{"s":"PANCAKESWAP:GOGEWBNB_3686C1","d":[]},{"s":"PANCAKESWAP:REGUWBNB_90CF51.USD","d":[]},{"s":"BINANCE:DOCKUSD","d":[]},{"s":"PANCAKESWAP:MTUSDT_5DCF25","d":[]},{"s":"HONEYSWAP:XMOONAGVE_D79784.USD","d":[]},{"s":"PANCAKESWAP:VOYAWBNB_305FA9","d":[]},{"s":"PANCAKESWAP:NEXBOXWBNB_E4B2D6.USD","d":[]},{"s":"PANCAKESWAP:PALMWBNB_044066","d":[]},{"s":"PANCAKESWAP:R3TWBNB_71994D.USD","d":[]},{"s":"PANCAKESWAP:MRKCWBNB_841A23.USD","d":[]},{"s":"BINANCE:DYDXUSDT.P","d":[]},{"s":"BINANCE:AXLUSDT.P","d":[]},{"s":"PANCAKESWAP:SPEWBNB_B5A687","d":[]},{"s":"PANCAKESWAP:EVERSAFUWBNB_A6C395","d":[]},{"s":"PANCAKESWAP:HKDWBNB_0E835C.USD","d":[]},{"s":"PANCAKESWAP:GLMWETH_0AB5E2.USD","d":[]},{"s":"PANCAKESWAP:WDPEWBNB_CE267B","d":[]},{"s":"HONEYSWAP:XGTWXDAI_B2B15D","d":[]},{"s":"PANCAKESWAP:PEPESWAPWBNB_4DEB21","d":[]},{"s":"PANCAKESWAP:FTMWBNB_F567A6","d":[]},{"s":"PANCAKESWAP:MSCUSDT_E7D75E","d":[]},{"s":"PANCAKESWAP:FGPTWBNB_5F12A0","d":[]},{"s":"PANCAKESWAP:GVSWBNB_1BF0C4.USD","d":[]},{"s":"PANCAKESWAP:UABWBNB_EF03EB.USD","d":[]},{"s":"PANCAKESWAP:SCPWBNB_1BA4B7","d":[]},{"s":"KUCOIN:FTGUSDT","d":[]},{"s":"PANCAKESWAP:AIMEMESUSDT_9DA26F","d":[]},{"s":"PANCAKESWAP:ATHUSDT_64E194","d":[]},{"s":"PANCAKESWAP:INKYUSDT_E3A00D","d":[]},{"s":"PANCAKESWAP:MOONIONWBNB_44FD1E","d":[]},{"s":"SUSHISWAPPOLYGON:BITTWMATIC_84B840.USD","d":[]},{"s":"BINANCE:SANDUSDT.P","d":[]},{"s":"PANCAKESWAP:ELRUSDT_F45E5C","d":[]},{"s":"PANCAKESWAP:LUNGWBNB_0F0084","d":[]},{"s":"PANCAKESWAP:HAPPYWBNB_EDF4CC.USD","d":[]},{"s":"PANCAKESWAP:PEPELONGWBNB_31848B.USD","d":[]},{"s":"PANCAKESWAP:APYSWBNB_510B29.USD","d":[]},{"s":"PANCAKESWAP:MPDWBNB_630D98.USD","d":[]},{"s":"HONEYSWAP:RSRHNY_02D3FA.USD","d":[]},{"s":"BINANCE:AUCTIONUSDT.P","d":[]},{"s":"OKX:GLMUSDT","d":[]},{"s":"PANCAKESWAP:SUPSWBNB_3D4A58","d":[]},{"s":"UPBIT:DKABTC","d":[]},{"s":"PANCAKESWAP:MGCWBNB_C26BFD","d":[]},{"s":"PANCAKESWAP:FRLONGWBNB_EA2D50","d":[]},{"s":"PANCAKESWAP:EVRFWBNB_9F5F87.USD","d":[]},{"s":"PANCAKESWAP:DRIPBUSD_A0FEB3","d":[]},{"s":"PANCAKESWAP:HAYUSDT_C43763","d":[]},{"s":"PANCAKESWAP:SORAWBNB_4C8249.USD","d":[]},{"s":"PANCAKESWAP:AUDITWBNB_0248F5.USD","d":[]},{"s":"PANCAKESWAP:TURBOUSDT_BDCD30","d":[]},{"s":"HONEYSWAP:VITAWXDAI_BA2978.USD","d":[]},{"s":"PANCAKESWAP:BNB20WBNB_34F2F8.USD","d":[]},{"s":"KUCOIN:ZENUSDT","d":[]},{"s":"KUCOIN:ROOTUSDT","d":[]},{"s":"PANCAKESWAP:PROPWBNB_4233C2","d":[]},{"s":"KUCOIN:KDABTC","d":[]},{"s":"PANCAKESWAP:CAROMWBNB_BBF00E","d":[]},{"s":"PANCAKESWAP:OGGYWBNB_2CDFD3.USD","d":[]},{"s":"PANCAKESWAP:FUSEWBNB_6483F1.USD","d":[]},{"s":"PANCAKESWAP:TOTMWBNB_CDD9E6","d":[]},{"s":"SUSHISWAPPOLYGON:FBXWETH_CFFBFA.USD","d":[]},{"s":"PANCAKESWAP:MTDRWBNB_C49C15.USD","d":[]},{"s":"PANCAKESWAP:PEPEQUWBNB_29B203.USD","d":[]},{"s":"KUCOIN:BOBAUSDT","d":[]},{"s":"PANCAKESWAP:SAFEMDC_93AA9A","d":[]},{"s":"PANCAKESWAP:NSFWWBNB_5E55AE.USD","d":[]},{"s":"PANCAKESWAP:DEBWBNB_6D9886","d":[]},{"s":"PANCAKESWAP:FIPIWBNB_C0BF68.USD","d":[]},{"s":"BINANCE:TLMUSD","d":[]},{"s":"KUCOIN:AAVEUSDT","d":[]},{"s":"PANCAKESWAP:DDLWBNB_89CD21","d":[]},{"s":"PANCAKESWAP:ETXWBNB_CF0B28","d":[]},{"s":"PANCAKESWAP:HMWBNB_B05F74","d":[]},{"s":"BINANCE:ELFUSD","d":[]},{"s":"PANCAKESWAP:XWBNB_AFBABC","d":[]},{"s":"PANCAKESWAP:HOPEWBNB_59CE81","d":[]},{"s":"PANCAKESWAP:VXPSWBNB_891326.USD","d":[]},{"s":"PANCAKESWAP:OPBNBUSDT_E33DC0","d":[]},{"s":"PANCAKESWAP:BBLWBNB_F4F2B6","d":[]},{"s":"PANCAKESWAP:BABYTRUMPWBNB_D7B361","d":[]},{"s":"SUSHISWAPPOLYGON:FXSFRAX_D53A56","d":[]},{"s":"OKX:GRTUSDT","d":[]},{"s":"PANCAKESWAP:RABBITWBNB_0FDF00","d":[]},{"s":"PANCAKESWAP:DORMONWBNB_719718.USD","d":[]},{"s":"HONEYSWAP:RENBTCWBTC_84F2FF.USD","d":[]},{"s":"PANCAKESWAP:HAVENUSDT_25E02A","d":[]},{"s":"OKX:ASTRUSDC","d":[]},{"s":"OKX:BORINGUSDT","d":[]},{"s":"HONEYSWAP:SHIBWXDAI_61511A.USD","d":[]},{"s":"PANCAKESWAP:CGPTBUSD_CFE847","d":[]},{"s":"BINANCE:QTUMUSDT.P","d":[]},{"s":"PANCAKESWAP:HUMAIWBNB_3D6AAC","d":[]},{"s":"PANCAKESWAP:ABRBUSD_241684","d":[]},{"s":"PANCAKESWAP:SHNWBNB_68C2DD.USD","d":[]},{"s":"PANCAKESWAP:FEGWBNB_F53A1D.USD","d":[]},{"s":"PANCAKESWAP:HKEXWBNB_606288.USD","d":[]},{"s":"KUCOIN:RPKUSDT","d":[]},{"s":"PANCAKESWAP:GECUSDT_027DBD","d":[]},{"s":"PANCAKESWAP:HUOFHUSDT_41C630","d":[]},{"s":"PANCAKESWAP:HAPIWBNB_156658.USD","d":[]},{"s":"KUCOIN:HIBAKCUSDT","d":[]},{"s":"PANCAKESWAP:COMAWBNB_AD87EA.USD","d":[]},{"s":"PANCAKESWAP:YBEUSDT_F1EB24","d":[]},{"s":"PANCAKESWAP:SATSUSDT_CB3C15","d":[]},{"s":"PANCAKESWAP:DUBAICATWBNB_B27E59","d":[]},{"s":"KUCOIN:UTKUSDT","d":[]},{"s":"OKX:BNBUSDC","d":[]},{"s":"PANCAKESWAP:DSUNSUNDOG_37784F.USD","d":[]},{"s":"PANCAKESWAP:GNYBUSD_E9EC13","d":[]},{"s":"PANCAKESWAP:NFDCWBNB_5A02BF.USD","d":[]},{"s":"PANCAKESWAP:TEDDYV2WBNB_BA4F49.USD","d":[]},{"s":"PANCAKESWAP:ARTEMWBNB_E02416.USD","d":[]},{"s":"UPBIT:IOSTBTC","d":[]},{"s":"PANCAKESWAP:MPLAYBUSD_0BB176","d":[]},{"s":"OKX:BTCUSDT","d":[]},{"s":"PANCAKESWAP:VOYAWBNB_305FA9.USD","d":[]},{"s":"PANCAKESWAP:TOKOWBNB_E789C8","d":[]},{"s":"PANCAKESWAP:CBIWBNB_1AE9DE","d":[]},{"s":"SUSHISWAPPOLYGON:VERSEWETH_7F2F22","d":[]},{"s":"KUCOIN:ELONUSDT","d":[]},{"s":"SUSHISWAP:PADUSDT_BDD292","d":[]},{"s":"PANCAKESWAP:NEIWBNB_96E48C","d":[]},{"s":"PANCAKESWAP:ELONBUSD_9C0E52","d":[]},{"s":"PANCAKESWAP:EMPESHARE_2FA500.USD","d":[]},{"s":"PANCAKESWAP:CCGDSWBNB_500B31.USD","d":[]},{"s":"PANCAKESWAP:KZENBUSD_34E5DA","d":[]},{"s":"SUSHISWAP:UWUWETH_3E0486","d":[]},{"s":"PANCAKESWAP:3DGOUSDT_A81211","d":[]},{"s":"UPBIT:BCHBTC","d":[]},{"s":"PANCAKESWAP:HKTWBNB_5411DD.USD","d":[]},{"s":"SUSHISWAP:ENSWETH_A11814","d":[]},{"s":"PANCAKESWAP:BEAIUSDT_87D5B9","d":[]},{"s":"PANCAKESWAP:ATXWBNB_3FA30A.USD","d":[]},{"s":"PANCAKESWAP:ASTROPEPEWBNB_9498BA.USD","d":[]},{"s":"PANCAKESWAP:YESWBNB_F5581D.USD","d":[]},{"s":"PANCAKESWAP:TANGYUANUSDT_BC37EB","d":[]},{"s":"PANCAKESWAP:YACHTWBNB_18CB8F.USD","d":[]},{"s":"PANCAKESWAP:DRIPDEBT_4E25B6.USD","d":[]},{"s":"PANCAKESWAP:WSBWBNB_E66783.USD","d":[]},{"s":"PANCAKESWAP:GRIMACEWBNB_318F2A.USD","d":[]},{"s":"OKX:LINKETH","d":[]},{"s":"PANCAKESWAP:YOSHIWBNB_124F2E.USD","d":[]},{"s":"PANCAKESWAP:LGNUSDT_B9B540","d":[]},{"s":"PANCAKESWAP:FSUSDT_813A0F","d":[]},{"s":"PANCAKESWAP:SHACKWBNB_D67AB6.USD","d":[]},{"s":"PANCAKESWAP:FAMEWBNB_612D69","d":[]},{"s":"KUCOIN:HYDRAUSDT","d":[]},{"s":"PANCAKESWAP:TREATWBNB_FA0C17.USD","d":[]},{"s":"PANCAKESWAP:ZILWBNB_6A9786","d":[]},{"s":"PANCAKESWAP:BULLUSDT_D41AA8","d":[]},{"s":"PANCAKESWAP:EVDCWBNB_3B0CDA","d":[]},{"s":"PANCAKESWAP:BTCETFWBNB_4146DD","d":[]},{"s":"OKX:DOTUSDT","d":[]},{"s":"PANCAKESWAP:SQMUSDT_38293B","d":[]},{"s":"PANCAKESWAP:DOMEBUSD_5BFADB","d":[]},{"s":"PANCAKESWAP:CPMWBNB_52B78C.USD","d":[]},{"s":"PANCAKESWAP:PEPEINUWBNB_435BB0","d":[]},{"s":"PANCAKESWAP:BLDSWBNB_4D4EC3","d":[]},{"s":"PANCAKESWAP:WETWBNB_36FEC0","d":[]},{"s":"HONEYSWAP:HAUSWXDAI_B2E922","d":[]},{"s":"PANCAKESWAP:VITEBTCB_06AF13.USD","d":[]},{"s":"UPBIT:DOGEBTC","d":[]},{"s":"PANCAKESWAP:WAIFUWBNB_D7D022.USD","d":[]},{"s":"PANCAKESWAP:SWPTWBNB_7469D4.USD","d":[]},{"s":"PANCAKESWAP:GFYUSDT_8D8E75","d":[]},{"s":"PANCAKESWAP:BITCOINWBNB_410881.USD","d":[]},{"s":"PANCAKESWAP:JOJOWBNB_F6A1C9","d":[]},{"s":"PANCAKESWAP:CUMMIESWBNB_02BFF2","d":[]},{"s":"HONEYSWAP:TEQUILAAGVE_04B6B0.USD","d":[]},{"s":"PANCAKESWAP:EVCOINWBNB_6E7DEC.USD","d":[]},{"s":"SUSHISWAPPOLYGON:GOHMWETH_1549E0","d":[]},{"s":"PANCAKESWAP:PIXSWAPWBNB_8D7D24","d":[]},{"s":"PANCAKESWAP:TRTWBNB_E74957","d":[]},{"s":"SUSHISWAPPOLYGON:ZEDWETH_374552","d":[]},{"s":"PANCAKESWAP:DAUMENWBNB_B1622F.USD","d":[]},{"s":"PANCAKESWAP:MEMEETFWBNB_441098.USD","d":[]},{"s":"PANCAKESWAP:KOLETH_23C414","d":[]},{"s":"KUCOIN:KAIBTC","d":[]},{"s":"BINANCE:CELRUSD","d":[]},{"s":"PANCAKESWAP:FATWBNB_06C2EE","d":[]},{"s":"PANCAKESWAP:GFIWBNB_4E4042.USD","d":[]},{"s":"PANCAKESWAP:BOBUSDT_AD6871","d":[]},{"s":"PANCAKESWAP:KDOGEWBNB_218165.USD","d":[]},{"s":"PANCAKESWAP:SADFROGWBNB_C9D4D6.USD","d":[]},{"s":"OKX:SANDUSDC","d":[]},{"s":"OKX:SOLBTC","d":[]},{"s":"PANCAKESWAP:SEAMANUSDT_663791","d":[]},{"s":"PANCAKESWAP:TPADWBNB_526588.USD","d":[]},{"s":"PANCAKESWAP:MORAWBNB_1A01A2","d":[]},{"s":"PANCAKESWAP:SDAOWBNB_1D0ACF.USD","d":[]},{"s":"PANCAKESWAP:XAIWBNB_4F14D4.USD","d":[]},{"s":"PANCAKESWAP:UTODAOUSDT_157E9B","d":[]},{"s":"PANCAKESWAP:IONZUSDT_E92526","d":[]},{"s":"PANCAKESWAP:NEOUSDT_86FDF1","d":[]},{"s":"PANCAKESWAP:WROSETHOREUM_A188BF","d":[]},{"s":"PANCAKESWAP:IMOVWBNB_017496","d":[]},{"s":"PANCAKESWAP:DOJOUSDT_54731C","d":[]},{"s":"KUCOIN:FLAMEUSDT","d":[]},{"s":"PANCAKESWAP:DRAGONBALLWBNB_7827D8","d":[]}]} \ No newline at end of file