accessing asDictionary | tweets tweetsHistogramData repliesHistogramData quotesHistogramData | tweets := self messages. tweetsHistogramData := self tweetsByWeeksTimeSpan. repliesHistogramData := self repliesByWeeksTimeSpan. quotesHistogramData := self quotesReportData. ^ { 'profile-card-avatar' -> self profileImageFile fullName. 'profile-card-avatar-url' -> self profileImageUrl. 'profile-card-fullname' -> self name . 'profile-card-username' -> self userName . 'profile-bio' -> self profileBio. 'messages-size' -> tweets size. 'messages-newest' -> tweets newest created asDate greaseString. 'messages-oldest' -> tweets oldest created asDate greaseString. 'tweets-histogram-labels' -> tweetsHistogramData third. 'tweets-histogram-quantity' -> tweetsHistogramData second. 'replies-histogram-labels' -> repliesHistogramData third. 'replies-histogram-quantity' -> repliesHistogramData second. 'quotes-histogram-labels' -> quotesHistogramData third. 'quotes-histogram-quantity' -> quotesHistogramData second. } asDictionary