select from_label, sum(amount) as Volume
from ethereum.udm_events
where lower(contract_address) = '0xd533a949740bb3306d119cc777fa900ba034cd52'
and origin_function_name in ('withdraw') and block_timestamp > '2021-01-01' and from_label is not null
group by 1
order by 2 desc