Technical details for you to use, and views on technology
cat log_file.txt | ruby -ne 'split(":").each { |col| print col , "\n" if col.match(/^\S+@\S+$/) }' | sort | uniq
561687964426202258478632
cat file | awk '{ total = total + $1} END { print total}'