headitmanagertop 5 places that removed $USDC is sent to in last 2 months
    Updated 2022-10-03
    select ADDRESS_NAME, sum(amount) as toal_amount
    from solana.core.fact_transfers t,solana.core.dim_labels l
    where t.TX_TO = l.address
    and mint= 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    and block_timestamp::date > '2022-08-01'
    group by 1
    order by 2 DESC
    limit 5
    Run a query to Download Data