select
label,
sum(swap_from_amount)
from solana.core.fact_swaps left outer join solana.core.dim_labels
on swap_to_mint = address
where swap_from_mint like 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
and label is not null
group by 1
order by 2 DESC
limit 10