From 4fbf73520a8850d4b966aace9ee4af945bfdfe58 Mon Sep 17 00:00:00 2001 From: hrbrmstr Date: Fri, 5 Sep 2025 14:40:22 -0400 Subject: add: user-agent table and bash script --- 2025/2025-09-05-generate-bot-names.sh | 205 +++ 2025/2025-09-05-user-agent-mappings.json | 2690 ++++++++++++++++++++++++++++++ 2 files changed, 2895 insertions(+) create mode 100755 2025/2025-09-05-generate-bot-names.sh create mode 100644 2025/2025-09-05-user-agent-mappings.json diff --git a/2025/2025-09-05-generate-bot-names.sh b/2025/2025-09-05-generate-bot-names.sh new file mode 100755 index 0000000..8e2fcb1 --- /dev/null +++ b/2025/2025-09-05-generate-bot-names.sh @@ -0,0 +1,205 @@ +#!/bin/bash + +# Configuration +USER_AGENTS_FILE="user_agents.txt" +OLLAMA_URL="http://localhost:11434/api/generate" +MODEL="llama3.2:latest" +MAX_LINES=$(wc -l < "${USER_AGENTS_FILE}" | xargs) +OUTPUT_FILE="bot_names_results.txt" + +# ANSI color codes +RED='\033[0;31m' +GREEN='\033[0;32m' +BLUE='\033[0;34m' +YELLOW='\033[1;33m' +NC='\033[0m' # No Color + +# Check if user_agents.txt exists +if [ ! -f "$USER_AGENTS_FILE" ]; then + echo -e "${RED}Error: $USER_AGENTS_FILE not found!${NC}" + exit 1 +fi + +# Function to call Ollama API +generate_bot_name() { + local user_agent="$1" + + # Craft an improved prompt with examples and context + local prompt="You are a bot naming expert. Generate a SHORT, memorable name (1-3 words) for this web crawler/bot based on its user agent string. + +Rules: +- Keep it simple and descriptive +- Use the actual bot/product name if clearly visible +- Make it memorable and easy to pronounce +- Avoid generic terms like 'Web Crawler' or 'Bot' +- Focus on the brand/service name when available + +Examples of good names: +- For Googlebot user agent → 'Google Bot' +- For AhrefsBot user agent → 'Ahrefs Spider' +- For Slackbot user agent → 'Slack Bot' +- For meta-externalagent → 'Meta Agent' +- For MJ12bot → 'MJ12 Bot' +- For ClaudeBot → 'Claude Bot' +- For PetalBot → 'Petal Bot' + +User Agent: $user_agent + +Generate ONLY the bot name (nothing else):" + + # Create JSON payload + local json_payload=$(jq -n \ + --arg model "$MODEL" \ + --arg prompt "$prompt" \ + '{model: $model, prompt: $prompt, stream: false, temperature: 0.3}') + + # Call Ollama API with timeout + local response=$(timeout 10 curl -s -X POST "$OLLAMA_URL" \ + -H "Content-Type: application/json" \ + -d "$json_payload") + + # Check if curl timed out + if [ $? -eq 124 ]; then + echo "Request Timeout" + return + fi + + # Extract the response text and clean it + local bot_name=$(echo "$response" | jq -r '.response' 2>/dev/null | \ + tr -d '\n' | \ + sed 's/^[[:space:]]*//;s/[[:space:]]*$//' | \ + sed 's/^"//;s/"$//' | \ + head -n 1) + + # If response is empty or too long, return error + if [ -z "$bot_name" ] || [ ${#bot_name} -gt 50 ]; then + echo "Generation Failed" + else + echo "$bot_name" + fi +} + +# Main script +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" +echo -e "${GREEN}Bot Name Generator - Processing first $MAX_LINES user agents${NC}" +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" +echo + +# Initialize output file with header +{ + echo "Bot Name Generation Results" + echo "Generated on: $(date)" + echo "Model: $MODEL" + echo "=========================================" + echo +} > "$OUTPUT_FILE" + +# Counter for limiting to first 20 +count=0 +successful=0 +failed=0 + +# Store results for summary +declare -a results +declare -a bot_names_only + +# Read file line by line +while IFS= read -r line && [ $count -lt $MAX_LINES ]; do + # Skip empty lines + if [ -z "$line" ]; then + continue + fi + + # Increment counter + ((count++)) + + echo -e "${YELLOW}[$count/$MAX_LINES]${NC} Processing..." + + # Clean and truncate user agent for display + clean_line=$(echo "$line" | tr -d '"') + if [ ${#clean_line} -gt 70 ]; then + display_line="${clean_line:0:67}..." + else + display_line="$clean_line" + fi + + echo -e " User Agent: ${BLUE}$display_line${NC}" + + # Generate bot name + bot_name=$(generate_bot_name "$line") + + # Check if generation was successful + if [[ "$bot_name" == "Generation Failed" ]] || [[ "$bot_name" == "Request Timeout" ]]; then + echo -e " Generated: ${RED}$bot_name${NC}" + ((failed++)) + results+=("FAILED|$display_line") + else + echo -e " Generated: ${GREEN}$bot_name${NC}" + ((successful++)) + results+=("$bot_name|$display_line") + bot_names_only+=("$bot_name") + + # Save to file + { + echo "Entry #$count" + echo "User Agent: $line" + echo "Generated Name: $bot_name" + echo "-----------------------------------------" + echo + } >> "$OUTPUT_FILE" + fi + + echo + + # Small delay to avoid overwhelming the API + sleep 0.3 + +done < "$USER_AGENTS_FILE" + +# Print summary +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" +echo -e "${GREEN}Summary Report${NC}" +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" +echo -e "Total Processed: ${YELLOW}$count${NC}" +echo -e "Successful: ${GREEN}$successful${NC}" +echo -e "Failed: ${RED}$failed${NC}" + +if [ $count -gt 0 ]; then + echo -e "Success Rate: ${GREEN}$(( successful * 100 / count ))%${NC}" +fi + +echo +echo -e "${BLUE}Results saved to: ${YELLOW}$OUTPUT_FILE${NC}" +echo + +# Display all results in a table format +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" +echo -e "${GREEN}Generated Names Summary${NC}" +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" +echo + +i=1 +for result in "${results[@]}"; do + IFS='|' read -r name agent <<< "$result" + + if [[ "$name" == "FAILED" ]]; then + printf "%2d. ${RED}%-25s${NC} <- %s\n" "$i" "[Failed]" "${agent:0:50}" + else + printf "%2d. ${GREEN}%-25s${NC} <- %s\n" "$i" "$name" "${agent:0:50}" + fi + ((i++)) +done + +echo +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" + +# Save just the bot names to a separate file for easy use +if [ ${#bot_names_only[@]} -gt 0 ]; then + echo + echo -e "${YELLOW}Saving bot names list to: bot_names_only.txt${NC}" + printf "%s\n" "${bot_names_only[@]}" > bot_names_only.txt +fi + +echo +echo -e "${GREEN}Script complete!${NC}" +echo -e "${BLUE}═══════════════════════════════════════════════════════════${NC}" diff --git a/2025/2025-09-05-user-agent-mappings.json b/2025/2025-09-05-user-agent-mappings.json new file mode 100644 index 0000000..e5a3257 --- /dev/null +++ b/2025/2025-09-05-user-agent-mappings.json @@ -0,0 +1,2690 @@ +{"user_agent":"Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)","bot_name":"MJ12"} +{"user_agent":"Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)","bot_name":"Petal"} +{"user_agent":"Mozilla/5.0 (compatible; Thinkbot/0.5.8; +In_the_test_phase,_if_the_Thinkbot_brings_you_trouble,_please_block_its_IP_address._Thank_you.)","bot_name":"ThinkBot"} +{"user_agent":"Slackbot 1.0 (+https://api.slack.com/robots)","bot_name":"Slack"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","bot_name":"Anthropic"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)","bot_name":"OpenAI"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot","bot_name":"OpenAI"} +{"user_agent":"maubot/0.4.2 +https://github.com/maubot/rss","bot_name":"Mau"} +{"user_agent":"Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)","bot_name":"Barkrowler"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36","bot_name":"Bing"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36","bot_name":"Amazon"} +{"user_agent":"Mozilla/5.0 (compatible; Bytespider; spider-feedback@bytedance.com) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.0.0 Safari/537.36","bot_name":"ByteDance"} +{"user_agent":"Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)","bot_name":"Semrush"} +{"user_agent":"Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)","bot_name":"Ahrefs"} +{"user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)","bot_name":"Apple"} +{"user_agent":"Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)","bot_name":"BLEX"} +{"user_agent":"StartmeBot/1.0 (+https://start.me/bot)","bot_name":"StartMe"} +{"user_agent":"serpstatbot/2.1 (advanced backlink tracking bot; https://serpstatbot.com/; abuse@serpstatbot.com)","bot_name":"Serpstat"} +{"user_agent":"Readybot.io (https://readybot.io)","bot_name":"Ready"} +{"user_agent":"Mozilla/5.0 (compatible; SeekportBot; +https://bot.seekport.com)","bot_name":"Seekport"} +{"user_agent":"meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)","bot_name":"Meta Agent"} +{"user_agent":"Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)","bot_name":"Dot"} +{"user_agent":"Inoreader/1.0 (+http://www.inoreader.com/feed-fetcher; 1 subscribers; )","bot_name":"InoReader"} +{"user_agent":"ScourRSSBot/1.0 (+https://scour.ing/bot)","bot_name":"Scour RSS"} +{"user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot","bot_name":"OpenAI"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404487640","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.183 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Googlebot-Image/1.0","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)","bot_name":"ByteDance"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; DataForSeoBot/1.0; +https://dataforseo.com/dataforseo-bot)","bot_name":"DataForSeo"} +{"user_agent":"Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)","bot_name":"Semrush"} +{"user_agent":"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)","bot_name":"Yandex"} +{"user_agent":"Mozilla/5.0 (compatible) Ai2Bot-Dolma (+https://www.allenai.org/crawl)","bot_name":"Ai2Dolma"} +{"user_agent":"search.marginalia.nu","bot_name":"Marginalia Searcher"} +{"user_agent":"Mozilla/5.0 (compatible; MJ12bot/v2.0.2; http://mj12bot.com/)","bot_name":"MJ12"} +{"user_agent":"Inoreader/1.0 (+http://www.inoreader.com/feed-fetcher; 9 subscribers; )","bot_name":"Inoreader"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/136.0.0.0 Safari/537.36","bot_name":"Bing"} +{"user_agent":"AliyunSecBot/Aliyun (AliyunSecBot@service.alibaba.com)","bot_name":"Aliyun Security"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/100.0.4896.127 Safari/537.36","bot_name":"Bing"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; 20 subscribers; )","bot_name":"Feedly"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; 19 subscribers; )","bot_name":"Feedly"} +{"user_agent":"Mozilla/5.0 (compatible; AwarioBot/1.0; +https://awario.com/bots.html)","bot_name":"Awario"} +{"user_agent":"Mozilla/5.0 (compatible; MJ12bot/v2.0.4; http://mj12bot.com/)","bot_name":"MJ12"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.7258.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"FeedFetcher-Google; (+http://www.google.com/feedfetcher.html)","bot_name":"Feed"} +{"user_agent":"Blogtrottr/2.1 (+https://blogtrottr.com/robot)","bot_name":"Blogtrottr"} +{"user_agent":"Chrome Privacy Preserving Prefetch Proxy","bot_name":"Chrome Prefetch Proxy"} +{"user_agent":"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)","bot_name":"Baidu"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)","bot_name":"Perplexity"} +{"user_agent":"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; WellKnownBot/0.1; +https://well-known.dev/about/#bot)","bot_name":"WellKnown"} +{"user_agent":"CCBot/2.0 (https://commoncrawl.org/faq/)","bot_name":"CC"} +{"user_agent":"Mozilla/5.0 (compatible; SeznamBot/4.0; +https://o-seznam.cz/napoveda/vyhledavani/en/seznambot-crawler/)","bot_name":"Seznam"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; 512 subscribers; )","bot_name":"Feedly"} +{"user_agent":"Inoreader/1.0 (+http://www.inoreader.com/feed-fetcher; 2 subscribers; )","bot_name":"Inoreader"} +{"user_agent":"Inoreader/1.0 (+http://www.inoreader.com/feed-fetcher; 79 subscribers; )","bot_name":"Inoreader"} +{"user_agent":"Inoreader/1.0 (+http://www.inoreader.com/feed-fetcher; 16 subscribers; )","bot_name":"InoReader"} +{"user_agent":"CDSCbot/2024.08.08 https://wiki.communitydata.science/CommunityData:Fediverse_research","bot_name":"CDSC Researcher"} +{"user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0","bot_name":"Face"} +{"user_agent":"Mozilla/5.0 (compatible) SemanticScholarBot (+https://www.semanticscholar.org/crawler)","bot_name":"Semantic Scholar"} +{"user_agent":"ContentStudio bot","bot_name":"Content Studio"} +{"user_agent":"Mozilla/5.0 (compatible; Spider/2.0; +https://spider.cloud)","bot_name":"Spider AI Cloud"} +{"user_agent":"NewsBlur Page Fetcher - 7 subscribers - https://www.newsblur.com/site/807261/rudis (\\x22Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15\\x22)","bot_name":"NewsBlur"} +{"user_agent":"NewsBlur Feed Fetcher - 34 subscribers - https://www.newsblur.com/site/914695/rudis (\\x22Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15\\x22)","bot_name":"NewsBlur"} +{"user_agent":"Mozilla/5.0 (compatible; Qwantbot/1.0_885275; +https://help.qwant.com/bot/)","bot_name":"Qwant"} +{"user_agent":"Timpibot/0.9 (+http://www.timpi.io)","bot_name":"Timpi"} +{"user_agent":"NewsBlur Page Fetcher - 34 subscribers - https://www.newsblur.com/site/914695/rudis (\\x22Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15\\x22)","bot_name":"NewsBlur"} +{"user_agent":"Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)","bot_name":"Imagesift"} +{"user_agent":"Mozilla/5.0 (compatible; Pinterestbot/1.0; +http://www.pinterest.com/bot.html)","bot_name":"Pinterest"} +{"user_agent":"DuckDuckBot/1.1; (+http://duckduckgo.com/duckduckbot.html)","bot_name":"DuckDuckGo"} +{"user_agent":"Twitterbot/1.0","bot_name":"Twitter"} +{"user_agent":"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)","bot_name":"Baidu"} +{"user_agent":"Mozilla/5.0 (compatible; BazQux/2.4; +https://bazqux.com/fetcher; 1 subscribers)","bot_name":"BazQux"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.157 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; YandexFavicons/1.0; +http://yandex.com/bots)","bot_name":"Yandex Favicons"} +{"user_agent":"DuckAssistBot/1.2; (+http://duckduckgo.com/duckassistbot.html)","bot_name":"DuckAssist"} +{"user_agent":"Mozilla/5.0 (compatible; IbouBot/1.0; +bot@ibou.io; +https://ibou.io/iboubot.html)","bot_name":"Ibou"} +{"user_agent":"Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)","bot_name":"Sogou"} +{"user_agent":"Googlebot/2.1 (+http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"RSS.Social/1.0 +https://rss.social/bot","bot_name":"RssSocial"} +{"user_agent":"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; https://zhanzhang.toutiao.com/)","bot_name":"Byte"} +{"user_agent":"LivelapBot/0.2 (http://site.livelap.com/crawler)","bot_name":"Livelap"} +{"user_agent":"Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)","bot_name":"Yandex"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; )","bot_name":"Feedly"} +{"user_agent":"FediIndex/1.0 (+https://fedi.wrm.sr/about)","bot_name":"FediIndex"} +{"user_agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)","bot_name":"Baidu"} +{"user_agent":"Fooderific Crawler 1.0 https://fooderific.com/crawler","bot_name":"Fooderific"} +{"user_agent":"Mozilla/5.0 (compatible; YandexTurbo/1.0; +http://yandex.com/bots)","bot_name":"Yandex"} +{"user_agent":"Mozilla/5.0 (compatible; MojeekBot/0.11; +https://www.mojeek.com/bot.html)","bot_name":"Mojeek"} +{"user_agent":"Mozilla/5.0 (compatible; YaK/1.0; http://linkfluence.com/; bot@linkfluence.com)","bot_name":"Linkfluence"} +{"user_agent":"Mozilla/5.0 (compatible; coccocbot-web/1.0; +http://help.coccoc.com/searchengine)","bot_name":"Cocco"} +{"user_agent":"node-fetch","bot_name":"Node"} +{"user_agent":"Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/a07610d warc/v0.8.85","bot_name":"Archive"} +{"user_agent":"Mozilla/5.0 (X11; compatible; semantic-visions.com crawler; HTTPClient 4.5)","bot_name":"Semantic Vision"} +{"user_agent":"Mozilla/5.0 (compatible; Qwantbot/1.0_5465275; +https://help.qwant.com/bot/)","bot_name":"Qwant"} +{"user_agent":"PinRSS/1.0 (Feedfetcher; https://www.pinsrss.com; Allow like Gecko) Build/20221120093104","bot_name":"PinRSS"} +{"user_agent":"wp.com feedbot/1.0 (+https://wp.com)","bot_name":"WordPress"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; coccocbot-image/1.0; +http://help.coccoc.com/searchengine)","bot_name":"Coccoc"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 Googlebot/2.1","bot_name":"Google"} +{"user_agent":"FediDB/0.5.0; +https://fedidb.org/crawler.html","bot_name":"FediDB"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Checking HTML reverse link.","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 Bingbot/2.0","bot_name":"Bing"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:undefined","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)","bot_name":"Yahoo"} +{"user_agent":"Mozilla/5.0 (compatible; Qwantbot/1.0_405275; +https://help.qwant.com/bot/)","bot_name":"Qwant"} +{"user_agent":"Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Minoru's Fediverse Crawler (+https://nodes.fediverse.party)","bot_name":"Minoru's Fediverse Explorer"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/137.0.7151.119 Safari/537.36","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 kagibot","bot_name":"Kagi"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Flyriverbot/1.1 (+https://www.flyriver.com/crawler; AI Content Source Check)","bot_name":"FlyRiver"} +{"user_agent":"Mozilla/5.0 (compatible; crawler)","bot_name":"anonymous crawler"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; 53 subscribers; )","bot_name":"Feedly"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/138.0.7204.183 Safari/537.36","bot_name":"Google"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; 28 subscribers; )","bot_name":"Feedly"} +{"user_agent":"ws-bot-v1","bot_name":"WsV1"} +{"user_agent":"Slack-ImgProxy (+https://api.slack.com/robots)","bot_name":"Slack"} +{"user_agent":"Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)","bot_name":"Velen"} +{"user_agent":"ZoominfoBot (zoominfobot at zoominfo dot com)","bot_name":"Zoominfo"} +{"user_agent":"Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0","bot_name":"Yandex Render"} +{"user_agent":"FeedlyBot/1.0 (http://feedly.com)","bot_name":"Feedly"} +{"user_agent":"Feedly/1.0 (+http://www.feedly.com/fetcher.html; 16 subscribers; )","bot_name":"Feedly"} +{"user_agent":"YisouSpider","bot_name":"Yisou"} +{"user_agent":"Mozilla/5.0 (compatible; intelx.io_bot +https://intelx.io)","bot_name":"IntelX"} +{"user_agent":"ArchiveTeam ArchiveBot/20240923.203d40a (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36","bot_name":"Archive Team"} +{"user_agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/537.36 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; Discordbot/2.0; +https://discordapp.com)","bot_name":"Discord"} +{"user_agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/605.1 NAVER(inapp; search; 2000; 12.13.0; 16PROMAX) (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Naver"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.0; +https://openai.com/gptbot)","bot_name":"GPT"} +{"user_agent":"Mozilla/5.0 (Linux;u;Android 4.2.2;zh-cn;) AppleWebKit/534.46 (KHTML,like Gecko) Version/5.1 Mobile Safari/10600.6.3 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)","bot_name":"Baidu"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.168 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"HatenaBlog-bot/0.02 (+https://help.hatenablog.com/entry/about-hatenablogbot)","bot_name":"Hatena"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/139.0.7258.127 Safari/537.36","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25 (compatible; SiteAuditBot/0.97; +http://www.semrush.com/bot.html)","bot_name":"SiteAudit"} +{"user_agent":"Mozilla/5.0 (compatible; DocsCrawler/1.0)","bot_name":"DocsCrawler"} +{"user_agent":"LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)","bot_name":"LinkedIn"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.183 Mobile Safari/537.36 (compatible; Google-Safety; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"quillbot.com","bot_name":"Quill"} +{"user_agent":"Mozilla/5.0 (compatible; ev-crawler/1.0; +https://headline.com/legal/crawler)","bot_name":"ev"} +{"user_agent":"DnBCrawler-Analytics","bot_name":"DNB Analytics"} +{"user_agent":"Nextcloud Server Crawler","bot_name":"Nextcloud"} +{"user_agent":"Feedspot/1.0 (+https://www.feedspot.com/fs/fetcher; like FeedFetcher-Google)","bot_name":"FeedSpot"} +{"user_agent":"Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/a7797cb warc/v0.8.78","bot_name":"Zeno Archive"} +{"user_agent":"ContentStudio-Feed-Fetcher/1.0","bot_name":"Content Studio"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1401504084","bot_name":"SuperFeedr"} +{"user_agent":"NewsBlur Page Fetcher - 3 subscribers - https://localhost/site/1456/rudis (\\x22Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15\\x22)","bot_name":"NewsBlur"} +{"user_agent":"sotoki/2.2.1 (https://github.com/openzim/sotoki; contact+crawl@kiwix.org) requests/2.32.4","bot_name":"SOTOKI"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.183 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)","bot_name":"Ads-Google"} +{"user_agent":"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0","bot_name":"Yandex"} +{"user_agent":"fedistatsCrawler/1.0","bot_name":"fediStats"} +{"user_agent":"Mozilla/5.0 (compatible; BitSightBot/1.0)","bot_name":"BitSight"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1401504202","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404217192","bot_name":"SuperFeedr"} +{"user_agent":"rawweb-bot/1.0","bot_name":"Raw Web"} +{"user_agent":"Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/d03bbe0 warc/v0.8.84","bot_name":"Archive"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404126772","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404348786","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404205104","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404401214","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404243662","bot_name":"SuperFeedr"} +{"user_agent":"Slackbot-LinkExpanding 1.0 (+https://api.slack.com/robots)","bot_name":"Slack Link Expander"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404427566","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404421926","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (compatible; SemrushBot; +http://www.semrush.com/bot.html)","bot_name":"Semrush"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404432096","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider","bot_name":"360"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404468596","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404468658","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (compatible; scoopit-crawler/3; +https://www.scoop.it/bot.html)","bot_name":"Scoop It"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404429468","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404452476","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404446638","bot_name":"SuperFeedr"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404449870","bot_name":"SuperFeedr"} +{"user_agent":"Mastodon/4.5.0-alpha.2+chuckya (http.rb/5.3.1; +https://lab.wheelsbot.dev/)","bot_name":"Wheels"} +{"user_agent":"Mozilla/5.0 (Linux; Android 13; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://researchbuzz.masto.host/)","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; SurdotlyBot/1.0; +http://sur.ly/bot.html)","bot_name":"Surdotly"} +{"user_agent":"Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/62be009 warc/v0.8.85","bot_name":"Archive"} +{"user_agent":"http.rb/4.4.1 (Mastodon/3.3.0; +https://squid.cafe/) Bot","bot_name":"Squid"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html\\xA1\\xB1)","bot_name":"Yahoo"} +{"user_agent":"Mozilla/5.0 (keys-so-bot)","bot_name":"Keys So"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; trendictionbot0.5.0; trendiction search; http://www.trendiction.de/bot; please let us know of any problems; web at trendiction.com) Gecko/20100101 Firefox/125.0","bot_name":"Trendiction"} +{"user_agent":"iaskspider/2.0(+http://iask.com/help/help_index.html\\xA1\\xB1)","bot_name":"iAsk"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch (http.rb/5.3.1, like Discordbot; +https://speedlines.stctp.zone/)","bot_name":"Speedlines Scout"} +{"user_agent":"Twingly Recon-Sjostrom/1.0 (+https://app.twingly.com/public-docs/crawler)","bot_name":"Twingly Scout"} +{"user_agent":"Mozilla/5.0 (compatible; TinEye-bot-live/1.31; +http://www.tineye.com/crawler.html)","bot_name":"TinEye"} +{"user_agent":"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)","bot_name":"TikTok"} +{"user_agent":"Mozilla/5.0 (compatible; LAC_IAHarvester/3.3.0; +https://archive.org/details/archive.org_bot)","bot_name":"LAC IA Harvester"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.3; +https://mast.shitpostbot.com/)","bot_name":"shitpost"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; HubSpot Crawler; +https://www.hubspot.com) Chrome/131.0.0.0 Safari/537.36","bot_name":"HubSpot"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.25; +https://mastodon.cloud/) Bot","bot_name":"Petal"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://az.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://masto.deoan.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.5.0; https://mtl.rocks ; Bot","bot_name":"Pleroma Scout"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://drosophila.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://hulvr.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.0 (http.rb/5.2.0; +https://dev1.nya.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8+glitch (http.rb/5.2.0; +https://babka.social/) Bot","bot_name":"Babka"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mamot.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://troet.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.3 (http.rb/5.2.0; +https://devdilettante.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:1404555684","bot_name":"SuperFeedr"} +{"user_agent":"Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/Favicons/2.0; +https://help.mail.ru/webmaster/indexing/robots)","bot_name":"MailRu"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.hk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://layer8.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://ischool.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://cloudisland.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://partyon.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://fediscience.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://cybersecurity.theater/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+chuckya (http.rb/5.2.0; +https://fuzzies.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://mastodon.hams.social/) Bot","bot_name":"Hams"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.cesium.pw/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://social.data.coop/) Bot","bot_name":"Social"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.au/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 (compatible; Google-Safety; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.24; +https://noc.social/) Bot","bot_name":"Noc"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://haunted.computer/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)","bot_name":"Bing"} +{"user_agent":"Mastodon/4.3.2 (http.rb/5.2.0; +https://nso.group/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://social.skewed.de/) Bot","bot_name":"Masto"} +{"user_agent":"(compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html\\xA3\\xA9","bot_name":"Baidu"} +{"user_agent":"Mastodon/4.3.6+glitch (http.rb/5.2.0; +https://better.boston/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://daedal.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://mastodon.matrix.org/) Bot","bot_name":"Petalmast"} +{"user_agent":"http.rb/5.1.0 (Mastodon/3.5.19+iceage; +https://bsd.network/) Bot","bot_name":"http"} +{"user_agent":"Sogou web spider/3.0(+http://www.sogou.com/docs/help/webmasters.htm#07\\xA1\\xE5)","bot_name":"Sogou"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Google-Safety; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/\\xA1\\xB1; )","bot_name":"Yodao"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://wants.coffee/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://journa.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://muenchen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://framapiaf.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://socialnotwork.net/) Bot","bot_name":"Social Notwork"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mstdn.business/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://social.circl.lu/) Bot","bot_name":"Circl"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://ioc.exchange/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mstdn.science/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://masto.ai/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://epistolary.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://ciberlandia.pt/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://newsie.social/) Bot","bot_name":"Newsie"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.2; +https://masto.measure.chat/) Bot","bot_name":"Measure"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://federated.press/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://paperbay.org/) Bot","bot_name":"Paper Bay"} +{"user_agent":"msnbot/1.0 (+http://search.msn.com/msnbot.htm\\xA1\\xB1)","bot_name":"MSN Explorer"} +{"user_agent":"Mastodon/4.3.8+glitch (http.rb/5.2.0; +https://istoleyour.pw/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://mastodonapp.uk/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://kolektiva.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1-271-g3c701964-poast-dev; https://poa.st ; Bot","bot_name":"Pleroma"} +{"user_agent":"http.rb/5.0.4 (Mastodon/3.5.3; +https://mastodon.kinlane.com/) Bot","bot_name":"Kin"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://me.dm/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://hcommons.social/) Bot","bot_name":"http"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://syringa.social/) Bot","bot_name":"Syringa Scout"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.top/) Bot","bot_name":"Mastodon"} +{"user_agent":"Sogou Push Spider/3.0(+http://www.sogou.com/docs/help/webmasters.htm#07\\xA1\\xE5)","bot_name":"Sogou Push"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.18; +https://blacktwitter.io/) Bot","bot_name":"Black Twitter"} +{"user_agent":"Googlebot/2.1 (+http://www.googlebot.com/bot.html)","bot_name":"Google"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.25; +https://mastodon.sdf.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://cyberpunk.lol/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://social.ivor.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.cordonnier.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://digipres.club/) Bot","bot_name":"Digi"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.org.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://tinnies.club/) Bot","bot_name":"Tinnies"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.distos.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10+hometown-1.1.1; +https://ottawa.place/) Bot","bot_name":"http_"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://universeodon.com/) Bot","bot_name":"Petal"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://digitaldarkage.cc/) Bot","bot_name":"Darkage Explorer"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://mastodon.well.com/) Bot","bot_name":"http"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://social.medienzentrum-hdh.de/) Bot","bot_name":"Medienzentrum"} +{"user_agent":"Pleroma 2.9.1-73-g99fbe041-develop; https://declin.eu ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://social.legrand.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://hessen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Pleroma 2.9.1; https://social.craftknight.com ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.0-alpha.5 (http.rb/5.2.0; +https://veganism.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://social.sciences.re/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://frogs.lgbt/) Bot","bot_name":"Frogs"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.africa/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://eldritch.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp\\xA1\\xB1)","bot_name":"Yahoo"} +{"user_agent":"http.rb/5.2.0 (Mastodon/3.5.19-qoto; +https://qoto.org/) Bot","bot_name":"Qoto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://dads.cool/) Bot","bot_name":"Dads"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://hachyderm.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"star-finder.de Bot","bot_name":"Star Finder"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://pouet.chapril.org/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://merveilles.town/) Bot","bot_name":"Merville"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://oc.todon.fr/) Bot","bot_name":"httpdot"} +{"user_agent":"BrightEdge Crawler/1.0 (crawler@brightedge.com)","bot_name":"BrightEdge"} +{"user_agent":"SEBot-WA","bot_name":"SE"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://infosec.exchange/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; GoParserBot/1.0)","bot_name":"GoParser"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://m.feyo.pw/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://sfba.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://hive.institute/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64; +http://url-classification.io/wiki/index.php?title=URL_server_crawler) KStandBot/1.0","bot_name":"KStand"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://idf.social/) Bot","bot_name":"IDF"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://hispagatos.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://det.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; WebwikiBot/2.1; +https://www.webwiki.com)","bot_name":"Webwiki"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://col.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.7258.154 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Newsify Feed Fetcher - 2 subscribers - http://www.newsify.co/site/672634/rudis (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)","bot_name":"Newsify"} +{"user_agent":"Mastodon/4.5.0-alpha.1+chuckya (http.rb/5.3.1; +https://lab.wheelsbot.dev/)","bot_name":"Wheels"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.7258.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html\\xA3\\xA9","bot_name":"Baidu"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://meow.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://infosec.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.skrimmage.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Dazzle BlueSky Bot/1.1","bot_name":"DazzleBlue"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://convo.casa/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.3; +https://sick.social/) Bot","bot_name":"Sick"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://f.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"ArchiveTeam ArchiveBot/20230129.7ad0d38 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36","bot_name":"Archive"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://hometech.social/) Bot","bot_name":"Hometech"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://bots.krohsnest.com/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mast.lukeog.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://datasci.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://toad.social/) Bot","bot_name":"Toad"} +{"user_agent":"SummalyBot/2.7.0","bot_name":"Summaly"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://archaeo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://frontrange.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://researchbuzz.masto.host/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.maxynetwork.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"safarifetcherd/8621.3.11.10.3 CFNetwork/3826.600.41 Darwin/24.6.0","bot_name":"Safari"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://dpw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.hutch.chat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://chaosfurs.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mathstodon.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://econtwitter.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://bluechakra.cloud/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://truth.rip/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.5.1; https://social.gabekangas.com ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://tech.lgbt/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.18; +https://know.me.uk/) Bot","bot_name":"KnowMe"} +{"user_agent":"AdsBot-Google (+http://www.google.com/adsbot.html)","bot_name":"Ads"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://soziale.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://toot.paris/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://cwb.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://1040ste.net/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://snapp.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Zoombot","bot_name":"Zoom"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://oldbytes.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://aus.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36 YaApp_Android/10.61 YaSearchBrowser/10.61","bot_name":"Mi8"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.portertech.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+chuckya (http.rb/5.3.1; +https://mastodo.neoliber.al/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; HubSpot Crawler; HubSpot Domain check; +https://www.hubspot.com)","bot_name":"HubSpot"} +{"user_agent":"Mastodon/4.4.0-nightly.2025-05-23+glitch (http.rb/5.2.0; +https://expressional.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://sleepyhe.ad/) Bot","bot_name":"MastoGlitch"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)","bot_name":"Ads"} +{"user_agent":"http.rb/5.2.0 (Mastodon/4.3.0-alpha.5+glitch.th; +https://social.treehouse.systems/) Bot","bot_name":"Treehouse"} +{"user_agent":"Mastodon/4.3.3 (http.rb/5.2.0; +https://toot.snipesearch.co.uk/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.yuuta.moe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://adlsolarpunk.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://weird.autos/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://urusai.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; redditbot/1.0; +http://www.reddit.com/feedback)","bot_name":"Reddit"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.purplelatexqueen.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://dmv.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://tooting.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1-187-gb082e1f8-develop; https://pl.eragon.re ; Bot","bot_name":"Pleroma"} +{"user_agent":"Inoreader/1.0 (+http://www.inoreader.com/feed-fetcher; 0 subscribers; )","bot_name":"Inoreader"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://an.exchange/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://social.seattle.wa.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://piaille.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://hacky.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://canuck.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.shultz.ynh.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://mstdn.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-11 (http.rb/5.3.1; +https://ohai.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"fastfeedparser (+https://github.com/kagisearch/fastfeedparser)","bot_name":"FastFeedParser"} +{"user_agent":"Mastodon/4.3.3+glitch (http.rb/5.2.0; +https://foule.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://eupolicy.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://jornalismo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://aurya.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://maly.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://equestria.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://pkm.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://im-in.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://talk.mls20.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.znsk.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.stackunderflow.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://notwork.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8+glitch (http.rb/5.2.0; +https://fedi.turbofish.cc/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.3.0-alpha.3+glitch; +https://jorts.horse/) Bot","bot_name":"Jorts"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://chaosfem.tw/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://xn--8r9a.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://ohnepunktundkomma.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.nu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://swecyb.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cyberplace.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://wandering.shop/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://researchbuzz.masto.host/)","bot_name":"Mastodot"} +{"user_agent":"Mastodon/4.3.4+glitch.th (http.rb/5.2.0; +https://circumstances.run/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://twit.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.berlin/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://darktundra.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://flipboard.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://flipping.rocks/) Bot","bot_name":"Flipping Rocker"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://publicsquare.global/) Bot","bot_name":"Mastodon"} +{"user_agent":"MisskeyBot/1.0","bot_name":"Misskey"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mindly.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://chaos.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://med-mastodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://code4lib.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1-73-g99fbe041-develop; https://crib.social ; Bot","bot_name":"Crib"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://social.xanten.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"MastodonBot/1.0","bot_name":"Mastodon"} +{"user_agent":"com.google.android.apps.searchlite/1084540 (Linux; U; Android 15; en_IN; 25028RN03I; Build/AP3A.240905.015.A2; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ruhr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+cots+glitch (http.rb/5.3.1; +https://cupoftea.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://urbanists.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://mastodon.archive.org/)","bot_name":"Petal"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.targaryen.house/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://unbound.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://mastodon.n41.lat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://social.nerd.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; iaskspider/1.0; MSIE 6.0)","bot_name":"Iask"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://scicomm.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; YandexMarket/2.0; +http://yandex.com/bots)","bot_name":"YandexMarket"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rollenspiel.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://akademienl.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://indieweb.social/) Bot","bot_name":"Mastodot"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.replacementhipster.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.machlis.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.ookami.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://toot.boston/) Bot","bot_name":"Hometown"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://thoughtbot.social/)","bot_name":"Thought"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://techhub.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.uno/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ecoevo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bayes.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://anisaga.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://cosocial.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://mastodon.n41.lat/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.ie/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.eus/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://graphics.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (/global; amd64 Linux 6.12.28-0-lts; java 24.0.1; Etc/en) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.gnous.eu/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://todon.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodont.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://hostux.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rstats.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://patrasocial.gr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://tilde.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://federate.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.acm.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.3.0-alpha.1+glitch.0202_63d7a30; +https://cijber.social/) Bot","bot_name":"Cijber"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mas.deltaisland.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://norden.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://lediva.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://test.mastodon.makerforce.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.rprivat.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.teddycaddy.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.cologne/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://emacs.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://c.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.ffmuc.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://queer.party/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://podcastindex.social/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://defcon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/3de4c6e warc/v0.8.85","bot_name":"Archive Scout"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://phpc.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dudo.social/) Bot","bot_name":"Dudo"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.hackers.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)","bot_name":"Petal"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://neverhill.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://strangeminds.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://h4.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dice.camp/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://feed.yopp.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"CCBot","bot_name":"CC"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://terra.incognita.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://freeradical.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.deeden.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://twitter.resolvt.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sasa.africa/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://mammut.gogreenit.net/) Bot","bot_name":"Mammut Web Scrapy"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.wurzelmann.at/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mitexleo.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://jasette.facil.services/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://stlouist.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://social.tinfoil-hat.net ; Bot","bot_name":"Tinfoil Hat"} +{"user_agent":"Mastodon/4.4.0-alpha.4 (http.rb/5.2.0; +https://mastodon.llyxx.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://lounge.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://shellsharks.social/) Bot","bot_name":"Shellsharks"} +{"user_agent":"Mastodon/4.4.2+litera.tools (http.rb/5.3.1; +https://literatur.social/) Bot","bot_name":"Litera"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.zoeyvid.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-11 (http.rb/5.3.1; +https://m.ipoac.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://xarxa.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://lgbtqia.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1-192-g8ff8a3e3-poast-dev; https://poa.st ; Bot","bot_name":"Pleroma"} +{"user_agent":"CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)","bot_name":"CheckMark Network"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://opalstack.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://union.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.me.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mast.eu.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://floss.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.cortex (http.rb/5.3.1; +https://corteximplant.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"bot","bot_name":"Petal"} +{"user_agent":"http.rb/5.2.0 (Mastodon/4.3.0-alpha.5+glitch.th; +https://mastodon.xi.ht/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://zeroes.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://freefree.ps/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://discuss.systems/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.bsd.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.coop/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sigmoid.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.teckids.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://metroholografix.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon-belgium.be/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.anoxinon.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sciences.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.25; +https://mstdn.jp/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://functional.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://scholar.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.pt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.bryan.za.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://toot.garden/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.cr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://berlin.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://nexto.my/) Bot","bot_name":"Nexto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://lor.sh/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://hobbs-end.uk/) Bot","bot_name":"Hobbs"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://historians.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://irrelephant.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://glasgow.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://podcastindex.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2+est (http.rb/5.3.1; +https://est.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://jawns.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodontti.fi/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://mastodon.gougere.fr/) Bot","bot_name":"Gougere"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://social.spejset.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.joshanders.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://ist.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-23+chuckya (http.rb/5.3.1; +https://rivals.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://friend.camp/) Bot","bot_name":"Friend"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://fractalego.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://miau.le-chat-a-velo.at/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.8; +https://gamerplus.org/) Bot","bot_name":"GamerPlus"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.18; +https://hydaelyn.coerthansnowstorm.online/) Bot","bot_name":"Hydaelyn"} +{"user_agent":"Pleroma 2.9.1; https://pleroma.anduin.net ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 13_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 ISSCyberRiskCrawler/2.0.0","bot_name":"ISS Cyber Risk"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://soc42.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.gamedev.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://yiff.life/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.merk.ac/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Feedspot/1.0 (+https://www.feedspot.com/fs/fetcher; like FeedFetcher-Google)","bot_name":"Feedspot"} +{"user_agent":"Mastodon/4.4.2+vivaldimod (http.rb/5.3.1; +https://social.vivaldi.net/) Bot","bot_name":"Vivaldi"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://recsys.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://snabelen.no/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mapstodon.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch+urusai+sakura (http.rb/5.2.0; +https://sakurajima.moe/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://icosahedron.website/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://dragonscave.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://itoot.alexx.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://famichiki.jp/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.mayer.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://toot-toot.wyrihaxim.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://avision-it.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pnw.zone/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://23.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://spore.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://social.in-purple.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.lol/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.saarland/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://academiccloud.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://epsom.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://furry.engineer/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://tribe.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://toots.noko.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://ocw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.gruezi.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.lqx.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://genomic.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.linux.pizza/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastdn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://suomi.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.zaclys.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://438punk.house/) Bot","bot_name":"http.rb"} +{"user_agent":"Mastodon/4.4.0-nightly.2025-07-01+glitch (http.rb/5.3.1; +https://pony.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sueden.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://digitalcourage.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.mit.edu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.radio/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://helvede.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://gogo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://saturation.social/) Bot","bot_name":"Hometown"} +{"user_agent":"DomainStatsBot/1.0 (https://domainstats.com/pages/our-bot)","bot_name":"DomainStats"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.25; +https://know.me.uk/) Bot","bot_name":"KnowMe"} +{"user_agent":"FyndSearchEngine-ReCrawler (by fynd.bot; https://fynd.bot)","bot_name":"Fynd Search Engine"} +{"user_agent":"Automattic Analytics Crawler/0.2; http://wordpress.com/crawler/","bot_name":"WordPress"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://colliderbias.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://nerdculture.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sauropods.win/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vis.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.floofy-custom (http.rb/5.3.1; +https://floofy.tech/) Bot","bot_name":"Floofy"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://hellions.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.energy/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8+glitch (http.rb/5.2.0; +https://mastodon.de/) Bot","bot_name":"Masto"} +{"user_agent":"Screaming Frog SEO Spider/22.2","bot_name":"ScreamingFrog"} +{"user_agent":"AwarioSmartBot/1.0 (+https://awario.com/bots.html; bots@awario.com)","bot_name":"Awario Smart"} +{"user_agent":"com.google.android.apps.searchlite/1084537 (Linux; U; Android 10; en_US; itel L6502; Build/QP1A.190711.020; Cronet/140.0.7259.0)","bot_name":"Search Lite"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://boteden.com/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pdx.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.content.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://byteheaven.net/) Bot","bot_name":"Bytehaven"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://vm.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://camp.smolnet.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://nullptr.rehab/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://metasocial.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://fiera.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.cwill.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://toots.dgplug.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://masto.bike/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.seahousen.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://legal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://todon.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://pagan.plus/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.tchncs.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.tchncs.de/) Bot","bot_name":"Masto"} +{"user_agent":"Pleroma 2.5.54-0-ga94cf2ad; https://pl.evilmuff.in ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tiggi.es/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch.13c8769cd (http.rb/5.3.1; +https://toot.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9-stable+ff1 (http.rb/5.2.0; +https://wien.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://mastodon.bida.im/) Bot","bot_name":"Bida"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://trystero.social/) Bot","bot_name":"Trystero"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch.anarres.family (http.rb/5.3.1; +https://anarres.family/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.2.0 (Mastodon/4.3.0-alpha.4+chuckya; +https://lovelace.social/) Bot","bot_name":"http_"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://anakmanis.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://socel.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Orbbot/1.1;)","bot_name":"Ort"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://smnn.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; SurdotlyBot/1.0; +http://sur.ly/bot.html; Linux; Android 4; iPhone; CPU iPhone OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A523 Safari/8536.25","bot_name":"Surdotly"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://cltverse.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mas.to/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://ravenation.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.0-7-g906c3ab3-develop; https://asphodel.rip ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://pol.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mas.to/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hadan.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://notacult.social/) Bot","bot_name":"Petal"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toots.sahilister.in/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://catnest.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://skaverat.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sunny.garden/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://bughunter.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://aschaffenburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.1; +https://indg.club/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://dopamine.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://subdued.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://datavis.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; FolioBot/0.10.2; +https://savewithfolio.com/)","bot_name":"Folio"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://subversive.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Misskey/2025.3.0-dev (https://robotgirl.dev)","bot_name":"RoGirl"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.green/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.art/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.nu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.jacen.moe/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.8; +https://mstdn.ethnet.io/) Bot","bot_name":"http"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://onlyarts.social/) Bot","bot_name":"Petal"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.intahnet.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.domov.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://satori.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-250710(CST+8)+Xajh (http.rb/5.3.1; +https://fairy.id/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ieji.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://social.nebula.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://toot.nclf.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dresden.network/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://thefire.work ; Bot","bot_name":"Pleroma"} +{"user_agent":"http.rb/5.0.4 (Mastodon/3.5.9; +https://unxpnx.farm/) Bot","bot_name":"RB"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://wehavecookies.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.1+glitch (http.rb/5.2.0; +https://growers.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://kind.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://assemblag.es/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://colquitt.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5 (http.rb/5.2.0; +https://newsmast.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastouille.fr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://fd00.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://dju.social/) Bot","bot_name":"Dju"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fosstodon.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://freiburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://curloftheburl.nylarea.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.1 (http.rb/5.2.0; +https://social.hastily.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.r3pek.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.0 (http.rb/5.2.0; +https://degrowth.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (/global; amd64 Linux 6.16.0-gentoo; java 21.0.8; Europe/de) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://dresden.network/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.12; +https://eduresearch.social/)","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.5.5; https://pl.ugh.im ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://tny.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.98degrees.co.uk/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://typing.ink/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://raru.re/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://mastodon.falconk.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.rhys.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.coffee/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.games/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://alaskan.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://realsocial.life/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://botany.social/)","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.lostinok.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-01+chuckya (http.rb/5.3.1; +https://rivals.space/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://disabled.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodontech.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://openbiblio.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.1 (http.rb/5.2.0; +https://i.wildserver.ru/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.sarsoo.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8-woof (http.rb/5.2.0; +https://woof.tech/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://retro.pizza/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://neuland.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://l3ib.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.8.0; https://txne.org ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://linuxrocks.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5+glitch (http.rb/5.2.0; +https://f.bumblebee.systems/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://fediway.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.2.0 (Mastodon/3.4.1 Fedibird/0.1; +https://fedibird.com/) Bot","bot_name":"Fedibird"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.scot/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://oceanplayground.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://hsnl.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://inductive.space/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://fursuits.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.seattlematrix.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8+glitch (http.rb/5.2.0; +https://mastodon.getcrazy.today/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://sechtor.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.yohan.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://6p.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.watsonlabs.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.11; +https://msps.io/) Bot","bot_name":"MSPS"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://burningboard.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://untrusted.website/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://tapbots.social/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.edu.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (/global; amd64 Linux 6.15.8-gentoo; java 21.0.8; Europe/de) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"SummalyBot/5.2.1","bot_name":"Summaly"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://systerserver.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://musicians.today/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.eddmil.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+chuckya (http.rb/5.3.1; +https://maltadon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-10+glitch (http.rb/5.3.1; +https://tweesecake.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.rights.ninja/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.2 (http.rb/5.3.1; +https://social.owlcode.tech/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://livellosegreto.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://socialbc.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 VirusTotalBot","bot_name":"VirusTotal"} +{"user_agent":"Mastodon/4.3.3 (http.rb/5.2.0; +https://mastodon.coffee/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tuohy.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hci.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://birdbox.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.bau-ha.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://mastodon.pirateparty.be/) Bot","bot_name":"MastoD"} +{"user_agent":"Mastodon/4.4.0-nightly.2025-03-17+glitch (http.rb/5.2.0; +https://mstdn.dk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://logoff.website/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://graz.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://freedomofspee.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://witter.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://social.uggs.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.2+glitch (http.rb/5.2.0; +https://mastodon.bayern/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://status.pointless.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://draggar.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (/global; amd64 Linux 6.8.0-71-generic; java 21.0.8; Australia/en) http://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://bunt.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://moss.haus/) Bot","bot_name":"Moss"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://don.linxx.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://zirk.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://toot.norbipeti.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://ursal.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1-477-g66687bed; https://altelectron.org.uk ; Bot","bot_name":"Pletron"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.kern.pm/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.3 (http.rb/5.2.0; +https://mastodon.aads.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Twingly Recon-Klondike/1.0 (+https://app.twingly.com/public-docs/crawler)","bot_name":"Twingly Klondike"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodontech.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"OI-Crawler/Nutch (https://openintel.nl/webcrawl/)","bot_name":"OpenIntel"} +{"user_agent":"Mastodon/4.3.8+chinwag (http.rb/5.2.0; +https://social.chinwag.org/) Bot","bot_name":"ChinWag"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://beige.party/) Bot","bot_name":"MastoBeige"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://kzoo.to/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://osna.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://social.toplap.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.anarres.family (http.rb/5.3.1; +https://tau-ceti.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://mspsocial.net/) Bot","bot_name":"MS Social"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://toot.nclf.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.2+glitch (http.rb/5.3.1; +https://hax.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://geraffel.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mast.mrrl.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://lieurance.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.com.br/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://chitter.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.157 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)","bot_name":"Ads-Google"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 ISSCyberRiskCrawler/2.0.2","bot_name":"ISS Cyber"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://ono-sendai.jevidl.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"SEMrushBot","bot_name":"SEMrush"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://social.hardfork.ngo/) Bot","bot_name":"Hardfork"} +{"user_agent":"Poggio-Citations 1.0 (+https://docs.poggio.io/api/robots)","bot_name":"Poggio"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fantastic.earth/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://neighborli.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.4; +https://toot.ipghod.tech/) Bot","bot_name":"Tooth"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.bentasker.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-16 (http.rb/5.3.1; +https://mastodon.snld.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://out.ruin.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.catgirlcloud (http.rb/5.3.1; +https://mastodon.catgirl.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.wales/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mast.wangwood.house/) Bot","bot_name":"Mastodon"} +{"user_agent":"Misskey/2025.4.3 (https://deadrobots.social)","bot_name":"Misskey Scout"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://atmasto.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (/global; amd64 Linux 6.16.2-gentoo; java 21.0.8; Europe/de) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://nrw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.ridetrans.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.sineware.ca/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1+chuckya (http.rb/5.3.1; +https://masto.doskel.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://retrorewind.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://piipitin.fi/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.nzoss.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://astronomy.city/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch (http.rb/5.3.1; +https://mastodon.f4n.de/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://d3f4ult.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.linkerror.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://mefi.social/) Bot","bot_name":"http"} +{"user_agent":"Mozilla/5.0 (compatible; Timpibot/0.9; +http://www.timpi.io)","bot_name":"Timpi"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://dariox.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.0; +https://mas.koi.bot/)","bot_name":"Koi"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://syzito.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"2ip bot/1.1 (+http://2ip.io)","bot_name":"IP Scout"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://canada.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://drupal.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://mstdn.fr/) Bot","bot_name":"Petalo"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ruby.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://pourparler.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://lou.lt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://masto.toadking.com/) Bot","bot_name":"ToadKing"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://c3d2.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://podcastindex.social/)","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 9; Redmi 8A Build/PKQ1.190319.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36 YaApp_Android/10.61 YaSearchBrowser/10.61","bot_name":"Android Chrome"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://esq.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mountains.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://4d2.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://socialcoders.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.eisenbergs.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://h-net.social/) Bot","bot_name":"Petal"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://penfount.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://oc.todon.fr/) Bot","bot_name":"Petal"} +{"user_agent":"Googlebot-Video/1.0","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ravenation.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.findmyown.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hactivedirectory.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.dias.ie/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tastybugs.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://social.oha.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://chaos-gp.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.sandwich.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://m.alittlenook.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dawdling.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://revolutionize.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://mastodon.jfr.im ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://werd.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://flokinet.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-28 (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.acc.sunet.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://tkz.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://macaw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tooot.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://gardenstate.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://ma.fellr.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-30+glitch (http.rb/5.3.1; +https://genericsocialmediapage.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://punkstodon.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"TelegramBot (like TwitterBot)","bot_name":"Telegram"} +{"user_agent":"Mozilla/5.0 (compatible; ScannerBot/1.0)","bot_name":"Scanner"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://mastodon.andreubotella.com/)","bot_name":"Andréu"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://masto.deluma.biz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodonsweden.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://social.makerforums.info/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://social.annacon.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.garudalinux.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://okla.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mustard.blog/) Bot","bot_name":"Mustard"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://existiert.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://amigos.family/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://selden.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://payravi.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedi.gremlin.work/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://mastodon-japan.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://a2mi.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://bolha.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://post.lurk.org/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://o3o.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://meerjungfrauengrotte.de/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://suarez.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-25 (http.rb/5.3.1; +https://mastodon.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rockosbasilisk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://social.plux.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.0.4 (Mastodon/3.5.19; +https://asentientbot.ca/)","bot_name":"Sentient"} +{"user_agent":"Mastodon/4.4.0-beta.2+glitch (http.rb/5.3.1, like Discordbot; +https://60228.dev/)","bot_name":"Discord"} +{"user_agent":"Mozilla/5.0 (compatible; wpbot/1.3; +https://forms.gle/ajBaxygz9jSR8p8G9)","bot_name":"WP"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.meenzen.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://share.elouworld.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://mastodon.eroticmohel.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://kafeneio.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://anticapitalist.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.io18.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://thelounge.network/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1-64-g254b31bf-develop; https://social.smallworks.eu ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.sangberg.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://fandom.garden/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://peoplemaking.games/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.com.tr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.tetaneutral.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tukkers.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://puntarella.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.petripulkkinen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Screaming Frog SEO Spider/19.8","bot_name":"ScreamingFrog"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://equestria.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://toot-toot.wyrihaxim.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://hobbs-end.uk/) Bot","bot_name":"Hobbs End"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://khuluma.de/) Bot","bot_name":"Khu"} +{"user_agent":"yacybot (/global; amd64 Linux 6.15.5-gentoo; java 21.0.7; Europe/de) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://federate.me.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.yearg.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://sipstea.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://m.yyilmaz.com.tr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://turtleisland.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://xarxamontgri.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"cuteanimegirls/69420 pleromainstance/992242 hurd-i328/0.99999 riscv128bit (fedi.lowpassfilter.link redtechengineer@fedora.email); Bot","bot_name":"CuteAnime"} +{"user_agent":"Pleroma 2.6.3; https://fed.xnor.in ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.bitsofsimplicity.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-bark+prod (http.rb/5.2.0; +https://bark.lgbt/) Bot","bot_name":"Bark"} +{"user_agent":"Mastodon/4.3.6+glitch.cathode (http.rb/5.2.0; +https://cathode.church/) Bot","bot_name":"Cathode"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://boriken.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://g0v.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://shredderfood.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mstdn.wolfpeach.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mindly.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"FediversoStudyBot/1.0 (Estudio acad\\xE9mico sobre el Fediverso)","bot_name":"Fediverso Study"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.brittle.st/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://cr8r.gg/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://vkl.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://soc.kvet.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedi.ivarch.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://betagravity.com/) Bot","bot_name":"Betag"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.jamesoff.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://androiddev.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.darxxide.eu/) Bot","bot_name":"Darxxide"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.neatobuilds.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://social.vleij.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.shbbl.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://masto.bhsnw.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dbcohen.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://indiehackers.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://queerspirituality.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://poweredbygay.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://bonn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mast.hpc.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://front-end.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://genart.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.wakemu.fr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.coop/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.8.0; https://pleroma.debian.social ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://terra.incognita.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"RSSingBot (http://www.rssing.com)","bot_name":"RSSing"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://noise.j-w.au/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://mastodon.helvetet.eu/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.scot/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+est (http.rb/5.3.1; +https://est.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://types.pl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.authbypass.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://its.bencarneiro.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://v2br.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.lothlorien.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mast.welcomereality.tk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pancake.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toque.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.li/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://unredacted.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://opencoaster.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://m.hirad.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.0-beta.1 (http.rb/5.2.0; +https://mastodon.elevenways.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://4bear.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://autistics.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://gaygeek.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://oslo.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://commodore.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.simply-life.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.brainsys.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 15; SM-S911U Build/AP3A.240905.015.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/138.0.7204.168 Mobile Safari/537.36 OcIdWebView ({\\x22os\\x22:\\x22Android\\x22,\\x22osVersion\\x22:\\x2235\\x22,\\x22app\\x22:\\x22com.google.android.gms\\x22,\\x22appVersion\\x22:\\x22252635000\\x22,\\x22style\\x22:2,\\x22callingAppId\\x22:\\x22com.google.android.googlequicksearchbox\\x22,\\x22isDarkTheme\\x22:true})","bot_name":"Android Chrome"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mast.solarisfire.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"PHPot Verispider v0.1 - http://www.projecthoneypot.org/","bot_name":"Honey Pot Spide"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://mastodon.helvetet.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.glyphy.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.uy/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://mastodon.testausserveri.fi/) Bot","bot_name":"Testa"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mato.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://pl.citw.lgbt ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://shakedown.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://paquita.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://indiepocalypse.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.13; +https://neurodifferent.me/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tenforward.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.plus/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://quietzero.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.kif.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://redwombat.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.2; +https://toots.nu/) Bot","bot_name":"httpRB"} +{"user_agent":"OpticAPI/1.0 (Plugin Verification Bot)","bot_name":"Optic API Plugin"} +{"user_agent":"Mozilla/5.0 (compatible; rss-is-dead.lol web bot; +https://rss-is-dead.lol)","bot_name":"RSS"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.vleij.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ohnepunktundkomma.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-05 (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.linss.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.8.0; https://blah.rako.space ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; GeedoProductSearch; +https://geedo.com/product-search.html) Chrome/134.0.0.0 Safari/537.36","bot_name":"Geedo"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +ClaudeBot@anthropic.com)","bot_name":"Claude"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0, like Discordbot; +https://social.crabs.life/)","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://hci.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://mstdn.jmrp.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://xoxo.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://echoingdusk.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://social.edist.ro/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://101010.pl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://disobey.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.colonelkrud.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.borstis.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://social.defenestrate.it ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://bijaiv.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.heise.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bouma.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://fedi.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://squawk.mytransponder.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+clacks (http.rb/5.2.0; +https://clacks.link/) Bot","bot_name":"Clacks"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://ieji.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://flaki.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://henshaw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.19; +https://mstdn.mx/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://laterracita.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://appdot.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://krapp.masto.host/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.kyiv.dcomm.net.ua/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.uibk.ac.at/) Bot","bot_name":"Masto"} +{"user_agent":"Pleroma 2.9.1; https://craftopi.art ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-05 (http.rb/5.3.1; +https://m.ipoac.nl/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://mastodon.ai8w.ddns.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.oe7drt.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+chuckya (http.rb/5.3.1; +https://lab.wheelsbot.dev/) Bot","bot_name":"Wheels"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://river.group.lt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://linux.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.0; +https://sleepy.social/) Bot","bot_name":"Sleepy"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://lepoulsdumonde.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.brol.tech/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.design/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.3; +https://tty0.social/) Bot","bot_name":"TTY0"} +{"user_agent":"Mastodon/4.3.0 (http.rb/5.2.0; +https://astrodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://ayom.media/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dair-community.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://toot.monny.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://indieauthors.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.squarecows.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://p.mr64.net ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mozilla/5.0 (compatible; InfoscapeBot/1.0; +https://infoscape.news/bot)","bot_name":"Infoscape"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://toot.fan/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.1 (http.rb/5.2.0; +https://x0r.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://noxon.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.codyevanscomputer.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://tired.social/) Bot","bot_name":"Tired"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://regenerate.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ei.heloise.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mast.swfindercore.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.km6g.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://opensocial.media/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.praxis.red/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://hub.mtf.party/) Bot","bot_name":"MtF"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://fedi.jrlenz.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+magincia (http.rb/5.3.1; +https://magincia.cafe/) Bot","bot_name":"Magincia"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://coales.co/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://solarsystem.social/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.4; +https://weatherishappening.network/) Bot","bot_name":"Weatherish"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://woof.group/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mcr.wtf/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://wikis.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://metalhead.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://lile.cl/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://donmasto.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mograph.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fribygda.no/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://glammr.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.8.0-5-gfe3e61f6; https://social.shadowkat.net ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://nexto.my/) Bot","bot_name":"Nexto"} +{"user_agent":"Fedicabot","bot_name":"Fedica"} +{"user_agent":"Mastodon/4.3.1 (http.rb/5.2.0; +https://spreebits.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://vm.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://social.ds106.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://atmasto.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rfj.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://talking.dev/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://toot.aquilenet.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://securitycafe.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Qwantbot/1.0_11865275; +https://help.qwant.com/bot/)","bot_name":"Qwant"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://paws.press/) Bot","bot_name":"Paws"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://bolha.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://dotnet.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://burma.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.6.3; https://social.tummyacid.net ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.xinghaizhandui.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://friscode.dev/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.tinycyber.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://is-a.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1 (http.rb/5.3.1; +https://mastodon.szservices.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://gnu.gl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://billys.mom/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9-stable+ff1 (http.rb/5.2.0; +https://sloth.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.22; +https://chatsubo.bar/) Bot","bot_name":"Chatsubo"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://swiss.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://writing.exchange/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://neopaquita.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1-theatl-theconnector-0.5.0 (http.rb/5.3.1; +https://theatl.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://theblower.au/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://gamedev.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://corneill.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://hydrocube.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.5.1; https://vostain.net ; Bot","bot_name":"Pleroma"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.7; +https://star.shaped.dog/) Bot","bot_name":"Star"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://m.ai6yr.org/) Bot","bot_name":"Http"} +{"user_agent":"Pleroma 2.7.0-70-g36d469cf; https://spodeli.org ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://xtux.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+mementomods-2025-07-26 + Mastodon Bird UI 2.3.4rc2 (http.rb/5.3.1; +https://mementomori.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://systemli.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://quacc.space/) Bot","bot_name":"Masto"} +{"user_agent":"Pleroma 2.9.1; https://majors.social ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://3zi.ru/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://toots.matapacos.dog/) Bot","bot_name":"Matapaco"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.22; +https://social.sdf.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.22; +https://social.politicaconciencia.org/) Bot","bot_name":"Polito"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://instancia.org/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vermont.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.12; +https://mastodon.ericlathrop.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://trekkies.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.jordanwages.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; PriEcoBot/1.0; +https://prieco.net)","bot_name":"PriEco"} +{"user_agent":"Mozilla/5.0 (compatible; t3versionsBot/1.0; +https://www.t3versions.com/bot)","bot_name":"t3Versions"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://mastodon.eroticmohel.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"AcademicBotRTU (https://academicbot.rtu.lv; mailto:caps@rtu.lv)","bot_name":"Academic RTU"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://botany.social/)","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko)Version/9.0 Mobile/13B143 Safari/601.1 (compatible; Baiduspider-render/2.0;+http://www.baidu.com/search/spider.html)","bot_name":"Baidu"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://hessen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://h4.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://icosahedron.website/), like Discordbot","bot_name":"Discord"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://sauna.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.k2pk.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://masts.lv/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://hippodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.sprawl.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dfir.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fnord.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://moodoo.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://roko.basilisk.technology/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.8.0; https://weaponx.social ; Bot","bot_name":"Pleroma"} +{"user_agent":"Pleroma 2.9.1-187-gb082e1f8-develop; https://mstdn.1nnn.ru ; Bot","bot_name":"Pleroma Assistant"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.kontrollapparat.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://collar.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://toot.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://3dp.chat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://karlsruhe.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.jing.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.0 (http.rb/5.2.0; +https://friendsofdesoto.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://xoxo.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://musician.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rls.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://toot.earth/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://tuiter.rocks/) Bot","bot_name":"Mastodot"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://someplace.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://greifswald.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://youto.lol/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://labyrinth.social/) Bot","bot_name":"Labyrinth"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://jb.md/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://social.yesterweb.org/) Bot","bot_name":"Yester"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dobbs.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.15; +https://bitbang.social/) Bot","bot_name":"BitBang"} +{"user_agent":"Mastodon/4.3.9-stable+ff1 (http.rb/5.2.0; +https://climatejustice.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://blorbo.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://gluck.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.la/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mendeddrum.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://tsukihi.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9-stable+ff1 (http.rb/5.2.0; +https://fedi.at/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://leds.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://us.andrewscom.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://myonlinepi.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.execbase.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://thatssofetch.pink/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://jasette.facil.services/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://mammut.gogreenit.net/) Bot","bot_name":"Gogreenit"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://idlethumbs.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.tacoma.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://liberdon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://rawr.tf/) Bot","bot_name":"Rawr"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://tux.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.derg.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://icmef.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.moimeme.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Akkoma 3.10.2; https://3v.is ","bot_name":"Akkoma Fixer"} +{"user_agent":"Pleroma 2.9.1; https://m.biendeo.com ; Bot","bot_name":"Biendo"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastoot.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://twiukraine.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://norcal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://triangletoot.party/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.cool/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://mastodon.gal/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.telemetrydeck.com/) Bot","bot_name":"MastoDuck"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.lwr.wtf/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-25 (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Synapse (bot; +https://github.com/matrix-org/synapse)","bot_name":"Synapse"} +{"user_agent":"yacybot (/global; amd64 Linux 6.15.6-gentoo; java 21.0.8; Europe/de) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.tinycart.club/) Bot","bot_name":"Masto"} +{"user_agent":"Mozilla/5.0 (compatible; Website-info.net-Robot; https://website-info.net/robot)","bot_name":"Website Info Ro"} +{"user_agent":"yacybot (/global; amd64 Linux 5.15.0-144-generic; java 1.8.0_462; Europe/en) http://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://basilisk.gallery/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://darkmoon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.integrate-it.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://afop.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://skj.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://diaspodon.fr/) Bot","bot_name":"Diaspodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://snug.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.yttrx.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://beutl.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://my.bucketbaby.org ; Bot","bot_name":"Pleroma"} +{"user_agent":"Pleroma 2.6.2; https://social.kofo.com ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.maescool.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.strafpla.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.ar.al/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.lv/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cityofchicago.live/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://tldr.nettime.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://thecanadian.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://root.moose.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://space.jeroenvd.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"bitlybot/3.0 (+http://bit.ly/)","bot_name":"Bitly"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.strafpla.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11-woof (http.rb/5.2.0; +https://woof.tech/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301579338 (Linux; U; Android 15; en_US; TECNO LJ8; Build/AP3A.240905.015.A2; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"PathPubCrawler","bot_name":"Path Pub"} +{"user_agent":"yacybot (/global; amd64 Linux 6.1.0-0.deb11.18-amd64; java 11.0.20.1; Etc/en) http://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fedi.machaj.info/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://recsys.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://vis.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://helvede.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.eddmil.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.bsd.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://spore.social/) Bot","bot_name":"MastoSpur"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.zaclys.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (X11; U; Linux Core i7-4980HQ; de; rv:32.0; compatible; JobboerseBot; http://www.jobboerse.com/bot.htm) Gecko/20100101 Firefox/38.0","bot_name":"Jobboerse"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.flying-snail.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.1+glitch (http.rb/5.3.1; +https://m.noxie.ch/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://mastodon.ti-fr.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.6; +https://mastodon.holeyfox.co/) Bot","bot_name":"Holey Fox"} +{"user_agent":"Mastodon/4.5.0-alpha.1@a368b29+io (http.rb/5.3.1; +https://vmst.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://teal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://saasycloud.social/) Bot","bot_name":"Saasycloud"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.joelle.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://m.foxxmd.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.chriswiegman.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.babb.no/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.18; +https://kamel.social/) Bot","bot_name":"Kamel"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.13; +https://penguicon.social/) Bot","bot_name":"Penguicon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://locksport.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.education/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://toot.thoughtworks.com/) Bot","bot_name":"Thoughts"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bertha.social/) Bot","bot_name":"Bertha"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.chrisalemany.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://stefanbohacek.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://shellsharks.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://masto.hackers.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.eus/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://opalstack.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.berlin/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://ecoevo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://berlin.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://lediva.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://23.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+vivaldimod (http.rb/5.3.1; +https://social.vivaldi.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1756649077-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://bobbinsrobots.com/)","bot_name":"BobbinsRo"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://masto.machlis.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://zeroes.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.green/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://graphics.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.coop/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.borstis.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"NewsBlur Page Fetcher - 4 subscribers - https://www.newsblur.com/site/1041351/rudis (\\x22Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15\\x22)","bot_name":"NewsBlur Page"} +{"user_agent":"Mastodon/4.3.2 (http.rb/5.2.0; +https://masto.bg/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://chasmcity.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.thefword.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://arabi.gay/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://m.fa.gl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://digitalcourage.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://social.eike.in/) Bot","bot_name":"Eike"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://notpickard.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://photog.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://meron.io/) Bot","bot_name":"Meron"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://edumasto.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://gumzo.africa/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.axvig.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.floe.earth/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://denvr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mudhut.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.ml/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.yakshed.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://freie-re.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.7; +https://quakers.social/) Bot","bot_name":"Quaker"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://researchbuzz.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://piupiupiu.com.br/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.pu2ttz.app.br/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.rootaccess.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://kpop.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://cuddly.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://reality2.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://poliversity.it/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.aldiserver.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://ni.hil.ist/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://fedifreu.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ibenot.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-kibble+HnP (http.rb/5.3.1; +https://makes.hoof-paw.art/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.18; +https://gardons.contact/) Bot","bot_name":"Gardon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://urface.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mstdn-social.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.binarydad.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hoagie.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://beneaththesurface.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.scharner.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://schoonens.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.fibre74.fr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://thefantasy.pub/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.ameth.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.as743.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bobbinsrobots.com/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.datarek.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.radfoote.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tad.me/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://spacey.space/) Bot","bot_name":"Spacey"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://f.reun.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://cyberfurz.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://gulp.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://xantronix.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1+est (http.rb/5.3.1; +https://mdon.ee/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301579338 (Linux; U; Android 13; en_GB; SM-A226B; Build/TP1A.220624.014; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"ICC-Crawler/3.0 (Mozilla-compatible; ; https://ucri.nict.go.jp/en/icccrawler.html)","bot_name":"ICC"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.content.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://indieweb.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.brol.tech/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://freiburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://rawr.tf/) Bot","bot_name":"Rawr"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://toot.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://freefree.ps/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mountains.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodontech.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.cr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://shellsharks.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://discuss.systems/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://techhub.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://ruby.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://friscode.dev/) Bot","bot_name":"Frisco"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.tacoma.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.incognitus.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.joshanders.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1755309079-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://social.nebula.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.strafpla.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1755059626-0","bot_name":"Yahoo"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.12; +https://cytag.nl/) Bot","bot_name":"Cytag"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://movimientos.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.thebeeches.house/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301575114 (Linux; U; Android 12; en_IN; RMX3612; Build/SP1A.210812.016; Cronet/140.0.7327.5)","bot_name":"Google"} +{"user_agent":"com.google.android.googlequicksearchbox/301564842 (Linux; U; Android 9; en_AU; CPH2015; Build/PPR1.180610.011; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; MixrankBot; crawler@mixrank.com)","bot_name":"Mixrank"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://fedi.zowi.ee/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://snabelen.no/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.legrand.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.saarland/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://digitalcourage.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.lol/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.me.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://flipboard.social/) Bot","bot_name":"Flipboard"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://toot.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.lqx.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.sandwich.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://nerdout.club/) Bot","bot_name":"NerdOut"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.quirijngb.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://zeal.center/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36 OpenGraphXYZBot/1.0","bot_name":"OpenGraphXYZ"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://eigenmagic.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://crispsandwi.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://tacocat.space/) Bot","bot_name":"http"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.3.0-alpha.3+glitch; +https://social.effy.space/) Bot","bot_name":"Effy Space"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://shark.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://yeg.bike/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://social.snircle.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://goblin.camp/) Bot","bot_name":"Goblin"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.pounce (http.rb/5.3.1; +https://pounced-on.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.22; +https://romancelandia.club/) Bot","bot_name":"Roma"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://thomasjpr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://akuanduba.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.20; +https://app.bikers.social/) Bot","bot_name":"Bikers Social"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.foxfam.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.nlnetlabs.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://social.synesthesia.co.uk/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://trunk.mad-scientist.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://mastodon.opportunis.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://fitt.au/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.tpapak.com/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.25; +https://nfdi.social/) Bot","bot_name":"NFDI"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://girlcock.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://joshuastrobl.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://roosendaal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://mastodon.vapronva.pw/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://lyingvoid.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://zomglol.wtf/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.d2dx.com/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.20; +https://social.lama-corp.space/) Bot","bot_name":"Llama"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.allnutt.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.pp.lu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://icanteventoot.help/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.chrispelli.fun/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://odd.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.15; +https://marimoko.biz/) Bot","bot_name":"Marimoko"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://open-ground.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://toot.wiai.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.birdinter.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://episcodon.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.18; +https://skj.ca/) Bot","bot_name":"Petaland"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.16; +https://lavraievie.social/) Bot","bot_name":"Lavravie"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.4; +https://m.galaxybound.com/) Bot","bot_name":"GalaxyBound"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://cascarilla.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.posting.haus/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://slashine.onl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+chuckya.git (http.rb/5.2.0; +https://toot.nels.onl/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301555722 (Linux; U; Android 14; en_IN; SM-A346E; Build/UP1A.231005.007; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1753473524-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mapstodon.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://rollenspiel.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.me.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.3; +https://mast.shitpostbot.com/) Bot","bot_name":"shitpost"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.touha.me/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://suarez.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.xinghaizhandui.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://todon.nl/) Bot","bot_name":"Todon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://v2br.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodont.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodonsweden.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://datavis.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://toot.aquilenet.fr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.glyphy.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://noxon.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://burningboard.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Gemini-Deep-Research; +https://gemini.google/overview/deep-research/) Chrome/135.0.0.0 Safari/537.36","bot_name":"Gemini"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://gs.leftic.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://wizzzard.online/) Bot","bot_name":"Wizzzard"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.cologne/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cybervillains.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://opencoaster.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"GammaLiveCrawlBot/0.1","bot_name":"Gamma Live"} +{"user_agent":"Screaming Frog SEO Spider/20.3","bot_name":"Screaming Frog"} +{"user_agent":"Mastodon/4.4.1+magincia (http.rb/5.3.1; +https://magincia.cafe/) Bot","bot_name":"Magincia"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.meenzen.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mazanec.social/) Bot","bot_name":"Mazanec"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.maleo.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://autonomous.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://supervolcano.angryshark.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://heads.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://arram.senta-la.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://mastodon.nervesocket.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vivaristics.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2+donte (http.rb/5.3.1; +https://masto.donte.com.br/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://pan.rent/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://urbansolarpunk.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mast.uxp.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://typo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mnstdn.monster/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://blop.social/) Bot","bot_name":"Blop"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://mastodon.cultuurpers.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://333thats33s.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://zuhair.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tusk.sfunk1x.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://taxevasion.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://frawas.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.forklevelzero.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://chirpi.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://swissodon.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.crablab.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://tranvender.site/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://pandas.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://m.undreaming.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.spv.sh/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://mastodon.scientiam.org/) Bot","bot_name":"Scientia"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://masto.globaleas.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.pnpde.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://megantoots.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301555722 (Linux; U; Android 10; en_US; vivo 1935; Build/QP1A.190711.020; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://beige.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://reporter.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://mastodon.pointless.net/) Bot","bot_name":"Point"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://xeno.glyphpress.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mas.atmx.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://warhammer.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+donte (http.rb/5.3.1; +https://masto.donte.com.br/) Bot","bot_name":"MastoDante"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.marxist.network/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://river.geek.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://m.ocsf.in/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://megalonyx.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.scribblers.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://social.galaxy-control.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://lawfedi.blue/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://prattle.org.uk/) Bot","bot_name":"Prattle"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mas.wrong.tools/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://toot.cafe/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://toque.town/) Bot","bot_name":"Toque"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://tilde.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://retro.pizza/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.findmyown.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mast.eu.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://kzoo.to/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sfba.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://mastodon.ai8w.ddns.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sueden.social/) Bot","bot_name":"Sueden"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sigmoid.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodontti.fi/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://hadan.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tuohy.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sunny.garden/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mustard.blog/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://astronomy.city/) Bot","bot_name":"Astronomy City"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.colonelkrud.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.98degrees.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.integrate-it.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://revolutionize.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://mastodon.projetretro.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fnord.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.alancfrancis.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://mstdn.thms.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.akrabat.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 12; SM-A217F Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/138.0.7204.179 Mobile Safari/537.36 OcIdWebView ({\\x22os\\x22:\\x22Android\\x22,\\x22osVersion\\x22:\\x2231\\x22,\\x22app\\x22:\\x22com.google.android.gms\\x22,\\x22appVersion\\x22:\\x22252932000\\x22,\\x22style\\x22:2,\\x22callingAppId\\x22:\\x22com.google.android.googlequicksearchbox\\x22,\\x22isDarkTheme\\x22:true})","bot_name":"Android Quick Search"} +{"user_agent":"Mastodon/4.4.0-alpha.3 (http.rb/5.2.0; +https://procrastodon.net/) Bot","bot_name":"Procrasod"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://blackqueer.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.nelson.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://mstdn.omer.land/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://defcon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301579347 (Linux; U; Android 16; en_US; Pixel 9 Pro; Build/BP2A.250805.005; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"com.google.android.googlequicksearchbox/301569594 (Linux; U; Android 15; en_IN; 23128PC33I; Build/AP3A.240905.015.A2; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (Linux; Android 12; SM-A217F Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/138.0.7204.169 Mobile Safari/537.36 OcIdWebView ({\\x22os\\x22:\\x22Android\\x22,\\x22osVersion\\x22:\\x2231\\x22,\\x22app\\x22:\\x22com.google.android.gms\\x22,\\x22appVersion\\x22:\\x22252932000\\x22,\\x22style\\x22:2,\\x22callingAppId\\x22:\\x22com.google.android.googlequicksearchbox\\x22,\\x22isDarkTheme\\x22:true})","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.erasethis.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://scholar.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://masto.pt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://union.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://frogs.lgbt/) Bot","bot_name":"Frogs"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://fedi.gremlin.work/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://toot.sg/) Bot","bot_name":"Toot"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.ornella.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.touha.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://norcal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://momou.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://underwear.social/) Bot","bot_name":"Underwear"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.9; +https://ezra.social/) Bot","bot_name":"Ezra"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.svavar.com/) Bot","bot_name":"MastoD"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://telefant.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://trans.house/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://milliways.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.5+glitch; +https://atx.pub/) Bot","bot_name":"Http"} +{"user_agent":"Mastodon/4.5.0-alpha.1+chuckya (http.rb/5.3.1; +https://wetdry.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://pawb.fun/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.social/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.6; +https://social.0x705h.com/) Bot","bot_name":"Pet"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.pub.solar/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hear-me.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mas.erb.pw/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rebel.ar/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.opendesktop.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://brejo.us/) Bot","bot_name":"Masto"} +{"user_agent":"Pleroma 2.9.1; https://charade.social ; Bot","bot_name":"Charade"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://prettyaweso.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.toot9.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://restive.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.rmict.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://social.evan.exposed/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://m.ivi.wang/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.parastor.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://grosshans.online/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://c64.page/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://hameln.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sachsen-medien.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.flying-snail.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://troet.karlvalentin.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://batchats.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-29+glitch (http.rb/5.3.1; +https://social.arazil.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://klunscher.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pkutalk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://social.futurnumerique.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://mstdn.thms.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedi.machaj.info/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.gkbrk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://theweird.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://solarpunk.moe/) Bot","bot_name":"Solarspunk"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://social.cthululemon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://queralt.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.22; +https://mastodon.indie.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pub.calebhearth.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://bigshoulders.city/) Bot","bot_name":"BigShoulders"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://blogi.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fairmove.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.monoceros.co.za/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://kopiti.am/) Bot","bot_name":"Kopiti"} +{"user_agent":"Mozilla/5.0 (Linux; arm_64; Android 14; SM-A065F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.6834.579 YaSearchBrowser/25.26.1 BroPP/1.0 YaSearchApp/25.26.1 webOmni SA/3 Mobile Safari/537.36","bot_name":"Yandex"} +{"user_agent":"yacybot (/global; amd64 Linux 6.1.0-37-amd64; java 24.0.2; Etc/en) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://toot.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://todon.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://witter.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.sprawl.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://dice.camp/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.linux.pizza/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://vis.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://social.oha.wtf/) Bot","bot_name":"Mastod"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://suomi.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://spore.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://social.b0tt0m.xyz/) Bot","bot_name":"B0tt0m"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.green/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://opensocial.media/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://pancake.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://bayes.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://betagravity.com/) Bot","bot_name":"Betagridium"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://ecoevo.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.berlin/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://rfj.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.pub.solar/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.18; +https://toot.bike/) Bot","bot_name":"Toot Bike"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mast.yourautisticlife.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://saint-paul.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301564842 (Linux; U; Android 13; en_US; M2103K19PG; Build/TP1A.220624.014; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://clj.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.nmaggioni.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://social.floss.uz/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.majorshouse.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://webworker.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://file-explorers.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.arch-linux.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstd.ink/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://m.superuser.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://acrion.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+dirty (http.rb/5.2.0; +https://transfur.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.teapots.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://surlaterre.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://devellight.space/) Bot","bot_name":"Devellight"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mas.corq.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://stay.woke.institute/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://saltedskies.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://turtlesallthewaydown.com/) Bot","bot_name":"Turtles"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.andmc.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://toot.nsgn.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://hub.taku.moe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://burnout.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://the.kenphused.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.toe.quest/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.dru5k1.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://c18.masto.host/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.isaa.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://rheinhessen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.7; +https://mastodon.481516.xyz/) Bot","bot_name":"Petrol"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://raru.re/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://furs.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://pipou.academy/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.nyc/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.apps.searchlite/1078153 (Linux; U; Android 11; en_IN; RMX3231; Build/RP1A.201005.001; Cronet/139.0.7205.3)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://helvede.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fosstodon.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sasa.africa/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+vivaldimod (http.rb/5.3.1; +https://social.vivaldi.net/) Bot","bot_name":"Vivaldi"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.uno/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://securitycafe.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://defcon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://academiccloud.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://ruhr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.machlis.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.teddycaddy.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://disobey.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://hci.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.acm.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://openbiblio.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.mit.edu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://hippodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.moimeme.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://rockosbasilisk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.21; +https://weremember.social/) Bot","bot_name":"Weremember"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://diaspora.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://asocial.dk/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.12; +https://feral.cafe/) Bot","bot_name":"Feral"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://masto.nobigtech.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.tn/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://niagara.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.2; +https://thefolklore.cafe/) Bot","bot_name":"Folklore"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-05 (http.rb/5.3.1; +https://mastodon.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tapbots.social/)","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Timpibot/0.8; +http://www.timpi.io)","bot_name":"Timpi"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://qth.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://discuss.systems/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.acm.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://twit.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodontti.fi/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://pnw.zone/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.1 (http.rb/5.2.0; +https://toot.lqdev.tech/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301569590 (Linux; U; Android 11; pt_BR; SM-A105M; Build/RP1A.200720.012; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-31 (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-31 (http.rb/5.3.1; +https://mastodon.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://social.eike.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pouet.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://social.perceptiveconstructs.com ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.finkhaeuser.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://noauthority.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10+hometown-1.1.1; +https://recurse.social/) Bot","bot_name":"Recurse"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastoart.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mattstodon.panar.ooo/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedihum.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.5; +https://slon.yojik.net/) Bot","bot_name":"Slon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.intothecloud.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://en.osm.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.hardcoredevs.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://async.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.grin.hu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://wspanialy.eu/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.14; +https://cybercult.biz/) Bot","bot_name":"Cyber Cult"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.thecrimsontint.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.20; +https://yeoldepub.social/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bardicperspiration.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.downey.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.diniscorreia.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://social.greinr.com/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://qqq.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://knse.net/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://games.ngo/) Bot","bot_name":"Http"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://social.cpp.org.pl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://boojiee.co/) Bot","bot_name":"Boojiee"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://jabber.net.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.migou.synology.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://social.chatty.monster/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bleep.town/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://ordinary.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"SeobilityBot (SEO Tool; https://www.seobility.net/sites/bot.html)","bot_name":"Seobility"} +{"user_agent":"com.google.android.apps.searchlite/1078153 (Linux; U; Android 11; en_IN; V2125; Build/RP1A.200720.012; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; ImageFetcher/9.0; +http://wsrv.nl/)","bot_name":"ImageFetcher"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://cyberplace.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://freeradical.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.ookami.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://indieweb.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://unbound.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://ieji.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1756652132-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://boteden.com/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://podcastindex.social/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.octobot.space/)","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.1+glitch (http.rb/5.2.0; +https://gaymer.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://noods.fun/) Bot","bot_name":"Noods"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://cuties.cloud/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social2.ganyuss.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-28 (http.rb/5.3.1; +https://mastodon.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedi.nzyme.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://dcerberus.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://bne.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.23; +https://ehlo.exim.org/) Bot","bot_name":"Ehlo"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.skynetcloud.site/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://left-tusk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://burnthis.town/) Bot","bot_name":"BurnThis"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.3.0-alpha.3; +https://glitch.social/) Bot","bot_name":"Glitch Social"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.mit.edu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.gamedev.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://sueden.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://irrelephant.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodont.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (/global; amd64 FreeBSD 14.2-RELEASE-p1; java 17.0.14; GMT/en) http://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.tulsa.ok.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://formu1a.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://fromm.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mst.muiiio.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.pepicrft.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.0.4 (Mastodon/3.5.3; +https://social.ssbx.dev/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vickerson.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://apobangpo.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://bvp.me/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.anartist.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pynews.com.br/) Bot","bot_name":"Masto"} +{"user_agent":"yacybot (/global; aarch64 Linux 6.12.34+rpt-rpi-2712; java 17.0.16; Asia/zh) https://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://sfba.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://m.vrutkovs.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1@a842b14+pr-35210+io (http.rb/5.3.1; +https://vmst.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.linux.pizza/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://med-mastodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://sauropods.win/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://federate.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://colliderbias.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://sciences.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://urbanists.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://akademienl.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://dudo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://toot.community/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.1 (http.rb/5.2.0; +https://mastodon.macstories.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://collapsible.systems/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://social.codeofamor.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-nightly.2025-06-30+glitch (http.rb/5.3.1; +https://embracing.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://pouet.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mn.pasqal.ovh/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bildung.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://mastodon.functional.computer/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://social.zerojay.com/) Bot","bot_name":"ZeroJay"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://anarchism.space/) Bot","bot_name":"http_rb_"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.1; +https://clube.social/) Bot","bot_name":"Clube Social"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://hilltown.studio/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.renn.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://montereybay.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://the.tonytiger.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.krivokuca.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://csed.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://rukii.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://toot.2o4.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://geeknews.chat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://mastodon.neilzone.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rail.chat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://motern.media/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://nerdout.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.van-hemmen.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sangha.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://space.ax/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://jena.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://social.mkj.earth/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.gemo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.je/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.neometropolis.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.drewhess.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vyizis.tech/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://techtett.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ms.maritime.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mattstodon.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.pincade.com.au/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.mv2k.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.ithome.dk/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://sumanko.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://birdinternet.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-08 (http.rb/5.3.1; +https://grants.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://du.capricom.info/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mast.markla.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301560522 (Linux; U; Android 13; en_GB; RMO-NX1; Build/HONORRMO-N21; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://birdbox.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://illo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.0; +https://mastodon.canonicity.org/) Bot","bot_name":"Canicity"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://starbase80.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://dizl.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch (http.rb/5.3.1, like Discordbot; +https://speedlines.stctp.zone/) Bot","bot_name":"Speedlines"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ludosphere.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://zeppelin.flights/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fandom.ink/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.2 (http.rb/5.2.0; +https://gensokyo.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://discordian.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://m.universetoday.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301575114 (Linux; U; Android 14; en_IN; RMX3950; Build/UKQ1.231108.001; Cronet/140.0.7327.5)","bot_name":"Google"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://mstdn.fr/) Bot","bot_name":"Mastod"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://hactivedirectory.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mudhut.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://twitter.resolvt.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://econtwitter.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://zirk.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://pouet.chapril.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://xarxamontgri.masto.host/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://snabelen.no/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-alpha.2 (http.rb/5.3.1; +https://ursal.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://hachyderm.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://dfir.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://wandering.shop/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.li/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://okla.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.sandwich.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/5741de8 warc/v0.8.85","bot_name":"Archive"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.squarecows.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301545834 (Linux; U; Android 15; en_IN; 24048RN6CI; Build/AP3A.240905.015.A2; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.lochetfamily.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.foxes.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"FyndSearchEngine-Crawler (by fynd.bot; https://fynd.bot)","bot_name":"Fynd Search Engine"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.duncanhart.com/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://mister.computer/) Bot","bot_name":"Mister"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch (http.rb/5.3.1; +https://boing.world/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://self.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://toot.gagniard.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://jenkins.cc/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://uldegrova.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.mattedwards.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://beoriginal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://elbmatsch.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.puffer.fish/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fuzaxx.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.web-wi.de/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon-swiss.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.22; +https://mastodon.dlun.ch/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://gotham.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tootworld.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://telegrafverket.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://die-partei.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://mastodon.cyber-tribal.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://m.feyo.pw/) Bot","bot_name":"Feyo"} +{"user_agent":"Mastodon/4.5.0-alpha.1@6fc77a5+io (http.rb/5.3.1; +https://vmst.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.nokes.name/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fnordon.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://arvr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.dssc.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://lab.wheelsbot.dev/)","bot_name":"Wheels"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.kaschemme701.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301579338 (Linux; U; Android 15; en_GB; SM-A566B; Build/AP3A.240905.015.A2; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://liberdon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2 (http.rb/5.3.1; +https://101010.pl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.zoeyvid.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://pdx.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.saarland/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://akademienl.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://norcal.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://is-a.cat/) Bot","bot_name":"Mastodo"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://floss.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://toot.wales/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://jawns.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.bd25a0ae2 (http.rb/5.3.1; +https://toot.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.scot/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://goingdark.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://trolley.seattlebus.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.apps.searchlite/1084540 (Linux; U; Android 13; en_US; Infinix X6525; Build/TP1A.220624.014; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.mango.vg/) Bot","bot_name":"Mango"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://avision-it.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fedi.gremlin.work/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://restive.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.ayco.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.yussuv.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1@0153a23+io (http.rb/5.3.1; +https://vmst.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://micro.marcriera.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://soc.saiyajin.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fpv.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.c99.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.2 (http.rb/5.2.0; +https://mastodon.cyborch.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mapstodon.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://toot.gnous.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.radio/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://rollenspiel.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastdn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://hispagatos.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.2 (http.rb/5.3.1; +https://cybervillains.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Nicecrawler/1.1; +http://www.nicecrawler.com/) Chrome/90.0.4430.97 Safari/537.36","bot_name":"Nice"} +{"user_agent":"Misskey/2025.4.2 (https://deadrobots.social)","bot_name":"Misskey"} +{"user_agent":"NewsBlur Feed Fetcher - 4 subscribers - https://www.newsblur.com/site/1041351/rudis (\\x22Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15\\x22)","bot_name":"NewsBlur"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://this.mouse.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+slis (http.rb/5.3.1; +https://deadinsi.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-17+glitch (http.rb/5.3.1; +https://genericsocialmediapage.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.thirring.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://timeloop.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.8; +https://mastodon.clinicians-exchange.org/) Bot","bot_name":"httpRo"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://aoir.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://rocktriste.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://organica.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0-beta.2+glitch.0618_f4c850d (http.rb/5.3.1; +https://social.dsmouse.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://suma-ev.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.7+glitch (http.rb/5.2.0; +https://network.seqular.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://im.alstadheim.no/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://jasondavis.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://social.briankoopman.com/) Bot","bot_name":"Briankoopman"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://abraum.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.b0tt0m.xyz/) Bot","bot_name":"B0tt0m"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://rtsn.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://talks.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.3.0-alpha.1; +https://mastodon.blackblock.rocks/) Bot","bot_name":"BlackBlock"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://dindon.one/) Bot","bot_name":"Dindon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.vervainglobal.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.baufreton.fr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://mastodon.voege.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.mehrabi.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://infrastruct.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.doesnotexist.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://mastodon.dragoncave.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/4.4.1 (Mastodon/3.4.7; +https://vran.as/) Bot","bot_name":"Vran"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://outre.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.drjpdns.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://physchem.science/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://terminal.ink/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.jonasled.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.irazu.tv/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://hails.org/) Bot","bot_name":"Hails"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://djs.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.houbahouba.de/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-26+glitch (http.rb/5.3.1; +https://mast.lat/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tutoteket.no/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://dragonchat.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ttrpg-hangout.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://rockosbasilisk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.15; +https://dragon.style/) Bot","bot_name":"Dragon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.squarecows.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://social.eike.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.eddmil.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://anticapitalist.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://snug.town/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mato.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://regenerate.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.wurzelmann.at/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://selent.ca/) Bot","bot_name":"Selent"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://freeradical.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.art/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://podcastindex.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://pouet.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://social.legrand.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://share.elouworld.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.davewinter.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://beutl.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tiggi.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://kafeneio.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://c.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.zaclys.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.pt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://c64.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://afop.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.sangberg.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://anakmanis.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://wirejunkie.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://pub.qu1x.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tedcarstensen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9-stable+ts1 (http.rb/5.2.0; +https://tyrol.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://genealogie.social/) Bot","bot_name":"Genea"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://santos.social/) Bot","bot_name":"Santos"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.brycedixon.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://buckner.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://toots.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.roundpond.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.faithtree.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://earthstream.social/) Bot","bot_name":"EarthStream"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://kanoa.de/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://nochiiverse.eu/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.dh5.ch/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cognitheurge.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://feed.bentley.sh/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://idic.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.moscow/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.crmbl.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.deathbybandaid.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.cringecollective.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://edafe.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://foreveryou.ng/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dasforum.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://masto.dimebox.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://agilealliance.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8+sora (http.rb/5.2.0; +https://social.soraharu.app/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://shutafem.casa/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mstdn.xophoros.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"FyndSearchEngine-SiteIconFetcher (by fynd.bot; https://fynd.bot)","bot_name":"Fynd Searcher"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.cogindo.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://linh.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://apobangpo.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://stoat.zone/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://zaidin.lgbt/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://owo.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.0.4 (Mastodon/3.5.3; +https://zitidar.barsoom.cc/) Bot","bot_name":"Zitidar"} +{"user_agent":"Pleroma 2.7.0-70-g36d469cf; https://fgc.network ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tabletop.vip/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://attractive.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://gladtech.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cursoryreview.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.sgawolf.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"SummalyBot/5.2.2","bot_name":"Summaly"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://cyberplace.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://rstats.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://hispagatos.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://gnu.gl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://atmasto.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://epsom.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://echoingdusk.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://scicomm.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://berlin.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://irrelephant.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3-bark (http.rb/5.3.1; +https://bark.lgbt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.hackers.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://m.alittlenook.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sauropods.win/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://quacc.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://icmef.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://feed.yopp.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.uggs.io/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://patrickflynn.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; YandexWebmaster/2.0; +http://yandex.com/bots)","bot_name":"Yandex"} +{"user_agent":"Mastodon/4.4.3+fosspride (http.rb/5.3.1; +https://fosspri.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.gsi.li/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.octobot.space/)","bot_name":"Octo"} +{"user_agent":"PDF Drive Crawler 1.05 ( https://www.pdfdrive.com/ )","bot_name":"PDF Drive"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://carhenge.club/) Bot","bot_name":"CarHenge Scout"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.agroecologymap.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tooting.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://m.trisweb.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://fedi.sndr.uk/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bog.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://localization.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://mastodon.chivanet.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vault37.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://the.voiceover.bar/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.snoozetown.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.macer.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.fwcr.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.joaoleitao.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://biodiversity.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://masto.hoffman.studio/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.liersch.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://mastodon.falkvinge.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.doggoat.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://toot.brumm.family/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://cmx.dzm.pp.ua/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://bcast.guru/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://eozygodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://tosk.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.7; +https://lumberjacks.social/) Bot","bot_name":"Lumberjack"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.22; +https://chirp.enworld.org/) Bot","bot_name":"Chirp"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.6; +https://cztwitter.cz/) Bot","bot_name":"httpster"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://omgwars.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://orbital.horse/) Bot","bot_name":"Hometown"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tinycities.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://mastodonczech.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.derpstra.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.apps.searchlite/1084537 (Linux; U; Android 10; en_IN; SM-M013F; Build/QP1A.190711.020; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://anml.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mstdn.gsi.li/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://infrastruct.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301579338 (Linux; U; Android 15; en_US; V2437; Build/AP3A.240905.015.A2_CS_V000L1; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://sciences.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2@379f12e+pr-34824+io (http.rb/5.3.1; +https://vmst.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://dawdling.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.garudalinux.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.cologne/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://moodoo.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://chaos-gp.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.games/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://mastodon.nervesocket.com/) Bot","bot_name":"Nervesocket"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://xtux.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mast.swfindercore.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.toe.quest/) Bot","bot_name":"Masto"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1754912575-0","bot_name":"Yahoo"} +{"user_agent":"com.google.android.googlequicksearchbox/301555722 (Linux; U; Android 15; en_US; V2247; Build/AP3A.240905.015.A2_CS; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://dragonscave.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.decentralised.chat/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tedcarstensen.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fedi.yaf.ai/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 14; SM-A346M Build/UP1A.231005.007; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/138.0.7204.168 Mobile Safari/537.36 OcIdWebView ({\\x22os\\x22:\\x22Android\\x22,\\x22osVersion\\x22:\\x2234\\x22,\\x22app\\x22:\\x22com.google.android.gms\\x22,\\x22appVersion\\x22:\\x22252932000\\x22,\\x22style\\x22:2,\\x22callingAppId\\x22:\\x22com.google.android.googlequicksearchbox\\x22,\\x22isDarkTheme\\x22:false})","bot_name":"Android Chrome"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://beyondwatts.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.lemee.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.cr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://equestria.social/) Bot","bot_name":"Equestria Scout"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://swecyb.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://podcastindex.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.uno/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://c.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301584138 (Linux; U; Android 15; en_IN; SM-M145F; Build/AP3A.240905.015.A2; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.g2od.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)","bot_name":"YandexMobile"} +{"user_agent":"com.google.android.googlequicksearchbox/301565082 (Linux; U; Android 15; en_US; CPH2599; Build/AP3A.240617.008; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.3 (http.rb/5.2.0; +https://collectivedisorder.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://mastodon.masip.cat/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.10; +https://social.sargasso.nl/) Bot","bot_name":"Sargasso"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://thecommandline.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.com.pl/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.bahia.no/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.works/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://aberrantwinds.bond/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://aleph.land/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.jsr.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.15; +https://social.ipsyn.net/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.uibk.ac.at/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://soc.nym.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://rstats.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.sciences.re/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://academiccloud.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://norden.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-17 (http.rb/5.3.1; +https://mastodon.online/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://bobbinsrobots.com/)","bot_name":"Bobbins"} +{"user_agent":"Mastodon/4.3.8+cdp1337 (http.rb/5.2.0; +https://social.veraciousnetwork.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.20; +https://plantex.top/) Bot","bot_name":"Plantex"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch.0724_dfdd844 (http.rb/5.3.1; +https://matus.cc/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.nekover.se/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sunbeam.city/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://takohs.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://tchafia.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.13; +https://gainer.cloud/) Bot","bot_name":"Gainer"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://social.nerd.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.22; +https://mastodon.nudecri.unicamp.br/) Bot","bot_name":"Nude"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.12; +https://panelinha.club/) Bot","bot_name":"Panelinha"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://social.stmh.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://radikal.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://venner.network/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.si/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://linuxmom.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://cmdr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.rozhlas.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.chaotikum.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://caos.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://riin.fr/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://maadix.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://spartanburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://social.dairydemon.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://counterforce.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.n8e.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://xtom.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.0 (http.rb/5.2.0; +https://social.zteo.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+glitch (http.rb/5.3.1; +https://gay.demon.dev/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://pointbob.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://foxfamily.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.georgschilling.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.sndevs.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.bar/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dembowski.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.colincogle.name/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://homies.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://msdyn365bc.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.myexp.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.karlsson.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301459242 (Linux; U; Android 14; en_MY; CPH2773; Build/UP1A.231005.007; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"com.google.android.apps.searchlite/1084539 (Linux; U; Android 13; pt_BR; SM-A032M; Build/TP1A.220624.014; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"com.google.android.apps.searchlite/1084537 (Linux; U; Android 10; en_IN; SM-M013F; Build/QP1A.190711.020; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"safarifetcherd/8620.2.4.10.8 CFNetwork/3826.400.120 Darwin/24.3.0","bot_name":"Safari"} +{"user_agent":"Mastodon/4.3.3 (http.rb/5.2.0, like Discordbot; +https://chattingdarkly.org/)","bot_name":"Discord"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://dialup.cafe/) Bot","bot_name":"http"} +{"user_agent":"com.google.android.googlequicksearchbox/301560522 (Linux; U; Android 15; en_US; V2443; Build/AP3A.240905.015.A2_V000L1; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.mango.vg/) Bot","bot_name":"Mango"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-11 (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://chaos.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://jawns.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.anoxinon.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.nu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1756632538-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://loud.computer/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://qlub.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.1+glitch (http.rb/5.3.1; +https://mastodon.projetretro.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.9; +https://library.love/) Bot","bot_name":"Love"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://nileane.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.7.1; https://mountaincommunity.co ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://neuromatch.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://techpolicy.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://dacharycarey.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+uwu (http.rb/5.2.0; +https://uwu.social/) Bot","bot_name":"Uwu"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://curmudgeon.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://jvm.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.6.3; https://udongein.xyz ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://retrochat.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hard.blue/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.geofox.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://super-gay.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://s.zholnay.name/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bbq.golf/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://freesewing.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-29+glitch (http.rb/5.3.1; +https://social.smith.geek.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mdon.ee/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.chester.id.au/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.nhp.sh/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.knight.fyi/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.nldot.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://10base2.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://san-antonio.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://guerrill.art/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.beachcom.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.myocci.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://justabit.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://meowstodon.eu/) Bot","bot_name":"Meowstodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.grey.fail/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://neurology.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.clusterfucks.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://m.rwhb.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://datavis.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.janke.biz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://genomic.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://techhub.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mast.eu.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://toot.orchid-cottage.uk ; Bot","bot_name":"Pleroma"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.18; +https://mastodon.moussaclarke.co.uk/) Bot","bot_name":"Moussa Clarke"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://medic.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://HoFra.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://starlite.rodeo/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://cultofshiv.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://eu.mastodon.green/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://social.pawsitiv.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.algathia.fr/) Bot","bot_name":"Algathia"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.touha.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.spheron.one/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.sboots.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.15+hometown-1.1.1; +https://mastodon.publicinterest.town/) Bot","bot_name":"Town"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://vhspace.social/) Bot","bot_name":"VHSocial"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.raykoworld.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17+hometown-1.1.2; +https://colorid.es/) Bot","bot_name":"Color"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bibliodiversidade.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+chuckya (http.rb/5.2.0; +https://bantu.social/) Bot","bot_name":"Bantu"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://calamity.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://worldkey.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.praxis.nyc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.re/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://ser.romu.casa/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://port87.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://23.illuminati.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://m.prt.si/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.24; +https://m.krbonne.net/) Bot","bot_name":"Krb"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.0011.lt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://libretooth.gr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.me.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodong.lol/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.peregrinor.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cerb.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.kug.is/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.main-angler.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.doubleelforbes.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://nangang.travnewmatic.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.xethos.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://plshug.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.bgmcd.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://techtoots.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://ijaron.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.khaus.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.bhop.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://slvn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.baazee.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://test.monoceros.co.za/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.brol.tech/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://lgbt.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.18; +https://linernotes.club/) Bot","bot_name":"Linernotes"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.brucknerite.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastorol.es/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://vtuber.house/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://toot.portes-imaginaire.org/) Bot","bot_name":"Portes"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://gamepad.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.adamasnemesis.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://lowkey.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1753689928-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://23.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.uy/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.ookami.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://dresden.network/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://strangeminds.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://zeroes.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://col.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mas.to/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+mementomods-2025-08-05 + Mastodon Bird UI 2.3.4rc3 (http.rb/5.3.1; +https://mementomori.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://federate.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://linux.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://bynight.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://wehavecookies.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://spartanburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+magincia (http.rb/5.3.1; +https://magincia.cafe/) Bot","bot_name":"Magincia"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tur.bot/)","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.seenigel.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1755624253-0","bot_name":"Yahoo"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://todon.eu/) Bot","bot_name":"Todon"} +{"user_agent":"Mastodon/4.4.0-rc.1+glitch (http.rb/5.3.1; +https://im-in.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://lor.sh/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.0-beta.2+glitch (http.rb/5.3.1; +https://urusai.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://sasa.africa/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://soc42.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mstdn.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://freefree.ps/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://floss.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.researchinstitute.at/)","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301579334 (Linux; U; Android 10; en_IN; M2006C3MII; Build/QP1A.190711.020; Cronet/141.0.7340.3)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://nahe.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://swingset.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://gayfr.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://lonely.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://girlsmell.gay/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://systemli.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://mastodon.bawue.social/) Bot","bot_name":"Bawue"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://toot.risottobias.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.14+hometown-1.1.1; +https://bladerunner.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://epsilon-ix.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://federate.me.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://masto.empresasenegocios.com.br/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.15; +https://publicgood.social/) Bot","bot_name":"Public Good"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://masto.doserver.top/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://cybersecurity.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://are.sexy/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://thelife.boats/) Bot","bot_name":"Boat"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://artsocial.boston/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://ozlabs.house/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mast.keyd.ru/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://kotur.eu/) Bot","bot_name":"Kotur"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.xk7.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://seocommunity.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.djghettoredneck.com/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.8; +https://globalskywatch.social/) Bot","bot_name":"Globalsky Watch"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://oldfriends.live/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://portside.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://sidestore.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8+sora (http.rb/5.2.0; +https://szdiy.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.electroncash.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://modlabs.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://tootmavie.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.glennfitzpatrick.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.dorfsvald.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.3dgo.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://is.burntout.org/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.ladd.network/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mstdn.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://mastodon.justinweiss.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://rubber.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.vlaanderen/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.7; +https://leftist.network/) Bot","bot_name":"Leftist Network"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://brettspiel.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://toot.berlin/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://plush.city/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.5+chuckya (http.rb/5.2.0; +https://oomfie.city/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://8bitorbust.info/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://yetanother.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (compatible; Drupalbot; +https://www.drupal.org)","bot_name":"Drupal"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-06-security (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.tinycyber.space/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://p.antsu.net/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://unbound.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.11 (http.rb/5.2.0; +https://eigenmagic.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.lothlorien.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://graz.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tired.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.gamedev.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://roko.basilisk.technology/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.10 (http.rb/5.2.0; +https://sauna.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://androiddev.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://norden.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.tchncs.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.dias.ie/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://nrw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3-stable+ff1 (http.rb/5.3.1; +https://wien.rocks/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://social.edist.ro/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://det.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tastybugs.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch.catgirlcloud (http.rb/5.3.1; +https://mastodon.catgirl.cloud/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://im-in.space/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://sipstea.town/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.animexx.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.20; +https://retro.social/) Bot","bot_name":"Retro"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://archived.software/)","bot_name":"Masto Scout"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.stmh.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://social.esmarconf.org/) Bot","bot_name":"http"} +{"user_agent":"ScreenReaderBot/1.0 (+https://example.com/bot)","bot_name":"Screen Reader"} +{"user_agent":"Mastodon/4.5.0-EXQ2.08+glitch (http.rb/5.3.1; +https://exquisite.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://lakedistrict.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://social.sc-sudo.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mstdn.co.uk/) Bot","bot_name":"MastoDroid"} +{"user_agent":"Mastodon/4.4.0-beta.2+glitch (http.rb/5.3.1; +https://mstdn.ro/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.nogods.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.5 (http.rb/5.2.0; +https://social.hackingand.coffee/) Bot","bot_name":"HackingAndCoffee"} +{"user_agent":"com.google.android.googlequicksearchbox/301560522 (Linux; U; Android 12; en_US; V2111; Build/SP1A.210812.003; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://m.fru.bar/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.19; +https://idiots.chat/) Bot","bot_name":"Idiots Chat"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.wssmagazine.com/) Bot","bot_name":"WSS"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://frikiverse.zone/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://essjax.com/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://mast.bigduck.xyz/) Bot","bot_name":"BigDuck"} +{"user_agent":"Mastodon/4.3.1+glitch (http.rb/5.2.0; +https://social.arnaus.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.0-nightly.2024-09-07+glitch (http.rb/5.2.0; +https://catlang.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.sigsoft.org/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://social.championpictures.at/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://mastodon.altearn.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.2 (http.rb/5.3.1; +https://sns.mszpro.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://social.hispa.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://melendez.land/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.iking.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://detmi.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://pad.venzano.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-20+chuckya (http.rb/5.3.1; +https://a.junimo.party/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://deepspace.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.lucci.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://queer.garden/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://soc.gsg.live/) Bot","bot_name":"Petal"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://social.v.st/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://stormwaltz.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.9.1; https://redspinning.top ; Bot","bot_name":"Pleroma"} +{"user_agent":"safarifetcherd/8621.2.5.10.10 CFNetwork/3826.500.131 Darwin/24.5.0","bot_name":"Safari"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.lqx.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://twit.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+litera.tools (http.rb/5.3.1; +https://literatur.social/) Bot","bot_name":"Litera"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastdn.social/) Bot","bot_name":"MastoDroid"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon-belgium.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://pnw.zone/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.anoxinon.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://ravenation.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://birdbox.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.io18.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+cots+glitch (http.rb/5.3.1; +https://cupoftea.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.jsr.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://ei.heloise.im/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.yearg.in/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+chuckya (http.rb/5.3.1; +https://lab.wheelsbot.dev/) Bot","bot_name":"Wheels"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://existiert.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.yttrx.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://rockosbasilisk.com/) Bot","bot_name":"Rocko's Basilisk"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-21 (http.rb/5.3.1; +https://mastodon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9+glitch (http.rb/5.2.0; +https://fouroclockfarms.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://irrsinn.life/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://collar.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://guzmer.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"yacybot (-global; amd64 Linux 5.15.161; java 11.0.26-internal; America/en) http://yacy.net/bot.html","bot_name":"Yacy"} +{"user_agent":"bots.retroverse.social","bot_name":"RetroVerse"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://thepit.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.pirati.cz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://dz.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://mstdn.fenslaw.nl/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://feed.technodisaster.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://spookykitties.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.1+glitch (http.rb/5.3.1; +https://chaotic.fun/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://troet.burg-halle.de/) Bot","bot_name":"Troet"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://m.toad.host/) Bot","bot_name":"Toad"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.spiritnet.nl/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://mastodon.tuxtux.eu/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://vibe.kittenapproved.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://musclecafe.men/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://journodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://m.pilz.foo/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedi.catnip.ee/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://monocles.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://masto.top/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2+fosspride (http.rb/5.3.1; +https://fosspri.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.19; +https://social.coletivos.org/) Bot","bot_name":"Social Coletivos"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.green/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://greennuclear.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://wargamers.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://nrw.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://sonomu.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://brontosin.space/) Bot","bot_name":"Brontosin"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://ani.work/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.3.8+orcas2 (http.rb/5.2.0; +https://furries.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://somamis.it/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://esperanto.masto.host/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://swecyb.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.bsd.cafe/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-06-security (http.rb/5.3.1; +https://mastodon.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://skj.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://nerdculture.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.radio/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://soc.kvet.ch/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://med-mastodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://soc42.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://socialbc.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://urbanists.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://phpc.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://its.bencarneiro.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.authbypass.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://lediva.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://masto.nu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.party/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://social.makerforums.info/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://union.place/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://dudo.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.lol/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.seattle.wa.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://social.annacon.be/) Bot","bot_name":"Meta"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://unredacted.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.k2pk.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://fedi.ivarch.com/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.darxxide.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://vkl.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.borstis.cloud/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.neatobuilds.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tootbot.org/)","bot_name":"Too"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.plux.wtf/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.sus-thoss.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-08-07+glitch (http.rb/5.3.1; +https://mastodon.ounce.zone/) Bot","bot_name":"Masto"} +{"user_agent":"com.google.android.googlequicksearchbox/301536666 (Linux; U; Android 11; en_GB; SM-T295; Build/RP1A.200720.012; Cronet/139.0.7205.3)","bot_name":"Google"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://anti-social.online/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://defcon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; arm_64; Android 13; 21121119SG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.763 YaSearchBrowser/25.81.1 BroPP/1.0 YaSearchApp/25.81.1 webOmni SA/3 Mobile Safari/537.36","bot_name":"YaSearch"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://tootr.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://bonn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://livellosegreto.it/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://colliderbias.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://basilisk.gallery/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://scholar.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.24; +https://mastodon.testausserveri.fi/) Bot","bot_name":"Test"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://canada.masto.host/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2+glitch (http.rb/5.3.1; +https://someplace.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://m.yyilmaz.com.tr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.km6g.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://bvp.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Googlebot/2.1 ( http://www.googlebot.com/bot.html)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mstdn.kielo.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301575114 (Linux; U; Android 15; en_US; V2404; Build/AP3A.240905.015.A2; Cronet/140.0.7327.5)","bot_name":"Google"} +{"user_agent":"Mastodon/4.5.0-alpha.2+chuckya (http.rb/5.3.1; +https://wetdry.world/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://telegrafverket.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://tootr.co/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon-belgium.be/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://phpc.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://bayes.club/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.ie/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://sigmoid.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://dice.camp/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://nerdculture.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0+litera.tools (http.rb/5.3.1; +https://literatur.social/) Bot","bot_name":"Litera"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://twitter.resolvt.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://social.deeden.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mathstodon.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://botany.social/)","bot_name":"Mastodon"} +{"user_agent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Mobile Safari/537.36 (compatible; bingbot/2.0; + http://www.bing.com/bingbot.htm)","bot_name":"Bing"} +{"user_agent":"Mastodon/4.5.0-alpha.1@bcab6a9+io (http.rb/5.3.1; +https://vmst.io/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.pub.solar/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2-bark (http.rb/5.3.1; +https://bark.lgbt/) Bot","bot_name":"Bark"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bonn.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://spartanburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://lfnt.site/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.4+glitch.0413_dd3b51c (http.rb/5.2.0; +https://flyovercountry.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://waag.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://epicure.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://peninsula.industries/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-alpha.1+glitch (http.rb/5.2.0; +https://denden.world/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.22+queergroup+hometown-1.1.1; +https://queer.group/) Bot","bot_name":"Petaland"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.laurenweinstein.org/) Bot","bot_name":"Masto"} +{"user_agent":"http.rb/5.1.0 (Mastodon/4.0.2; +https://mastodon.teamnerds.cool/) Bot","bot_name":"TeamNerds"} +{"user_agent":"Mastodon/4.3.2+glitch.donphan.social (http.rb/5.2.0; +https://donphan.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.yoyodyne-it.eu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.blaede.family/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://stranger.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-nightly.2025-07-09+glitch (http.rb/5.3.1; +https://masto.ezhevita.dev/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hoosier.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.8 (http.rb/5.2.0; +https://mastodon.derg.nz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.6.3; https://social.lasanha.org ; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://conversafiada.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bla.daanberg.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://teh.entar.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Pleroma 2.8.0-0-g8d2410948; https://greenish.red <>; Bot","bot_name":"Pleroma"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.mel.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0-beta.2 (http.rb/5.3.1; +https://activitypub.owenryan.us/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://frankfurt.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://augsburg.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.9 (http.rb/5.2.0; +https://sphere.fx4.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.17; +https://mastodon.partipirate.org/) Bot","bot_name":"Partipirate"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.2.21; +https://connectop.us/) Bot","bot_name":"Connecto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://bookstodon.com/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.0.4 (Mastodon/3.5.3; +https://m.futex.au/) Bot","bot_name":"Futex"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://fedi.xamk.fi/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://iamanerd.club/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://jeremymay.me/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1+glitch (http.rb/5.3.1; +https://mastodon.alphapuggle.dev/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.6 (http.rb/5.2.0; +https://posthat.ca/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://thx.gg/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.hach.re/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.0 (http.rb/5.3.1; +https://fakenham.cc/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://mastodon.akmentins.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://mastodon.enitin.xyz/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://social.asgardius.company/) Bot","bot_name":"Asgardius"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://social.wjt.je/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://izonelayer.click/) Bot","bot_name":"Masto"} +{"user_agent":"com.google.android.googlequicksearchbox/301560522 (Linux; U; Android 15; en_IN; SM-E346B; Build/AP3A.240905.015.A2; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mastodon/4.4.0-alpha.5+glitch (http.rb/5.2.0; +https://art-software.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://forlorn.computer/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://mastodon.luanti.ru/) Bot","bot_name":"Mastodon"} +{"user_agent":"http.rb/5.1.1 (Mastodon/4.1.6; +https://social.arroutaflix.com/) Bot","bot_name":"http"} +{"user_agent":"Mastodon/4.3.7 (http.rb/5.2.0; +https://mastodon.underworld.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.1 (http.rb/5.3.1; +https://tacobelllabs.net/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://diaspodon.fr/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://momou.social/) Bot","bot_name":"Masto"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://opalstack.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.in-purple.de/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3+glitch (http.rb/5.3.1; +https://river.group.lt/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://turtleisland.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.5.0-alpha.2 (http.rb/5.3.1; +https://aus.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://recsys.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.nu/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://graphics.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://genomic.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://social.deeden.co.uk/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://neverhill.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://mastodon.ie/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.3 (http.rb/5.3.1; +https://darkmoon.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"com.google.android.googlequicksearchbox/301555722 (Linux; U; Android 14; pt_BR; RMX3830; Build/UP1A.231005.007; Cronet/140.0.7259.0)","bot_name":"Google"} +{"user_agent":"Mattermost-Bot/1.1","bot_name":"Mattermost"} +{"user_agent":"Mastodon/4.3.4 (http.rb/5.2.0; +https://m.webtoo.ls/) Bot","bot_name":"Mastodon"} +{"user_agent":"Mastodon/4.4.2 (http.rb/5.3.1; +https://hub.uckermark.social/) Bot","bot_name":"Mastodon"} +{"user_agent":"Googlebot-Video/1.0 Mastodon/4.4.0-alpha.4+glitch (http.rb/5.2.0; +https://squad.town/)","bot_name":"Google"} +{"user_agent":"com.google.android.apps.searchlite/1084537 (Linux; U; Android 9; en_IN; Lenovo TB-7305F; Build/PPR1.180610.011; Cronet/140.0.7289.0)","bot_name":"Google"} +{"user_agent":"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1756438352-0","bot_name":"Yahoo"} -- cgit v1.2.3