windowdog 1 hónapja
szülő
commit
11bbfcd795
18 módosított fájl, 5787 hozzáadás és 3 törlés
  1. 87 0
      src/code/handle_dune_py/001_concat_top20_holders_add_dune_nouse.py
  2. 94 0
      src/code/handle_dune_py/001_top20_holders_dune_merged_dune.py
  3. 24 0
      src/code/handle_dune_py/002_handle_buy_sametoken_dune.py
  4. 2 2
      src/code/handle_dune_py/003_handle_buy_sametoken_time_diff_row_dune.py
  5. 1 0
      src/code/tamper/xmlhttprequest_get_top_trader_gmgn.js
  6. BIN
      src/library/analysis_token/2ZoJVM15fbbDgo6s5cTTX2Sj8V4sJ47rimb7gQhGpump/003_buy_sametoken_time_diff_row_dune.xlsx
  7. BIN
      src/library/analysis_token/2ZoJVM15fbbDgo6s5cTTX2Sj8V4sJ47rimb7gQhGpump/汇总add.xlsx
  8. 190 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/001_handle_json_top_trader_gmgn.py
  9. BIN
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/001_top20_holders_dune_merged.xlsx
  10. 94 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/001_top20_holders_dune_merged_dune.py
  11. 26 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/dune_holders_xx_xx_0410日0615.csv
  12. 26 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/dune_holders_xx_xx_0410日0700.csv
  13. 26 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/dune_holders_xx_xx_0410日1230.csv
  14. 39 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/exclude_add.csv
  15. 5172 0
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/top_trader_gmgn_8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump.json
  16. BIN
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/top_trader_gmgn_8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump_1745225098.xlsx
  17. BIN
      src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/汇总add.xlsx
  18. 6 1
      src/library/analysis_token/exclude_add.csv

+ 87 - 0
src/code/handle_dune_py/001_concat_top20_holders_add_dune_nouse.py

@@ -0,0 +1,87 @@
+
+# 获取每一个时间段的top20 持仓,汇总到一个excel表格中
+import pandas as pd
+import sys
+import os
+import time
+
+arr_file = []
+merged_df = None
+ 
+def makeurl( url,url_show):
+    return '=HYPERLINK("{}","{}")'.format(url,  url_show)
+
+def map_exclude_df(df1,ex_df):
+  
+    ex_df.rename(columns={'ex_add': 'holder_owner', 'info': 'domains_owned'}, inplace=True)
+    # 使用merge创建一个临时DataFrame,只包含匹配的行
+    temp_df = df1[['holder_owner']].merge(ex_df, on='holder_owner', how='left')
+    # 更新df1的'b1'列
+    df1.set_index('holder_owner', inplace=True)
+    temp_df.set_index('holder_owner', inplace=True)
+    df1.update(temp_df)
+    # 重置索引
+    df1.reset_index(inplace=True)
+
+    return df1
+
+def merge_df_fun():
+ 
+    
+    global arr_file , merged_df , domains_df,token_add
+    for index, file in enumerate(arr_file):
+        date_range = file.replace(".csv","").split("_")
+        date_range = date_range[-1]
+               
+        cur_df =   pd.read_csv(file ,dtype=object)
+        cur_df=cur_df.dropna(subset=['holder_owner'])
+
+        cur_df =cur_df.astype({
+            "amount_M":float,
+        })
+        cur_df =cur_df.round(1)
+        cur_df["belong_date"] =date_range
+
+
+        cur_df=cur_df.sort_values(by=['amount_M'],ascending = False)
+        cur_df =cur_df.head(22)
+        cur_df=cur_df[['holder_owner','domains_owned','amount_M','belong_date']]
+
+
+        if index==0 :
+            merged_df = cur_df
+            continue
+        merged_df = pd.concat([merged_df, cur_df])
+  
+    
+    # merged_df =merged_df.drop_duplicates(subset=['holder_owner'])
+
+    ex_df = pd.read_csv('exclude_add.csv',dtype=object)
+    merged_df=map_exclude_df(merged_df ,ex_df)
+    merged_df['is_dup'] = merged_df.duplicated(subset='holder_owner', keep=False).astype(int)
+
+
+    merged_df["gmgn"] = merged_df.apply(lambda ser: makeurl(
+    f"https://gmgn.ai/sol/token/{token_add}?tab=activity&maker={ser['holder_owner']}" , "gmgn" ), axis=1)
+    merged_df["defined"] = merged_df.apply(lambda ser: makeurl(
+     f"https://www.defined.fi/sol/{token_add}?maker={ser['holder_owner']}" , "defined" ), axis=1)
+    merged_df["beizhu"] = None
+
+    merged_df.to_excel(f'001_top20_holders_dune_{int(time.time())}.xlsx', index=False)
+
+ 
+    
+token_add = '8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump'
+if __name__ == "__main__":
+ 
+ 
+    arr_file = os.listdir(os.getcwd())
+  
+    arr_file = [file for file in arr_file if    file.startswith("dune_holders_xx") and file.endswith(".csv")]
+ 
+    arr_file.sort()
+    print("read file: ",arr_file)
+    
+    merge_df_fun()
+ 
+    

+ 94 - 0
src/code/handle_dune_py/001_top20_holders_dune_merged_dune.py

@@ -0,0 +1,94 @@
+
+# 将special add 在不同时间持仓的csv合并为一个excel
+import pandas as pd
+import sys
+import time
+import os
+arr_file = []
+merged_df = None
+domains_df= None
+def map_exclude_df(df1,ex_df):
+  
+    ex_df.rename(columns={'ex_add': 'holder_owner', 'info': 'domains_owned'}, inplace=True)
+    # 使用merge创建一个临时DataFrame,只包含匹配的行
+    temp_df = df1[['holder_owner']].merge(ex_df, on='holder_owner', how='left')
+    # 更新df1的'b1'列
+    df1.set_index('holder_owner', inplace=True)
+    temp_df.set_index('holder_owner', inplace=True)
+    df1.update(temp_df)
+    # 重置索引
+    df1.reset_index(inplace=True)
+
+    return df1
+
+def makeurl( url,url_show):
+    return '=HYPERLINK("{}","{}")'.format(url,  url_show)
+
+def merge_df_fun():
+    arr_date_range =[]
+    arr_col_pct=[]
+    
+    global arr_file , merged_df , domains_df,token_add
+    for index, file in enumerate(arr_file):
+        date_range = file.replace(".csv","").split("_")
+        date_range = date_range[-2]+"_"+date_range[-1]
+
+        cur_df =   pd.read_csv(file ,dtype=object)
+
+        cur_df =cur_df.astype({
+            "amount_M":float,
+        })
+ 
+        cur_df=cur_df.sort_values(by=['amount_M'],ascending = False)
+
+
+        cur_df=cur_df.dropna(subset=['holder_owner'])
+        cur_df =cur_df.head(22)
+        cur_domains_df = cur_df[['holder_owner' , 'domains_owned']]
+        domains_df = pd.concat([domains_df, cur_domains_df  ]).dropna().drop_duplicates(subset=['holder_owner'])
+         
+        cur_df=cur_df[['holder_owner','amount_M']]
+ 
+        cur_df.rename(columns={'amount_M': f'AM_{date_range}'}, inplace=True)
+        arr_date_range.append(f'{date_range}')
+        arr_col_pct.append(f'AM_{date_range}')
+        if index==0 :
+            merged_df = cur_df
+            continue
+        merged_df = pd.merge(merged_df, cur_df, on='holder_owner', how='outer')
+  
+    
+    # merged_df=merged_df.fillna(-1)
+    merged_df = pd.merge(merged_df, domains_df, on='holder_owner', how='left')
+
+
+    ex_df = pd.read_csv('exclude_add.csv',dtype=object)
+    merged_df=map_exclude_df(merged_df ,ex_df)
+ 
+
+    merged_df["gmgn"] = merged_df.apply(lambda ser: makeurl(
+    f"https://gmgn.ai/sol/token/{token_add}?tab=activity&maker={ser['holder_owner']}" , "gmgn" ), axis=1)
+
+    merged_df["defined"] = merged_df.apply(lambda ser: makeurl(
+     f"https://www.defined.fi/sol/{token_add}?maker={ser['holder_owner']}" , "defined" ), axis=1)
+    
+  
+    merged_df["beizhu"] = None
+
+    merged_df.to_excel(f'001_top20_holders_dune_merged_{int(time.time())}.xlsx', index=False)
+
+ 
+
+token_add = '8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump'
+ 
+ 
+if __name__ == "__main__":
+ 
+    arr_file = os.listdir(os.getcwd())
+  
+    arr_file = [file for file in arr_file if   file.startswith( "dune_holders_xx")  and file.endswith(".csv")]
+ 
+    arr_file.sort()
+    print("read file: ",arr_file)
+    merge_df_fun()
+ 

+ 24 - 0
src/code/handle_dune_py/002_handle_buy_sametoken_dune.py

@@ -9,6 +9,23 @@ arr_file = []
 merged_df = None
 def makeurl( url,url_show):
     return '=HYPERLINK("{}","{}")'.format(url,  url_show)
+
+import pytz
+def utc_2_shanghaidate(df , utc_time_col ):
+# 将字符串转换为UTC时间的datetime对象
+    # df[utc_time_col] = pd.to_datetime(df[utc_time_col], utc=True)
+    # 定义UTC+8时区
+    utc_plus_8 = pytz.timezone('Asia/Shanghai')
+    # 转换为UTC+8时间
+    df[utc_time_col] = df[utc_time_col].dt.tz_localize('UTC')
+    # # 提取时间字符串
+    # df['shanghai_date'] = df['shanghai_date'].dt.strftime('%Y-%m-%d %H:%M')
+    df[utc_time_col] = df[utc_time_col].dt.tz_convert(utc_plus_8)
+    # 提取时间字符串
+    df[utc_time_col] = df[utc_time_col].dt.strftime('%Y-%m-%d %H:%M')
+    return df
+
+
 def handle_df_fun():
     
     global arr_file , merged_df 
@@ -30,6 +47,13 @@ def handle_df_fun():
     
     merged_df["beizhu"] = None
     merged_df["lasheng_time"] =None
+
+    
+    merged_df["min_block_time"] = pd.to_datetime(merged_df["min_block_time"]  )
+    merged_df = utc_2_shanghaidate(merged_df, "min_block_time")
+    merged_df["create_time"] = pd.to_datetime(merged_df["create_time"]  )
+    merged_df = utc_2_shanghaidate(merged_df, "create_time")
+
     merged_df=merged_df[['token_address', 'trader_number',  'min_block_time', 
      'create_time', 'time_diff',  'lasheng_time',	'gmgn',	'defined'	,'beizhu' ]]
 

+ 2 - 2
src/code/handle_dune_py/003_handle_buy_sametoken_time_diff_row_dune.py

@@ -18,7 +18,7 @@ def handle_df_fun():
         if index==0 :
             merged_df = cur_df
             continue
-    merged_df["early_trader_number"] =   (merged_df['buy_create_time_diff'] < 45).groupby(merged_df['token_address']).transform('sum')
+    merged_df["early_trader_number"] =   (merged_df['buy_create_time_diff'] < 60).groupby(merged_df['token_address']).transform('sum')
     
     
 
@@ -30,7 +30,7 @@ def handle_df_fun():
      f"https://www.defined.fi/sol/{ser['token_address']}?maker={ser['trader_id']}" , "defined" ), axis=1)
     
     merged_df["beizhu"] = None
-    merged_df =  merged_df.sort_values(by=['early_trader_number','token_address'], ascending=[False, True])
+    merged_df =  merged_df.sort_values(by=['early_trader_number','token_address','buy_create_time_diff'], ascending=[False, True,True])
  
  
  

+ 1 - 0
src/code/tamper/xmlhttprequest_get_top_trader_gmgn.js

@@ -48,6 +48,7 @@ function timestampToString(timestamp) {
 }
 var arr_json_res_data = [];
 function clickButton_get_toptrader() {
+    console.log("load clickButton_get_toptrader ");
     var originalXhrOpen = XMLHttpRequest.prototype.open;
     var old_open = XMLHttpRequest.prototype.open;
 

BIN
src/library/analysis_token/2ZoJVM15fbbDgo6s5cTTX2Sj8V4sJ47rimb7gQhGpump/003_buy_sametoken_time_diff_row_dune.xlsx


BIN
src/library/analysis_token/2ZoJVM15fbbDgo6s5cTTX2Sj8V4sJ47rimb7gQhGpump/汇总add.xlsx


+ 190 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/001_handle_json_top_trader_gmgn.py

@@ -0,0 +1,190 @@
+import pandas as pd
+import json
+import os
+import time
+arr_json_data = []
+ 
+ 
+obj_example =    {
+        "address": "EZZk361QgZDMx52AmMyc4NjFkuaNrdegwAxrLEbeaR94",
+        "account_address": "8FzF2vcsNDBinao1wDTKDKLN7SeV6HLH1uduRfRtL3XT",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 34148763.167781,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 6449.83054886525,
+        "buy_volume_cur": 1501.4988493578628,
+        "buy_amount_cur": 34148763.167781,
+        "netflow_usd": -4948.331699507387,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 9,
+        "sell_tx_count_cur": 77,
+        "wallet_tag_v2": "TOP1",
+        "native_balance": "805755934855",
+        "balance": 0,
+        "profit": 4928.853565607387,
+        "realized_profit": 4928.853565607387,
+        "profit_change": 3.240583927213684,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": None,
+        "avg_cost": 0.000043969347937453594,
+        "avg_sold": 0.00018887449941234176,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1520.976983257863,
+        "transfer_in": False,
+        "is_new": False,
+        "is_suspicious": False,
+        "start_holding_at": 1742168061,
+        "end_holding_at": 1742172930,
+        "last_active_timestamp": 1742172930,
+        "native_transfer": {
+            "name": None,
+            "from_address": "AxiomRYAid8ZDhS1bJUAzEaNSr69aTWB9ATfdDLfUbnc",
+            "timestamp": 1741555940
+        },
+        "tags": [
+            "sandwich_bot"
+        ],
+        "maker_token_tags": [],
+        "name": None,
+        "avatar": None,
+        "twitter_username": None,
+        "twitter_name": None,
+        "created_at": 1738980654
+    }
+    
+token_add= ''
+arr_store_keys = [
+         "address",
+        "sell_amount_cur",
+        "buy_amount_cur",
+
+        
+        "buy_tx_count_cur",
+        "sell_tx_count_cur",
+ 
+        "profit",
+        "realized_profit",
+        "profit_change",
+        "avg_cost",
+        "avg_sold",
+        "start_holding_at",
+        "end_holding_at",
+        "tags",
+]
+
+def makeurl( url,url_show):
+    return '=HYPERLINK("{}","{}")'.format(url,  url_show)
+    
+def get_handle_json_top_trader():
+
+    global arr_file,token_add  , arr_json_data
+    arr_file = [file for file in os.listdir() if file.startswith("top_trader_gmgn_") and file.endswith(".json")]
+    token_add=arr_file[0].replace(".json","").split("_")[-1]
+ 
+    
+ 
+    with open(f'top_trader_gmgn_{token_add}.json', 'r',encoding='utf8') as f:
+        old_arr_json_data = json.load(f)
+ 
+    
+    for obj in old_arr_json_data:
+        filtered_obj = {}
+        # 遍历obj的每一个value 元素,如果元素是数组或者obj,就删除这个key,否则就保留这个key
+        for key, value in obj.items():
+            if key in arr_store_keys:
+                if key=='tags':
+                    value = set(value) - set(['bullx' , 'photon','trojan','pepeboost','gmgn'])
+                    filtered_obj[key] = "_".join(value)
+                
+                else:    
+                    filtered_obj[key] = value
+            else:
+                continue
+                
+                
+        arr_json_data.append(filtered_obj)
+    
+    return
+                
+import pytz
+def utc_2_shanghaidate(df , utc_time_col ):
+# 将字符串转换为UTC时间的datetime对象
+    # df[utc_time_col] = pd.to_datetime(df[utc_time_col], utc=True)
+    # 定义UTC+8时区
+    utc_plus_8 = pytz.timezone('Asia/Shanghai')
+    # 转换为UTC+8时间
+    df[utc_time_col] = df[utc_time_col].dt.tz_localize('UTC')
+    # # 提取时间字符串
+    # df['shanghai_date'] = df['shanghai_date'].dt.strftime('%Y-%m-%d %H:%M')
+    df[utc_time_col] = df[utc_time_col].dt.tz_convert(utc_plus_8)
+    # 提取时间字符串
+    df[utc_time_col] = df[utc_time_col].dt.strftime('%Y-%m-%d %H:%M')
+    return df
+
+ 
+
+def arr_json_2_df():
+    global arr_json_data
+    df  = pd.DataFrame(arr_json_data)
+    # print(df)
+    df['sell_token_amount'] = df['sell_amount_cur']  / 1e6
+    df['buy_token_amount'] = df['buy_amount_cur']  / 1e6
+    
+    df['buy_tx_count'] = df['buy_tx_count_cur']  
+    df['sell_tx_count'] = df['sell_tx_count_cur']  
+    # 将价格转化为是市值 xxxK的市值
+    df['avg_cost_mc'] = df['avg_cost'] *( 1e3 * 1e6/1e3) 
+    df['avg_sold_mc'] = df['avg_sold'] *( 1e3 * 1e6 / 1e3)
+    
+    df['duration'] = (df['end_holding_at'] - df['start_holding_at'] )/60/60
+    
+    df["start_datetime"] = pd.to_datetime(df["start_holding_at"], unit='s'  )
+    df = utc_2_shanghaidate(df, "start_datetime")
+
+    df["end_datetime"] = pd.to_datetime(df["end_holding_at"], unit='s' )
+    
+    df = utc_2_shanghaidate(df, "end_datetime")
+    
+    
+    df["gmgn"] = df.apply(lambda ser: makeurl(
+    f"https://gmgn.ai/sol/token/{token_add}?tab=activity&maker={ser['address']}" , "gmgn" ), axis=1)
+    df["beizhu"] = None
+    df =df [[       "address",
+        "buy_token_amount",
+        "sell_token_amount",
+
+        "buy_tx_count_cur",
+        "sell_tx_count_cur",
+        
+        # "profit",
+        "realized_profit",
+        "profit_change" ,
+        "avg_cost_mc",
+        "avg_sold_mc",
+        "start_datetime",
+        "end_datetime" ,
+    
+        "duration",
+            "tags",
+        "gmgn",
+        "beizhu"
+        ]]
+    df =df.round(1)
+ 
+
+    
+    df =df.sort_values(by=['realized_profit'], ascending=False)
+    
+ 
+    df.to_excel(f'top_trader_gmgn_{token_add}_{int(time.time())}.xlsx',index=False)
+ 
+
+
+get_handle_json_top_trader()
+arr_json_2_df()

BIN
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/001_top20_holders_dune_merged.xlsx


+ 94 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/001_top20_holders_dune_merged_dune.py

@@ -0,0 +1,94 @@
+
+# 将special add 在不同时间持仓的csv合并为一个excel
+import pandas as pd
+import sys
+import time
+import os
+arr_file = []
+merged_df = None
+domains_df= None
+def map_exclude_df(df1,ex_df):
+  
+    ex_df.rename(columns={'ex_add': 'holder_owner', 'info': 'domains_owned'}, inplace=True)
+    # 使用merge创建一个临时DataFrame,只包含匹配的行
+    temp_df = df1[['holder_owner']].merge(ex_df, on='holder_owner', how='left')
+    # 更新df1的'b1'列
+    df1.set_index('holder_owner', inplace=True)
+    temp_df.set_index('holder_owner', inplace=True)
+    df1.update(temp_df)
+    # 重置索引
+    df1.reset_index(inplace=True)
+
+    return df1
+
+def makeurl( url,url_show):
+    return '=HYPERLINK("{}","{}")'.format(url,  url_show)
+
+def merge_df_fun():
+    arr_date_range =[]
+    arr_col_pct=[]
+    
+    global arr_file , merged_df , domains_df,token_add
+    for index, file in enumerate(arr_file):
+        date_range = file.replace(".csv","").split("_")
+        date_range = date_range[-2]+"_"+date_range[-1]
+
+        cur_df =   pd.read_csv(file ,dtype=object)
+
+        cur_df =cur_df.astype({
+            "amount_M":float,
+        })
+ 
+        cur_df=cur_df.sort_values(by=['amount_M'],ascending = False)
+
+
+        cur_df=cur_df.dropna(subset=['holder_owner'])
+        cur_df =cur_df.head(22)
+        cur_domains_df = cur_df[['holder_owner' , 'domains_owned']]
+        domains_df = pd.concat([domains_df, cur_domains_df  ]).dropna().drop_duplicates(subset=['holder_owner'])
+         
+        cur_df=cur_df[['holder_owner','amount_M']]
+ 
+        cur_df.rename(columns={'amount_M': f'AM_{date_range}'}, inplace=True)
+        arr_date_range.append(f'{date_range}')
+        arr_col_pct.append(f'AM_{date_range}')
+        if index==0 :
+            merged_df = cur_df
+            continue
+        merged_df = pd.merge(merged_df, cur_df, on='holder_owner', how='outer')
+  
+    
+    # merged_df=merged_df.fillna(-1)
+    merged_df = pd.merge(merged_df, domains_df, on='holder_owner', how='left')
+
+
+    ex_df = pd.read_csv('exclude_add.csv',dtype=object)
+    merged_df=map_exclude_df(merged_df ,ex_df)
+ 
+
+    merged_df["gmgn"] = merged_df.apply(lambda ser: makeurl(
+    f"https://gmgn.ai/sol/token/{token_add}?tab=activity&maker={ser['holder_owner']}" , "gmgn" ), axis=1)
+
+    merged_df["defined"] = merged_df.apply(lambda ser: makeurl(
+     f"https://www.defined.fi/sol/{token_add}?maker={ser['holder_owner']}" , "defined" ), axis=1)
+    
+  
+    merged_df["beizhu"] = None
+
+    merged_df.to_excel(f'001_top20_holders_dune_merged_{int(time.time())}.xlsx', index=False)
+
+ 
+
+token_add = '8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump'
+ 
+ 
+if __name__ == "__main__":
+ 
+    arr_file = os.listdir(os.getcwd())
+  
+    arr_file = [file for file in arr_file if   file.startswith( "dune_holders_xx")  and file.endswith(".csv")]
+ 
+    arr_file.sort()
+    print("read file: ",arr_file)
+    merge_df_fun()
+ 

+ 26 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/dune_holders_xx_xx_0410日0615.csv

@@ -0,0 +1,26 @@
+holder_owner,domains_owned,amount_M,pct_supply
+GYnvxtWpHeWH6ndcjL4iz4DnMx6KXutHBKwNdzMpTTof,,271.4,27.14
+,,206.9,20.69
+AFNzbFR8WXPoAaj6E1jNGSC2Xn9r3pz2krt61Vcc5pZP,,28.4,2.84
+E81oD4zDbxANqff7fwjahHvYA3Pm6zQcAYuWxvrWfMWv,,25.2,2.52
+215nhcAHjQQGgwpQSJQ7zR26etbjjtVdW74NLzwEgQjP,globalist.sol,25.2,2.52
+RcCDLh2SC91R6d8gM9j6DeKJU2B2ShMmDjQefi31Kpf,,24.2,2.42
+9432LVFidEvBmcAUH6fUGD7FY2zjvNz87y1ib4u1ueWq,,22.1,2.21
+4Yp9uAbYMXsnFxCR1ZWwQAffMuPybQrzxNhqXYcu3J7W,,21.6,2.16
+4zhYuvSqvtgxPx2BojmanEhJCXeXtWkEC6wevHXKTYHk,,20.6,2.06
+BJjq8P7xSBXPaceTkQLDjihxSpQtJ5L8KgmN7whWsxkK,,19.3,1.93
+AyGisHQnxuYUxvFrof3dqYoA3zZMUdnCiEW22gGXXZgZ,,15.4,1.54
+AjTkktrfsFnPBa2TC8tGuw8ZDTeayxkPakuT1ip3LgF,,15.3,1.53
+8oQoMhfBQnRspn7QtNAq2aPThRE4q94kLSTwaaFQvRgs,,14.7,1.47
+8A361R1tT1JcoZ5dv6SvcD8M7GuRr5bkZx6HS9hEDRyP,,14,1.4
+FWdVMkVKPXi3aeu9yk9CeogtEAmpPbHoEurJVCiPbWY3,,13.4,1.34
+5uzDaYaWPPTwMiFoGx8WXSUX73x3QQaVm8rAYwSuS29G,,9.8,0.98
+8ooPX7boNnkHkLBeUuzpRZz5ycei3kRNaHv13iAQFj4N,,9.5,0.95
+9JGvzVVTSMf5rvzrUU9eTy9jKhoH6ndKkQvBCbpsVAX6,,8.6,0.86
+DTdHa4auX68jFtXv9wkzMYCahg295AnRuwvm6moW6meZ,,8.6,0.86
+4SZMxa8ub3k4HWUPzfBjwtySMbzBhsSPxCnEtWBJDRYT,,8.5,0.85
+7YndBV5gp3VvAiBbSfv8M7CoyMhFsiKeGYWkwee49fTg,,8.3,0.83
+AsX5BMtPfjYujCR2EGjrayEzbYvaKQK2j2PZvHdi8Jyi,,8.2,0.82
+BjYzzL68TFGjfZaFxg7jqiG9f791Nq9ZtBosjxgH9uUx,,8.1,0.81
+HeSPjhbA8ZqufrybaGZUEdeZCL5gDChJjZjqxbNPLW4K,,7.9,0.79
+bEGczcCfXbEbeiGMvG98PypmYE8MftK954APN2LPe73,,7.8,0.78

+ 26 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/dune_holders_xx_xx_0410日0700.csv

@@ -0,0 +1,26 @@
+holder_owner,domains_owned,amount_M,pct_supply
+,,206.9,20.69
+GYnvxtWpHeWH6ndcjL4iz4DnMx6KXutHBKwNdzMpTTof,,104.6,10.46
+215nhcAHjQQGgwpQSJQ7zR26etbjjtVdW74NLzwEgQjP,globalist.sol,25.2,2.52
+E81oD4zDbxANqff7fwjahHvYA3Pm6zQcAYuWxvrWfMWv,,22.1,2.21
+4Yp9uAbYMXsnFxCR1ZWwQAffMuPybQrzxNhqXYcu3J7W,,21.6,2.16
+7YndBV5gp3VvAiBbSfv8M7CoyMhFsiKeGYWkwee49fTg,,20.5,2.05
+HBgwNenpM6kAVDL9jJ4RayVz9KUkjaurJJ5EncrtcTVV,,18.9,1.89
+6scnvxZ8VTnACPNTwwMd8B3cdq6iF8gKP35MVm7PtRLY,,17.9,1.79
+99qW3MYXLERDxvp5wW3N1yyUAjt5xczDyAHkMRuhv2KE,,16.1,1.61
+AyGisHQnxuYUxvFrof3dqYoA3zZMUdnCiEW22gGXXZgZ,,15.4,1.54
+8ooPX7boNnkHkLBeUuzpRZz5ycei3kRNaHv13iAQFj4N,,14.2,1.42
+CHfzQoQgZ3k7oYwng8Bv2Q1prUwZD5oJApMNMzy8TSzi,,13,1.3
+9d2jwxaXDX2EbfRUQr4gW2svyPFC75VfdRrnoCucJmSr,,13,1.3
+6QAeFafN7p1o6GcpAk9RJUBwnw92TbhGY5jGPFYAtYLS,,12.5,1.25
+Fx6qyQ2U2asEjxYdsuYQ2ZrCcwG4Qmvu3n1cmHKoeDgs,,11.5,1.15
+BJjq8P7xSBXPaceTkQLDjihxSpQtJ5L8KgmN7whWsxkK,,11.5,1.15
+AfkScWfctgqAE1wAaz4UuRSZJrDfHjSGRracwASKnXb8,,10.3,1.03
+FkL99xVBParNcPTjxnLdqFFCg3cvcR7NjCGkMgDPFfW3,,10,1
+7Kpi4aJDuDmdPCfvthKtKpecqJ5ck4D8ZB1oyKyU9Ln2,,9.7,0.97
+RcCDLh2SC91R6d8gM9j6DeKJU2B2ShMmDjQefi31Kpf,,9.5,0.95
+AjTkktrfsFnPBa2TC8tGuw8ZDTeayxkPakuT1ip3LgF,,9.2,0.92
+H8QD9bFaGwnW3EYRLXmGFUG6aWsC1h7U8v7GnJwJ2Vys,,8.6,0.86
+9JGvzVVTSMf5rvzrUU9eTy9jKhoH6ndKkQvBCbpsVAX6,,8.6,0.86
+AsX5BMtPfjYujCR2EGjrayEzbYvaKQK2j2PZvHdi8Jyi,,8.2,0.82
+F11WGoxZ421Dh4Nz765UaUL6rnojvFaCmrxRn3DRp8KY,,8,0.8

+ 26 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/dune_holders_xx_xx_0410日1230.csv

@@ -0,0 +1,26 @@
+holder_owner,domains_owned,amount_M,pct_supply
+,,225.8,22.58
+GYnvxtWpHeWH6ndcjL4iz4DnMx6KXutHBKwNdzMpTTof,,80.3,8.03
+GHw9C1Lk3SZzMUySygNdzxk5HvQseBp4MJAenETaimVs,,34.6,3.46
+A74kLMrBykSZnZAhhoVwAzSLDeJg1ajhv4BeoKKoHx8W,,24.8,2.48
+7YndBV5gp3VvAiBbSfv8M7CoyMhFsiKeGYWkwee49fTg,,20.5,2.05
+AyGisHQnxuYUxvFrof3dqYoA3zZMUdnCiEW22gGXXZgZ,,15.4,1.54
+F11WGoxZ421Dh4Nz765UaUL6rnojvFaCmrxRn3DRp8KY,,13.5,1.35
+84giz2CaquR7BwZ9SLDx6fuJSUVKmTtcaVqiXdpEYugc,,12.8,1.28
+sTkUkDdNvEie2avmuM9DnkTLeGBZti1j4M4hw3KBsRp,,12.8,1.28
+8ooPX7boNnkHkLBeUuzpRZz5ycei3kRNaHv13iAQFj4N,,12.6,1.26
+3PQnqAJRfh3ktwKmK8KAHKCqSN35u6KbBHv9LVcasD8j,,11.9,1.19
+296jiqQUfWY2m6ikiYrrCX6dh3DxkQ75CnGwPwJeA1Nj,,11.7,1.17
+6ykoioDZEcC9Rk1vexd2F49KDHzP63nHh21Hm4CqrWtx,,11.6,1.16
+9d2jwxaXDX2EbfRUQr4gW2svyPFC75VfdRrnoCucJmSr,,11,1.1
+9JGvzVVTSMf5rvzrUU9eTy9jKhoH6ndKkQvBCbpsVAX6,,10.5,1.05
+J23qr98GjGJJqKq9CBEnyRhHbmkaVxtTJNNxKu597wsA,,10.5,1.05
+6aFcCxvhPKQskLsc7ekVa454w4sVdKpzi4Uc79f27FBx,,10.3,1.03
+6F9L9j5fttjUkF77TasXpDzxR6rUTnEt9DYzT7DZrkep,,8.1,0.81
+6dJ7UddpHrA4GKsGDVm5ChmrLUC6FhR2PzZ3dzErV43S,,7.8,0.78
+BZWoUig6onBnu8Dipct9ru7LKZWxSV9CLszJj8dr4Z7B,,7.8,0.78
+BJjq8P7xSBXPaceTkQLDjihxSpQtJ5L8KgmN7whWsxkK,,7.5,0.75
+3w3s4PA1NAFY3Kwwzsf7D2CpYv2ybrYBfq61HNdCdVYz,,6.9,0.69
+AfkScWfctgqAE1wAaz4UuRSZJrDfHjSGRracwASKnXb8,,6.5,0.65
+GF4NHQJ2GvN3ZdXiSVSXiC4jGhMmCXVFVhkYvfWkr6W5,,6.2,0.62
+HM8srivCibQDi2JftkNUirWo71d8ynSeoHMRMQznZdG7,,6.1,0.61

+ 39 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/exclude_add.csv

@@ -0,0 +1,39 @@
+ex_add,info
+5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1,Raydium Authority V4
+BQ72nSv9f3PRyRKCBnHLVrerrv37CYTHm5h3s9VSGQDV,Jupiter Aggregator Authority 1
+2MFoS3MPtvyQ4Wh4M9pdfPjz6UhVoNbFbGJAskCPCj3h,Jupiter Aggregator Authority 2
+HU23r7UoZbqTUuh3vA7emAGztFtqwTeVips789vqxxBw,Jupiter Aggregator Authority 3
+3CgvbiM3op4vjrrjH2zcrQUwsqh5veNVRjFCB9N6sRoD,Jupiter Aggregator Authority 4
+6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx,Jupiter Aggregator Authority 5
+CapuXNQoDviLvU1PxFiizLgPNQCxrsag1uMeyk6zLVps,Jupiter Aggregator Authority 6
+GGztQqQ6pCPaJQnNpXBgELr5cs3WwDakRbh1iEMzjgSJ,Jupiter Aggregator Authority 7
+9nnLbotNTcUhvbrsA6Mdkx45Sm82G35zo28AqUvjExn8,Jupiter Aggregator Authority 8
+3LoAYHuSd7Gh8d7RTFnhvYtiTiefdZ5ByamU42vkzd76,Jupiter Aggregator Authority 9
+DSN3j1ykL3obAVNv7ZX49VsFCPe4LqzxHnmtLiPwY6xg,Jupiter Aggregator Authority 10
+69yhtoJR4JYPPABZcSNkzuqbaFbwHsCkja1sP1Q2aVT5,Jupiter Aggregator Authority 11
+6U91aKa8pmMxkJwBCfPTmUEfZi6dHe7DcFq2ALvB2tbB,Jupiter Aggregator Authority 12
+7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE,Jupiter Aggregator Authority 13
+4xDsmeTWPNjgSVSS1VTfzFq3iHZhp77ffPkAmkZkdu71,Jupiter Aggregator Authority 14
+GP8StUXNYSZjPikyRsvkTbvRV1GBxMErb59cpeCJnDf1,Jupiter Aggregator Authority 15
+HFqp6ErWHY6Uzhj8rFyjYuDya2mXUpYEk8VW75K9PSiY,Jupiter Aggregator Authority 16
+45ruCyfdRkWpRNGEqWzjCiXRHkZs8WXCLQ67Pnpye7Hp,Jupiter Partner Referral Fee Vault
+ZG98FUCjb8mJ824Gbs6RsgVmr1FhXb2oNiJHa2dwmPd,CxvksNjwhdHDLr3qbCXNKVdeYACW8cs93vFqLqtgyFE5s fee account
+DGT9TPRGQwpJeMvDdZJDEaVRZa2ZMXtp16pGZgAgBoLx,pump Bonding Curve
+GE5PnwZTgWw1YqVGno2QPWqie6aLjswNeGFhiF1nDg3k,Raydium 8008-USDC Market
+25mYnjJ2MXHZH6NvTTdA63JvjgRVcuiaj6MRiEQNs1Dq,ZG98FUCjb8mJ824Gbs6RsgVmr1FhXb2oNiJHa2dwmPd
+14qLxu9XDQtc2pgnxX2SSdWPpnuVrEqccgwmATH1khcY,Raydium SOL-8008 Market
+5YET3YapxD6to6rqPqTWB3R9pSbURy6yduuUtoZkzoPX,Jupiter ApePro Keeper
+F5sw1r94VXmUGwesPrcY3TvwSrfVAZmRaWwMtD1tr3Yf,Meteora 8008-SOL Market   
+j1oAbxxiDUWvoHxEDhWE7THLjEkDQW2cSHYn2vttxTF,jupiter limit order taker account
+4KaVawPKmG1RZCv698XD9YzRsJcFPXrEoYnZbdZmfFFq,okx相关
+j1oeQoPeuEDmjvyMwBmCWexzCQup77kbKKxV59CnYbd,jupiter limit order taker account
+6KFVj2czLwNQeE4yBgFau6LHUS72vqgP11Sv1JUNxghz,fee account
+53owRWHqDocPYVtVxAQJSTE7rY6QWyWfDNAnWg5VpF9z,Pump.fun (JIANKUI) Bonding Curve
+H3oWNGDfr5pSPDM3eDYpLiT7WsUiUF8ee8WmepovDAGt,Meteora (JIANKUI-WSOL) Market
+BgYAdyHRjkQ4qaPMyt2SL53MNgfDFF6hiYy7tzwfDrtW,Raydium (WSOL-JIANKUI) Market
+8AcbTJPF2dyvabhjY8oz89SQWZArBeZzLHXnYWYWUzue,Meteora (JIANKUI-WSOL) Market
+GYnvxtWpHeWH6ndcjL4iz4DnMx6KXutHBKwNdzMpTTof,Pump.fun AMM (TRUMPCOIN-WSOL)
+8SpTECa5sR7JwjVYq37YXUoVFMb6cogg6vdvvUeyscet,Raydium (WSOL-TRUMPCOIN) Market
+GF4NHQJ2GvN3ZdXiSVSXiC4jGhMmCXVFVhkYvfWkr6W5,Meteora (TRUMPCOIN-WSOL) Market
+6DAy1wRthSkpo5k9PAAD4NxKVTdvD2AAYjKynymR4q4H,Pump.fun (TRUMPCOIN) Bonding Curve
+72wBmn2sfZJ5FJMyirq6tMAUf1Nkw7XpokkY4JN9XgMa,Meteora (TRUMPCOIN-WSOL) Market

+ 5172 - 0
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/top_trader_gmgn_8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump.json

@@ -0,0 +1,5172 @@
+[
+    {
+        "address": "HBgwNenpM6kAVDL9jJ4RayVz9KUkjaurJJ5EncrtcTVV",
+        "account_address": "BSw8whVcRcTqw2MXbpdZEPnew6DffdkDe2X7VKjQ31hL",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 76432794.986971,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 27166.02708755006,
+        "buy_volume_cur": 17115.93240570203,
+        "buy_amount_cur": 77254024.084031,
+        "netflow_usd": -10050.09468184803,
+        "netflow_amount": 821229.0970599949,
+        "buy_tx_count_cur": 69,
+        "sell_tx_count_cur": 35,
+        "wallet_tag_v2": "TOP1",
+        "native_balance": "21382116665",
+        "balance": 0,
+        "profit": 10264.547307840565,
+        "realized_profit": 10264.547307840565,
+        "profit_change": 0.6073164859897844,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00022155392691369232,
+        "avg_sold": 0.00035542370381955646,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 16901.479779709494,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744244046,
+        "end_holding_at": 1744245177,
+        "last_active_timestamp": 1744245177,
+        "native_transfer": {
+            "name": null,
+            "from_address": "aniRUVdKDU4NwotN1C4hxFUvPJoKBXXygW9Ft4zhA5j",
+            "timestamp": 1741553223
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1718798362
+    },
+    {
+        "address": "215nhcAHjQQGgwpQSJQ7zR26etbjjtVdW74NLzwEgQjP",
+        "account_address": "7LQz9D3XQTKn3f2uowuwQCWjt8kvbF2mJPoiSXr8B1Sz",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 25195988.753332,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 11841.31181912111,
+        "buy_volume_cur": 1799.5879658006,
+        "buy_amount_cur": 25195988.753332,
+        "netflow_usd": -10041.72385332051,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 7,
+        "wallet_tag_v2": "TOP2",
+        "native_balance": "63798762571",
+        "balance": 0,
+        "profit": 10016.77469582051,
+        "realized_profit": 10016.77469582051,
+        "profit_change": 5.490036112666262,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00007142358981893959,
+        "avg_sold": 0.00046996813401717276,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1824.5371233006,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235563,
+        "end_holding_at": 1744248355,
+        "last_active_timestamp": 1744248355,
+        "native_transfer": {
+            "name": "96岁退休炒币",
+            "from_address": "8P1cYYRBqevhBXY4yLurGAQqrCRJZ6BeFjvp3ANHejCn",
+            "timestamp": 1741501447
+        },
+        "tags": [
+            "kol",
+            "photon",
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": "OGAntD",
+        "avatar": "https://pbs.twimg.com/profile_images/1819241468625620992/ivkDTChY.jpg",
+        "twitter_username": "0GAntD",
+        "twitter_name": "OGAntD",
+        "created_at": 1710871711
+    },
+    {
+        "address": "9d2jwxaXDX2EbfRUQr4gW2svyPFC75VfdRrnoCucJmSr",
+        "account_address": "Fmj2QEtMn1NkSoZc5r7f6JRGbExMQmw3qoRb83NeF8sF",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 15300407.221931,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 12354.11416402096,
+        "buy_volume_cur": 3549.47300408714,
+        "buy_amount_cur": 15305725.540178,
+        "netflow_usd": -8804.64115993382,
+        "netflow_amount": 5318.318247001618,
+        "buy_tx_count_cur": 13,
+        "sell_tx_count_cur": 25,
+        "wallet_tag_v2": "TOP3",
+        "native_balance": "111928246259",
+        "balance": 0,
+        "profit": 8642.795624871884,
+        "realized_profit": 8642.795624871884,
+        "profit_change": 2.47270907310815,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00023190491654705712,
+        "avg_sold": 0.0008074369515023797,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3495.273956352677,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744304592,
+        "end_holding_at": 1744340077,
+        "last_active_timestamp": 1744340077,
+        "native_transfer": {
+            "name": null,
+            "from_address": "36CVxhu3PrPgNEjf4j4MrJrBFTo5bD9c8qMv8xp4DCLv",
+            "timestamp": 1741807580
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1741807696
+    },
+    {
+        "address": "6scnvxZ8VTnACPNTwwMd8B3cdq6iF8gKP35MVm7PtRLY",
+        "account_address": "Dj42Ez8jrNtbWfdSsRmQ4LMowiaZuGz7TD3fMpbK6cpS",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 181732414.560208,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 22976.1668222495,
+        "buy_volume_cur": 14439.39200311887,
+        "buy_amount_cur": 181732414.560208,
+        "netflow_usd": -8536.77481913063,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 18,
+        "sell_tx_count_cur": 17,
+        "wallet_tag_v2": "TOP4",
+        "native_balance": "3971074",
+        "balance": 0,
+        "profit": 8496.21768238063,
+        "realized_profit": 8496.21768238063,
+        "profit_change": 0.5867574257555418,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00007945413611579511,
+        "avg_sold": 0.00012642855639073396,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 14479.94913986887,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238099,
+        "end_holding_at": 1744244248,
+        "last_active_timestamp": 1744752398,
+        "native_transfer": {
+            "name": null,
+            "from_address": "BdGHqZrsDX2gNNiXxVKDGByfDw7ZVFFLbHea8ds1BJEE",
+            "timestamp": 1742193465
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742193567
+    },
+    {
+        "address": "99qW3MYXLERDxvp5wW3N1yyUAjt5xczDyAHkMRuhv2KE",
+        "account_address": "Hy62np8HZsqCmpZZwxwfGSx4tt6mwa4XzBySZsJfGbWW",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 21178212.536123,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 14984.15962398088,
+        "buy_volume_cur": 6618.414907917,
+        "buy_amount_cur": 21178212.536123,
+        "netflow_usd": -8365.74471606388,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 6,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP5",
+        "native_balance": "7340160",
+        "balance": 0,
+        "profit": 8365.57017796388,
+        "realized_profit": 8365.57017796388,
+        "profit_change": 1.2639506115609265,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0003125105528442583,
+        "avg_sold": 0.0007075271153513489,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6618.589446017,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744311635,
+        "end_holding_at": 1744321490,
+        "last_active_timestamp": 1744729219,
+        "native_transfer": {
+            "name": null,
+            "from_address": "CvgM6wSDXWCZeCmZnKRQdnh4CSga3UuTXwrCXy9Ju6PC",
+            "timestamp": 1741027069
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1711759247
+    },
+    {
+        "address": "E81oD4zDbxANqff7fwjahHvYA3Pm6zQcAYuWxvrWfMWv",
+        "account_address": "9sB32216jbhEVWL5sLFeEW8SJtZaN4W1N3gzXbC8RHzE",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 49004288.012427,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 14334.88686133467,
+        "buy_volume_cur": 6219.85225425506,
+        "buy_amount_cur": 49004288.012427,
+        "netflow_usd": -8115.0346070796095,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 6,
+        "sell_tx_count_cur": 5,
+        "wallet_tag_v2": "TOP6",
+        "native_balance": "34710342913",
+        "balance": 0,
+        "profit": 8103.14833002961,
+        "realized_profit": 8103.14833002961,
+        "profit_change": 1.3003030036198642,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00012692465305643797,
+        "avg_sold": 0.0002925231126243378,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6231.73853130506,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237261,
+        "end_holding_at": 1744245390,
+        "last_active_timestamp": 1744245390,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1744185932
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744186047
+    },
+    {
+        "address": "BJjq8P7xSBXPaceTkQLDjihxSpQtJ5L8KgmN7whWsxkK",
+        "account_address": "DsnkTQmUcJRgJMjFp7ccvgDRdSThuZY1WqxYfTstvVuZ",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 37241042.192193,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 8857.96613857689,
+        "buy_volume_cur": 1435.87892525,
+        "buy_amount_cur": 37275391.753718,
+        "netflow_usd": -7422.08721332689,
+        "netflow_amount": 34349.56152500212,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 12,
+        "wallet_tag_v2": "TOP7",
+        "native_balance": "71044075",
+        "balance": 0,
+        "profit": 7398.676140359342,
+        "realized_profit": 7398.676140359342,
+        "profit_change": 5.070051976917861,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000038520827218583946,
+        "avg_sold": 0.00023785494758344394,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1459.2899982175481,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744236148,
+        "end_holding_at": 1744401900,
+        "last_active_timestamp": 1744401900,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1743541253
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743541413
+    },
+    {
+        "address": "7Kpi4aJDuDmdPCfvthKtKpecqJ5ck4D8ZB1oyKyU9Ln2",
+        "account_address": "AKyjQYZffd1Nwt3zMtLStoYbzJfu1WBH6PLWkQi9qr9x",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 31158731.66441,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 18843.09924646119,
+        "buy_volume_cur": 12441.68018760816,
+        "buy_amount_cur": 31158731.66441,
+        "netflow_usd": -6401.419058853031,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 19,
+        "sell_tx_count_cur": 41,
+        "wallet_tag_v2": "TOP8",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 6315.16382044357,
+        "realized_profit": 6315.16382044357,
+        "profit_change": 0.5040865558205574,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00039929995616025816,
+        "avg_sold": 0.0006047453872451452,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 12527.93542601762,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744370363,
+        "end_holding_at": 1744374462,
+        "last_active_timestamp": 1744374462,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1741448815
+        },
+        "tags": [
+            "gmgn",
+            "pepeboost"
+        ],
+        "maker_token_tags": [],
+        "name": "chenf",
+        "avatar": "https://pbs.twimg.com/profile_images/1828385662179123200/IOr_RaOY_400x400.jpg",
+        "twitter_username": "XINJIN1179945",
+        "twitter_name": "chenf",
+        "created_at": 1710508055
+    },
+    {
+        "address": "A74kLMrBykSZnZAhhoVwAzSLDeJg1ajhv4BeoKKoHx8W",
+        "account_address": "8dAtgWfGiTsLkMXHv46mp3WKFxR2TSXRX96rVt4cE3cF",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 24797715.944607,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 18420.99261023601,
+        "buy_volume_cur": 12811.8984444581,
+        "buy_amount_cur": 24797715.944607,
+        "netflow_usd": -5609.094165777911,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP9",
+        "native_balance": "525832581",
+        "balance": 0,
+        "profit": 5605.70746577791,
+        "realized_profit": 5605.70746577791,
+        "profit_change": 0.4374235456010956,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000516656391785326,
+        "avg_sold": 0.0007428503758727103,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 12815.2851444581,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744241121,
+        "end_holding_at": 1744325167,
+        "last_active_timestamp": 1744325167,
+        "native_transfer": {
+            "name": null,
+            "from_address": "2snHHreXbpJ7UwZxPe37gnUNf7Wx7wv6UKDSR2JckKuS",
+            "timestamp": 1740456015
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1734187056
+    },
+    {
+        "address": "Fx6qyQ2U2asEjxYdsuYQ2ZrCcwG4Qmvu3n1cmHKoeDgs",
+        "account_address": "H3NuwkCq6SuT2nqxXCpRCQ5qKo74tMo13rFZq45ogian",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 20494387.904073,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 6433.60344447624,
+        "buy_volume_cur": 919.00286397,
+        "buy_amount_cur": 20494387.904073,
+        "netflow_usd": -5514.60058050624,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 10,
+        "wallet_tag_v2": "TOP10",
+        "native_balance": "38151590597",
+        "balance": 0,
+        "profit": 5514.59457865624,
+        "realized_profit": 5514.59457865624,
+        "profit_change": 6.000589095226799,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00004484168389275777,
+        "avg_sold": 0.0003139202534171632,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 919.00886582,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744236414,
+        "end_holding_at": 1744738127,
+        "last_active_timestamp": 1744738127,
+        "native_transfer": {
+            "name": null,
+            "from_address": "2QTNXDSnGeH9bv7JYBzTEmKJNDcMAFH7qin6DFrXdSqw",
+            "timestamp": 1741030224
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1718427243
+    },
+    {
+        "address": "H8QD9bFaGwnW3EYRLXmGFUG6aWsC1h7U8v7GnJwJ2Vys",
+        "account_address": "AveKchjMCqkVNPSY5u9jBcdgkGPwb2XMhbTipnREGu1V",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 15203416.103103,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 6509.68980356821,
+        "buy_volume_cur": 1301.16716826183,
+        "buy_amount_cur": 16803416.103103,
+        "netflow_usd": -5208.52263530638,
+        "netflow_amount": 1600000,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 9,
+        "wallet_tag_v2": "TOP11",
+        "native_balance": "19099016946",
+        "balance": 0,
+        "profit": 5332.05847395049,
+        "realized_profit": 5332.05847395049,
+        "profit_change": 4.527782456060651,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0000774346811551938,
+        "avg_sold": 0.00042817283690864644,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1177.63132961772,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235538,
+        "end_holding_at": 1744265061,
+        "last_active_timestamp": 1744265061,
+        "native_transfer": {
+            "name": null,
+            "from_address": "taxLGFwEZPux7GLFbGCRzkgukYv1oLF8evf4mNapLLG",
+            "timestamp": 1741235784
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1709439815
+    },
+    {
+        "address": "6dJ7UddpHrA4GKsGDVm5ChmrLUC6FhR2PzZ3dzErV43S",
+        "account_address": "8HNGEza27tgmu5G5yTVYu8m6e236C4hi7C4tUKyMDqoX",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8871965.523792,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 11421.79608420568,
+        "buy_volume_cur": 6643.20811741809,
+        "buy_amount_cur": 8871965.523792,
+        "netflow_usd": -4778.58796678759,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 14,
+        "sell_tx_count_cur": 17,
+        "wallet_tag_v2": "TOP12",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 4774.11859088759,
+        "realized_profit": 4774.11859088759,
+        "profit_change": 0.7181633879932191,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0007487865118054124,
+        "avg_sold": 0.0012874031186861337,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6647.67749331809,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744242575,
+        "end_holding_at": 1744317631,
+        "last_active_timestamp": 1744317631,
+        "native_transfer": {
+            "name": null,
+            "from_address": "937ENZWx4B56PSGbFj2Cy3KEQtEMrC9P2XXhbLfWauge",
+            "timestamp": 1742253562
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742254527
+    },
+    {
+        "address": "AfkScWfctgqAE1wAaz4UuRSZJrDfHjSGRracwASKnXb8",
+        "account_address": "4tvRH9qzAmWNQy5gcPBkDHBpyk6m8dQ5uMG1RQ9rduFs",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 23926772.204648,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 14175.39995746718,
+        "buy_volume_cur": 15183.189132049,
+        "buy_amount_cur": 23981804.104023,
+        "netflow_usd": 1007.7891745818197,
+        "netflow_amount": 55031.899374999106,
+        "buy_tx_count_cur": 10,
+        "sell_tx_count_cur": 12,
+        "wallet_tag_v2": "TOP13",
+        "native_balance": "35219958",
+        "balance": 0,
+        "profit": 4529.903755555504,
+        "realized_profit": 4529.903755555504,
+        "profit_change": 0.6413155767025598,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0006331128828419537,
+        "avg_sold": 0.0005924493214639907,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 7063.455060372656,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744403754,
+        "end_holding_at": 1744467168,
+        "last_active_timestamp": 1744467168,
+        "native_transfer": {
+            "name": null,
+            "from_address": "ABNL41SwMLVRaCq6okEWsWyvLwm56nazUNwMrTHgmuyf",
+            "timestamp": 1744191301
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744191590
+    },
+    {
+        "address": "3TsRAE3Pdx4eJAcxbiwi9NY8mNYChEkjV5DbAwazFKSq",
+        "account_address": "EBGBhFrYoJ1g8TYjhoMBYSxRWJVab6DsTdhETEChfo9R",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 31321813.757284,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 7071.83198017891,
+        "buy_volume_cur": 2722.9092517041,
+        "buy_amount_cur": 31321813.757284,
+        "netflow_usd": -4348.92272847481,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 7,
+        "sell_tx_count_cur": 11,
+        "wallet_tag_v2": "TOP14",
+        "native_balance": "8519073021",
+        "balance": 0,
+        "profit": 4347.60492222481,
+        "realized_profit": 4347.60492222481,
+        "profit_change": 1.5959040233195063,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00008693331978806233,
+        "avg_sold": 0.00022577977236501288,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2724.2270579541,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237604,
+        "end_holding_at": 1744242273,
+        "last_active_timestamp": 1744242273,
+        "native_transfer": {
+            "name": null,
+            "from_address": "EnijLL9KdvjG8zfQcxTrP26JKsaeq8xDxxAcXZEinZg",
+            "timestamp": 1743710305
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743710325
+    },
+    {
+        "address": "AjTkktrfsFnPBa2TC8tGuw8ZDTeayxkPakuT1ip3LgF",
+        "account_address": "DH1EyvNCeUfTSg39svsndkBwr3imRsAEiXCctaUBfnRi",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 21191153.553989,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 7714.87255204319,
+        "buy_volume_cur": 3480.49911668202,
+        "buy_amount_cur": 21191153.553989,
+        "netflow_usd": -4234.37343536117,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 8,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP15",
+        "native_balance": "149485794870",
+        "balance": 0,
+        "profit": 4234.35399286117,
+        "realized_profit": 4234.35399286117,
+        "profit_change": 1.2165871035769777,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0001642430228167949,
+        "avg_sold": 0.00036406099990677243,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3480.51855918202,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235737,
+        "end_holding_at": 1744258291,
+        "last_active_timestamp": 1744258291,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8jP6cwTUtciybPxLaa6T7HrXUTPxvXyJywgCFWWJ5gPk",
+            "timestamp": 1744228742
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744228814
+    },
+    {
+        "address": "hnu5iBK8UoHb51UFsH1RYTUAYdrhjHvV5YMTf9T1CYN",
+        "account_address": "GxuNCugtVgAXj2nd47H549VGVprGe3DucNh2gyVANfXv",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 147523387.695204,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 90365.6031236692,
+        "buy_volume_cur": 86104.86671248887,
+        "buy_amount_cur": 147523387.695204,
+        "netflow_usd": -4260.736411180333,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 440,
+        "sell_tx_count_cur": 221,
+        "wallet_tag_v2": "TOP16",
+        "native_balance": "22136453471",
+        "balance": 0,
+        "profit": 4217.78832738229,
+        "realized_profit": 4217.78832738229,
+        "profit_change": 0.04895989918439674,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005836692612454707,
+        "avg_sold": 0.0006125510302839053,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 86147.81479628693,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744429305,
+        "end_holding_at": 1744433255,
+        "last_active_timestamp": 1744433255,
+        "native_transfer": {
+            "name": null,
+            "from_address": "3cmWRfWGsnWMVDjPufUg3jKzDpbEz446G8U4kDQj47g4",
+            "timestamp": 1741569176
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1716335556
+    },
+    {
+        "address": "DTdHa4auX68jFtXv9wkzMYCahg295AnRuwvm6moW6meZ",
+        "account_address": "4VVidySVLintFrJkc6GCCcojFfELtyLDzDNfHo3uj6WS",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 11428753.466175,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4317.56028957009,
+        "buy_volume_cur": 373.026198925681,
+        "buy_amount_cur": 11428753.466175,
+        "netflow_usd": -3944.5340906444094,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 8,
+        "wallet_tag_v2": "TOP17",
+        "native_balance": "18881813786",
+        "balance": 0,
+        "profit": 3938.680273744409,
+        "realized_profit": 3938.680273744409,
+        "profit_change": 10.395587281532835,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00003263927251818883,
+        "avg_sold": 0.00037778050793977805,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 378.880015825681,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235082,
+        "end_holding_at": 1744248251,
+        "last_active_timestamp": 1744248251,
+        "native_transfer": {
+            "name": null,
+            "from_address": "EsXMuyYyhg8Wo6x6swoGWE8xi16FrKwnFofJEQjw7EQE",
+            "timestamp": 1740960630
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1709330592
+    },
+    {
+        "address": "4Yp9uAbYMXsnFxCR1ZWwQAffMuPybQrzxNhqXYcu3J7W",
+        "account_address": "Fw94855yhVzUZ3XooE8oxWuCHvVnoZUSGn46tJeysD2f",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 41027090.11095,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 12095.69095985069,
+        "buy_volume_cur": 4440.11009622606,
+        "buy_amount_cur": 41109928.955268,
+        "netflow_usd": -7655.58086362463,
+        "netflow_amount": 82838.84431800246,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 5,
+        "wallet_tag_v2": "TOP18",
+        "native_balance": "30702184568",
+        "balance": 0,
+        "profit": 3858.144957054695,
+        "realized_profit": 3858.144957054695,
+        "profit_change": 0.96901298989322,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00010800578373797177,
+        "avg_sold": 0.0002948220536026363,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3981.520368968265,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744422865,
+        "end_holding_at": 1744550240,
+        "last_active_timestamp": 1744550240,
+        "native_transfer": {
+            "name": null,
+            "from_address": "G2YxRa6wt1qePMwfJzdXZG62ej4qaTC7YURzuh2Lwd3t",
+            "timestamp": 1739478043
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1731222565
+    },
+    {
+        "address": "BDC19MFbzDpoF37QCxe4JR6i7UmXNMSiEqrxuQgJoWte",
+        "account_address": "7XiMMYcVprfA8Qu8Nx9tXcGsL7Z6TDKmJeyYJhSfBZEW",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 7712890.668078,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5512.74222915854,
+        "buy_volume_cur": 1773.9528339,
+        "buy_amount_cur": 7712890.668078,
+        "netflow_usd": -3738.78939525854,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 6,
+        "sell_tx_count_cur": 23,
+        "wallet_tag_v2": "TOP19",
+        "native_balance": "1252764647",
+        "balance": 0,
+        "profit": 3733.19114775854,
+        "realized_profit": 3733.19114775854,
+        "profit_change": 2.097827472770032,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00022999844160141028,
+        "avg_sold": 0.000714743987228368,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1779.5510814,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237809,
+        "end_holding_at": 1744351471,
+        "last_active_timestamp": 1744887522,
+        "native_transfer": {
+            "name": null,
+            "from_address": "62vAfsjogqtUQUc94TQsvhfrc1gSNeQXejui6JyR4CUS",
+            "timestamp": 1741539969
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1721504753
+    },
+    {
+        "address": "94NKcoowZyQZP2u4nL4gPMd6ei3ZtCwwW2tH7Q2cF2me",
+        "account_address": "2HCc8yYKzJc2ES4KDnEfNtbBSkY5hcFKfhgx3s6q5eQy",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 63444587.741259,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5703.92790981851,
+        "buy_volume_cur": 1939.0412215105296,
+        "buy_amount_cur": 63444587.741259,
+        "netflow_usd": -3764.88668830798,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 9,
+        "sell_tx_count_cur": 13,
+        "wallet_tag_v2": "TOP20",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 3692.446244294959,
+        "realized_profit": 3692.446244294959,
+        "profit_change": 1.8356847629202149,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00003056275232520017,
+        "avg_sold": 0.00008990408974017427,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2011.481665523551,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237534,
+        "end_holding_at": 1744284792,
+        "last_active_timestamp": 1744284792,
+        "native_transfer": {
+            "name": null,
+            "from_address": "7hVr7rGSDGKLLBGQxGrWFjZpt1X1rJJUhaRUKa5phdsw",
+            "timestamp": 1741300239
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1733949085
+    },
+    {
+        "address": "8ooPX7boNnkHkLBeUuzpRZz5ycei3kRNaHv13iAQFj4N",
+        "account_address": "GHBGE9yUaDtTth2WunGLkp5R6j8be11xMsVcUgZRj5cA",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 31768086.410659,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5971.09262420745,
+        "buy_volume_cur": 2259.148686708484,
+        "buy_amount_cur": 31768086.410659,
+        "netflow_usd": -3711.943937498966,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 17,
+        "sell_tx_count_cur": 12,
+        "wallet_tag_v2": "TOP21",
+        "native_balance": "18769207",
+        "balance": 0,
+        "profit": 3534.1768697489656,
+        "realized_profit": 3534.1768697489656,
+        "profit_change": 1.4502663308253378,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00007111377932888278,
+        "avg_sold": 0.00018795883853438516,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2436.915754458484,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233733,
+        "end_holding_at": 1744411128,
+        "last_active_timestamp": 1744411128,
+        "native_transfer": {
+            "name": null,
+            "from_address": "HPevZoyc3DQkvqv4R1FUt8pjwex52gQarT9Rf1Tb5TEX",
+            "timestamp": 1744225201
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744225221
+    },
+    {
+        "address": "2AGDcoGHokjruemZDaiibC2vHYJzDKBdurqpZD9dwgxc",
+        "account_address": "6fxTkX1eyHMkmCaz5zb6AHQ76TdkypTLqkZBiwfWWUXQ",
+        "addr_type": 0,
+        "amount_cur": 611158.760277,
+        "usd_value": 12.435757001762191,
+        "cost_cur": 28.34135934082792,
+        "sell_amount_cur": 7115095.196803,
+        "sell_amount_percentage": 0.9208984374999787,
+        "sell_volume_cur": 3830.67448819836,
+        "buy_volume_cur": 358.290765,
+        "buy_amount_cur": 7726253.95708,
+        "netflow_usd": -3472.38372319836,
+        "netflow_amount": 611158.7602770003,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP22",
+        "native_balance": "1027714183",
+        "balance": 611158.760277,
+        "profit": 3484.815956750122,
+        "realized_profit": 3500.721559089188,
+        "profit_change": 9.726127569115377,
+        "amount_percentage": 0.0006113761472936933,
+        "unrealized_profit": -15.90560233906573,
+        "unrealized_pnl": -0.5612152242871596,
+        "avg_cost": 0.00004637315405244712,
+        "avg_sold": 0.0005383869621195769,
+        "accu_amount": 611158.760277,
+        "accu_cost": 28.34135934082792,
+        "cost": 28.34135934082792,
+        "total_cost": 358.29428845,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744236431,
+        "end_holding_at": null,
+        "last_active_timestamp": 1744258012,
+        "native_transfer": {
+            "name": "Coinbase 1",
+            "from_address": "2AQdpHJ2JpcEgPiATUXjQxA8QmafFegfQwSLWSprPicm",
+            "timestamp": 1740348908
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1730927999
+    },
+    {
+        "address": "DYPH1v1dwrVW1qi7PaU4Hg1XcRuRzJJ1cioHfyPc1Wgx",
+        "account_address": "9tnhCWAgFmYcSVL8wAgzULB8Dk7C4XNA7WynCq1YWsZW",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 23485953.196899,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 15266.54851094266,
+        "buy_volume_cur": 11898.57075832982,
+        "buy_amount_cur": 23485953.196899,
+        "netflow_usd": -3367.97775261284,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 14,
+        "sell_tx_count_cur": 14,
+        "wallet_tag_v2": "TOP23",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 3355.76779143593,
+        "realized_profit": 3355.76779143593,
+        "profit_change": 0.28174205121080464,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000506624988075888,
+        "avg_sold": 0.0006500289080435705,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 11910.78071950673,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744298977,
+        "end_holding_at": 1744306071,
+        "last_active_timestamp": 1744306071,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8b6iz5WbnfXyDbdEXGeWYSMGGgqc68f2QrXGoFX8bgi9",
+            "timestamp": 1737764257
+        },
+        "tags": [
+            "trojan"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1720439226
+    },
+    {
+        "address": "CHfzQoQgZ3k7oYwng8Bv2Q1prUwZD5oJApMNMzy8TSzi",
+        "account_address": "CeZRvN1P59u91y8SLcXVEXfAaVjUT3DRuswmY3UwrWS5",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 13018960.404267,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4662.3616859422,
+        "buy_volume_cur": 1338.2941393687768,
+        "buy_amount_cur": 13031992.396663,
+        "netflow_usd": -3324.067546573423,
+        "netflow_amount": 13031.992396000773,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 1,
+        "wallet_tag_v2": "TOP24",
+        "native_balance": "82918679",
+        "balance": 0,
+        "profit": 3325.390001484324,
+        "realized_profit": 3325.390001484324,
+        "profit_change": 2.487255369834347,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00010269298036971409,
+        "avg_sold": 0.000358120889930205,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1336.9716844578759,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238027,
+        "end_holding_at": 1744240942,
+        "last_active_timestamp": 1744240942,
+        "native_transfer": {
+            "name": null,
+            "from_address": "2snHHreXbpJ7UwZxPe37gnUNf7Wx7wv6UKDSR2JckKuS",
+            "timestamp": 1739139325
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1717182125
+    },
+    {
+        "address": "9WASiHk5PRbrh9hN6gyJfzhzRoVTwdZ2tQ6V3FiZ4ioC",
+        "account_address": "3q11mmnADeZLRFUfojvbiAXiKGRXWGk9EU3C6mSkfVkm",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5409449.6151,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4441.85517794374,
+        "buy_volume_cur": 1128.99810808119,
+        "buy_amount_cur": 5419296.091365,
+        "netflow_usd": -3312.8570698625504,
+        "netflow_amount": 9846.47626500018,
+        "buy_tx_count_cur": 8,
+        "sell_tx_count_cur": 15,
+        "wallet_tag_v2": "TOP25",
+        "native_balance": "4975095",
+        "balance": 0,
+        "profit": 3320.4159493056086,
+        "realized_profit": 3320.4159493056086,
+        "profit_change": 2.9608523266462696,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00020832929019695256,
+        "avg_sold": 0.0008211288567222615,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1121.4392286381312,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744384744,
+        "end_holding_at": 1744387810,
+        "last_active_timestamp": 1744387810,
+        "native_transfer": {
+            "name": null,
+            "from_address": "Biw4eeaiYYYq6xSqEd7GzdwsrrndxA8mqdxfAtG3PTUU",
+            "timestamp": 1741554449
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1731883462
+    },
+    {
+        "address": "CuwxHwz42cNivJqWGBk6HcVvfGq47868Mo6zi4u6z9vC",
+        "account_address": "GNcvM9a763RETVQRiQiQ5CfeeXeMkev7CFnpV2g7x7Yk",
+        "addr_type": 0,
+        "amount_cur": 0.002,
+        "usd_value": 4.0695668e-8,
+        "cost_cur": 0,
+        "sell_amount_cur": 95583878.328,
+        "sell_amount_percentage": 0.999999999979076,
+        "sell_volume_cur": 51831.45735722428,
+        "buy_volume_cur": 48659.03380495187,
+        "buy_amount_cur": 95583878.33,
+        "netflow_usd": -3172.423552272412,
+        "netflow_amount": 0.0020000040531158447,
+        "buy_tx_count_cur": 234,
+        "sell_tx_count_cur": 177,
+        "wallet_tag_v2": "TOP26",
+        "native_balance": "75381668682",
+        "balance": 0.002,
+        "profit": 3155.158063174797,
+        "realized_profit": 3155.158063174797,
+        "profit_change": 0.0648191852900474,
+        "amount_percentage": 2.000711392949991e-12,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005090715574122056,
+        "avg_sold": 0.0005422615012477576,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 48676.29929404948,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744730139,
+        "end_holding_at": 1744730904,
+        "last_active_timestamp": 1744730904,
+        "native_transfer": {
+            "name": null,
+            "from_address": "J1BDJEdvTmmcjeTMVTHLPaaNvuQ3mdxeuWEM1YyMksLy",
+            "timestamp": 1743569913
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743571614
+    },
+    {
+        "address": "FkL99xVBParNcPTjxnLdqFFCg3cvcR7NjCGkMgDPFfW3",
+        "account_address": "HKmQZzYjqCrgnqZhgjY6EkKH8HwJy4QjJYHMFgPU6FzE",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 9992327.943162,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4838.38445311722,
+        "buy_volume_cur": 1770.86700601662,
+        "buy_amount_cur": 10093260.548647,
+        "netflow_usd": -3067.5174471006,
+        "netflow_amount": 100932.60548499972,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP27",
+        "native_balance": "34144646169",
+        "balance": 0,
+        "profit": 3073.3359282605084,
+        "realized_profit": 3073.3359282605084,
+        "profit_change": 1.7412189438304562,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00017545044017059527,
+        "avg_sold": 0.0004842099339251818,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1765.0485248567118,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238408,
+        "end_holding_at": 1744244020,
+        "last_active_timestamp": 1744244020,
+        "native_transfer": {
+            "name": null,
+            "from_address": "FTcriZvG2PYfcUy4cVi9W2zUfhhpY5XEs4GNM6wwaEeg",
+            "timestamp": 1738201086
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1730934859
+    },
+    {
+        "address": "AR76YMMrA9U9dY5gEjF6kdUYnGkqhpRNvA58Q36bqcPe",
+        "account_address": "9yrNCoiYxEy1xNFGgsEYiRSoJaRsNN9LMNTPjBfotwta",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 18860026.303758,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 9000.49561147697,
+        "buy_volume_cur": 6036.96689909837,
+        "buy_amount_cur": 18860026.303758,
+        "netflow_usd": -2963.5287123786,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 45,
+        "sell_tx_count_cur": 38,
+        "wallet_tag_v2": "TOP28",
+        "native_balance": "18690637",
+        "balance": 0,
+        "profit": 2959.090024962,
+        "realized_profit": 2959.090024962,
+        "profit_change": 0.48980158385111383,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0003200932385706938,
+        "avg_sold": 0.0004772260370434136,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6041.40558651497,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744423756,
+        "end_holding_at": 1744442119,
+        "last_active_timestamp": 1744442119,
+        "native_transfer": {
+            "name": "Bybit",
+            "from_address": "AC5RDfQFmDS1deWZos921JfqscXdByf8BKHs5ACWjtW2",
+            "timestamp": 1741521629
+        },
+        "tags": [
+            "trojan"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739375798
+    },
+    {
+        "address": "E1ELKU8E1RmhtRCrhVUJ5tfhecTx9Z8cEuFTMXGfJHEF",
+        "account_address": "mK9tkdKZPDUjy4AT7fhiCbx7dz8DkBTWpJsCMFrNGxN",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 9398539.120322,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 10552.60520699375,
+        "buy_volume_cur": 7876.36929174271,
+        "buy_amount_cur": 9398539.120322,
+        "netflow_usd": -2676.2359152510408,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 12,
+        "sell_tx_count_cur": 8,
+        "wallet_tag_v2": "TOP29",
+        "native_balance": "27484210621",
+        "balance": 0,
+        "profit": 2675.34190745104,
+        "realized_profit": 2675.34190745104,
+        "profit_change": 0.3396283462565417,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0008380418691573058,
+        "avg_sold": 0.00112279207139505,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 7877.26329954271,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744308924,
+        "end_holding_at": 1744313326,
+        "last_active_timestamp": 1744313326,
+        "native_transfer": {
+            "name": null,
+            "from_address": "3XGq25GqK6EAooZHAiXSZMWd3gMMq6QpAYwZqCkxc15A",
+            "timestamp": 1742977168
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742977681
+    },
+    {
+        "address": "8kf4xKtrYQpZzXkkqndWbueXLQr84mEgj2f1FKyt37EM",
+        "account_address": "7Mu6M22ZcttkYKa2K4MmvMmhFxU6QKXf1aPeomzPX2WC",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 6036865.905132,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 3261.7044011607,
+        "buy_volume_cur": 600.01593415828,
+        "buy_amount_cur": 6036865.905132,
+        "netflow_usd": -2661.68846700242,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP30",
+        "native_balance": "58569554813",
+        "balance": 0,
+        "profit": 2661.64815945019,
+        "realized_profit": 2661.64815945019,
+        "profit_change": 4.435664483487318,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00009939195993208999,
+        "avg_sold": 0.0005402976399372881,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 600.05624171051,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237785,
+        "end_holding_at": 1744241681,
+        "last_active_timestamp": 1745030960,
+        "native_transfer": {
+            "name": "Kucoin Wallet",
+            "from_address": "BmFdpraQhkiDQE6SnfG5omcA1VwzqfXrwtNYBwWTymy6",
+            "timestamp": 1741569074
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1726718084
+    },
+    {
+        "address": "b1my4AWDY4R6K3mhLkoF1Cxxg1rLaC62iSTJCEexx7k",
+        "account_address": "2qFd1i2A5h5Uhs9oe36Cf1oF1VrRrdFSjAPxSc4dxQ72",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 15835006.519927,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 13280.82068178438,
+        "buy_volume_cur": 10588.06910448406,
+        "buy_amount_cur": 15835006.519927,
+        "netflow_usd": -2692.7515773003197,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 12,
+        "sell_tx_count_cur": 19,
+        "wallet_tag_v2": "TOP31",
+        "native_balance": "15057950",
+        "balance": 0,
+        "profit": 2647.50506850032,
+        "realized_profit": 2647.50506850032,
+        "profit_change": 0.2489820828033005,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000668649494470361,
+        "avg_sold": 0.0008387000450597607,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 10633.31561328406,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744247315,
+        "end_holding_at": 1744247881,
+        "last_active_timestamp": 1744247881,
+        "native_transfer": {
+            "name": null,
+            "from_address": "FEghpcBLDNjVfsKrd8rPcCNRJm1htnrTdX35zwDhwG88",
+            "timestamp": 1741479252
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1715042423
+    },
+    {
+        "address": "4wJVhKZuW3hUEsqSMgEM53qzo1VSEEWf7Rnfd3wpbJx1",
+        "account_address": "FVhADHpX6SMtsifgTebT1hQKnPYDPDtZ3Ycmzw6rEAxw",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 4880466.42989,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4124.69445461236,
+        "buy_volume_cur": 329.3620359624,
+        "buy_amount_cur": 4887841.429892,
+        "netflow_usd": -3795.3324186499594,
+        "netflow_amount": 7375.00000199955,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 5,
+        "wallet_tag_v2": "TOP32",
+        "native_balance": "12271480176",
+        "balance": 0,
+        "profit": 2611.644194068672,
+        "realized_profit": 2611.644194068672,
+        "profit_change": 12.25194736536351,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00006738394456664636,
+        "avg_sold": 0.0008451434947592346,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 213.16155841901835,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235367,
+        "end_holding_at": 1744297337,
+        "last_active_timestamp": 1744297337,
+        "native_transfer": {
+            "name": null,
+            "from_address": "MvVPcaHhXpuNE8zX67Z53QLqmyYQxWfhRDW9bMYZtK5",
+            "timestamp": 1741249586
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": "Ragassi",
+        "avatar": "https://pbs.twimg.com/profile_images/1857876780629032960/tcV-MnL8.jpg",
+        "twitter_username": "ragassii",
+        "twitter_name": "Ragassi",
+        "created_at": 1736268209
+    },
+    {
+        "address": "BZWoUig6onBnu8Dipct9ru7LKZWxSV9CLszJj8dr4Z7B",
+        "account_address": "4VYeCd3tTtYK2j4YBRWxnEfRwNaSmaT9a1QzwPkoNvFp",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8305990.504015,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 7478.70554150147,
+        "buy_volume_cur": 4927.3856162689,
+        "buy_amount_cur": 8305990.504015,
+        "netflow_usd": -2551.3199252325703,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP33",
+        "native_balance": "1803005",
+        "balance": 0,
+        "profit": 2550.19330358717,
+        "realized_profit": 2550.19330358717,
+        "profit_change": 0.5174367396247731,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005932327533828832,
+        "avg_sold": 0.0009003989997203065,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 4928.5122379143,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744256286,
+        "end_holding_at": 1744324406,
+        "last_active_timestamp": 1744324406,
+        "native_transfer": {
+            "name": "OKX",
+            "from_address": "5VCwKtCXgCJ6kit5FybXjvriW3xELsFDhYrPSqtJNmcD",
+            "timestamp": 1741396398
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1729574458
+    },
+    {
+        "address": "6ykoioDZEcC9Rk1vexd2F49KDHzP63nHh21Hm4CqrWtx",
+        "account_address": "7jMtEa7EB5uitxVzvLt77fFMpT7LhQrTjnpzMRUdQh41",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 27639982.839393,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 9859.70756839508,
+        "buy_volume_cur": 7241.26677318793,
+        "buy_amount_cur": 27639982.839393,
+        "netflow_usd": -2618.4407952071506,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 7,
+        "sell_tx_count_cur": 10,
+        "wallet_tag_v2": "TOP34",
+        "native_balance": "164992300",
+        "balance": 0,
+        "profit": 2517.68312450802,
+        "realized_profit": 2517.68312450802,
+        "profit_change": 0.34291402102375623,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00026198521233766997,
+        "avg_sold": 0.0003567190191718516,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 7342.02444388706,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744498658,
+        "end_holding_at": 1744603154,
+        "last_active_timestamp": 1744603154,
+        "native_transfer": {
+            "name": "OKX",
+            "from_address": "5VCwKtCXgCJ6kit5FybXjvriW3xELsFDhYrPSqtJNmcD",
+            "timestamp": 1740728999
+        },
+        "tags": [
+            "gmgn",
+            "pepeboost"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1722021524
+    },
+    {
+        "address": "7ZevYShFhhpNMLKL5gPJgMSi6Dbe48FyK1xjWsEcxYqk",
+        "account_address": "98Js3CNtQxSF4ZcWBYE6FJ772CZaZf6AVxEeNCqqv6dS",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5501814.858603,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 3232.77383724834,
+        "buy_volume_cur": 742.3325812745,
+        "buy_amount_cur": 5557388.746063,
+        "netflow_usd": -2490.4412559738403,
+        "netflow_amount": 55573.88745999988,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP35",
+        "native_balance": "9670836",
+        "balance": 0,
+        "profit": 2497.845843608031,
+        "realized_profit": 2497.845843608031,
+        "profit_change": 3.398762688621349,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0001335757880534069,
+        "avg_sold": 0.0005875831739763765,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 734.9279936403092,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237913,
+        "end_holding_at": 1744243340,
+        "last_active_timestamp": 1744243340,
+        "native_transfer": {
+            "name": null,
+            "from_address": "ABNL41SwMLVRaCq6okEWsWyvLwm56nazUNwMrTHgmuyf",
+            "timestamp": 1741563809
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1740360003
+    },
+    {
+        "address": "9zWxBCeoeDdKDaTB3dyRV1gcdqViM3KvCF6DBFquTjGe",
+        "account_address": "FC2UsNJ3v5imNJa4TR578RJ8dRardzCbvTmTSAsJGsd8",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 4506761.000009,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2493.98126270269,
+        "buy_volume_cur": 25.97845931125,
+        "buy_amount_cur": 4506761.000009,
+        "netflow_usd": -2468.00280339144,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP36",
+        "native_balance": "2324712835",
+        "balance": 0,
+        "profit": 2468.00132841416,
+        "realized_profit": 2468.00132841416,
+        "profit_change": 94.9964422929187,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000005764330371900821,
+        "avg_sold": 0.0005533866257158321,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 25.97993428853,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744232940,
+        "end_holding_at": 1744244233,
+        "last_active_timestamp": 1744244233,
+        "native_transfer": {
+            "name": null,
+            "from_address": "9ctDLkHA8oFUE4V75S23L8utPKYNEimp8TXPYGGwDf8J",
+            "timestamp": 1743757652
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743787673
+    },
+    {
+        "address": "6QAeFafN7p1o6GcpAk9RJUBwnw92TbhGY5jGPFYAtYLS",
+        "account_address": "GuRdVtLC7m5pGTJ4oSmoTVDhJ3Gn1pXpjdvMb2QjnGJt",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 14656843.180347,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4799.09383649479,
+        "buy_volume_cur": 2376.92518995145,
+        "buy_amount_cur": 14656843.180347,
+        "netflow_usd": -2422.1686465433395,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 8,
+        "wallet_tag_v2": "TOP37",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 2399.27891884334,
+        "realized_profit": 2399.27891884334,
+        "profit_change": 0.9997766499390568,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000162171701007118,
+        "avg_sold": 0.0003274302506647391,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2399.81491765145,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238690,
+        "end_holding_at": 1744239762,
+        "last_active_timestamp": 1744239762,
+        "native_transfer": {
+            "name": null,
+            "from_address": "752po7QuAi4bS43YQBgykJiG1uNmYrbVczfGbEMmm4WR",
+            "timestamp": 1741546668
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739632292
+    },
+    {
+        "address": "4EaSv4CwSs8tCg7p3dSYPMikuJfN5agbDrZa58oNcBcY",
+        "account_address": "9zDkWULDJSib8YDHYw5pX9RhTTrarDdmLG24MjzdEuqu",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 10880247.485492,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 9792.46587820139,
+        "buy_volume_cur": 7395.24091152196,
+        "buy_amount_cur": 10880247.485492,
+        "netflow_usd": -2397.2249666794305,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 13,
+        "sell_tx_count_cur": 16,
+        "wallet_tag_v2": "TOP38",
+        "native_balance": "19706980391",
+        "balance": 0,
+        "profit": 2395.38275142943,
+        "realized_profit": 2395.38275142943,
+        "profit_change": 0.3238280157701512,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0006796941817162673,
+        "avg_sold": 0.0009000223470338257,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 7397.08312677196,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744320881,
+        "end_holding_at": 1744323141,
+        "last_active_timestamp": 1744727883,
+        "native_transfer": {
+            "name": null,
+            "from_address": "c9v7FEnH2T3ZE4vucj8DG1YEqtE2XQXGubiW3cUR6jr",
+            "timestamp": 1744220883
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744221079
+    },
+    {
+        "address": "E3NN8SKp1YFyJvVEX75Gvhb4gqkXbE5Qc2DPWTKxqr1M",
+        "account_address": "Fw4eVrWd26PN6aCfsvLQF2K7RhZArNDA5RKMRPAeKvvF",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 3400198.726039,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 3710.12899140994,
+        "buy_volume_cur": 1312.1762166,
+        "buy_amount_cur": 3400198.726039,
+        "netflow_usd": -2397.95277480994,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 1,
+        "wallet_tag_v2": "TOP39",
+        "native_balance": "24289262571",
+        "balance": 0,
+        "profit": 2393.38641950994,
+        "realized_profit": 2393.38641950994,
+        "profit_change": 1.817657050501824,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0003859116252680313,
+        "avg_sold": 0.0010911506327549237,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1316.7425719,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744239750,
+        "end_holding_at": 1744280549,
+        "last_active_timestamp": 1744280549,
+        "native_transfer": {
+            "name": "Kucoin Wallet",
+            "from_address": "BmFdpraQhkiDQE6SnfG5omcA1VwzqfXrwtNYBwWTymy6",
+            "timestamp": 1744153402
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744210177
+    },
+    {
+        "address": "4hLQtxVpk4WVt1dMURSF7D2LpFcyDoB8pFwWDpYhYNeE",
+        "account_address": "9HCqZqgD8UXEZikxCgJCnDemnazjwtgkiJPrRAf46TQ8",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 3769009.197224,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2947.9570940021,
+        "buy_volume_cur": 590.899617405,
+        "buy_amount_cur": 3777509.197224,
+        "netflow_usd": -2357.0574765971,
+        "netflow_amount": 8500,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 8,
+        "wallet_tag_v2": "TOP40",
+        "native_balance": "116547559",
+        "balance": 0,
+        "profit": 2358.3026045318743,
+        "realized_profit": 2358.3026045318743,
+        "profit_change": 3.999465189607372,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00015642572567109507,
+        "avg_sold": 0.0007821570443960093,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 589.6544894702257,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238555,
+        "end_holding_at": 1744404954,
+        "last_active_timestamp": 1744404954,
+        "native_transfer": {
+            "name": null,
+            "from_address": "2S2e3rJwhjUEJqinGwV6RmGhVAKJXXkNpFsmhKmpcPH1",
+            "timestamp": 1740833190
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1732242173
+    },
+    {
+        "address": "FvbEq7fzSjLUCFBTTHzpgYXSnsR2mNaAgs4JcjrAbbAM",
+        "account_address": "ABEq5cSNG7sj7yg7vsAhaZeciJpcWiPV7uVNfmzFEBYt",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 23846776.590097,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 16422.05797554062,
+        "buy_volume_cur": 13921.92625639731,
+        "buy_amount_cur": 23928979.765106,
+        "netflow_usd": -2500.131719143312,
+        "netflow_amount": 82203.17500900105,
+        "buy_tx_count_cur": 11,
+        "sell_tx_count_cur": 11,
+        "wallet_tag_v2": "TOP41",
+        "native_balance": "752062102",
+        "balance": 0,
+        "profit": 2334.928784105133,
+        "realized_profit": 2334.928784105133,
+        "profit_change": 0.23771330294632598,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005818019152115589,
+        "avg_sold": 0.0006886489632464756,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 9822.457368455916,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744301564,
+        "end_holding_at": 1744301921,
+        "last_active_timestamp": 1744301921,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8mmUj73AMJxob845qBnc6We8FvdedhmJrSJTgN8CuasU",
+            "timestamp": 1738216301
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742235479
+    },
+    {
+        "address": "AsX5BMtPfjYujCR2EGjrayEzbYvaKQK2j2PZvHdi8Jyi",
+        "account_address": "GcHkEAFviBdm2Ltt6KZ1txnfdgVKriJbmgHLvRtAHarg",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 21254690.787835,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 8982.40425272643,
+        "buy_volume_cur": 6656.74933304205,
+        "buy_amount_cur": 21254690.787835,
+        "netflow_usd": -2325.65491968438,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 19,
+        "sell_tx_count_cur": 16,
+        "wallet_tag_v2": "TOP42",
+        "native_balance": "2003403945",
+        "balance": 0,
+        "profit": 2321.87679793438,
+        "realized_profit": 2321.87679793438,
+        "profit_change": 0.3486025414194276,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0003131896577320242,
+        "avg_sold": 0.00042260808883973314,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6660.52745479205,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744252998,
+        "end_holding_at": 1744446947,
+        "last_active_timestamp": 1744446947,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1741124247
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1738442161
+    },
+    {
+        "address": "6jG2QqPfnmnMJLS2AqyLAMsmBJXAfqifrFRExJtLxNVW",
+        "account_address": "2CmAS9ZJzJZgAW8cx6sgdJosDJTc5bSPUESptRBwLXFh",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 29298617.142255,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 9790.50110743495,
+        "buy_volume_cur": 7526.64899358565,
+        "buy_amount_cur": 29306212.525606,
+        "netflow_usd": -2263.8521138492997,
+        "netflow_amount": 7595.383350998163,
+        "buy_tx_count_cur": 142,
+        "sell_tx_count_cur": 88,
+        "wallet_tag_v2": "TOP43",
+        "native_balance": "3436756",
+        "balance": 0,
+        "profit": 2260.536060095741,
+        "realized_profit": 2260.536060095741,
+        "profit_change": 0.30020538553422965,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000256827762612085,
+        "avg_sold": 0.00033416256678254314,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 7529.965047339209,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744254962,
+        "end_holding_at": 1744258446,
+        "last_active_timestamp": 1744258446,
+        "native_transfer": {
+            "name": null,
+            "from_address": "yN2hjNwJ3kratPmD95JbUuifDychAs6ypNjG4dqPV8F",
+            "timestamp": 1741388876
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739928053
+    },
+    {
+        "address": "9Zx9tGq1Fq1sNUzJ89m48omxdLkmPy53Kx6h1AZQp1AK",
+        "account_address": "BGHa89egu7iQX43KuLbM8nBuESi1ASaYnQQ9xRrGRzB7",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8902887.502338,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 7449.22102941291,
+        "buy_volume_cur": 5191.65833137947,
+        "buy_amount_cur": 8902887.502338,
+        "netflow_usd": -2257.56269803344,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 15,
+        "sell_tx_count_cur": 15,
+        "wallet_tag_v2": "TOP44",
+        "native_balance": "9809493556",
+        "balance": 0,
+        "profit": 2250.73933584934,
+        "realized_profit": 2250.73933584934,
+        "profit_change": 0.43296090445717306,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005831432026986842,
+        "avg_sold": 0.0008367196628573212,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 5198.48169356357,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744340848,
+        "end_holding_at": 1744346749,
+        "last_active_timestamp": 1744346749,
+        "native_transfer": {
+            "name": null,
+            "from_address": "4A1VMevzT9uGQyFaURwSWWDBHA7dqz7p6X9yAV2CUfr6",
+            "timestamp": 1741560943
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739159062
+    },
+    {
+        "address": "ABnFCtDLksp6m6PYPf2VkK62WRD3YStBxNiKCuQBvdWW",
+        "account_address": "Ab4UbgGYcdCpcbp5cZN9h5ggYtp9wBFSx6r7eUQgFwa5",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 34533702.415336,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 12808.36978078538,
+        "buy_volume_cur": 10554.86964051456,
+        "buy_amount_cur": 34544633.835706,
+        "netflow_usd": -2253.5001402708203,
+        "netflow_amount": 10931.420370005071,
+        "buy_tx_count_cur": 48,
+        "sell_tx_count_cur": 40,
+        "wallet_tag_v2": "TOP45",
+        "native_balance": "122851266",
+        "balance": 0,
+        "profit": 2243.740566379957,
+        "realized_profit": 2243.740566379957,
+        "profit_change": 0.2123823298332609,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0003055429590226208,
+        "avg_sold": 0.0003708947748127157,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 10564.629214405424,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744316508,
+        "end_holding_at": 1744333014,
+        "last_active_timestamp": 1744333014,
+        "native_transfer": {
+            "name": null,
+            "from_address": "ABNL41SwMLVRaCq6okEWsWyvLwm56nazUNwMrTHgmuyf",
+            "timestamp": 1739572298
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1738211861
+    },
+    {
+        "address": "79Jav3E1pnzhuCBp7sKKd6eFGpRtiZukFXUTHBb9P9hC",
+        "account_address": "FVQLmMjAHTAyZzMXHKYJpEE14tAmp7YcxB7SyuSGQ9uy",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 18149666.336757,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 9541.22239779797,
+        "buy_volume_cur": 7327.64015780872,
+        "buy_amount_cur": 18177322.508641,
+        "netflow_usd": -2213.5822399892504,
+        "netflow_amount": 27656.1718840003,
+        "buy_tx_count_cur": 39,
+        "sell_tx_count_cur": 23,
+        "wallet_tag_v2": "TOP46",
+        "native_balance": "11783018",
+        "balance": 0,
+        "profit": 2209.907340483225,
+        "realized_profit": 2209.907340483225,
+        "profit_change": 0.30143396146620555,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0004031198849184395,
+        "avg_sold": 0.0005256968486784207,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 7331.315057314745,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744239047,
+        "end_holding_at": 1744417230,
+        "last_active_timestamp": 1744417230,
+        "native_transfer": {
+            "name": null,
+            "from_address": "9bc61xemFMSZBsQZp59zQppw3sGXrPhRkxrdVBtip6om",
+            "timestamp": 1743290585
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743290736
+    },
+    {
+        "address": "6VxGXaW97odnJxKTfUi6KFYQfJmTJeg8dSs5cF2LZnd9",
+        "account_address": "CAcDZYzHuYKVSk9k7dxk8EWo4dGn5sFaG22QhQecUEoP",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5567003.949275,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2434.26125515683,
+        "buy_volume_cur": 241.000944,
+        "buy_amount_cur": 5567003.949275,
+        "netflow_usd": -2193.26031115683,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 4,
+        "wallet_tag_v2": "TOP47",
+        "native_balance": "29683645013",
+        "balance": 0,
+        "profit": 2192.32621115683,
+        "realized_profit": 2192.32621115683,
+        "profit_change": 9.06163148136915,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00004329095976865365,
+        "avg_sold": 0.0004372659472378941,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 241.935044,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235244,
+        "end_holding_at": 1744266079,
+        "last_active_timestamp": 1744266079,
+        "native_transfer": {
+            "name": null,
+            "from_address": "2snHHreXbpJ7UwZxPe37gnUNf7Wx7wv6UKDSR2JckKuS",
+            "timestamp": 1735735044
+        },
+        "tags": [
+            "trojan"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742922456
+    },
+    {
+        "address": "RcCDLh2SC91R6d8gM9j6DeKJU2B2ShMmDjQefi31Kpf",
+        "account_address": "CHbkjJqFskNL6aY3VS9BktYes9dPqb9u8BYY9qVEDM1s",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 33726739.864611,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 6106.32870886217,
+        "buy_volume_cur": 3979.94082869575,
+        "buy_amount_cur": 33726739.864611,
+        "netflow_usd": -2126.38788016642,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 5,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP48",
+        "native_balance": "102419209315",
+        "balance": 0,
+        "profit": 2119.20959096642,
+        "realized_profit": 2119.20959096642,
+        "profit_change": 0.5315139900020991,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00011800550081841283,
+        "avg_sold": 0.00018105303783807033,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3987.11911789575,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237280,
+        "end_holding_at": 1744241520,
+        "last_active_timestamp": 1744241520,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1743545500
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743545513
+    },
+    {
+        "address": "4cB43Q1ei56tSySHd4twm9i7TwbFWFuWCxFjWkWS9BVm",
+        "account_address": "4Qy1sgFxxsGR6D5KMTuWiyoRKgEwidDHJg9Q3toYXW8r",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 24663623.967763,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 16154.14934432652,
+        "buy_volume_cur": 14082.79792206445,
+        "buy_amount_cur": 24687121.285055,
+        "netflow_usd": -2071.3514222620706,
+        "netflow_amount": 23497.3172920011,
+        "buy_tx_count_cur": 63,
+        "sell_tx_count_cur": 36,
+        "wallet_tag_v2": "TOP49",
+        "native_balance": "21162697119",
+        "balance": 0,
+        "profit": 2111.6623964789637,
+        "realized_profit": 2111.6623964789637,
+        "profit_change": 0.15448926321645864,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005704511983983261,
+        "avg_sold": 0.0006549787397602668,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 13668.667663462556,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744296400,
+        "end_holding_at": 1744296585,
+        "last_active_timestamp": 1744296585,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1741573257
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739696226
+    },
+    {
+        "address": "3zvSWgPftUrhmsq6pt9GxdU1XWx6UpU1eWBJjEHaN342",
+        "account_address": "Cp8juE1i7aewFxWQ5HinJT7p8Q3q6wvVeXAkPdxyKKFA",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 13190327.766719,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2629.85043239664,
+        "buy_volume_cur": 537.8945766743716,
+        "buy_amount_cur": 13190327.766719,
+        "netflow_usd": -2091.955855722268,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 6,
+        "sell_tx_count_cur": 28,
+        "wallet_tag_v2": "TOP50",
+        "native_balance": "28415663",
+        "balance": 0,
+        "profit": 2086.6829048222685,
+        "realized_profit": 2086.6829048222685,
+        "profit_change": 3.8416930300321677,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000040779470092589594,
+        "avg_sold": 0.00019937718598866906,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 543.1675275743715,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744234760,
+        "end_holding_at": 1744925439,
+        "last_active_timestamp": 1744925439,
+        "native_transfer": {
+            "name": null,
+            "from_address": "9ZeAgG2HoYmvs4yoofRF72XpVYYL9KUBuwU8JwE1ighi",
+            "timestamp": 1741220105
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739102266
+    },
+    {
+        "address": "J2UczfkVbFA2VB1B9WmhmmHkbYxnHJjgGLqWjf7fba5C",
+        "account_address": "67rDEijWr2e9PTAhorsu1eD5W934cGG8w8Yx4ScLZ6iz",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5789385.480608,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 8035.02736554008,
+        "buy_volume_cur": 5954.51052751093,
+        "buy_amount_cur": 5789385.480608,
+        "netflow_usd": -2080.5168380291498,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 13,
+        "sell_tx_count_cur": 16,
+        "wallet_tag_v2": "TOP51",
+        "native_balance": "90505653",
+        "balance": 0,
+        "profit": 2076.06729482915,
+        "realized_profit": 2076.06729482915,
+        "profit_change": 0.34839422822000315,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0010285220335484705,
+        "avg_sold": 0.001387889507868155,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 5958.96007071093,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744242499,
+        "end_holding_at": 1744317642,
+        "last_active_timestamp": 1744317642,
+        "native_transfer": {
+            "name": null,
+            "from_address": "HFmwyzEgdxbARQbYkJFt6mXsjvh1FBFrd7Y1rydkH8Y6",
+            "timestamp": 1738377334
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1733050841
+    },
+    {
+        "address": "FSWTqhTnTPjMH4nUfig5a1KqRP9AUZzKGSwTiH24oRUR",
+        "account_address": "G7whVkTGGMzb37MG6Q2stob8cXBnxhAAkS29mMJBd4ME",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 48506602.648662,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 25734.73795228954,
+        "buy_volume_cur": 23771.73942722392,
+        "buy_amount_cur": 48506602.648662,
+        "netflow_usd": -1962.9985250656173,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 16,
+        "sell_tx_count_cur": 22,
+        "wallet_tag_v2": "TOP52",
+        "native_balance": "309088093161",
+        "balance": 0,
+        "profit": 1960.43461931562,
+        "realized_profit": 1960.43461931562,
+        "profit_change": 0.08246023413845245,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0004900722402557219,
+        "avg_sold": 0.0005305409273596984,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 23774.30333297392,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744403017,
+        "end_holding_at": 1744403047,
+        "last_active_timestamp": 1744403047,
+        "native_transfer": {
+            "name": null,
+            "from_address": "is6MTRHEgyFLNTfYcuV4QBWLjrZBfmhVNYR6ccgr8KV",
+            "timestamp": 1742912328
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742928398
+    },
+    {
+        "address": "4MVoecN7LxVE5uRkc2LJmeaeCkyWMQARFHxbrjo46GWJ",
+        "account_address": "G6tczNeY7fusjj1bvEQRHwYVuyiLWMXEDiCQXfxuokvh",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 2079768.55346,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2270.33884841203,
+        "buy_volume_cur": 310.988612278125,
+        "buy_amount_cur": 2079768.55346,
+        "netflow_usd": -1959.3502361339051,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP53",
+        "native_balance": "3653299",
+        "balance": 0,
+        "profit": 1959.310616836565,
+        "realized_profit": 1959.310616836565,
+        "profit_change": 6.299462292898567,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00014953039450507597,
+        "avg_sold": 0.001091630530058255,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 311.028231575465,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238645,
+        "end_holding_at": 1744242235,
+        "last_active_timestamp": 1744242235,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1744222617
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744222795
+    },
+    {
+        "address": "4y9uwn1e6ynAyG9STWLVgDtNzH46BhexmY7f6fF3Uy8B",
+        "account_address": "F8c36AxKX9B4jBLzKFjoaTrNLLB1DK4XfmhKSpkv23AH",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5241935.261106,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2204.09926572805,
+        "buy_volume_cur": 242.06890849812,
+        "buy_amount_cur": 5241935.261106,
+        "netflow_usd": -1962.03035722993,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP54",
+        "native_balance": "364014334",
+        "balance": 0,
+        "profit": 1958.22803521047,
+        "realized_profit": 1958.22803521047,
+        "profit_change": 7.96444558026668,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00004617930142980165,
+        "avg_sold": 0.0004204743393307389,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 245.87123051758,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235352,
+        "end_holding_at": 1744257048,
+        "last_active_timestamp": 1744257048,
+        "native_transfer": {
+            "name": "JustMC",
+            "from_address": "244LJtPEXAU9CDy4RbPZ6Jqk42yvPygzQx8iin9HfQNR",
+            "timestamp": 1743281183
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743302031
+    },
+    {
+        "address": "Bm72bjvKzyoCdKk9UR2NApsK3BixhVG4x7TpA69LgTan",
+        "account_address": "HfbUsMGi3PUHkQs3kRf7AU9Y2AcCnzFUDswgdZev3y6C",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 6493252.178441,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2564.1813284134,
+        "buy_volume_cur": 598.596601,
+        "buy_amount_cur": 6493252.178441,
+        "netflow_usd": -1965.5847274134,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 11,
+        "wallet_tag_v2": "TOP55",
+        "native_balance": "1944962990",
+        "balance": 0,
+        "profit": 1939.6647582634,
+        "realized_profit": 1939.6647582634,
+        "profit_change": 3.105865962527656,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00009218748703268757,
+        "avg_sold": 0.0003948993906207795,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 624.51657015,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237783,
+        "end_holding_at": 1744437929,
+        "last_active_timestamp": 1744437929,
+        "native_transfer": {
+            "name": null,
+            "from_address": "3jyB7T2SpE5hXmfttGsjstn9AViKaTDoaZ98mzhBHw2E",
+            "timestamp": 1741487640
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1736808604
+    },
+    {
+        "address": "8LCVMEQaJ8LSdgXtcWHmrqVjcypAdx2VpHo9if9x4xrM",
+        "account_address": "6QG3UVB9ZqeTSm1jXuCi5LHLaSeti8JALXmBCbXPxDsw",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5585150.933611,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5020.43583277236,
+        "buy_volume_cur": 2996.2658115864365,
+        "buy_amount_cur": 5595467.576959,
+        "netflow_usd": -2024.1700211859238,
+        "netflow_amount": 10316.643348000012,
+        "buy_tx_count_cur": 5,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP56",
+        "native_balance": "10012533316",
+        "balance": 0,
+        "profit": 1927.038576305152,
+        "realized_profit": 1927.038576305152,
+        "profit_change": 0.6769679677821262,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005354808638199336,
+        "avg_sold": 0.0008988899122778888,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2846.572759740008,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744260074,
+        "end_holding_at": 1744261816,
+        "last_active_timestamp": 1744261816,
+        "native_transfer": {
+            "name": null,
+            "from_address": "6J1UASvjqNxWjHdMwo5jXctd8DX2dnVNUqwhKJhyz8x5",
+            "timestamp": 1737956506
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1709729716
+    },
+    {
+        "address": "3WH2E4fcCHpPFACrWobCLsFXDZtnuESafusTzEzq66Kn",
+        "account_address": "CPMhwk5cn5C5jEHJE3Wppmp4N3nxyTMvB6ytABw7mXkB",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 4187475.687237,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 3066.22623546685,
+        "buy_volume_cur": 364.14822588138,
+        "buy_amount_cur": 4209600.687239,
+        "netflow_usd": -2702.07800958547,
+        "netflow_amount": 22125.00000199955,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 7,
+        "wallet_tag_v2": "TOP57",
+        "native_balance": "5633266",
+        "balance": 0,
+        "profit": 1908.7860370901944,
+        "realized_profit": 1908.7860370901944,
+        "profit_change": 7.321926152837352,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00008650422045617305,
+        "avg_sold": 0.0007322373822521276,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 260.6945218029155,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237579,
+        "end_holding_at": 1744290343,
+        "last_active_timestamp": 1744290343,
+        "native_transfer": {
+            "name": null,
+            "from_address": "FzZ77TM8Ekcb6gyWPmcT9upWkAZKZc5xrYfuFu7pifPn",
+            "timestamp": 1742477155
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742477259
+    },
+    {
+        "address": "4yu7NZmyCJciDSzA67eFkd9PktMDWc7PVGEWanCRcbo6",
+        "account_address": "9k2GvFzfLFxES9nVAQU2YTbbviqHfUBthWADXXZ5EYVJ",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 14381403.884504,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 3207.36563928465,
+        "buy_volume_cur": 1331.40966310171,
+        "buy_amount_cur": 14526670.590406,
+        "netflow_usd": -1875.95597618294,
+        "netflow_amount": 145266.7059020009,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 8,
+        "wallet_tag_v2": "TOP58",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 1886.9014639137451,
+        "realized_profit": 1886.9014639137451,
+        "profit_change": 1.4289683121344308,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00009165277444791973,
+        "avg_sold": 0.00022302173452903265,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1320.464175370905,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237243,
+        "end_holding_at": 1744257898,
+        "last_active_timestamp": 1744257898,
+        "native_transfer": {
+            "name": null,
+            "from_address": "G2YxRa6wt1qePMwfJzdXZG62ej4qaTC7YURzuh2Lwd3t",
+            "timestamp": 1743949468
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743966851
+    },
+    {
+        "address": "CnNrzCvqnjR7aoXVAPRYoCeNe2xgCfFoxoHR8M98Uvjx",
+        "account_address": "D85E3bkuuX5om27NWb1LjjTwtrCcb1A3VgVsHrSVF19g",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 7399440.808092,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4103.02789087034,
+        "buy_volume_cur": 2257.93713649298,
+        "buy_amount_cur": 7408945.170651,
+        "netflow_usd": -1845.0907543773606,
+        "netflow_amount": 9504.36255900003,
+        "buy_tx_count_cur": 5,
+        "sell_tx_count_cur": 8,
+        "wallet_tag_v2": "TOP59",
+        "native_balance": "1616114315",
+        "balance": 0,
+        "profit": 1854.5286233364807,
+        "realized_profit": 1854.5286233364807,
+        "profit_change": 0.8247850689186644,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00030475824621260925,
+        "avg_sold": 0.0005545051304935482,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2248.4992675338594,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744334723,
+        "end_holding_at": 1744341033,
+        "last_active_timestamp": 1744341033,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8gEYiKJCGfZkQJEyp1sTgG1GAgYLaDbNxun5Dfs8TY7L",
+            "timestamp": 1740781381
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1737307987
+    },
+    {
+        "address": "8oQoMhfBQnRspn7QtNAq2aPThRE4q94kLSTwaaFQvRgs",
+        "account_address": "Cy297ZuXBQ3Pwpw9oXD4AJgrWPKt4YjzNYRxxdXx6pR5",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 44087035.083352,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 8669.3390762192,
+        "buy_volume_cur": 6825.399385534157,
+        "buy_amount_cur": 44087035.083352,
+        "netflow_usd": -1843.9396906850425,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 8,
+        "sell_tx_count_cur": 15,
+        "wallet_tag_v2": "TOP60",
+        "native_balance": "515522868",
+        "balance": 0,
+        "profit": 1841.0227683934945,
+        "realized_profit": 1841.0227683934945,
+        "profit_change": 0.2696159178044461,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000154816475470167,
+        "avg_sold": 0.00019664146295682484,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6828.316307825706,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744245191,
+        "end_holding_at": 1744245908,
+        "last_active_timestamp": 1744245908,
+        "native_transfer": {
+            "name": "Coinbase 2",
+            "from_address": "H8sMJSCQxfKiFTCfDR3DUMLPwcRbM61LGFJ8N4dK3WjS",
+            "timestamp": 1739316940
+        },
+        "tags": [
+            "photon",
+            "bullx"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1731893986
+    },
+    {
+        "address": "GN25Fms3gNuCd1G21PZcnD9LAvEqPJ4qHt3Ad2mmgdrm",
+        "account_address": "6sctMgLDGKr1JixrR8ZVoDnaX15fTUZcoc6snsEfGh6W",
+        "addr_type": 0,
+        "amount_cur": 63476.643285,
+        "usd_value": 1.2916122004403947,
+        "cost_cur": 0.5345235313537409,
+        "sell_amount_cur": 35027048.843403,
+        "sell_amount_percentage": 0.9981910603388063,
+        "sell_volume_cur": 2111.45182508181,
+        "buy_volume_cur": 295.4899728391162,
+        "buy_amount_cur": 35090525.486688,
+        "netflow_usd": -1815.9618522426938,
+        "netflow_amount": 63476.643285006285,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 19,
+        "wallet_tag_v2": "TOP61",
+        "native_balance": "16409871",
+        "balance": 63476.643285,
+        "profit": 1815.2636810753281,
+        "realized_profit": 1814.5065924062415,
+        "profit_change": 6.102141887640448,
+        "amount_percentage": 0.00006349922170326102,
+        "unrealized_profit": 0.7570886690866538,
+        "unrealized_pnl": 1.4163804298180134,
+        "avg_cost": 0.000008420790761632046,
+        "avg_sold": 0.00006028060869534207,
+        "accu_amount": 63476.643285,
+        "accu_cost": 0.5345235313537409,
+        "cost": 0.5345235313537409,
+        "total_cost": 297.47975620692216,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233435,
+        "end_holding_at": null,
+        "last_active_timestamp": 1744244482,
+        "native_transfer": {
+            "name": null,
+            "from_address": "9tCxqcAfnJGeBeVXHmDjcstHVb76VDhkGfiZgFEMQrUU",
+            "timestamp": 1741139344
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1740693727
+    },
+    {
+        "address": "8QZhT7CSMWLDQdxSvQQUSLE7WhcTg8WhjWRyYVj2tdnB",
+        "account_address": "7rYfarrqBHpZFJCpkVjEBGnagxFQUJwuBG862Ufq5s72",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8159076.168949,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1870.55256140721,
+        "buy_volume_cur": 68.5933346809172,
+        "buy_amount_cur": 8159076.168949,
+        "netflow_usd": -1801.9592267262929,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 16,
+        "wallet_tag_v2": "TOP62",
+        "native_balance": "999487242",
+        "balance": 0,
+        "profit": 1799.6461135129605,
+        "realized_profit": 1799.6461135129605,
+        "profit_change": 25.380570695022914,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000008406997711574613,
+        "avg_sold": 0.00022926033814048372,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 70.9064478942496,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233265,
+        "end_holding_at": 1744239733,
+        "last_active_timestamp": 1744239733,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8WLdsyiBoNmBiRpAWshD4cQMNqRBUADgTvSAUuWMw8fx",
+            "timestamp": 1744060741
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744068629
+    },
+    {
+        "address": "7yFjCDzNHSX2VDxGi6xxs8FAfxxxd3zr3o6x9CDJ1iV8",
+        "account_address": "5fhz9aWrtbQ3Y23mgDu8DSkKgaCjtWi2MfTqacQbQpf3",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 7799436.287489,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2750.74826611143,
+        "buy_volume_cur": 957.53349620241,
+        "buy_amount_cur": 7799436.287489,
+        "netflow_usd": -1793.21476990902,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP63",
+        "native_balance": "6486360",
+        "balance": 0,
+        "profit": 1793.07130517746,
+        "realized_profit": 1793.07130517746,
+        "profit_change": 1.872313293857227,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0001227695773011673,
+        "avg_sold": 0.00035268552299399874,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 957.67696093397,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238035,
+        "end_holding_at": 1744240422,
+        "last_active_timestamp": 1744240422,
+        "native_transfer": {
+            "name": null,
+            "from_address": "6Ai76YzDZRbPnAgxvE798MdpQXSm21m3EGmkQKUkxpQC",
+            "timestamp": 1743934775
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743934830
+    },
+    {
+        "address": "CWkC2uRitDP3S6E4eeZEir2PEjXJXKhqdSXJABsfYjiJ",
+        "account_address": "DmfkfRWbQn2VExRt9po8YtAjuDcCCixztYNQBzPxHeo6",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 10019703.108195,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2297.06631281164,
+        "buy_volume_cur": 533.7651349875,
+        "buy_amount_cur": 10019703.108195,
+        "netflow_usd": -1763.3011778241398,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP64",
+        "native_balance": "46696590349",
+        "balance": 0,
+        "profit": 1762.98924269015,
+        "realized_profit": 1762.98924269015,
+        "profit_change": 3.301001561982639,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00005327155198350534,
+        "avg_sold": 0.00022925492781646352,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 534.07707012149,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235403,
+        "end_holding_at": 1744249233,
+        "last_active_timestamp": 1744249233,
+        "native_transfer": {
+            "name": null,
+            "from_address": "CvgM6wSDXWCZeCmZnKRQdnh4CSga3UuTXwrCXy9Ju6PC",
+            "timestamp": 1741033476
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1726956357
+    },
+    {
+        "address": "CiyBXXK1qJFB39s5HSiNCB5Z4LNERG7WvhBx6DDRWnfN",
+        "account_address": "7GWCg1pz9T4aFPesbnfEenw3PJs5zkrac2We4n2Fokj3",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8429804.850861,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2257.21679104618,
+        "buy_volume_cur": 453.8894388281246,
+        "buy_amount_cur": 8429804.850861,
+        "netflow_usd": -1803.3273522180552,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 7,
+        "sell_tx_count_cur": 10,
+        "wallet_tag_v2": "TOP65",
+        "native_balance": "21937564",
+        "balance": 0,
+        "profit": 1761.9832125180553,
+        "realized_profit": 1761.9832125180553,
+        "profit_change": 3.557883166474325,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00005384341000275533,
+        "avg_sold": 0.00026776619755505176,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 495.2335785281246,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233738,
+        "end_holding_at": 1744285915,
+        "last_active_timestamp": 1744285915,
+        "native_transfer": {
+            "name": null,
+            "from_address": "HPevZoyc3DQkvqv4R1FUt8pjwex52gQarT9Rf1Tb5TEX",
+            "timestamp": 1744222426
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744222777
+    },
+    {
+        "address": "FKXsgRJXSRRtMM5Du41ZWMhmvtrymoVnQsW8RzWgnsbX",
+        "account_address": "5r6DJn9ytsdJGHLAAArpqsFrmPS2PACviKewDG3xWAjN",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 7091989.617664,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2707.70600494047,
+        "buy_volume_cur": 928.69217913,
+        "buy_amount_cur": 7091989.617664,
+        "netflow_usd": -1779.0138258104698,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 10,
+        "wallet_tag_v2": "TOP66",
+        "native_balance": "18995003",
+        "balance": 0,
+        "profit": 1761.03645901047,
+        "realized_profit": 1761.03645901047,
+        "profit_change": 1.8602441227582143,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00013094945554022088,
+        "avg_sold": 0.00038179779595226614,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 946.66954593,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744239232,
+        "end_holding_at": 1744247894,
+        "last_active_timestamp": 1744247894,
+        "native_transfer": {
+            "name": null,
+            "from_address": "7gPFCTHs3D42uMPJ1Ks44paGUh6sAGyfEYPehsyxnbL7",
+            "timestamp": 1741302529
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1734051163
+    },
+    {
+        "address": "J7dq3SJGSmzHoXUJ3xmeeA21Gj4ecHDP4fvFAhZg1MkF",
+        "account_address": "ArLUXXDxFwRPGHrVWPSoEJjhPL6EUPF982gkYdsGu4FS",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 3744583.98849,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 3542.39405188015,
+        "buy_volume_cur": 1813.01831447464,
+        "buy_amount_cur": 3744583.98849,
+        "netflow_usd": -1729.37573740551,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP67",
+        "native_balance": "876322504",
+        "balance": 0,
+        "profit": 1727.58699546717,
+        "realized_profit": 1727.58699546717,
+        "profit_change": 0.9519397609582789,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00048417082379443113,
+        "avg_sold": 0.0009460046997927311,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1814.80705641298,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744241115,
+        "end_holding_at": 1744243107,
+        "last_active_timestamp": 1744243107,
+        "native_transfer": {
+            "name": null,
+            "from_address": "89xLcQFAJMmHbuaHLjYpYRzpG1kPbJnnLAK4ZXi9Yaxw",
+            "timestamp": 1741572370
+        },
+        "tags": [
+            "trojan"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1723195406
+    },
+    {
+        "address": "9zfBqGY8PS93J19aJtjDdJ7zkYHAUoNLh93fKPmNBY7Q",
+        "account_address": "VFATvS76Xes65jy4k1Ps32e4sVfSZPXhKBityVcYdv1",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 4970753.316182,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5623.98278746509,
+        "buy_volume_cur": 3936.29649006803,
+        "buy_amount_cur": 4979972.066186,
+        "netflow_usd": -1687.6862973970601,
+        "netflow_amount": 9218.75000400003,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 4,
+        "wallet_tag_v2": "TOP68",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 1683.538100898865,
+        "realized_profit": 1683.538100898865,
+        "profit_change": 0.42724571331717653,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0007904254155952952,
+        "avg_sold": 0.0011314145824047515,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3940.4446865662253,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744316646,
+        "end_holding_at": 1744319292,
+        "last_active_timestamp": 1744319292,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1743077222
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743077472
+    },
+    {
+        "address": "GdjWh3bJDuwDMgacZPXUyeNmN18rxcrZLNDAqd27oWq",
+        "account_address": "34f6q5m1eTBQb2rEM7jL1qi6Dx8xHF5SiGBcqr2sL2is",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 5218950.793362,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5231.49392534424,
+        "buy_volume_cur": 3588.18816242967,
+        "buy_amount_cur": 5231401.570221,
+        "netflow_usd": -1643.30576291457,
+        "netflow_amount": 12450.776859000325,
+        "buy_tx_count_cur": 8,
+        "sell_tx_count_cur": 4,
+        "wallet_tag_v2": "TOP69",
+        "native_balance": "60364914",
+        "balance": 0,
+        "profit": 1676.842407684056,
+        "realized_profit": 1676.842407684056,
+        "profit_change": 0.6398918537460389,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0006858942320266358,
+        "avg_sold": 0.0010024033819207865,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2620.5090717556836,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744307328,
+        "end_holding_at": 1744308138,
+        "last_active_timestamp": 1744308138,
+        "native_transfer": {
+            "name": null,
+            "from_address": "FpwQQhQQoEaVu3WU2qZMfF1hx48YyfwsLoRgXG83E99Q",
+            "timestamp": 1741358956
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1733892283
+    },
+    {
+        "address": "4dY6tsP3iLNp9zso6VP7oWejF99kZ2fnbmyBz5NS8ix1",
+        "account_address": "ARSn5vRuGL3DwFHXXTsWAM7jQYGHbhAAA6SWsDcCqSRE",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 13156158.885309,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 8000.09225915241,
+        "buy_volume_cur": 6335.84100541052,
+        "buy_amount_cur": 13156158.885309,
+        "netflow_usd": -1664.2512537418907,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 6,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP70",
+        "native_balance": "31311364",
+        "balance": 0,
+        "profit": 1663.31027875694,
+        "realized_profit": 1663.31027875694,
+        "profit_change": 0.2624850095683953,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0004815874496989787,
+        "avg_sold": 0.0006080872334314707,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 6336.78198039547,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744251862,
+        "end_holding_at": 1744252918,
+        "last_active_timestamp": 1744252918,
+        "native_transfer": {
+            "name": null,
+            "from_address": "7CFGb6NtQAubUkqUC7hrtn5s5dXw6tFJzfALsBqe42BL",
+            "timestamp": 1739464536
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1733637002
+    },
+    {
+        "address": "DSpTjoM1DfgiqG9JQKRso9yK42G23YzG7XbFnidAZsHd",
+        "account_address": "7dfQ2A6KMd7DpnbjvZ5HmRnnEBZjiJcxQp4QwkyKhUq7",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 10227406.206362,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4471.88566454986,
+        "buy_volume_cur": 2742.46055710514,
+        "buy_amount_cur": 10227406.206362,
+        "netflow_usd": -1729.4251074447197,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 9,
+        "wallet_tag_v2": "TOP71",
+        "native_balance": "49455052878",
+        "balance": 0,
+        "profit": 1659.80865274472,
+        "realized_profit": 1659.80865274472,
+        "profit_change": 0.5902429577059302,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00026814819923737666,
+        "avg_sold": 0.00043724533614085897,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 2812.07701180514,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744241048,
+        "end_holding_at": 1744241535,
+        "last_active_timestamp": 1744241535,
+        "native_transfer": {
+            "name": null,
+            "from_address": "5PfNLToyYBYyj16dkT1SrRzcRYzzNWPk8AdtDntR78pQ",
+            "timestamp": 1739312120
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739322243
+    },
+    {
+        "address": "BgsvoKuVJQhhMe8SpFc1f3QgHU5BTddPVU68xdUfra9v",
+        "account_address": "5ftKu1U4MEdGgvakEJseaamSz6nbiTbkAU4XhBcvJVan",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 30803268.278763,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2256.62645600423,
+        "buy_volume_cur": 598.67185258,
+        "buy_amount_cur": 30803268.278763,
+        "netflow_usd": -1657.95460342423,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP72",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 1653.10489125423,
+        "realized_profit": 1653.10489125423,
+        "profit_change": 2.739098298731056,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000019435335470319173,
+        "avg_sold": 0.0000732593189651904,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 603.52156475,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744234600,
+        "end_holding_at": 1744235422,
+        "last_active_timestamp": 1744235422,
+        "native_transfer": {
+            "name": "Kraken",
+            "from_address": "FWznbcNXWQuHTawe9RxvQ2LdCENssh12dsznf4RiouN5",
+            "timestamp": 1743126796
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743127161
+    },
+    {
+        "address": "5Ct3642t3vDuj1YaUG8rMRdS534TwdkA9B9sGnKG7xhg",
+        "account_address": "13SQnEdpyDMxwW9mZuGo7WPvS82LiodjGNChX73ypCvH",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 1876177.779166,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2124.73293972213,
+        "buy_volume_cur": 1790.167016276585,
+        "buy_amount_cur": 5915068.24471,
+        "netflow_usd": -334.5659234455452,
+        "netflow_amount": 4038890.4655440003,
+        "buy_tx_count_cur": 16,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP73",
+        "native_balance": "89409490",
+        "balance": 0,
+        "profit": 1617.8429942208106,
+        "realized_profit": 1617.8429942208106,
+        "profit_change": 3.1917046463029513,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0003026452007341721,
+        "avg_sold": 0.0011324795354236729,
+        "accu_amount": 4038890.465544,
+        "accu_cost": 1286.4822440526757,
+        "cost": 0,
+        "total_cost": 506.8899455013193,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237965,
+        "end_holding_at": null,
+        "last_active_timestamp": 1744317757,
+        "native_transfer": {
+            "name": null,
+            "from_address": "89x3Zrmzc74HZViT8JgTEq7zeXZbicTo7ULhM9Y3rwVZ",
+            "timestamp": 1740337747
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739207399
+    },
+    {
+        "address": "GPYyAP86kvdcWjEWhQMuX6hGHC6uzdXfDY8P6JGzYsRJ",
+        "account_address": "58cCzmNuBjRKmGA4Y6VUw1WtnfFzdD9NoyDdrB3feXuw",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 7673461.7388,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 6313.87259043856,
+        "buy_volume_cur": 4332.30492939664,
+        "buy_amount_cur": 7677456.301038,
+        "netflow_usd": -1981.5676610419205,
+        "netflow_amount": 3994.562237999402,
+        "buy_tx_count_cur": 8,
+        "sell_tx_count_cur": 5,
+        "wallet_tag_v2": "TOP74",
+        "native_balance": "261315053",
+        "balance": 0,
+        "profit": 1615.6262864653597,
+        "realized_profit": 1615.6262864653597,
+        "profit_change": 0.4363053150112968,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005642891029950777,
+        "avg_sold": 0.000822819322668043,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3702.9718201428004,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744299585,
+        "end_holding_at": 1744307479,
+        "last_active_timestamp": 1744842215,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1744024085
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744024129
+    },
+    {
+        "address": "2ZE27iHjiXJTukHzGLFDvary6jySzg6SAXgSqXYFyzb3",
+        "account_address": "8jQLm9hQfMNWXBQErp9XAPjHvrGtbih6StRv1N5Re7Tu",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 2242917.68285,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1912.31977992864,
+        "buy_volume_cur": 307.525600004415,
+        "buy_amount_cur": 2253665.569217,
+        "netflow_usd": -1604.7941799242249,
+        "netflow_amount": 10747.886367000174,
+        "buy_tx_count_cur": 5,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP75",
+        "native_balance": "34588912",
+        "balance": 0,
+        "profit": 1606.525679987229,
+        "realized_profit": 1606.525679987229,
+        "profit_change": 5.253618955679765,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00013645573868853125,
+        "avg_sold": 0.0008526036396925274,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 305.79409994141093,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744306504,
+        "end_holding_at": 1744329925,
+        "last_active_timestamp": 1744329925,
+        "native_transfer": {
+            "name": null,
+            "from_address": "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
+            "timestamp": 1743693657
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743694571
+    },
+    {
+        "address": "3umg33D1iLR3k6RnEt3VSsEuAx2o4jsccyqJCcSSotH6",
+        "account_address": "3T8kaqDb45cfYKFF5UP3vsEDCmB8Vi9XcgtDzxvX5cHL",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 12310954.791212,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1962.54249415417,
+        "buy_volume_cur": 357.0923755011649,
+        "buy_amount_cur": 12310954.791212,
+        "netflow_usd": -1605.4501186530051,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP76",
+        "native_balance": "4251309",
+        "balance": 0,
+        "profit": 1595.440291503005,
+        "realized_profit": 1595.440291503005,
+        "profit_change": 4.346038460082616,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000029006066674541783,
+        "avg_sold": 0.00015941432061427949,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 367.1022026511649,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235046,
+        "end_holding_at": 1744238778,
+        "last_active_timestamp": 1744238778,
+        "native_transfer": {
+            "name": "Kucoin Wallet",
+            "from_address": "BmFdpraQhkiDQE6SnfG5omcA1VwzqfXrwtNYBwWTymy6",
+            "timestamp": 1742861984
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742863708
+    },
+    {
+        "address": "2c9YvjSncWXS8wXT2mjaew9XmA8w5ZAyTsktQSoamN1B",
+        "account_address": "C32QNa5ts2HuUrtK1s4nyVq3bvGwfeLKaeMuDmAdo9ao",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 1859674.58286,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1948.38588107372,
+        "buy_volume_cur": 354.2442914936,
+        "buy_amount_cur": 1859674.58286,
+        "netflow_usd": -1594.14158958012,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 1,
+        "wallet_tag_v2": "TOP77",
+        "native_balance": "149683751",
+        "balance": 0,
+        "profit": 1594.11416426088,
+        "realized_profit": 1594.11416426088,
+        "profit_change": 4.4996935645953435,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00019048724694016437,
+        "avg_sold": 0.0010477025921800203,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 354.27171681284,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744239052,
+        "end_holding_at": 1744242378,
+        "last_active_timestamp": 1744242378,
+        "native_transfer": {
+            "name": null,
+            "from_address": "7tpniqVcw4tRHbL6A4ewzL3LwJVQXZ7AVfu3qz6jDoxF",
+            "timestamp": 1740983923
+        },
+        "tags": [
+            "trojan"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1740983972
+    },
+    {
+        "address": "7BVpH77rgXUt5mKcxtE6oZ9WmPUoDhUk2dfvpVYUM5FX",
+        "account_address": "CcMNaUiry8mxZVbnPqBWvh2gCSNWq6EQELzXhiweVgtf",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8029346.446536,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 6347.7067503924,
+        "buy_volume_cur": 4761.2960262368,
+        "buy_amount_cur": 8029346.446536,
+        "netflow_usd": -1586.4107241556003,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP78",
+        "native_balance": "18008084050",
+        "balance": 0,
+        "profit": 1586.30044837962,
+        "realized_profit": 1586.30044837962,
+        "profit_change": 0.3331579679955156,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005929867465478346,
+        "avg_sold": 0.0007905633157890342,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 4761.40630201278,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744242010,
+        "end_holding_at": 1744242222,
+        "last_active_timestamp": 1744242222,
+        "native_transfer": {
+            "name": null,
+            "from_address": "4aucjnm5ugVb9WNFTANQMJZCuf5Rnn88R3GS4zmsYExB",
+            "timestamp": 1741383996
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1709130433
+    },
+    {
+        "address": "9BL22zdWyGy7W5bCWf6pN21GzRLiiHuz9VnjJmWejWv8",
+        "account_address": "BLHvwKw5MGg6xUEdPo828KCyfeJyHiVjsvxvhVs6xunZ",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 1979264.074728,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2749.5893404976,
+        "buy_volume_cur": 1168.32427532163,
+        "buy_amount_cur": 1979264.074728,
+        "netflow_usd": -1581.26506517597,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 1,
+        "wallet_tag_v2": "TOP79",
+        "native_balance": "6134358970",
+        "balance": 0,
+        "profit": 1581.25943906345,
+        "realized_profit": 1581.25943906345,
+        "profit_change": 1.3534357351655726,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005902821610512921,
+        "avg_sold": 0.0013891978213546174,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1168.32990143415,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744268456,
+        "end_holding_at": 1744319715,
+        "last_active_timestamp": 1744319715,
+        "native_transfer": {
+            "name": null,
+            "from_address": "A7yHKp89z1xcuzBMZZ4uro2Hud1hjaenJpWmHTUcsVQj",
+            "timestamp": 1741336891
+        },
+        "tags": [
+            "trojan"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1741100145
+    },
+    {
+        "address": "9MAqghA2N4BGCBRqUQDivNFH8AScnCg7VN7Qq11R5LHJ",
+        "account_address": "DjyPJSgMw4PzRPV4ZTp89PyQ5XE55oSUg3rAxuGtHm89",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 11855549.411648,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2050.14239990357,
+        "buy_volume_cur": 477.37999595,
+        "buy_amount_cur": 11855549.411648,
+        "netflow_usd": -1572.7624039535701,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP80",
+        "native_balance": "16652984280",
+        "balance": 0,
+        "profit": 1572.61789882674,
+        "realized_profit": 1572.61789882674,
+        "profit_change": 3.2932716442411776,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00004026637478993401,
+        "avg_sold": 0.0001729268150060864,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 477.52450107683,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744239714,
+        "end_holding_at": 1744241883,
+        "last_active_timestamp": 1744241883,
+        "native_transfer": {
+            "name": null,
+            "from_address": "DYEJxsZaGTJKCFXvQk6VXm5RACz4CDugLdEmSzei6cFh",
+            "timestamp": 1741363167
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1731621451
+    },
+    {
+        "address": "5mhnSBfYXguoGRLtnbD7tHXeTeCsMzhzd4CX5PwC1UC2",
+        "account_address": "EtcMZXN16dkFDSR2Bpy7zCGqa6wYvbKoduksD3BHFB2s",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 21551544.304732,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 16629.4855016777,
+        "buy_volume_cur": 15360.65842461998,
+        "buy_amount_cur": 21737236.254609,
+        "netflow_usd": -1268.82707705772,
+        "netflow_amount": 185691.94987700135,
+        "buy_tx_count_cur": 8,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP81",
+        "native_balance": "1089290",
+        "balance": 0,
+        "profit": 1563.6890983157111,
+        "realized_profit": 1563.6890983157111,
+        "profit_change": 0.13725409792808527,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0007066518597258665,
+        "avg_sold": 0.0007716145658307382,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 11392.658739668459,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744271461,
+        "end_holding_at": 1744289090,
+        "last_active_timestamp": 1744289090,
+        "native_transfer": {
+            "name": null,
+            "from_address": "6YbgpW8f974ZJvM4x9gAkz2PLt1acbLQP897FxMQ4XLy",
+            "timestamp": 1744214840
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744214890
+    },
+    {
+        "address": "AJHfZbWYi7bQnnPQ9q7rsJq7QxNBQFaeuGAe2K48EMDS",
+        "account_address": "CdrneX6DbxP1GfBBvBu573ZRiA87Vmfz1pGq3Pi4jRBP",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 80781054.925969,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 39191.97196181173,
+        "buy_volume_cur": 37637.15424765037,
+        "buy_amount_cur": 80781054.925969,
+        "netflow_usd": -1554.8177141613633,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 91,
+        "sell_tx_count_cur": 91,
+        "wallet_tag_v2": "TOP82",
+        "native_balance": "8795622362",
+        "balance": 0,
+        "profit": 1554.25472840136,
+        "realized_profit": 1554.25472840136,
+        "profit_change": 0.041295138033017424,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000465915607095532,
+        "avg_sold": 0.00048516291347926594,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 37637.71723341037,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744695837,
+        "end_holding_at": 1744695843,
+        "last_active_timestamp": 1744695843,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8Ra3wFw89RNm4XtZ1DrDQLzbE5jsqWjgKyyBy62H6Cnj",
+            "timestamp": 1741547473
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1711922124
+    },
+    {
+        "address": "Hzg2nANXc8i8ZYoBdMp9EQLprsCeE5dSUTMVVGQjKLaL",
+        "account_address": "8YhzjtoLZWWxvGxgLtBS5xiG1Xigwcv7e6ZTZQrAaWXZ",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 8220621.539616,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5874.78548070404,
+        "buy_volume_cur": 4331.65705344021,
+        "buy_amount_cur": 8220621.539616,
+        "netflow_usd": -1543.1284272638304,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 19,
+        "sell_tx_count_cur": 7,
+        "wallet_tag_v2": "TOP83",
+        "native_balance": "15023811",
+        "balance": 0,
+        "profit": 1537.69569293106,
+        "realized_profit": 1537.69569293106,
+        "profit_change": 0.35454550589800904,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0005269257357932755,
+        "avg_sold": 0.0007146400612645722,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 4337.08978777298,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744304208,
+        "end_holding_at": 1744367545,
+        "last_active_timestamp": 1744367545,
+        "native_transfer": {
+            "name": null,
+            "from_address": "hQYXZy9Qw3w1yg1jcNYUaF8hJVvjTz54FEf2ii68j1D",
+            "timestamp": 1743494193
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": "凯胜Fayu👾",
+        "avatar": "https://pbs.twimg.com/profile_images/1909210394335571968/c2tPz69F.jpg",
+        "twitter_username": "xiaox1082985",
+        "twitter_name": "凯胜Fayu👾",
+        "created_at": 1743504577
+    },
+    {
+        "address": "212LkvYyQbwVsUj7qTA1o9dEM4whSVuJCUQmegrBQxwp",
+        "account_address": "3ainGm2o4LEW3VpMwLR9bkGzEvftdDeeW7z5tn4hFAz8",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 2777252.942088,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1634.59313172121,
+        "buy_volume_cur": 107.78873439635,
+        "buy_amount_cur": 2777252.942088,
+        "netflow_usd": -1526.80439732486,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP84",
+        "native_balance": "7497914",
+        "balance": 0,
+        "profit": 1525.40096877486,
+        "realized_profit": 1525.40096877486,
+        "profit_change": 13.969875928956037,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000038811277418365804,
+        "avg_sold": 0.0005885647313392661,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 109.19216294635,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744234981,
+        "end_holding_at": 1744377715,
+        "last_active_timestamp": 1744377715,
+        "native_transfer": {
+            "name": "MEXC",
+            "from_address": "ASTyfSima4LLAdDgoFGkgqoKowG1LZFDr9fAQrg7iaJZ",
+            "timestamp": 1741298109
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1731474924
+    },
+    {
+        "address": "HhCiLgLouRqPBVNc8RMvHhzhfEC3SKZbXWCw46Gi8ykt",
+        "account_address": "7JhBJEhDTcmsfa7BBVQJB9y7QpbnMi46rdWe4acMVnx8",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 26500551.046027,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4735.81743378039,
+        "buy_volume_cur": 3237.603941971065,
+        "buy_amount_cur": 26715165.811336,
+        "netflow_usd": -1498.2134918093252,
+        "netflow_amount": 214614.76530899853,
+        "buy_tx_count_cur": 24,
+        "sell_tx_count_cur": 23,
+        "wallet_tag_v2": "TOP85",
+        "native_balance": "50445382",
+        "balance": 0,
+        "profit": 1522.6212938177198,
+        "realized_profit": 1522.6212938177198,
+        "profit_change": 0.4738650326635239,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00012118973787530295,
+        "avg_sold": 0.00017870637578649108,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3213.1961399626703,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744237113,
+        "end_holding_at": 1744493829,
+        "last_active_timestamp": 1744493829,
+        "native_transfer": {
+            "name": null,
+            "from_address": "7Ci23i82UMa8RpfVbdMjTytiDi2VoZS8uLyHhZBV2Qy7",
+            "timestamp": 1741443892
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1727779702
+    },
+    {
+        "address": "HFNjm5tH3wgTSNLdLrZ3BQhXnTVUa65n9f5x8zPaVcHR",
+        "account_address": "9mthjT17hME1z7bvDsVcA6JxihPNzqDMe32bFwoQzsyS",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 2719707.202745,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1748.54507245882,
+        "buy_volume_cur": 236.91199934872,
+        "buy_amount_cur": 2719707.202745,
+        "netflow_usd": -1511.6330731101,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 22,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP86",
+        "native_balance": "58237644",
+        "balance": 0,
+        "profit": 1511.6313305101,
+        "realized_profit": 1511.6313305101,
+        "profit_change": 6.380513507052253,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00008710937674085091,
+        "avg_sold": 0.0006429166605486111,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 236.91374194872,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235753,
+        "end_holding_at": 1744271006,
+        "last_active_timestamp": 1744271006,
+        "native_transfer": {
+            "name": null,
+            "from_address": "DLaPCJZ4a2joM2uqHMgjdacLHGsbT8maDDAdfXasMx7x",
+            "timestamp": 1741511834
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1740851956
+    },
+    {
+        "address": "J23qr98GjGJJqKq9CBEnyRhHbmkaVxtTJNNxKu597wsA",
+        "account_address": "6AMrrTHWwaNNRuRboRCumvoZdC4j5T761JDSCqfXJY6F",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 29338759.510715,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 15126.19616750054,
+        "buy_volume_cur": 13615.15008583354,
+        "buy_amount_cur": 29338759.510715,
+        "netflow_usd": -1511.0460816670002,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 21,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP87",
+        "native_balance": "532683531647",
+        "balance": 0,
+        "profit": 1510.344717067,
+        "realized_profit": 1510.344717067,
+        "profit_change": 0.11092546966784875,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00046406699918110245,
+        "avg_sold": 0.000515570406512116,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 13615.85145043354,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744417955,
+        "end_holding_at": 1744436479,
+        "last_active_timestamp": 1744436479,
+        "native_transfer": {
+            "name": null,
+            "from_address": "Ap9f2SQnaUpCJbZRGfEj5XTWVQnaQa2BHqUea9tbVJWb",
+            "timestamp": 1743758079
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743760117
+    },
+    {
+        "address": "3sW6EhNgfTV5xqtEpb4tsMNmCioTZtPv27prhpEpLBKW",
+        "account_address": "DSfJ94UxtrrtFtJNDwgtssSwAWH31wPgxXFzahvtVyyU",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 1597129.376577,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1744.13149808643,
+        "buy_volume_cur": 234.91499445889,
+        "buy_amount_cur": 1597129.376577,
+        "netflow_usd": -1509.2165036275399,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP88",
+        "native_balance": "43501966",
+        "balance": 0,
+        "profit": 1507.85520378764,
+        "realized_profit": 1507.85520378764,
+        "profit_change": 6.381745609573673,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00014708576393627208,
+        "avg_sold": 0.001092041461177358,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 236.27629429879,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235676,
+        "end_holding_at": 1744317309,
+        "last_active_timestamp": 1744317309,
+        "native_transfer": {
+            "name": null,
+            "from_address": "DhEsUaJkT1DzkFUWLCkU21VruJQZk1es4zBRhU9QjK9R",
+            "timestamp": 1741561738
+        },
+        "tags": [
+            "gmgn"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1738038286
+    },
+    {
+        "address": "9JMukzEHPQyNAXBZsMcYnuTqhdTRwScdXKW78ENtBtnN",
+        "account_address": "7J1SDyBTd8i7JAHcDuWkEZna3npQSc9jV8wjyB6PT1fH",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 2241476.286822,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1847.94990670404,
+        "buy_volume_cur": 369.62166347598,
+        "buy_amount_cur": 2241476.286822,
+        "netflow_usd": -1478.3282432280598,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP89",
+        "native_balance": "21700583165",
+        "balance": 0,
+        "profit": 1478.30205038198,
+        "realized_profit": 1478.30205038198,
+        "profit_change": 3.9992171605994438,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00016490099210464336,
+        "avg_sold": 0.0008244342880486556,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 369.64785632206,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744238573,
+        "end_holding_at": 1744289176,
+        "last_active_timestamp": 1744289176,
+        "native_transfer": {
+            "name": "MEXC",
+            "from_address": "ASTyfSima4LLAdDgoFGkgqoKowG1LZFDr9fAQrg7iaJZ",
+            "timestamp": 1741381143
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1709657174
+    },
+    {
+        "address": "JDauw8114A4ZRYEqet6NaMw132Av63awQDwzTHBK6t2Y",
+        "account_address": "DGRSdrcqQtpYzyKjvX19BPJ2qcMscAofUK1e5HWqmcjX",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 4956771.210098,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4991.23631139854,
+        "buy_volume_cur": 3514.63588685,
+        "buy_amount_cur": 4956771.210098,
+        "netflow_usd": -1476.60042454854,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 2,
+        "sell_tx_count_cur": 2,
+        "wallet_tag_v2": "TOP90",
+        "native_balance": "609260953924",
+        "balance": 0,
+        "profit": 1476.53192459854,
+        "realized_profit": 1476.53192459854,
+        "profit_change": 0.4201013121171377,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0007090575170566552,
+        "avg_sold": 0.001006953135385859,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3514.7043868,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744245152,
+        "end_holding_at": 1744321809,
+        "last_active_timestamp": 1744321809,
+        "native_transfer": {
+            "name": "Kraken",
+            "from_address": "FWznbcNXWQuHTawe9RxvQ2LdCENssh12dsznf4RiouN5",
+            "timestamp": 1742935505
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742935510
+    },
+    {
+        "address": "ESZERcwH15AHRVyeapZer1xFQqb11JyhYuEjPukHvBge",
+        "account_address": "96ZL6npzPs2pPEVAatcxzbRwhK79hnqBnhScWtybup46",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 64972168.050518,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 43220.68271285223,
+        "buy_volume_cur": 41760.63473128271,
+        "buy_amount_cur": 64972168.050518,
+        "netflow_usd": -1460.0479815695144,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 324,
+        "sell_tx_count_cur": 160,
+        "wallet_tag_v2": "TOP91",
+        "native_balance": "15394269722",
+        "balance": 0,
+        "profit": 1452.6260233869082,
+        "realized_profit": 1452.6260233869082,
+        "profit_change": 0.03477839618411759,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0006427465172289225,
+        "avg_sold": 0.0006652184159723087,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 41768.056689465324,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744429306,
+        "end_holding_at": 1744441513,
+        "last_active_timestamp": 1744441513,
+        "native_transfer": {
+            "name": "Binance",
+            "from_address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
+            "timestamp": 1736760950
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1730449335
+    },
+    {
+        "address": "4SZMxa8ub3k4HWUPzfBjwtySMbzBhsSPxCnEtWBJDRYT",
+        "account_address": "sCgziVmUNbfRUwvMVTCjwk21uR4TWyhitVtkffkZTdY",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 24877830.074836,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1556.71274921087,
+        "buy_volume_cur": 107.0980895504581,
+        "buy_amount_cur": 24877830.074836,
+        "netflow_usd": -1449.614659660412,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP92",
+        "native_balance": "1591840",
+        "balance": 0,
+        "profit": 1448.895562060412,
+        "realized_profit": 1448.895562060412,
+        "profit_change": 13.438447063532541,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.000004304961052804526,
+        "avg_sold": 0.00006257429785990417,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 107.8171871504581,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233113,
+        "end_holding_at": 1744236905,
+        "last_active_timestamp": 1744236905,
+        "native_transfer": {
+            "name": null,
+            "from_address": "FpwQQhQQoEaVu3WU2qZMfF1hx48YyfwsLoRgXG83E99Q",
+            "timestamp": 1744232430
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744233113
+    },
+    {
+        "address": "b5ykzQX5bJt7QsGw859Sd9vQBvcT11bHzm4Rso5ZB5A",
+        "account_address": "AK8LXyZC4v51NNfd66Nh5zzTkmyULJwMJFEhtzHvbWCy",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 113755892.419964,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 19560.82327153001,
+        "buy_volume_cur": 18130.39775365977,
+        "buy_amount_cur": 113755892.419964,
+        "netflow_usd": -1430.4255178702406,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 135,
+        "sell_tx_count_cur": 103,
+        "wallet_tag_v2": "TOP93",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 1426.05231902024,
+        "realized_profit": 1426.05231902024,
+        "profit_change": 0.07863635679516982,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00015937985600540119,
+        "avg_sold": 0.00017195437401444985,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 18134.77095250977,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744728367,
+        "end_holding_at": 1744732370,
+        "last_active_timestamp": 1744732370,
+        "native_transfer": {
+            "name": null,
+            "from_address": "8fPB5RQr45kG32DDcPSi8uu2T6CaFpqMRk9d9pxMuynL",
+            "timestamp": 1741501029
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1731337895
+    },
+    {
+        "address": "HUWPh1oh5w4abnhnYdqqFeiha72aKDVCrQhWHEUECuid",
+        "account_address": "FvkWbA8R29u6S1t5V4nBRnHp5NrBpYQuZp87HYAXDcKe",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 2058845.612963,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1679.90906653829,
+        "buy_volume_cur": 257.15763344245,
+        "buy_amount_cur": 2058845.612963,
+        "netflow_usd": -1422.7514330958402,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 6,
+        "wallet_tag_v2": "TOP94",
+        "native_balance": "275815750",
+        "balance": 0,
+        "profit": 1422.68364869584,
+        "realized_profit": 1422.68364869584,
+        "profit_change": 5.530882836653533,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0001249037964883438,
+        "avg_sold": 0.0008159470802284387,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 257.22541784245,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744235663,
+        "end_holding_at": 1744242770,
+        "last_active_timestamp": 1744242770,
+        "native_transfer": {
+            "name": null,
+            "from_address": "CLZrqiwaTAmwjbooi61aN3re96NMmMGpoNTQqaQVogpa",
+            "timestamp": 1741567184
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1710449387
+    },
+    {
+        "address": "AKynjwAfRkyvt3VhsX3hJWvPyGTaiCgsEEJjkzxzpjHT",
+        "account_address": "51Z6MhvZXvs62bvySKyWD6QCcwJjjuyEBSjWoGV4pFi6",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 4443928.429677,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 4935.20283327157,
+        "buy_volume_cur": 3513.33800454299,
+        "buy_amount_cur": 4443928.429677,
+        "netflow_usd": -1421.86482872858,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 7,
+        "sell_tx_count_cur": 9,
+        "wallet_tag_v2": "TOP95",
+        "native_balance": "0",
+        "balance": 0,
+        "profit": 1409.61078627858,
+        "realized_profit": 1409.61078627858,
+        "profit_change": 0.3998224319461039,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.0007905928414779513,
+        "avg_sold": 0.00111054957598187,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3525.59204699299,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744242715,
+        "end_holding_at": 1744315552,
+        "last_active_timestamp": 1744315552,
+        "native_transfer": {
+            "name": null,
+            "from_address": "4TQuiveJrwh5DfHdnLoWznaTbydyXPmz4gJVYY4yARLa",
+            "timestamp": 1742253572
+        },
+        "tags": [
+            "photon"
+        ],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1742254527
+    },
+    {
+        "address": "FymDcKRqU9xgY68kaHv868rF8yZDGmiiuYnQWEepc8v3",
+        "account_address": "7JW43gq69LdQYuJWmZzbfc5pmDikJRHPQLjLAnWLkrHG",
+        "addr_type": 0,
+        "amount_cur": 1374337.760612,
+        "usd_value": 27.964796612864717,
+        "cost_cur": 307.45515643012,
+        "sell_amount_cur": 1761101.562976,
+        "sell_amount_percentage": 0.5616761739661752,
+        "sell_volume_cur": 1486.47308972006,
+        "buy_volume_cur": 385.73918520544,
+        "buy_amount_cur": 3135439.323588,
+        "netflow_usd": -1100.73390451462,
+        "netflow_amount": 1374337.7606120002,
+        "buy_tx_count_cur": 4,
+        "sell_tx_count_cur": 1,
+        "wallet_tag_v2": "TOP96",
+        "native_balance": "1624679942",
+        "balance": 1374337.760612,
+        "profit": 1127.9844664274847,
+        "realized_profit": 1407.47482624474,
+        "profit_change": 2.918810931220346,
+        "amount_percentage": 0.0013748266077089032,
+        "unrealized_profit": -279.49035981725524,
+        "unrealized_pnl": -0.9090443076721638,
+        "avg_cost": 0.0001230255620969964,
+        "avg_sold": 0.0008440586965399891,
+        "accu_amount": 1374337.760612,
+        "accu_cost": 307.45515643012,
+        "cost": 307.45515643012,
+        "total_cost": 386.45341990544,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744247345,
+        "end_holding_at": null,
+        "last_active_timestamp": 1744496682,
+        "native_transfer": {
+            "name": "Coinbase Hot Wallet",
+            "from_address": "GJRs4FwHtemZ5ZE9x3FNvJ8TMwitKTh21yxdRPqn7npE",
+            "timestamp": 1735139174
+        },
+        "tags": [
+            "gmgn",
+            "bluechip_owner"
+        ],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1710818417
+    },
+    {
+        "address": "4TqKeTKGAhe9WjnXXpK5EYHVK7b4FnGw3LLCbYKYhgqP",
+        "account_address": "8dMVJy4pPRDdvJDKbRTfCg458dACVxqdh67rCCWrmZrY",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 24289538.672967,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 5262.47787297732,
+        "buy_volume_cur": 3854.888346072637,
+        "buy_amount_cur": 24289538.672967,
+        "netflow_usd": -1407.5895269046828,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 12,
+        "sell_tx_count_cur": 9,
+        "wallet_tag_v2": "TOP97",
+        "native_balance": "990103",
+        "balance": 0,
+        "profit": 1406.510763154683,
+        "realized_profit": 1406.510763154683,
+        "profit_change": 0.3647621266197414,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00015870570445880588,
+        "avg_sold": 0.00021665614748106292,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 3855.967109822637,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744241435,
+        "end_holding_at": 1744243722,
+        "last_active_timestamp": 1744243722,
+        "native_transfer": {
+            "name": null,
+            "from_address": "38R9NHMVjgGasZQudCWNiiUGbQwt5vnHnA7zFhqiH6s1",
+            "timestamp": 1737135123
+        },
+        "tags": [
+            "bullx"
+        ],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1736546825
+    },
+    {
+        "address": "9xwHqZeTEZYXy2ivhZoKqtnwy5qGFZq9eBS6pXQM33YA",
+        "account_address": "UydD7cbm7WLoxJE6Z4QeANYkFym5HGLugNsrsDueKzh",
+        "addr_type": 0,
+        "amount_cur": 2608212.342246,
+        "usd_value": 53.0714717767728,
+        "cost_cur": 15.043379007913174,
+        "sell_amount_cur": 7772732.303508,
+        "sell_amount_percentage": 0.7487499999999704,
+        "sell_volume_cur": 1400.90880252929,
+        "buy_volume_cur": 59.87414530512,
+        "buy_amount_cur": 10380944.645754,
+        "netflow_usd": -1341.03465722417,
+        "netflow_amount": 2608212.3422459997,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 3,
+        "wallet_tag_v2": "TOP98",
+        "native_balance": "427198479",
+        "balance": 2608212.342246,
+        "profit": 1393.2255424723528,
+        "realized_profit": 1355.1974497034932,
+        "profit_change": 22.93196760847714,
+        "amount_percentage": 0.002609140074182177,
+        "unrealized_profit": 38.02809276885963,
+        "unrealized_pnl": 2.5278956774841577,
+        "avg_cost": 0.0000057676971940708345,
+        "avg_sold": 0.0001802337643735691,
+        "accu_amount": 2608212.342246,
+        "accu_cost": 15.043379007913174,
+        "cost": 15.043379007913174,
+        "total_cost": 60.754731833710004,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233230,
+        "end_holding_at": null,
+        "last_active_timestamp": 1744242188,
+        "native_transfer": {
+            "name": null,
+            "from_address": "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
+            "timestamp": 1741286708
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "diamond_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1739736021
+    },
+    {
+        "address": "7nYXJ2BKF3sh9KD4ezt2LKiRGYRcqgrBMxVW7VTXtvFE",
+        "account_address": "6Az7BHfGBRDMnySaEPQsRXTkEXehAPSjZHnF9Dw9s1or",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 17017082.864278,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 2594.8669926927,
+        "buy_volume_cur": 1240.5844508506534,
+        "buy_amount_cur": 17017082.864278,
+        "netflow_usd": -1354.2825418420466,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 3,
+        "sell_tx_count_cur": 4,
+        "wallet_tag_v2": "TOP99",
+        "native_balance": "990103",
+        "balance": 0,
+        "profit": 1353.8938547680066,
+        "realized_profit": 1353.8938547680066,
+        "profit_change": 1.0909936834186056,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00007290229828138578,
+        "avg_sold": 0.00015248600558558748,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 1240.9731379246934,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744240938,
+        "end_holding_at": 1744241297,
+        "last_active_timestamp": 1744241297,
+        "native_transfer": {
+            "name": "Kraken",
+            "from_address": "FWznbcNXWQuHTawe9RxvQ2LdCENssh12dsznf4RiouN5",
+            "timestamp": 1743434349
+        },
+        "tags": [],
+        "maker_token_tags": [
+            "paper_hands"
+        ],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1743438344
+    },
+    {
+        "address": "H2nyp6uEzFtjiT8cTAhs8uoFFu6gnmQcsN5HuJnrHZUM",
+        "account_address": "E4eDK8No4EyGS6cszTFFSi5SnufS4C7PXqx93fYUWUdo",
+        "addr_type": 0,
+        "amount_cur": 0,
+        "usd_value": 0,
+        "cost_cur": 0,
+        "sell_amount_cur": 7798296.48646,
+        "sell_amount_percentage": 1,
+        "sell_volume_cur": 1416.52358141452,
+        "buy_volume_cur": 68.5933346809172,
+        "buy_amount_cur": 7798296.48646,
+        "netflow_usd": -1347.9302467336029,
+        "netflow_amount": 0,
+        "buy_tx_count_cur": 1,
+        "sell_tx_count_cur": 10,
+        "wallet_tag_v2": "TOP100",
+        "native_balance": "1057555981",
+        "balance": 0,
+        "profit": 1346.3428879780954,
+        "realized_profit": 1346.3428879780954,
+        "profit_change": 19.183949631357297,
+        "amount_percentage": 0,
+        "unrealized_profit": 0,
+        "unrealized_pnl": null,
+        "avg_cost": 0.00000879593829242248,
+        "avg_sold": 0.00018164525853486038,
+        "accu_amount": 0,
+        "accu_cost": 0,
+        "cost": 0,
+        "total_cost": 70.1806934364245,
+        "transfer_in": false,
+        "is_new": false,
+        "is_suspicious": false,
+        "start_holding_at": 1744233265,
+        "end_holding_at": 1744239092,
+        "last_active_timestamp": 1744239092,
+        "native_transfer": {
+            "name": null,
+            "from_address": "EZT2kab6RcWxb3iX2xkzP7nrtGNrdUE9qxYwXQwUfY9t",
+            "timestamp": 1744041014
+        },
+        "tags": [],
+        "maker_token_tags": [],
+        "name": null,
+        "avatar": null,
+        "twitter_username": null,
+        "twitter_name": null,
+        "created_at": 1744045337
+    }
+]

BIN
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/top_trader_gmgn_8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump_1745225098.xlsx


BIN
src/library/analysis_token/8kKdLb7tWxuZHCyt9mx83Ei8pV9YTWJULMLcFWuqpump/汇总add.xlsx


+ 6 - 1
src/library/analysis_token/exclude_add.csv

@@ -31,4 +31,9 @@ j1oeQoPeuEDmjvyMwBmCWexzCQup77kbKKxV59CnYbd,jupiter limit order taker account
 53owRWHqDocPYVtVxAQJSTE7rY6QWyWfDNAnWg5VpF9z,Pump.fun (JIANKUI) Bonding Curve
 H3oWNGDfr5pSPDM3eDYpLiT7WsUiUF8ee8WmepovDAGt,Meteora (JIANKUI-WSOL) Market
 BgYAdyHRjkQ4qaPMyt2SL53MNgfDFF6hiYy7tzwfDrtW,Raydium (WSOL-JIANKUI) Market
-8AcbTJPF2dyvabhjY8oz89SQWZArBeZzLHXnYWYWUzue,Meteora (JIANKUI-WSOL) Market
+8AcbTJPF2dyvabhjY8oz89SQWZArBeZzLHXnYWYWUzue,Meteora (JIANKUI-WSOL) Market
+GYnvxtWpHeWH6ndcjL4iz4DnMx6KXutHBKwNdzMpTTof,Pump.fun AMM (TRUMPCOIN-WSOL)
+8SpTECa5sR7JwjVYq37YXUoVFMb6cogg6vdvvUeyscet,Raydium (WSOL-TRUMPCOIN) Market
+GF4NHQJ2GvN3ZdXiSVSXiC4jGhMmCXVFVhkYvfWkr6W5,Meteora (TRUMPCOIN-WSOL) Market
+6DAy1wRthSkpo5k9PAAD4NxKVTdvD2AAYjKynymR4q4H,Pump.fun (TRUMPCOIN) Bonding Curve
+72wBmn2sfZJ5FJMyirq6tMAUf1Nkw7XpokkY4JN9XgMa,Meteora (TRUMPCOIN-WSOL) Market