check_domain_for_banned_from_spc.sh 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100
  1. #!/bin/bash
  2. # copyleft jeff cliff
  3. # GPLv3 or any later version
  4. # see COPYING.GPL
  5. #as of mar 31 2024 https://shitposter.world/about
  6. CHECKME="/tmp/domain_to_check_for_spc"
  7. DOMAIN=$1
  8. if [[ -z $1 ]] ; then
  9. echo "no input to spc domain check"
  10. exit 2;
  11. elif [[ $1 == "fediverse.blog" ]] ; then
  12. exit 1;
  13. elif [[ $1 == "fediverse.blog" ]] ; then
  14. exit 1;
  15. elif [[ $1 == "fediverse.fun" ]] ; then
  16. exit 1;
  17. elif [[ $1 == "pawoo.net" ]] ; then
  18. exit 1;
  19. elif [[ $1 == "savageworlds.social" ]] ; then
  20. exit 1;
  21. elif [[ $1 == "fedi.lynnesbian.space" ]] ; then
  22. exit 1;
  23. elif [[ $1 == "my0.net" ]] ; then
  24. exit 1;
  25. elif [[ $1 == "mastodon.online" ]] ; then
  26. exit 1;
  27. elif [[ $1 == "toot.cat" ]] ; then
  28. exit 1;
  29. elif [[ $1 == "fedi.yuka.dev" ]] ; then
  30. exit 1;
  31. elif [[ $1 == "sun.minuscule.space" ]] ; then
  32. exit 1;
  33. elif [[ $1 == "myasstodon.xyz" ]] ; then
  34. exit 1;
  35. elif [[ $1 == "pl.nudie.social" ]] ; then
  36. exit 1;
  37. elif [[ $1 == "butts.team" ]] ; then
  38. exit 1;
  39. elif [[ $1 == "cathode.church" ]] ; then
  40. exit 1;
  41. elif [[ $1 == "howlr.me" ]] ; then
  42. exit 1;
  43. elif [[ $1 == "hates.company" ]] ; then
  44. exit 1;
  45. elif [[ $1 == "fulda.social" ]] ; then
  46. exit 1;
  47. elif [[ $1 == "berserker.town" ]] ; then
  48. exit 1;
  49. elif [[ $1 == "social.surfnet.space" ]] ; then
  50. exit 1;
  51. elif [[ $1 == "troet.crynet.one" ]] ; then
  52. exit 1;
  53. elif [[ $1 == "edm.haus" ]] ; then
  54. exit 1;
  55. elif [[ $1 == "dragn.gay" ]] ; then
  56. exit 1;
  57. elif [[ $1 == "social.mootech.eu" ]] ; then
  58. exit 1;
  59. elif [[ $1 == "catcatnya.com" ]] ; then
  60. exit 1;
  61. elif [[ $1 == "whitespashe.uk" ]] ; then
  62. exit 1;
  63. elif [[ $1 == "is.nota.live" ]] ; then
  64. exit 1;
  65. elif [[ $1 == "saltlake.social" ]] ; then
  66. exit 1;
  67. elif [[ $1 == "morse.social" ]] ; then
  68. exit 1;
  69. elif [[ $1 == "monads.online" ]] ; then
  70. exit 1;
  71. elif [[ $1 == "fedi.slipfox.xyz" ]] ; then
  72. exit 1;
  73. elif [[ $1 == "va-11-hall-a.cafe" ]] ; then
  74. exit 1;
  75. elif [[ $1 == "oldbytes.space" ]] ; then
  76. exit 1;
  77. elif [[ $1 == "j621.net" ]] ; then
  78. exit 1;
  79. elif [[ $1 == "dice.camp" ]] ; then
  80. exit 1;
  81. elif [[ $1 == "elefant.onetwoxu.de" ]] ; then
  82. exit 1;
  83. elif [[ $1 == "mst3k.interlinked.me" ]] ; then
  84. exit 1;
  85. elif [[ $1 == "social.tchncs.de" ]] ; then
  86. exit 1;
  87. elif [[ $1 == "dudu.capricom.info" ]] ; then
  88. exit 1;
  89. elif [[ $1 == "www.librepunk.club" ]] ; then
  90. exit 1;
  91. elif [[ $1 == "donotsta.re" ]] ; then
  92. exit 1;
  93. elif [[ $1 == "social.pixie.town" ]] ; then
  94. exit 1;
  95. elif [[ $1 == "glaceon.social" ]] ; then
  96. exit 1;
  97. elif [[ $1 == "bofh.social" ]] ; then
  98. exit 1;
  99. elif [[ $1 == "scoopgang.social" ]] ; then
  100. exit 1;
  101. elif [[ $1 == "toot-lab.reclaim.technology" ]] ; then
  102. exit 1;
  103. elif [[ $1 == "metalhead.club" ]] ; then
  104. exit 1;
  105. elif [[ $1 == "fandom.garden" ]] ; then
  106. exit 1;
  107. elif [[ $1 == "rva.party" ]] ; then
  108. exit 1;
  109. elif [[ $1 == "transmom.love" ]] ; then
  110. exit 1;
  111. elif [[ $1 == "mythago.space" ]] ; then
  112. exit 1;
  113. elif [[ $1 == "kolektiva.social" ]] ; then
  114. exit 1;
  115. elif [[ $1 == "cute.science" ]] ; then
  116. exit 1;
  117. elif [[ $1 == "is.badat.dev" ]] ; then
  118. exit 1;
  119. elif [[ $1 == "lgbt.io" ]] ; then
  120. exit 1;
  121. elif [[ $1 == "mastodon.hamburg" ]] ; then
  122. exit 1;
  123. elif [[ $1 == "social.hergorn.com" ]] ; then
  124. exit 1;
  125. elif [[ $1 == "social.hax.technology" ]] ; then
  126. exit 1;
  127. elif [[ $1 == "dosgame.club" ]] ; then
  128. exit 1;
  129. elif [[ $1 == "nyan.network" ]] ; then
  130. exit 1;
  131. elif [[ $1 == "icosahedron.website" ]] ; then
  132. exit 1;
  133. elif [[ $1 == "augsburg.social" ]] ; then
  134. exit 1;
  135. elif [[ $1 == "allpro.social" ]] ; then
  136. exit 1;
  137. elif [[ $1 == "monsterfuckers.online" ]] ; then
  138. exit 1;
  139. elif [[ $1 == "polyglot.city" ]] ; then
  140. exit 1;
  141. elif [[ $1 == "sunbeam.city" ]] ; then
  142. exit 1;
  143. elif [[ $1 == "mastodon.art" ]] ; then
  144. exit 1;
  145. elif [[ $1 == "fedi.koyu.space" ]] ; then
  146. exit 1;
  147. elif [[ $1 == "soc.luciferi.st" ]] ; then
  148. exit 1;
  149. elif [[ $1 == "octodon.social" ]] ; then
  150. exit 1;
  151. elif [[ $1 == "beepboop.one" ]] ; then
  152. exit 1;
  153. elif [[ $1 == "toot.berlin" ]] ; then
  154. exit 1;
  155. elif [[ $1 == "fem.social" ]] ; then
  156. exit 1;
  157. elif [[ $1 == "iscute.moe" ]] ; then
  158. exit 1;
  159. elif [[ $1 == "graz.social" ]] ; then
  160. exit 1;
  161. elif [[ $1 == "gamethattune.club" ]] ; then
  162. exit 1;
  163. elif [[ $1 == "nrw.social" ]] ; then
  164. exit 1;
  165. elif [[ $1 == "tooting.intensifi.es" ]] ; then
  166. exit 1;
  167. elif [[ $1 == "social.4f9e1738.ignorelist.com" ]] ; then
  168. exit 1;
  169. elif [[ $1 == "im-in.space" ]] ; then
  170. exit 1;
  171. elif [[ $1 == "mstdn.ca" ]] ; then
  172. exit 1;
  173. elif [[ $1 == "moth.zone" ]] ; then
  174. exit 1;
  175. elif [[ $1 == "queer.party" ]] ; then
  176. exit 1;
  177. elif [[ $1 == "fedi.xaloc.space" ]] ; then
  178. exit 1;
  179. elif [[ $1 == "mastodon.scot" ]] ; then
  180. exit 1;
  181. elif [[ $1 == "social.shadowfacts.net" ]] ; then
  182. exit 1;
  183. elif [[ $1 == "wireless.cat6.network" ]] ; then
  184. exit 1;
  185. elif [[ $1 == "pettingzoo.co" ]] ; then
  186. exit 1;
  187. elif [[ $1 == "social.wildeboer.net" ]] ; then
  188. exit 1;
  189. elif [[ $1 == "dither.ddns.net" ]] ; then
  190. exit 1;
  191. elif [[ $1 == "soc.kouett.net.eu.org" ]] ; then
  192. exit 1;
  193. elif [[ $1 == "soc.emelyne.eu" ]] ; then
  194. exit 1;
  195. elif [[ $1 == "antabaka.me" ]] ; then
  196. exit 1;
  197. elif [[ $1 == "uelfte.club" ]] ; then
  198. exit 1;
  199. elif [[ $1 == "soc.punktrash.club" ]] ; then
  200. exit 1;
  201. elif [[ $1 == "anarchism.space" ]] ; then
  202. exit 1;
  203. elif [[ $1 == "troet.cafe" ]] ; then
  204. exit 1;
  205. elif [[ $1 == "toot.kif.rocks" ]] ; then
  206. exit 1;
  207. elif [[ $1 == "mas.to" ]] ; then
  208. exit 1;
  209. elif [[ $1 == "goblin.camp" ]] ; then
  210. exit 1;
  211. elif [[ $1 == "wandering.shop" ]] ; then
  212. exit 1;
  213. elif [[ $1 == "jubi.life" ]] ; then
  214. exit 1;
  215. elif [[ $1 == "m.noxie.ch" ]] ; then
  216. exit 1;
  217. elif [[ $1 == "pleroma.aspie.freemyip.com" ]] ; then
  218. exit 1;
  219. elif [[ $1 == "masto.asonix.dog" ]] ; then
  220. exit 1;
  221. elif [[ $1 == "social.lacoloc.cafe" ]] ; then
  222. exit 1;
  223. elif [[ $1 == "social.ancow.name" ]] ; then
  224. exit 1;
  225. elif [[ $1 == "masto.fuzzy.systems" ]] ; then
  226. exit 1;
  227. elif [[ $1 == "social.ballpointcarrot.net" ]] ; then
  228. exit 1;
  229. elif [[ $1 == "mastodon.lubar.me" ]] ; then
  230. exit 1;
  231. elif [[ $1 == "paquita.masto.host" ]] ; then
  232. exit 1;
  233. elif [[ $1 == "masto.brightfur.net" ]] ; then
  234. exit 1;
  235. elif [[ $1 == "trapped.online" ]] ; then
  236. exit 1;
  237. elif [[ $1 == "social.brocolis.party" ]] ; then
  238. exit 1;
  239. elif [[ $1 == "ap.kios.cc" ]] ; then
  240. exit 1;
  241. elif [[ $1 == "pleroma.pbb.lc" ]] ; then
  242. exit 1;
  243. elif [[ $1 == "social.yahe.sh" ]] ; then
  244. exit 1;
  245. elif [[ $1 == "swingset.social" ]] ; then
  246. exit 1;
  247. elif [[ $1 == "fsoc.lol" ]] ; then
  248. exit 1;
  249. elif [[ $1 == "abstract.town" ]] ; then
  250. exit 1;
  251. elif [[ $1 == "pl.thj.no" ]] ; then
  252. exit 1;
  253. elif [[ $1 == "sapphic.city" ]] ; then
  254. exit 1;
  255. elif [[ $1 == "post.mrotek.xyz" ]] ; then
  256. exit 1;
  257. elif [[ $1 == "social.olchis.net" ]] ; then
  258. exit 1;
  259. elif [[ $1 == "social.haj.gf" ]] ; then
  260. exit 1;
  261. elif [[ $1 == "asonix.dog" ]] ; then
  262. exit 1;
  263. elif [[ $1 == "social.refi64.com" ]] ; then
  264. exit 1;
  265. elif [[ $1 == "mhz.social" ]] ; then
  266. exit 1;
  267. elif [[ $1 == "mastodon.local.lubar.me" ]] ; then
  268. exit 1;
  269. elif [[ $1 == "pleroma.ctu.cx" ]] ; then
  270. exit 1;
  271. elif [[ $1 == "homo.dev" ]] ; then
  272. exit 1;
  273. elif [[ $1 == "astria.city" ]] ; then
  274. exit 1;
  275. elif [[ $1 == "soc.nhg.moe" ]] ; then
  276. exit 1;
  277. elif [[ $1 == "rage.love" ]] ; then
  278. exit 1;
  279. elif [[ $1 == "merveilles.town" ]] ; then
  280. exit 1;
  281. elif [[ $1 == "ubuntu.buzz" ]] ; then
  282. exit 1;
  283. elif [[ $1 == "dragonscave.space" ]] ; then
  284. exit 1;
  285. elif [[ $1 == "weirder.earth" ]] ; then
  286. exit 1;
  287. elif [[ $1 == "writeout.ink" ]] ; then
  288. exit 1;
  289. elif [[ $1 == "mastodon.lrdf.fr" ]] ; then
  290. exit 1;
  291. elif [[ $1 == "social.ppmx.org" ]] ; then
  292. exit 1;
  293. elif [[ $1 == "social.gattini.ninja" ]] ; then
  294. exit 1;
  295. elif [[ $1 == "mar.archipielago.uno" ]] ; then
  296. exit 1;
  297. elif [[ $1 == "social.naln1.ca" ]] ; then
  298. exit 1;
  299. elif [[ $1 == "friendica.xyz" ]] ; then
  300. exit 1;
  301. elif [[ $1 == "social.lemue.org" ]] ; then
  302. exit 1;
  303. elif [[ $1 == "fedi.ajl.io" ]] ; then
  304. exit 1;
  305. elif [[ $1 == "soc.hyena.network" ]] ; then
  306. exit 1;
  307. elif [[ $1 == "social.jlamothe.net" ]] ; then
  308. exit 1;
  309. elif [[ $1 == "f.haeder.net" ]] ; then
  310. exit 1;
  311. elif [[ $1 == "horizin.de" ]] ; then
  312. exit 1;
  313. elif [[ $1 == "anonsys.net" ]] ; then
  314. exit 1;
  315. elif [[ $1 == "friendica.chilemasto.casa" ]] ; then
  316. exit 1;
  317. elif [[ $1 == "loma.ml" ]] ; then
  318. exit 1;
  319. elif [[ $1 == "friendica.ironbug.org" ]] ; then
  320. exit 1;
  321. elif [[ $1 == "friendica.eskimo.com" ]] ; then
  322. exit 1;
  323. elif [[ $1 == "social.alesan.io" ]] ; then
  324. exit 1;
  325. elif [[ $1 == "g1zm0.social" ]] ; then
  326. exit 1;
  327. elif [[ $1 == "friendica.mrpetovan.com" ]] ; then
  328. exit 1;
  329. elif [[ $1 == "horche.demkontinuum.de" ]] ; then
  330. exit 1;
  331. elif [[ $1 == "foxes.life" ]] ; then
  332. exit 1;
  333. elif [[ $1 == "masto-fs.de" ]] ; then
  334. exit 1;
  335. elif [[ $1 == "social.finkhaeuser.de" ]] ; then
  336. exit 1;
  337. elif [[ $1 == "embracing.space" ]] ; then
  338. exit 1;
  339. elif [[ $1 == "plural.cafe" ]] ; then
  340. exit 1;
  341. elif [[ $1 == "eldritch.cafe" ]] ; then
  342. exit 1;
  343. elif [[ $1 == "plush.city" ]] ; then
  344. exit 1;
  345. elif [[ $1 == "toots.hwl.li" ]] ; then
  346. exit 1;
  347. elif [[ $1 == "stop.voring.me" ]] ; then
  348. exit 1;
  349. elif [[ $1 == "fedi.nullob.si" ]] ; then
  350. exit 1;
  351. elif [[ $1 == "estrogen.network" ]] ; then
  352. exit 1;
  353. elif [[ $1 == "misskey.io" ]] ; then
  354. exit 1;
  355. elif [[ $1 == "mk.igwigg.space" ]] ; then
  356. exit 1;
  357. elif [[ $1 == "sn.nekojita.moe" ]] ; then
  358. exit 1;
  359. elif [[ $1 == "nya.one" ]] ; then
  360. exit 1;
  361. elif [[ $1 == "fedi2.0x7f.one" ]] ; then
  362. exit 1;
  363. elif [[ $1 == "nyaaa.jeder.pl" ]] ; then
  364. exit 1;
  365. elif [[ $1 == "goblin.technology" ]] ; then
  366. exit 1;
  367. elif [[ $1 == "fedi.aroace.space" ]] ; then
  368. exit 1;
  369. elif [[ $1 == "miruku.cafe" ]] ; then
  370. exit 1;
  371. elif [[ $1 == "co.misskey.io" ]] ; then
  372. exit 1;
  373. elif [[ $1 == "fedi.vern.cc" ]] ; then
  374. exit 1;
  375. elif [[ $1 == "erica.hiyuki2578.net" ]] ; then
  376. exit 1;
  377. elif [[ $1 == "mstdn.elseifnull.xyz" ]] ; then
  378. exit 1;
  379. elif [[ $1 == "nsfw.lehtiin.eu" ]] ; then
  380. exit 1;
  381. elif [[ $1 == "social.negativezero.link" ]] ; then
  382. exit 1;
  383. elif [[ $1 == "social.tranarchy.fish" ]] ; then
  384. exit 1;
  385. elif [[ $1 == "vran.as" ]] ; then
  386. exit 1;
  387. elif [[ $1 == "fed.elseifnull.xyz" ]] ; then
  388. exit 1;
  389. elif [[ $1 == "social.msitc.de" ]] ; then
  390. exit 1;
  391. elif [[ $1 == "art1sec.uber.space" ]] ; then
  392. exit 1;
  393. elif [[ $1 == "fedi.ashhhleyyy.dev" ]] ; then
  394. exit 1;
  395. elif [[ $1 == "ailbhean.co-shaoghal.net" ]] ; then
  396. exit 1;
  397. elif [[ $1 == "glauca.space" ]] ; then
  398. exit 1;
  399. elif [[ $1 == "skiddle.network" ]] ; then
  400. exit 1;
  401. elif [[ $1 == "du.capricom.info" ]] ; then
  402. exit 1;
  403. elif [[ $1 == "toot.inkwell.space" ]] ; then
  404. exit 1;
  405. elif [[ $1 == "indiepocalypse.social" ]] ; then
  406. exit 1;
  407. elif [[ $1 == "verkehrswende.social" ]] ; then
  408. exit 1;
  409. elif [[ $1 == "social.johnassel.de" ]] ; then
  410. exit 1;
  411. elif [[ $1 == "lubar.me" ]] ; then
  412. exit 1;
  413. elif [[ $1 == "newsie.social" ]] ; then
  414. exit 1;
  415. elif [[ $1 == "social.juke.fr" ]] ; then
  416. exit 1;
  417. elif [[ $1 == "mastodon.no2nd.earth" ]] ; then
  418. exit 1;
  419. elif [[ $1 == "social.bhsnw.com" ]] ; then
  420. exit 1;
  421. elif [[ $1 == "postpandemicparty.org" ]] ; then
  422. exit 1;
  423. elif [[ $1 == "fedi.inzeiten.de" ]] ; then
  424. exit 1;
  425. elif [[ $1 == "oceanplayground.social" ]] ; then
  426. exit 1;
  427. elif [[ $1 == "pleroma.envs.net" ]] ; then
  428. exit 1;
  429. elif [[ $1 == "vulpine.club" ]] ; then
  430. exit 1;
  431. elif [[ $1 == "fedi.astrid.tech" ]] ; then
  432. exit 1;
  433. elif [[ $1 == "inkwell.space" ]] ; then
  434. exit 1;
  435. elif [[ $1 == "akko.within.website" ]] ; then
  436. exit 1;
  437. elif [[ $1 == "artisan.chat" ]] ; then
  438. exit 1;
  439. elif [[ $1 == "7td.org" ]] ; then
  440. exit 1;
  441. elif [[ $1 == "plz.7td.org" ]] ; then
  442. exit 1;
  443. elif [[ $1 == "friendica.keithhacks.cyou" ]] ; then
  444. exit 1;
  445. elif [[ $1 == "coales.co" ]] ; then
  446. exit 1;
  447. elif [[ $1 == "mastodon.fraize.com" ]] ; then
  448. exit 1;
  449. elif [[ $1 == "unix.se" ]] ; then
  450. exit 1;
  451. elif [[ $1 == "mastodon.sideslip.social" ]] ; then
  452. exit 1;
  453. elif [[ $1 == "fuckmu.sk" ]] ; then
  454. exit 1;
  455. elif [[ $1 == "religion.masto.host" ]] ; then
  456. exit 1;
  457. elif [[ $1 == "grigson.live" ]] ; then
  458. exit 1;
  459. elif [[ $1 == "social.alster.space" ]] ; then
  460. exit 1;
  461. elif [[ $1 == "oliphant.social" ]] ; then
  462. exit 1;
  463. elif [[ $1 == "mage.town" ]] ; then
  464. exit 1;
  465. elif [[ $1 == "introvert.social" ]] ; then
  466. exit 1;
  467. elif [[ $1 == "mastodon.mindlesstux.com" ]] ; then
  468. exit 1;
  469. elif [[ $1 == "democracy.town" ]] ; then
  470. exit 1;
  471. elif [[ $1 == "infosec.exchange" ]] ; then
  472. exit 1;
  473. elif [[ $1 == "twipped.social" ]] ; then
  474. exit 1;
  475. elif [[ $1 == "flipping.rocks" ]] ; then
  476. exit 1;
  477. elif [[ $1 == "thegem.city" ]] ; then
  478. exit 1;
  479. elif [[ $1 == "journa.host" ]] ; then
  480. exit 1;
  481. elif [[ $1 == "lgbtqia.space" ]] ; then
  482. exit 1;
  483. elif [[ $1 == "mk.himbeer.me" ]] ; then
  484. exit 1;
  485. elif [[ $1 == "tassaron.com" ]] ; then
  486. exit 1;
  487. elif [[ $1 == "social.bckr.me" ]] ; then
  488. exit 1;
  489. elif [[ $1 == "social.afront.org" ]] ; then
  490. exit 1;
  491. elif [[ $1 == "shitcoin.land" ]] ; then
  492. exit 1;
  493. elif [[ $1 == "zeroes.ca" ]] ; then
  494. exit 1;
  495. elif [[ $1 == "brockha.us" ]] ; then
  496. exit 1;
  497. elif [[ $1 == "social.lostcoastoutpost.com" ]] ; then
  498. exit 1;
  499. elif [[ $1 == "forked.io" ]] ; then
  500. exit 1;
  501. elif [[ $1 == "bbs.crumplab.com" ]] ; then
  502. exit 1;
  503. elif [[ $1 == "social.artemai.art" ]] ; then
  504. exit 1;
  505. elif [[ $1 == "xn--xxa.computer" ]] ; then
  506. exit 1;
  507. elif [[ $1 == "fenetre.dev" ]] ; then
  508. exit 1;
  509. elif [[ $1 == "brokentoys.social" ]] ; then
  510. exit 1;
  511. elif [[ $1 == "onosend.ai" ]] ; then
  512. exit 1;
  513. elif [[ $1 == "federated.press" ]] ; then
  514. exit 1;
  515. elif [[ $1 == "social.stale.link" ]] ; then
  516. exit 1;
  517. elif [[ $1 == "bunbers.org" ]] ; then
  518. exit 1;
  519. elif [[ $1 == "gallion.sh" ]] ; then
  520. exit 1;
  521. elif [[ $1 == "ceilidh.online" ]] ; then
  522. exit 1;
  523. elif [[ $1 == "efdn.club" ]] ; then
  524. exit 1;
  525. elif [[ $1 == "mograph.social" ]] ; then
  526. exit 1;
  527. elif [[ $1 == "masto.donte.com.br" ]] ; then
  528. exit 1;
  529. elif [[ $1 == "freifunk.social" ]] ; then
  530. exit 1;
  531. elif [[ $1 == "blackshuck.net" ]] ; then
  532. exit 1;
  533. elif [[ $1 == "old.mermaid.town" ]] ; then
  534. exit 1;
  535. elif [[ $1 == "social.bearveloper.dev" ]] ; then
  536. exit 1;
  537. elif [[ $1 == "bytetower.social" ]] ; then
  538. exit 1;
  539. elif [[ $1 == "ohai.social" ]] ; then
  540. exit 1;
  541. elif [[ $1 == "sysad.ninja" ]] ; then
  542. exit 1;
  543. elif [[ $1 == "webfeed.me" ]] ; then
  544. exit 1;
  545. elif [[ $1 == "dogno.se" ]] ; then
  546. exit 1;
  547. elif [[ $1 == "fedi.lucdev.net" ]] ; then
  548. exit 1;
  549. elif [[ $1 == "hypr.ninja" ]] ; then
  550. exit 1;
  551. elif [[ $1 == "msps.io" ]] ; then
  552. exit 1;
  553. elif [[ $1 == "ehr.scot" ]] ; then
  554. exit 1;
  555. elif [[ $1 == "mast.uxp.de" ]] ; then
  556. exit 1;
  557. elif [[ $1 == "ubiqueros.com" ]] ; then
  558. exit 1;
  559. elif [[ $1 == "topspicy.social" ]] ; then
  560. exit 1;
  561. elif [[ $1 == "gotosocial.kemonine.info" ]] ; then
  562. exit 1;
  563. elif [[ $1 == "sunny.garden" ]] ; then
  564. exit 1;
  565. elif [[ $1 == "bobbel.social" ]] ; then
  566. exit 1;
  567. elif [[ $1 == "a-chill.space" ]] ; then
  568. exit 1;
  569. elif [[ $1 == "macrofurs.social" ]] ; then
  570. exit 1;
  571. elif [[ $1 == "silvan.cloud" ]] ; then
  572. exit 1;
  573. elif [[ $1 == "twitre.de" ]] ; then
  574. exit 1;
  575. elif [[ $1 == "hivecore.social" ]] ; then
  576. exit 1;
  577. elif [[ $1 == "barach.at" ]] ; then
  578. exit 1;
  579. elif [[ $1 == "www.loganjohndarylgraham.xyz" ]] ; then
  580. exit 1;
  581. elif [[ $1 == "blobfox.coffee" ]] ; then
  582. exit 1;
  583. elif [[ $1 == "selfhosted.social" ]] ; then
  584. exit 1;
  585. elif [[ $1 == "vtuber.house" ]] ; then
  586. exit 1;
  587. elif [[ $1 == "mendeddrum.org" ]] ; then
  588. exit 1;
  589. elif [[ $1 == "social.vtopia.live" ]] ; then
  590. exit 1;
  591. elif [[ $1 == "social.nauk.io" ]] ; then
  592. exit 1;
  593. elif [[ $1 == "void.abnormalfreq.com" ]] ; then
  594. exit 1;
  595. elif [[ $1 == "mastodon.snmsoc.org" ]] ; then
  596. exit 1;
  597. elif [[ $1 == "eigenmagic.net" ]] ; then
  598. exit 1;
  599. elif [[ $1 == "plem.sapphic.site" ]] ; then
  600. exit 1;
  601. elif [[ $1 == "suedi.club" ]] ; then
  602. exit 1;
  603. elif [[ $1 == "lgtm.systems" ]] ; then
  604. exit 1;
  605. elif [[ $1 == "pleroma.patricia.no" ]] ; then
  606. exit 1;
  607. elif [[ $1 == "meckpom.social" ]] ; then
  608. exit 1;
  609. elif [[ $1 == "creatorstudio.space" ]] ; then
  610. exit 1;
  611. elif [[ $1 == "disaster.bi" ]] ; then
  612. exit 1;
  613. elif [[ $1 == "peoplemaking.games" ]] ; then
  614. exit 1;
  615. elif [[ $1 == "tacobelllabs.net" ]] ; then
  616. exit 1;
  617. elif [[ $1 == "sociable.cafe" ]] ; then
  618. exit 1;
  619. elif [[ $1 == "social.plux.wtf" ]] ; then
  620. exit 1;
  621. elif [[ $1 == "cutieverse.social" ]] ; then
  622. exit 1;
  623. elif [[ $1 == "social.wastedalpaca.wtf" ]] ; then
  624. exit 1;
  625. elif [[ $1 == "cwb.social" ]] ; then
  626. exit 1;
  627. elif [[ $1 == "musicians.today" ]] ; then
  628. exit 1;
  629. elif [[ $1 == "speedlines.stctp.zone" ]] ; then
  630. exit 1;
  631. elif [[ $1 == "kampftoast.de" ]] ; then
  632. exit 1;
  633. elif [[ $1 == "social.dorf-post.de" ]] ; then
  634. exit 1;
  635. elif [[ $1 == "xerg.ga" ]] ; then
  636. exit 1;
  637. elif [[ $1 == "aethy.com" ]] ; then
  638. exit 1;
  639. elif [[ $1 == "mastodon.afromunkee.live" ]] ; then
  640. exit 1;
  641. elif [[ $1 == "mastodon.tod.net" ]] ; then
  642. exit 1;
  643. elif [[ $1 == "pinksheep.org" ]] ; then
  644. exit 1;
  645. elif [[ $1 == "rants.au" ]] ; then
  646. exit 1;
  647. elif [[ $1 == "social.raytec.co" ]] ; then
  648. exit 1;
  649. elif [[ $1 == "pawesome.online" ]] ; then
  650. exit 1;
  651. elif [[ $1 == "fruef.social" ]] ; then
  652. exit 1;
  653. elif [[ $1 == "gallardo.patricia.no" ]] ; then
  654. exit 1;
  655. elif [[ $1 == "misskey.ycare.de" ]] ; then
  656. exit 1;
  657. elif [[ $1 == "labyrinth.social" ]] ; then
  658. exit 1;
  659. elif [[ $1 == "mastodon.stahlstadt.cloud" ]] ; then
  660. exit 1;
  661. elif [[ $1 == "secretbearsociety.org" ]] ; then
  662. exit 1;
  663. elif [[ $1 == "polyam.space" ]] ; then
  664. exit 1;
  665. elif [[ $1 == "solarpunk.moe" ]] ; then
  666. exit 1;
  667. elif [[ $1 == "mastodon.gamedev.place" ]] ; then
  668. exit 1;
  669. elif [[ $1 == "hutt.social" ]] ; then
  670. exit 1;
  671. elif [[ $1 == "urusai.social" ]] ; then
  672. exit 1;
  673. elif [[ $1 == "fedi.elseifnull.xyz" ]] ; then
  674. exit 1;
  675. elif [[ $1 == "nachrichten.social" ]] ; then
  676. exit 1;
  677. elif [[ $1 == "bbs.keinpfusch.net" ]] ; then
  678. exit 1;
  679. elif [[ $1 == "crimew.gay" ]] ; then
  680. exit 1;
  681. elif [[ $1 == "toot.krivokuca.dev" ]] ; then
  682. exit 1;
  683. elif [[ $1 == "nfld.me" ]] ; then
  684. exit 1;
  685. elif [[ $1 == "toot.n3cld.de" ]] ; then
  686. exit 1;
  687. elif [[ $1 == "viisphere.me" ]] ; then
  688. exit 1;
  689. elif [[ $1 == "mastodon.incrediblepbx.net" ]] ; then
  690. exit 1;
  691. elif [[ $1 == "pleroma.ztrl.de" ]] ; then
  692. exit 1;
  693. elif [[ $1 == "misskey.lilith.im" ]] ; then
  694. exit 1;
  695. elif [[ $1 == "tailswish.industries" ]] ; then
  696. exit 1;
  697. elif [[ $1 == "mastodon.ie" ]] ; then
  698. exit 1;
  699. elif [[ $1 == "sakurajima.moe" ]] ; then
  700. exit 1;
  701. elif [[ $1 == "vogtland.social" ]] ; then
  702. exit 1;
  703. elif [[ $1 == "witter.cz" ]] ; then
  704. exit 1;
  705. elif [[ $1 == "meatbag.app" ]] ; then
  706. exit 1;
  707. elif [[ $1 == "packetloss.social" ]] ; then
  708. exit 1;
  709. elif [[ $1 == "mastodon.gruezi.net" ]] ; then
  710. exit 1;
  711. elif [[ $1 == "hachyderm.io" ]] ; then
  712. exit 1;
  713. elif [[ $1 == "grandma.space" ]] ; then
  714. exit 1;
  715. elif [[ $1 == "ursal.zone" ]] ; then
  716. exit 1;
  717. elif [[ $1 == "magicalgirl.party" ]] ; then
  718. exit 1;
  719. elif [[ $1 == "digitalcourage.social" ]] ; then
  720. exit 1;
  721. elif [[ $1 == "frankly.social" ]] ; then
  722. exit 1;
  723. elif [[ $1 == "soziale.cloud" ]] ; then
  724. exit 1;
  725. elif [[ $1 == "mastodonmusic.social" ]] ; then
  726. exit 1;
  727. elif [[ $1 == "jay2k.co.uk" ]] ; then
  728. exit 1;
  729. elif [[ $1 == "cktn.todon.de" ]] ; then
  730. exit 1;
  731. elif [[ $1 == "tschuss.li" ]] ; then
  732. exit 1;
  733. elif [[ $1 == "misskey.yude.jp" ]] ; then
  734. exit 1;
  735. elif [[ $1 == "mastodon.lol" ]] ; then
  736. exit 1;
  737. elif [[ $1 == "ludosphere.fr" ]] ; then
  738. exit 1;
  739. elif [[ $1 == "kowelenz.social" ]] ; then
  740. exit 1;
  741. elif [[ $1 == "borgsocial.org" ]] ; then
  742. exit 1;
  743. elif [[ $1 == "social.chatsubo.cafe" ]] ; then
  744. exit 1;
  745. elif [[ $1 == "social.empoer.li" ]] ; then
  746. exit 1;
  747. elif [[ $1 == "mast.thomasdmn.net" ]] ; then
  748. exit 1;
  749. elif [[ $1 == "soc.jrconlin.com" ]] ; then
  750. exit 1;
  751. elif [[ $1 == "wolvesare.sexy" ]] ; then
  752. exit 1;
  753. elif [[ $1 == "weatherishappening.network" ]] ; then
  754. exit 1;
  755. elif [[ $1 == "poketopia.city" ]] ; then
  756. exit 1;
  757. elif [[ $1 == "zcmi.social" ]] ; then
  758. exit 1;
  759. elif [[ $1 == "birds.town" ]] ; then
  760. exit 1;
  761. elif [[ $1 == "mastodon.wurzelmann.at" ]] ; then
  762. exit 1;
  763. elif [[ $1 == "toot.pizza" ]] ; then
  764. exit 1;
  765. elif [[ $1 == "aesops-pawn.shop" ]] ; then
  766. exit 1;
  767. elif [[ $1 == "fed.xnor.in" ]] ; then
  768. exit 1;
  769. elif [[ $1 == "mastodon.sozialdemokratie.social" ]] ; then
  770. exit 1;
  771. elif [[ $1 == "mastodonte.tech" ]] ; then
  772. exit 1;
  773. elif [[ $1 == "leipzig.town" ]] ; then
  774. exit 1;
  775. elif [[ $1 == "usr.cloud" ]] ; then
  776. exit 1;
  777. elif [[ $1 == "denton.social" ]] ; then
  778. exit 1;
  779. elif [[ $1 == "hear-ye.com" ]] ; then
  780. exit 1;
  781. elif [[ $1 == "wx.social" ]] ; then
  782. exit 1;
  783. elif [[ $1 == "gensoukyou.jp.net" ]] ; then
  784. exit 1;
  785. elif [[ $1 == "mstdn.hw2k.com" ]] ; then
  786. exit 1;
  787. elif [[ $1 == "mastodon.yurialbuquerque.dev" ]] ; then
  788. exit 1;
  789. elif [[ $1 == "jumanji.co" ]] ; then
  790. exit 1;
  791. elif [[ $1 == "en.osm.town" ]] ; then
  792. exit 1;
  793. elif [[ $1 == "artsio.com" ]] ; then
  794. exit 1;
  795. elif [[ $1 == "rigor-mortis.nmrc.org" ]] ; then
  796. exit 1;
  797. elif [[ $1 == "relay.john.pub" ]] ; then
  798. exit 1;
  799. elif [[ $1 == "social.bau-ha.us" ]] ; then
  800. exit 1;
  801. elif [[ $1 == "toot.wales" ]] ; then
  802. exit 1;
  803. elif [[ $1 == "spanner.works" ]] ; then
  804. exit 1;
  805. elif [[ $1 == "social.tsueri.cloud" ]] ; then
  806. exit 1;
  807. elif [[ $1 == "squash.quest" ]] ; then
  808. exit 1;
  809. elif [[ $1 == "indieweb.social" ]] ; then
  810. exit 1;
  811. elif [[ $1 == "blueplanet.social" ]] ; then
  812. exit 1;
  813. elif [[ $1 == "deacon.social" ]] ; then
  814. exit 1;
  815. elif [[ $1 == "cultofshiv.wtf" ]] ; then
  816. exit 1;
  817. elif [[ $1 == "mi.ablaze.one" ]] ; then
  818. exit 1;
  819. elif [[ $1 == "toot.haus" ]] ; then
  820. exit 1;
  821. elif [[ $1 == "misskey.sda1.net" ]] ; then
  822. exit 1;
  823. elif [[ $1 == "whoneedsabudget.cheap" ]] ; then
  824. exit 1;
  825. elif [[ $1 == "blisscampus.com" ]] ; then
  826. exit 1;
  827. elif [[ $1 == "kulturfront.org" ]] ; then
  828. exit 1;
  829. elif [[ $1 == "ohnepunktundkomma.org" ]] ; then
  830. exit 1;
  831. elif [[ $1 == "theintersection.social" ]] ; then
  832. exit 1;
  833. elif [[ $1 == "rubee.buzz" ]] ; then
  834. exit 1;
  835. elif [[ $1 == "strangeobject.space" ]] ; then
  836. exit 1;
  837. elif [[ $1 == "biscuit.town" ]] ; then
  838. exit 1;
  839. elif [[ $1 == "mastodon.green" ]] ; then
  840. exit 1;
  841. elif [[ $1 == "nitecrew.rip" ]] ; then
  842. exit 1;
  843. elif [[ $1 == "stadtmg.social" ]] ; then
  844. exit 1;
  845. elif [[ $1 == "g33ks.coffee" ]] ; then
  846. exit 1;
  847. elif [[ $1 == "social.wikimedia.de" ]] ; then
  848. exit 1;
  849. elif [[ $1 == "thecle.land" ]] ; then
  850. exit 1;
  851. elif [[ $1 == "troet.yavin3.de" ]] ; then
  852. exit 1;
  853. elif [[ $1 == "social.horrorhub.club" ]] ; then
  854. exit 1;
  855. elif [[ $1 == "horrorhub.club" ]] ; then
  856. exit 1;
  857. elif [[ $1 == "pdx.sh" ]] ; then
  858. exit 1;
  859. elif [[ $1 == "libera.tokyo" ]] ; then
  860. exit 1;
  861. elif [[ $1 == "que.pasa.co" ]] ; then
  862. exit 1;
  863. elif [[ $1 == "social.chaosmagick.com" ]] ; then
  864. exit 1;
  865. elif [[ $1 == "margio.de" ]] ; then
  866. exit 1;
  867. elif [[ $1 == "mstdn.mystikos.org" ]] ; then
  868. exit 1;
  869. elif [[ $1 == "eldritch.gift" ]] ; then
  870. exit 1;
  871. elif [[ $1 == "tucson.masto.host" ]] ; then
  872. exit 1;
  873. elif [[ $1 == "hex.st" ]] ; then
  874. exit 1;
  875. elif [[ $1 == "netmonkey.xyz" ]] ; then
  876. exit 1;
  877. elif [[ $1 == "catgirl.place" ]] ; then
  878. exit 1;
  879. elif [[ $1 == "musician.social" ]] ; then
  880. exit 1;
  881. elif [[ $1 == "old.mas.town" ]] ; then
  882. exit 1;
  883. elif [[ $1 == "greenhill.zone" ]] ; then
  884. exit 1;
  885. elif [[ $1 == "osintua.eu" ]] ; then
  886. exit 1;
  887. elif [[ $1 == "mstdn.games" ]] ; then
  888. exit 1;
  889. elif [[ $1 == "kei.fashion" ]] ; then
  890. exit 1;
  891. elif [[ $1 == "fedifence.social" ]] ; then
  892. exit 1;
  893. elif [[ $1 == "tiphon.nerv-project.eu" ]] ; then
  894. exit 1;
  895. elif [[ $1 == "pleroma.tr00st.co.uk" ]] ; then
  896. exit 1;
  897. elif [[ $1 == "mastodon.escepticos.es" ]] ; then
  898. exit 1;
  899. elif [[ $1 == "mastodon.johnnybegood.fr" ]] ; then
  900. exit 1;
  901. elif [[ $1 == "mfr.social" ]] ; then
  902. exit 1;
  903. elif [[ $1 == "alinke.com" ]] ; then
  904. exit 1;
  905. elif [[ $1 == "commune.anarchist.gay" ]] ; then
  906. exit 1;
  907. elif [[ $1 == "mastodon.tardis.pw" ]] ; then
  908. exit 1;
  909. elif [[ $1 == "freethought.online" ]] ; then
  910. exit 1;
  911. elif [[ $1 == "thoughtbot.social" ]] ; then
  912. exit 1;
  913. elif [[ $1 == "akkoma.bhsnw.com" ]] ; then
  914. exit 1;
  915. elif [[ $1 == "social.cyberdolphin.space" ]] ; then
  916. exit 1;
  917. elif [[ $1 == "bz.pawdev.me" ]] ; then
  918. exit 1;
  919. elif [[ $1 == "bumscode.com" ]] ; then
  920. exit 1;
  921. elif [[ $1 == "jorts.horse" ]] ; then
  922. exit 1;
  923. elif [[ $1 == "falkenslabyrinth.net" ]] ; then
  924. exit 1;
  925. elif [[ $1 == "artistalley.space" ]] ; then
  926. exit 1;
  927. elif [[ $1 == "fountainpen.social" ]] ; then
  928. exit 1;
  929. elif [[ $1 == "discuss.smash.today" ]] ; then
  930. exit 1;
  931. elif [[ $1 == "juso.social" ]] ; then
  932. exit 1;
  933. elif [[ $1 == "smallcamp.art" ]] ; then
  934. exit 1;
  935. elif [[ $1 == "mast.giants-club.net" ]] ; then
  936. exit 1;
  937. elif [[ $1 == "hoosier.social" ]] ; then
  938. exit 1;
  939. elif [[ $1 == "electricrequiem.com" ]] ; then
  940. exit 1;
  941. elif [[ $1 == "toot.houbahouba.de" ]] ; then
  942. exit 1;
  943. elif [[ $1 == "mstdn.gsi.li" ]] ; then
  944. exit 1;
  945. elif [[ $1 == "themuscle.farm" ]] ; then
  946. exit 1;
  947. elif [[ $1 == "m.lonet.org" ]] ; then
  948. exit 1;
  949. elif [[ $1 == "mastodon.stickbear.me" ]] ; then
  950. exit 1;
  951. elif [[ $1 == "coach.masto.host" ]] ; then
  952. exit 1;
  953. elif [[ $1 == "friends.wimmer-edv.de" ]] ; then
  954. exit 1;
  955. elif [[ $1 == "erisly.social" ]] ; then
  956. exit 1;
  957. elif [[ $1 == "s.balloon.net.eu.org" ]] ; then
  958. exit 1;
  959. elif [[ $1 == "mastoot.fr" ]] ; then
  960. exit 1;
  961. elif [[ $1 == "sportstodon.com" ]] ; then
  962. exit 1;
  963. elif [[ $1 == "tooter.social" ]] ; then
  964. exit 1;
  965. elif [[ $1 == "mastodonsweden.se" ]] ; then
  966. exit 1;
  967. elif [[ $1 == "hitithere.cafe" ]] ; then
  968. exit 1;
  969. elif [[ $1 == "koyu.space" ]] ; then
  970. exit 1;
  971. elif [[ $1 == "furry.lgbt" ]] ; then
  972. exit 1;
  973. elif [[ $1 == "linux.social" ]] ; then
  974. exit 1;
  975. elif [[ $1 == "qth.social" ]] ; then
  976. exit 1;
  977. elif [[ $1 == "halfey.moe" ]] ; then
  978. exit 1;
  979. elif [[ $1 == "surfnet.space" ]] ; then
  980. exit 1;
  981. elif [[ $1 == "pleroma.zabaglione.net" ]] ; then
  982. exit 1;
  983. elif [[ $1 == "m.rickosborne.org" ]] ; then
  984. exit 1;
  985. elif [[ $1 == "convo.casa" ]] ; then
  986. exit 1;
  987. elif [[ $1 == "apobangpo.space" ]] ; then
  988. exit 1;
  989. elif [[ $1 == "glitch-dev.pixie.town" ]] ; then
  990. exit 1;
  991. elif [[ $1 == "thegoblin.market" ]] ; then
  992. exit 1;
  993. elif [[ $1 == "yiff.cafe" ]] ; then
  994. exit 1;
  995. elif [[ $1 == "friendica.xyz" ]] ; then
  996. exit 1;
  997. elif [[ $1 == "techdonuts.uk" ]] ; then
  998. exit 1;
  999. elif [[ $1 == "social.gerwitz.com" ]] ; then
  1000. exit 1;
  1001. elif [[ $1 == "6510.nu" ]] ; then
  1002. exit 1;
  1003. elif [[ $1 == "mrnet.pt" ]] ; then
  1004. exit 1;
  1005. elif [[ $1 == "cubhub.social" ]] ; then
  1006. exit 1;
  1007. elif [[ $1 == "cloudland.social" ]] ; then
  1008. exit 1;
  1009. elif [[ $1 == "pepple.us" ]] ; then
  1010. exit 1;
  1011. elif [[ $1 == "allrandom.org" ]] ; then
  1012. exit 1;
  1013. elif [[ $1 == "bookclub.masto.host" ]] ; then
  1014. exit 1;
  1015. elif [[ $1 == "bylines.social" ]] ; then
  1016. exit 1;
  1017. elif [[ $1 == "social.stw2.xyz" ]] ; then
  1018. exit 1;
  1019. elif [[ $1 == "sua.anarkis.net" ]] ; then
  1020. exit 1;
  1021. elif [[ $1 == "friendica.hellquist.eu" ]] ; then
  1022. exit 1;
  1023. elif [[ $1 == "weirdo.network" ]] ; then
  1024. exit 1;
  1025. elif [[ $1 == "mastodon.alvani.me" ]] ; then
  1026. exit 1;
  1027. elif [[ $1 == "wacky.town" ]] ; then
  1028. exit 1;
  1029. elif [[ $1 == "pl.hyperboreal.zone" ]] ; then
  1030. exit 1;
  1031. elif [[ $1 == "redowl.org" ]] ; then
  1032. exit 1;
  1033. elif [[ $1 == "social.creatureofthehill.com" ]] ; then
  1034. exit 1;
  1035. elif [[ $1 == "m.iamkonstantin.eu" ]] ; then
  1036. exit 1;
  1037. elif [[ $1 == "plma.plus.st" ]] ; then
  1038. exit 1;
  1039. elif [[ $1 == "rukii.net" ]] ; then
  1040. exit 1;
  1041. elif [[ $1 == "vivaristics.net" ]] ; then
  1042. exit 1;
  1043. elif [[ $1 == "apricot.social" ]] ; then
  1044. exit 1;
  1045. elif [[ $1 == "social.aero" ]] ; then
  1046. exit 1;
  1047. elif [[ $1 == "drumstodon.net" ]] ; then
  1048. exit 1;
  1049. elif [[ $1 == "social.team-unix.de" ]] ; then
  1050. exit 1;
  1051. elif [[ $1 == "freelancers.online" ]] ; then
  1052. exit 1;
  1053. elif [[ $1 == "neurodiversity-in.au" ]] ; then
  1054. exit 1;
  1055. elif [[ $1 == "mastindia.co" ]] ; then
  1056. exit 1;
  1057. elif [[ $1 == "orangem.net" ]] ; then
  1058. exit 1;
  1059. elif [[ $1 == "cariad.social" ]] ; then
  1060. exit 1;
  1061. elif [[ $1 == "angrydome.au" ]] ; then
  1062. exit 1;
  1063. elif [[ $1 == "me.dm" ]] ; then
  1064. exit 1;
  1065. elif [[ $1 == "queer.group" ]] ; then
  1066. exit 1;
  1067. elif [[ $1 == "birdbox.party" ]] ; then
  1068. exit 1;
  1069. elif [[ $1 == "spaghettimonster.church" ]] ; then
  1070. exit 1;
  1071. elif [[ $1 == "dadalo.pl" ]] ; then
  1072. exit 1;
  1073. elif [[ $1 == "mk.spookygirl.boo" ]] ; then
  1074. exit 1;
  1075. elif [[ $1 == "social.meyer-guillot.fr" ]] ; then
  1076. exit 1;
  1077. elif [[ $1 == "texasobserver.social" ]] ; then
  1078. exit 1;
  1079. elif [[ $1 == "don.masto.host" ]] ; then
  1080. exit 1;
  1081. elif [[ $1 == "mastodon.guerilla.studio" ]] ; then
  1082. exit 1;
  1083. elif [[ $1 == "3v.is" ]] ; then
  1084. exit 1;
  1085. elif [[ $1 == "telegrafverket.cc" ]] ; then
  1086. exit 1;
  1087. elif [[ $1 == "bunny.family" ]] ; then
  1088. exit 1;
  1089. elif [[ $1 == "adulthood.lol" ]] ; then
  1090. exit 1;
  1091. elif [[ $1 == "extropian.net" ]] ; then
  1092. exit 1;
  1093. elif [[ $1 == "www.extropian.net" ]] ; then
  1094. exit 1;
  1095. elif [[ $1 == "social.cosmick9.net" ]] ; then
  1096. exit 1;
  1097. elif [[ $1 == "social.otepoti.dev" ]] ; then
  1098. exit 1;
  1099. elif [[ $1 == "social.storydragon.nl" ]] ; then
  1100. exit 1;
  1101. elif [[ $1 == "iscurrently.live" ]] ; then
  1102. exit 1;
  1103. elif [[ $1 == "tidy.camp" ]] ; then
  1104. exit 1;
  1105. elif [[ $1 == "snowmastodon.social" ]] ; then
  1106. exit 1;
  1107. elif [[ $1 == "molten.cloud" ]] ; then
  1108. exit 1;
  1109. elif [[ $1 == "social.veraciousnetwork.com" ]] ; then
  1110. exit 1;
  1111. elif [[ $1 == "chat.alexisart.me" ]] ; then
  1112. exit 1;
  1113. elif [[ $1 == "nileane.fr" ]] ; then
  1114. exit 1;
  1115. elif [[ $1 == "freeside.cafe" ]] ; then
  1116. exit 1;
  1117. elif [[ $1 == "mastodon.celticpaganism.org" ]] ; then
  1118. exit 1;
  1119. elif [[ $1 == "discworld.social" ]] ; then
  1120. exit 1;
  1121. elif [[ $1 == "social.drazisil.com" ]] ; then
  1122. exit 1;
  1123. elif [[ $1 == "orbsafe.masto.host" ]] ; then
  1124. exit 1;
  1125. elif [[ $1 == "fediverse.xavin.net" ]] ; then
  1126. exit 1;
  1127. elif [[ $1 == "thegoatery.dyndns.org" ]] ; then
  1128. exit 1;
  1129. elif [[ $1 == "gamepad.club" ]] ; then
  1130. exit 1;
  1131. elif [[ $1 == "swiftdev.space" ]] ; then
  1132. exit 1;
  1133. elif [[ $1 == "fedi.home.ctu.cx" ]] ; then
  1134. exit 1;
  1135. elif [[ $1 == "episcodon.net" ]] ; then
  1136. exit 1;
  1137. elif [[ $1 == "friendica.waldstepperbu.de" ]] ; then
  1138. exit 1;
  1139. elif [[ $1 == "social.uden.ai" ]] ; then
  1140. exit 1;
  1141. elif [[ $1 == "akkoma.catgirlsare.cool" ]] ; then
  1142. exit 1;
  1143. elif [[ $1 == "fedi.cpluspatch.com" ]] ; then
  1144. exit 1;
  1145. elif [[ $1 == "goose.directory" ]] ; then
  1146. exit 1;
  1147. elif [[ $1 == "pl.salushnes.solutions" ]] ; then
  1148. exit 1;
  1149. elif [[ $1 == "page.lgbt" ]] ; then
  1150. exit 1;
  1151. elif [[ $1 == "boop.juke.fr" ]] ; then
  1152. exit 1;
  1153. elif [[ $1 == "social.ember.li" ]] ; then
  1154. exit 1;
  1155. elif [[ $1 == "brettvormkopf.de" ]] ; then
  1156. exit 1;
  1157. elif [[ $1 == "mstdn.crmbl.uk" ]] ; then
  1158. exit 1;
  1159. elif [[ $1 == "mustel.id" ]] ; then
  1160. exit 1;
  1161. elif [[ $1 == "gaygeek.social" ]] ; then
  1162. exit 1;
  1163. elif [[ $1 == "chilemasto.casa" ]] ; then
  1164. exit 1;
  1165. elif [[ $1 == "aut.social" ]] ; then
  1166. exit 1;
  1167. elif [[ $1 == "foxhold.net" ]] ; then
  1168. exit 1;
  1169. elif [[ $1 == "fouroclockfarms.club" ]] ; then
  1170. exit 1;
  1171. elif [[ $1 == "lounge.equanimity.blue" ]] ; then
  1172. exit 1;
  1173. elif [[ $1 == "social.kimberlychase.com" ]] ; then
  1174. exit 1;
  1175. elif [[ $1 == "mastodon.actors.social" ]] ; then
  1176. exit 1;
  1177. elif [[ $1 == "larry.town" ]] ; then
  1178. exit 1;
  1179. elif [[ $1 == "social.n8e.dev" ]] ; then
  1180. exit 1;
  1181. elif [[ $1 == "xn--trt-tna.sebtobie.de" ]] ; then
  1182. exit 1;
  1183. elif [[ $1 == "im.alstadheim.no" ]] ; then
  1184. exit 1;
  1185. elif [[ $1 == "flipboard.social" ]] ; then
  1186. exit 1;
  1187. elif [[ $1 == "social.flipboard.com" ]] ; then
  1188. exit 1;
  1189. elif [[ $1 == "micro.5505.industries" ]] ; then
  1190. exit 1;
  1191. elif [[ $1 == "mastodon.govsocial.org" ]] ; then
  1192. exit 1;
  1193. elif [[ $1 == "www.mastodon.scot" ]] ; then
  1194. exit 1;
  1195. elif [[ $1 == "mastodon.indiegames.online" ]] ; then
  1196. exit 1;
  1197. elif [[ $1 == "frederiksberg.social" ]] ; then
  1198. exit 1;
  1199. elif [[ $1 == "eleph.social" ]] ; then
  1200. exit 1;
  1201. elif [[ $1 == "saskodon.ca" ]] ; then
  1202. exit 1;
  1203. elif [[ $1 == "lediver.se" ]] ; then
  1204. exit 1;
  1205. elif [[ $1 == "nerdculture.de" ]] ; then
  1206. exit 1;
  1207. elif [[ $1 == "gts.kelbie.scot" ]] ; then
  1208. exit 1;
  1209. elif [[ $1 == "demented.and.sad.but.social" ]] ; then
  1210. exit 1;
  1211. elif [[ $1 == "blan.cc" ]] ; then
  1212. exit 1;
  1213. elif [[ $1 == "mastodon.chuggybumba.com" ]] ; then
  1214. exit 1;
  1215. elif [[ $1 == "the.cat.broker" ]] ; then
  1216. exit 1;
  1217. elif [[ $1 == "sea-mstdn.social" ]] ; then
  1218. exit 1;
  1219. elif [[ $1 == "soc.cosmick9.net" ]] ; then
  1220. exit 1;
  1221. elif [[ $1 == "meerjungfrauengrotte.de" ]] ; then
  1222. exit 1;
  1223. elif [[ $1 == "dev.ard.social" ]] ; then
  1224. exit 1;
  1225. elif [[ $1 == "velodrama.cc" ]] ; then
  1226. exit 1;
  1227. elif [[ $1 == "cutie.city" ]] ; then
  1228. exit 1;
  1229. elif [[ $1 == "social.mousetail.dev" ]] ; then
  1230. exit 1;
  1231. elif [[ $1 == "tinycities.net" ]] ; then
  1232. exit 1;
  1233. elif [[ $1 == "pagan.plus" ]] ; then
  1234. exit 1;
  1235. elif [[ $1 == "billys.mom" ]] ; then
  1236. exit 1;
  1237. elif [[ $1 == "mas.toast.ws" ]] ; then
  1238. exit 1;
  1239. elif [[ $1 == "techhub.social" ]] ; then
  1240. exit 1;
  1241. elif [[ $1 == "lea.lgbt" ]] ; then
  1242. exit 1;
  1243. elif [[ $1 == "mastodon-belgium.be" ]] ; then
  1244. exit 1;
  1245. elif [[ $1 == "betweenthelions.link" ]] ; then
  1246. exit 1;
  1247. elif [[ $1 == "tweesecake.social" ]] ; then
  1248. exit 1;
  1249. elif [[ $1 == "wxcloud.social" ]] ; then
  1250. exit 1;
  1251. elif [[ $1 == "mstdn.plus.st" ]] ; then
  1252. exit 1;
  1253. elif [[ $1 == "yakker.app" ]] ; then
  1254. exit 1;
  1255. elif [[ $1 == "dotnet.social" ]] ; then
  1256. exit 1;
  1257. elif [[ $1 == "friendica.nerderium.com" ]] ; then
  1258. exit 1;
  1259. elif [[ $1 == "blab.gg" ]] ; then
  1260. exit 1;
  1261. elif [[ $1 == "toot.foundation" ]] ; then
  1262. exit 1;
  1263. elif [[ $1 == "cosy.inkling.social" ]] ; then
  1264. exit 1;
  1265. elif [[ $1 == "toot.phasorburn.com" ]] ; then
  1266. exit 1;
  1267. elif [[ $1 == "akko.koifu.re" ]] ; then
  1268. exit 1;
  1269. elif [[ $1 == "ricko.social" ]] ; then
  1270. exit 1;
  1271. elif [[ $1 == "ocw.social" ]] ; then
  1272. exit 1;
  1273. elif [[ $1 == "thekitty.zone" ]] ; then
  1274. exit 1;
  1275. elif [[ $1 == "social.sciences.re" ]] ; then
  1276. exit 1;
  1277. elif [[ $1 == "famichiki.jp" ]] ; then
  1278. exit 1;
  1279. elif [[ $1 == "chaos.tips" ]] ; then
  1280. exit 1;
  1281. elif [[ $1 == "jkpg.rocks" ]] ; then
  1282. exit 1;
  1283. elif [[ $1 == "openmic.day" ]] ; then
  1284. exit 1;
  1285. elif [[ $1 == "pyrox.dev" ]] ; then
  1286. exit 1;
  1287. elif [[ $1 == "krimsonlocker.xyz" ]] ; then
  1288. exit 1;
  1289. elif [[ $1 == "forklevelzero.org" ]] ; then
  1290. exit 1;
  1291. elif [[ $1 == "pont-bl.eu.org" ]] ; then
  1292. exit 1;
  1293. elif [[ $1 == "mastodon.mailstation.de" ]] ; then
  1294. exit 1;
  1295. elif [[ $1 == "devianze.city" ]] ; then
  1296. exit 1;
  1297. elif [[ $1 == "evil.social" ]] ; then
  1298. exit 1;
  1299. elif [[ $1 == "mastodon.lucci.xyz" ]] ; then
  1300. exit 1;
  1301. elif [[ $1 == "social.lucci.xyz" ]] ; then
  1302. exit 1;
  1303. elif [[ $1 == "akkoma.bangsparks.com" ]] ; then
  1304. exit 1;
  1305. elif [[ $1 == "replicants.cafe" ]] ; then
  1306. exit 1;
  1307. elif [[ $1 == "wolfbunny.lgbt" ]] ; then
  1308. exit 1;
  1309. elif [[ $1 == "simcha.lgbt" ]] ; then
  1310. exit 1;
  1311. elif [[ $1 == "zoroark.cafe" ]] ; then
  1312. exit 1;
  1313. elif [[ $1 == "mastodon.ahorn.info" ]] ; then
  1314. exit 1;
  1315. elif [[ $1 == "social.vault105.ca" ]] ; then
  1316. exit 1;
  1317. elif [[ $1 == "0w0.is" ]] ; then
  1318. exit 1;
  1319. elif [[ $1 == "yql.social" ]] ; then
  1320. exit 1;
  1321. elif [[ $1 == "social.bim.land" ]] ; then
  1322. exit 1;
  1323. elif [[ $1 == "artermyss.com" ]] ; then
  1324. exit 1;
  1325. elif [[ $1 == "sociale.network" ]] ; then
  1326. exit 1;
  1327. elif [[ $1 == "www.sociale.network" ]] ; then
  1328. exit 1;
  1329. elif [[ $1 == "pounced-on.me" ]] ; then
  1330. exit 1;
  1331. elif [[ $1 == "akkoma.ichoria.xyz" ]] ; then
  1332. exit 1;
  1333. elif [[ $1 == "akkoma.vault105.ca" ]] ; then
  1334. exit 1;
  1335. elif [[ $1 == "fediverse.date" ]] ; then
  1336. exit 1;
  1337. elif [[ $1 == "mastodon.derpstra.nl" ]] ; then
  1338. exit 1;
  1339. elif [[ $1 == "astolfo.social" ]] ; then
  1340. exit 1;
  1341. elif [[ $1 == "bobbinsrobots.com" ]] ; then
  1342. exit 1;
  1343. elif [[ $1 == "minazukey.uk" ]] ; then
  1344. exit 1;
  1345. elif [[ $1 == "mk.asie.pl" ]] ; then
  1346. exit 1;
  1347. elif [[ $1 == "tausibs.org" ]] ; then
  1348. exit 1;
  1349. elif [[ $1 == "cyrix.matto.nl" ]] ; then
  1350. exit 1;
  1351. elif [[ $1 == "fedi.omada.cafe" ]] ; then
  1352. exit 1;
  1353. elif [[ $1 == "mastodon.balamb.fr" ]] ; then
  1354. exit 1;
  1355. elif [[ $1 == "hackyderm.io" ]] ; then
  1356. exit 1;
  1357. elif [[ $1 == "rva.fyi" ]] ; then
  1358. exit 1;
  1359. elif [[ $1 == "calckey.uryokurin.net" ]] ; then
  1360. exit 1;
  1361. elif [[ $1 == "calc.bal.ovh" ]] ; then
  1362. exit 1;
  1363. elif [[ $1 == "aus.lgbt" ]] ; then
  1364. exit 1;
  1365. elif [[ $1 == "mastodon.gatewayy.net" ]] ; then
  1366. exit 1;
  1367. elif [[ $1 == "toot.community" ]] ; then
  1368. exit 1;
  1369. elif [[ $1 == "laker.gay" ]] ; then
  1370. exit 1;
  1371. elif [[ $1 == "fedi.bangsparks.com" ]] ; then
  1372. exit 1;
  1373. elif [[ $1 == "rapidsloth.xyz" ]] ; then
  1374. exit 1;
  1375. elif [[ $1 == "dataplatform.social" ]] ; then
  1376. exit 1;
  1377. elif [[ $1 == "montereybay.social" ]] ; then
  1378. exit 1;
  1379. elif [[ $1 == "zoner.gay" ]] ; then
  1380. exit 1;
  1381. elif [[ $1 == "wubba.boo" ]] ; then
  1382. exit 1;
  1383. elif [[ $1 == "soc.feditime.com" ]] ; then
  1384. exit 1;
  1385. elif [[ $1 == "puntarella.party" ]] ; then
  1386. exit 1;
  1387. elif [[ $1 == "lsbt.me" ]] ; then
  1388. exit 1;
  1389. elif [[ $1 == "fedi.cpluspatch.dev" ]] ; then
  1390. exit 1;
  1391. elif [[ $1 == "volksverpetzer.social" ]] ; then
  1392. exit 1;
  1393. elif [[ $1 == "oddballs.vip" ]] ; then
  1394. exit 1;
  1395. elif [[ $1 == "screengeeks.club" ]] ; then
  1396. exit 1;
  1397. elif [[ $1 == "pandas.social" ]] ; then
  1398. exit 1;
  1399. elif [[ $1 == "union.place" ]] ; then
  1400. exit 1;
  1401. elif [[ $1 == "social.pawsitiv.space" ]] ; then
  1402. exit 1;
  1403. elif [[ $1 == "mastodon.iftas.org" ]] ; then
  1404. exit 1;
  1405. elif [[ $1 == "ostalb.social" ]] ; then
  1406. exit 1;
  1407. elif [[ $1 == "calckey.oldkid.digital" ]] ; then
  1408. exit 1;
  1409. elif [[ $1 == "smashingly.gay" ]] ; then
  1410. exit 1;
  1411. elif [[ $1 == "sy.nthia.dev" ]] ; then
  1412. exit 1;
  1413. elif [[ $1 == "friendica.heikofotografiert.de" ]] ; then
  1414. exit 1;
  1415. elif [[ $1 == "calckey.sekretaerbaer.de" ]] ; then
  1416. exit 1;
  1417. elif [[ $1 == "pertsch.social" ]] ; then
  1418. exit 1;
  1419. elif [[ $1 == "social.mondoweiss.net" ]] ; then
  1420. exit 1;
  1421. elif [[ $1 == "fedi.fullvoid.de" ]] ; then
  1422. exit 1;
  1423. elif [[ $1 == "fv.technogothic.net" ]] ; then
  1424. exit 1;
  1425. elif [[ $1 == "our.unknowing.dance" ]] ; then
  1426. exit 1;
  1427. elif [[ $1 == "mas.else.social" ]] ; then
  1428. exit 1;
  1429. elif [[ $1 == "social.molthagen.de" ]] ; then
  1430. exit 1;
  1431. elif [[ $1 == "nodespace.social" ]] ; then
  1432. exit 1;
  1433. elif [[ $1 == "connectified.com" ]] ; then
  1434. exit 1;
  1435. elif [[ $1 == "paktodon.asia" ]] ; then
  1436. exit 1;
  1437. elif [[ $1 == "m.filmfreedom.net" ]] ; then
  1438. exit 1;
  1439. elif [[ $1 == "social.zym.lol" ]] ; then
  1440. exit 1;
  1441. elif [[ $1 == "myother.life" ]] ; then
  1442. exit 1;
  1443. elif [[ $1 == "s.mushroom.gay" ]] ; then
  1444. exit 1;
  1445. elif [[ $1 == "mushroom.gay" ]] ; then
  1446. exit 1;
  1447. elif [[ $1 == "nightcity.bar" ]] ; then
  1448. exit 1;
  1449. elif [[ $1 == "anarres.family" ]] ; then
  1450. exit 1;
  1451. elif [[ $1 == "ciechom.eu" ]] ; then
  1452. exit 1;
  1453. elif [[ $1 == "finecity.social" ]] ; then
  1454. exit 1;
  1455. elif [[ $1 == "social.lexevo.net" ]] ; then
  1456. exit 1;
  1457. elif [[ $1 == "mastodon.kodeklang.social" ]] ; then
  1458. exit 1;
  1459. elif [[ $1 == "pleroma.elaine.is" ]] ; then
  1460. exit 1;
  1461. elif [[ $1 == "orchard.social" ]] ; then
  1462. exit 1;
  1463. elif [[ $1 == "social.marv1n.me" ]] ; then
  1464. exit 1;
  1465. elif [[ $1 == "beehaw.org" ]] ; then
  1466. exit 1;
  1467. elif [[ $1 == "discuss.tchncs.de" ]] ; then
  1468. exit 1;
  1469. elif [[ $1 == "discuss.online" ]] ; then
  1470. exit 1;
  1471. elif [[ $1 == "lib.lgbt" ]] ; then
  1472. exit 1;
  1473. elif [[ $1 == "lemmy.spacestation14.com" ]] ; then
  1474. exit 1;
  1475. elif [[ $1 == "tagpro.lol" ]] ; then
  1476. exit 1;
  1477. elif [[ $1 == "social.trout.garden" ]] ; then
  1478. exit 1;
  1479. elif [[ $1 == "lemmy.dbzer0.com" ]] ; then
  1480. exit 1;
  1481. elif [[ $1 == "ak.pilk.space" ]] ; then
  1482. exit 1;
  1483. elif [[ $1 == "spartanburg.social" ]] ; then
  1484. exit 1;
  1485. elif [[ $1 == "mastodonapp.uk" ]] ; then
  1486. exit 1;
  1487. elif [[ $1 == "mastodon.rhys.wtf" ]] ; then
  1488. exit 1;
  1489. elif [[ $1 == "f.else.social" ]] ; then
  1490. exit 1;
  1491. elif [[ $1 == "emeraldsocial.org" ]] ; then
  1492. exit 1;
  1493. elif [[ $1 == "lemmy.blahaj.zone" ]] ; then
  1494. exit 1;
  1495. elif [[ $1 == "social.hamington.net" ]] ; then
  1496. exit 1;
  1497. elif [[ $1 == "feddit.dk" ]] ; then
  1498. exit 1;
  1499. elif [[ $1 == "lemmy.fauxreigner.net" ]] ; then
  1500. exit 1;
  1501. elif [[ $1 == "lemmy.techstache.com" ]] ; then
  1502. exit 1;
  1503. elif [[ $1 == "lemmy.world" ]] ; then
  1504. exit 1;
  1505. elif [[ $1 == "fedi.maikel.dev" ]] ; then
  1506. exit 1;
  1507. elif [[ $1 == "lemmy.funami.tech" ]] ; then
  1508. exit 1;
  1509. elif [[ $1 == "tucson.social" ]] ; then
  1510. exit 1;
  1511. elif [[ $1 == "tröt.sebtobie.de" ]] ; then
  1512. exit 1;
  1513. elif [[ $1 == "jemal.contact" ]] ; then
  1514. exit 1;
  1515. elif [[ $1 == "neonsoup.social" ]] ; then
  1516. exit 1;
  1517. elif [[ $1 == "lemmings.basic-domain.com" ]] ; then
  1518. exit 1;
  1519. elif [[ $1 == "dope.bz" ]] ; then
  1520. exit 1;
  1521. elif [[ $1 == "kiai.lemmy.ninja" ]] ; then
  1522. exit 1;
  1523. elif [[ $1 == "femboys.love" ]] ; then
  1524. exit 1;
  1525. elif [[ $1 == "charade.social" ]] ; then
  1526. exit 1;
  1527. elif [[ $1 == "social.gnieh.org" ]] ; then
  1528. exit 1;
  1529. elif [[ $1 == "boing.world" ]] ; then
  1530. exit 1;
  1531. elif [[ $1 == "queerfedi.com" ]] ; then
  1532. exit 1;
  1533. elif [[ $1 == "fedi.ctu.cx" ]] ; then
  1534. exit 1;
  1535. elif [[ $1 == "gamerplus.org" ]] ; then
  1536. exit 1;
  1537. elif [[ $1 == "niagara.social" ]] ; then
  1538. exit 1;
  1539. elif [[ $1 == "social.lilac.lab.shortcord.com" ]] ; then
  1540. exit 1;
  1541. elif [[ $1 == "m.daevien.com" ]] ; then
  1542. exit 1;
  1543. elif [[ $1 == "magicalgirl.social" ]] ; then
  1544. exit 1;
  1545. elif [[ $1 == "social.5f9.de" ]] ; then
  1546. exit 1;
  1547. elif [[ $1 == "mastodon.miicat.eu" ]] ; then
  1548. exit 1;
  1549. elif [[ $1 == "jistflow.com" ]] ; then
  1550. exit 1;
  1551. elif [[ $1 == "ak.vern.cc" ]] ; then
  1552. exit 1;
  1553. elif [[ $1 == "kopimi.space" ]] ; then
  1554. exit 1;
  1555. elif [[ $1 == "kult.dumb.land" ]] ; then
  1556. exit 1;
  1557. elif [[ $1 == "libretooth.gr" ]] ; then
  1558. exit 1;
  1559. elif [[ $1 == "social.neb.cx" ]] ; then
  1560. exit 1;
  1561. elif [[ $1 == "firetribe.org" ]] ; then
  1562. exit 1;
  1563. elif [[ $1 == "synaptyx.com" ]] ; then
  1564. exit 1;
  1565. elif [[ $1 == "veganunity.me" ]] ; then
  1566. exit 1;
  1567. elif [[ $1 == "citrus.farm" ]] ; then
  1568. exit 1;
  1569. elif [[ $1 == "social.waystone.cc" ]] ; then
  1570. exit 1;
  1571. elif [[ $1 == "mastodon.polente.de" ]] ; then
  1572. exit 1;
  1573. elif [[ $1 == "soc.saiyajin.space" ]] ; then
  1574. exit 1;
  1575. elif [[ $1 == "ambrosia.moe" ]] ; then
  1576. exit 1;
  1577. elif [[ $1 == "glowingcu.be" ]] ; then
  1578. exit 1;
  1579. elif [[ $1 == "blackqueer.life" ]] ; then
  1580. exit 1;
  1581. elif [[ $1 == "shutinnerd.space" ]] ; then
  1582. exit 1;
  1583. elif [[ $1 == "vmst.io" ]] ; then
  1584. exit 1;
  1585. elif [[ $1 == "social.arbolitoloco.xyz" ]] ; then
  1586. exit 1;
  1587. elif [[ $1 == "prime8s.xyz" ]] ; then
  1588. exit 1;
  1589. elif [[ $1 == "fasol.org" ]] ; then
  1590. exit 1;
  1591. elif [[ $1 == "mastodon.de" ]] ; then
  1592. exit 1;
  1593. elif [[ $1 == "gaypirates.club" ]] ; then
  1594. exit 1;
  1595. elif [[ $1 == "social.lizzy.rs" ]] ; then
  1596. exit 1;
  1597. elif [[ $1 == "gayboyz.space" ]] ; then
  1598. exit 1;
  1599. elif [[ $1 == "raining.anvil.top" ]] ; then
  1600. exit 1;
  1601. elif [[ $1 == "social.arazil.net" ]] ; then
  1602. exit 1;
  1603. elif [[ $1 == "mstdn.bitwalker.eu" ]] ; then
  1604. exit 1;
  1605. elif [[ $1 == "social.jihad.icu" ]] ; then
  1606. exit 1;
  1607. elif [[ $1 == "calckey.tenkuu.social" ]] ; then
  1608. exit 1;
  1609. elif [[ $1 == "universe.cx" ]] ; then
  1610. exit 1;
  1611. elif [[ $1 == "karas.social" ]] ; then
  1612. exit 1;
  1613. elif [[ $1 == "mastodon.intersport.social" ]] ; then
  1614. exit 1;
  1615. elif [[ $1 == "headpat.exchange" ]] ; then
  1616. exit 1;
  1617. elif [[ $1 == "bingus.bloodshed.party" ]] ; then
  1618. exit 1;
  1619. elif [[ $1 == "inductive.space" ]] ; then
  1620. exit 1;
  1621. elif [[ $1 == "mastodon.mixed-reality.social" ]] ; then
  1622. exit 1;
  1623. elif [[ $1 == "distraction.party" ]] ; then
  1624. exit 1;
  1625. elif [[ $1 == "mastodon.jaiden.pw" ]] ; then
  1626. exit 1;
  1627. elif [[ $1 == "akkoma.nrd.li" ]] ; then
  1628. exit 1;
  1629. elif [[ $1 == "fursona.party" ]] ; then
  1630. exit 1;
  1631. elif [[ $1 == "social.jellyosaurus.com" ]] ; then
  1632. exit 1;
  1633. elif [[ $1 == "froggie.town" ]] ; then
  1634. exit 1;
  1635. elif [[ $1 == "social.doghub.eu" ]] ; then
  1636. exit 1;
  1637. elif [[ $1 == "mstdn.isometry.group" ]] ; then
  1638. exit 1;
  1639. elif [[ $1 == "gearheads.social" ]] ; then
  1640. exit 1;
  1641. elif [[ $1 == "furrygroup.gay" ]] ; then
  1642. exit 1;
  1643. elif [[ $1 == "wolfdo.gg" ]] ; then
  1644. exit 1;
  1645. elif [[ $1 == "sleepy.pleasant.rest" ]] ; then
  1646. exit 1;
  1647. elif [[ $1 == "excelsior.furytech.net" ]] ; then
  1648. exit 1;
  1649. elif [[ $1 == "slime.computer" ]] ; then
  1650. exit 1;
  1651. elif [[ $1 == "social.headbright.eu" ]] ; then
  1652. exit 1;
  1653. elif [[ $1 == "dev.rawr.chat" ]] ; then
  1654. exit 1;
  1655. elif [[ $1 == "firefish.consummatetinkerer.net" ]] ; then
  1656. exit 1;
  1657. elif [[ $1 == "a.tripulse.link" ]] ; then
  1658. exit 1;
  1659. elif [[ $1 == "social.fops.one" ]] ; then
  1660. exit 1;
  1661. elif [[ $1 == "calckey.warrows.fr" ]] ; then
  1662. exit 1;
  1663. elif [[ $1 == "kolkra.be" ]] ; then
  1664. exit 1;
  1665. elif [[ $1 == "odd.town" ]] ; then
  1666. exit 1;
  1667. elif [[ $1 == "hi.lysianth.us" ]] ; then
  1668. exit 1;
  1669. elif [[ $1 == "tooting.ch" ]] ; then
  1670. exit 1;
  1671. elif [[ $1 == "mastodon.gal" ]] ; then
  1672. exit 1;
  1673. elif [[ $1 == "universeodon.com" ]] ; then
  1674. exit 1;
  1675. elif [[ $1 == "calc.rettuce.page" ]] ; then
  1676. exit 1;
  1677. elif [[ $1 == "firefish.community" ]] ; then
  1678. exit 1;
  1679. elif [[ $1 == "firefish.social" ]] ; then
  1680. exit 1;
  1681. elif [[ $1 == "cherrykitten.gay" ]] ; then
  1682. exit 1;
  1683. elif [[ $1 == "curiouscabbit.social" ]] ; then
  1684. exit 1;
  1685. elif [[ $1 == "wanderingwires.xyz" ]] ; then
  1686. exit 1;
  1687. elif [[ $1 == "old.sharlayan.city" ]] ; then
  1688. exit 1;
  1689. elif [[ $1 == "miku.place" ]] ; then
  1690. exit 1;
  1691. elif [[ $1 == "toot.codatory.com" ]] ; then
  1692. exit 1;
  1693. elif [[ $1 == "toot.beep.computer" ]] ; then
  1694. exit 1;
  1695. elif [[ $1 == "warped.dev" ]] ; then
  1696. exit 1;
  1697. elif [[ $1 == "cybersec.community" ]] ; then
  1698. exit 1;
  1699. elif [[ $1 == "loud.computer" ]] ; then
  1700. exit 1;
  1701. elif [[ $1 == "fedi.software" ]] ; then
  1702. exit 1;
  1703. elif [[ $1 == "mastodon.portal.org" ]] ; then
  1704. exit 1;
  1705. elif [[ $1 == "seafoam.space" ]] ; then
  1706. exit 1;
  1707. elif [[ $1 == "some.chiptune.uk" ]] ; then
  1708. exit 1;
  1709. elif [[ $1 == "p.girlc.at" ]] ; then
  1710. exit 1;
  1711. elif [[ $1 == "social.contexto.space" ]] ; then
  1712. exit 1;
  1713. elif [[ $1 == "transfem.social" ]] ; then
  1714. exit 1;
  1715. elif [[ $1 == "scientia.social" ]] ; then
  1716. exit 1;
  1717. elif [[ $1 == "calckey.jbesse.info" ]] ; then
  1718. exit 1;
  1719. elif [[ $1 == "xenolove.win" ]] ; then
  1720. exit 1;
  1721. elif [[ $1 == "asso.lgbt" ]] ; then
  1722. exit 1;
  1723. elif [[ $1 == "himagine.club" ]] ; then
  1724. exit 1;
  1725. elif [[ $1 == "hackers.center" ]] ; then
  1726. exit 1;
  1727. elif [[ $1 == "smilodon.chatslibres.com" ]] ; then
  1728. exit 1;
  1729. elif [[ $1 == "astronomy.city" ]] ; then
  1730. exit 1;
  1731. elif [[ $1 == "dartboard.social" ]] ; then
  1732. exit 1;
  1733. elif [[ $1 == "toot.mymte.de" ]] ; then
  1734. exit 1;
  1735. elif [[ $1 == "social.alastair87.me" ]] ; then
  1736. exit 1;
  1737. elif [[ $1 == "nonprofits.masto.host" ]] ; then
  1738. exit 1;
  1739. elif [[ $1 == "toulouse.social" ]] ; then
  1740. exit 1;
  1741. elif [[ $1 == "skyland.social" ]] ; then
  1742. exit 1;
  1743. elif [[ $1 == "cytag.nl" ]] ; then
  1744. exit 1;
  1745. elif [[ $1 == "social.digital-artifacts.net" ]] ; then
  1746. exit 1;
  1747. elif [[ $1 == "tomboys.love" ]] ; then
  1748. exit 1;
  1749. elif [[ $1 == "calckey.jp" ]] ; then
  1750. exit 1;
  1751. elif [[ $1 == "guerrill.art" ]] ; then
  1752. exit 1;
  1753. elif [[ $1 == "literature.ink" ]] ; then
  1754. exit 1;
  1755. elif [[ $1 == "mastodo.neoliber.al" ]] ; then
  1756. exit 1;
  1757. elif [[ $1 == "monkeyhex.com" ]] ; then
  1758. exit 1;
  1759. elif [[ $1 == "mastodon.blip.rocklin.dev" ]] ; then
  1760. exit 1;
  1761. elif [[ $1 == "antiterf.com" ]] ; then
  1762. exit 1;
  1763. elif [[ $1 == "ff.swrlab.org" ]] ; then
  1764. exit 1;
  1765. elif [[ $1 == "fedi.catin.space" ]] ; then
  1766. exit 1;
  1767. elif [[ $1 == "fedi.hanna.lol" ]] ; then
  1768. exit 1;
  1769. elif [[ $1 == "sleepy.ink" ]] ; then
  1770. exit 1;
  1771. elif [[ $1 == "malenfant.net" ]] ; then
  1772. exit 1;
  1773. elif [[ $1 == "fedifriends.social" ]] ; then
  1774. exit 1;
  1775. elif [[ $1 == "norden.social" ]] ; then
  1776. exit 1;
  1777. elif [[ $1 == "social.maleo.uk" ]] ; then
  1778. exit 1;
  1779. elif [[ $1 == "breizh.social" ]] ; then
  1780. exit 1;
  1781. elif [[ $1 == "riemann.social" ]] ; then
  1782. exit 1;
  1783. elif [[ $1 == "mastodon.myocci.social" ]] ; then
  1784. exit 1;
  1785. elif [[ $1 == "shrimple.aagaming.me" ]] ; then
  1786. exit 1;
  1787. elif [[ $1 == "genshin.social" ]] ; then
  1788. exit 1;
  1789. elif [[ $1 == "stargate.pbcarrara.com.br" ]] ; then
  1790. exit 1;
  1791. elif [[ $1 == "pina.social" ]] ; then
  1792. exit 1;
  1793. elif [[ $1 == "rwn.lol" ]] ; then
  1794. exit 1;
  1795. elif [[ $1 == "them.cheeky.wales" ]] ; then
  1796. exit 1;
  1797. elif [[ $1 == "social.thetransagenda.gay" ]] ; then
  1798. exit 1;
  1799. elif [[ $1 == "scottodon.com" ]] ; then
  1800. exit 1;
  1801. elif [[ $1 == "please-dominate.me" ]] ; then
  1802. exit 1;
  1803. elif [[ $1 == "social.transistorcafe.net" ]] ; then
  1804. exit 1;
  1805. elif [[ $1 == "estrogen.plus" ]] ; then
  1806. exit 1;
  1807. elif [[ $1 == "xim.ca" ]] ; then
  1808. exit 1;
  1809. elif [[ $1 == "digitalnomads.social" ]] ; then
  1810. exit 1;
  1811. elif [[ $1 == "spinny.city" ]] ; then
  1812. exit 1;
  1813. elif [[ $1 == "ak.tau-ceti.space" ]] ; then
  1814. exit 1;
  1815. elif [[ $1 == "gender.systems" ]] ; then
  1816. exit 1;
  1817. elif [[ $1 == "mastodon.fedivienne.org" ]] ; then
  1818. exit 1;
  1819. elif [[ $1 == "noto.social" ]] ; then
  1820. exit 1;
  1821. elif [[ $1 == "the.voiceover.bar" ]] ; then
  1822. exit 1;
  1823. elif [[ $1 == "tooters.org" ]] ; then
  1824. exit 1;
  1825. elif [[ $1 == "mstdn.sekretaerbaer.net" ]] ; then
  1826. exit 1;
  1827. elif [[ $1 == "zoner.work" ]] ; then
  1828. exit 1;
  1829. elif [[ $1 == "climatejustice.social" ]] ; then
  1830. exit 1;
  1831. elif [[ $1 == "ropeburn.social" ]] ; then
  1832. exit 1;
  1833. elif [[ $1 == "chai.kibbutz.gay" ]] ; then
  1834. exit 1;
  1835. elif [[ $1 == "hi.47041.net" ]] ; then
  1836. exit 1;
  1837. elif [[ $1 == "naked.dequbed.space" ]] ; then
  1838. exit 1;
  1839. elif [[ $1 == "a.blahaj.world" ]] ; then
  1840. exit 1;
  1841. elif [[ $1 == "pixlb.de" ]] ; then
  1842. exit 1;
  1843. elif [[ $1 == "social.arielaw.ar" ]] ; then
  1844. exit 1;
  1845. elif [[ $1 == "mapsupport.de" ]] ; then
  1846. exit 1;
  1847. elif [[ $1 == "deep13.social" ]] ; then
  1848. exit 1;
  1849. elif [[ $1 == "emil.morime.gay" ]] ; then
  1850. exit 1;
  1851. elif [[ $1 == "m.surf.social" ]] ; then
  1852. exit 1;
  1853. elif [[ $1 == "s.thenautilus.net" ]] ; then
  1854. exit 1;
  1855. elif [[ $1 == "i.peacht.art" ]] ; then
  1856. exit 1;
  1857. elif [[ $1 == "munskey.net" ]] ; then
  1858. exit 1;
  1859. elif [[ $1 == "nanako-fed.mooo.com" ]] ; then
  1860. exit 1;
  1861. elif [[ $1 == "invillage-outvillage.com" ]] ; then
  1862. exit 1;
  1863. elif [[ $1 == "mewmew.moe" ]] ; then
  1864. exit 1;
  1865. elif [[ $1 == "misskey.memo.systems" ]] ; then
  1866. exit 1;
  1867. elif [[ $1 == "whitelily.blue" ]] ; then
  1868. exit 1;
  1869. elif [[ $1 == "sns.animanga.eu" ]] ; then
  1870. exit 1;
  1871. elif [[ $1 == "zettel.haus" ]] ; then
  1872. exit 1;
  1873. elif [[ $1 == "friendis.masto.host" ]] ; then
  1874. exit 1;
  1875. elif [[ $1 == "bots.ferals-on.top" ]] ; then
  1876. exit 1;
  1877. elif [[ $1 == "social.substantialplumbing.repair" ]] ; then
  1878. exit 1;
  1879. elif [[ $1 == "tau-ceti.space" ]] ; then
  1880. exit 1;
  1881. elif [[ $1 == "neo.seafoam.space" ]] ; then
  1882. exit 1;
  1883. elif [[ $1 == "social.dromografos.report" ]] ; then
  1884. exit 1;
  1885. elif [[ $1 == "kasumi.loliimoutolove.com" ]] ; then
  1886. exit 1;
  1887. elif [[ $1 == "mstdn.tacowolf.net" ]] ; then
  1888. exit 1;
  1889. elif [[ $1 == "ummah.ps" ]] ; then
  1890. exit 1;
  1891. elif [[ $1 == "soc.pyrox.dev" ]] ; then
  1892. exit 1;
  1893. elif [[ $1 == "social.pptie.de" ]] ; then
  1894. exit 1;
  1895. elif [[ $1 == "1m2lab.anvil.top" ]] ; then
  1896. exit 1;
  1897. elif [[ $1 == "mastodon.vapronva.pw" ]] ; then
  1898. exit 1;
  1899. elif [[ $1 == "loma.ml" ]] ; then
  1900. exit 1;
  1901. elif [[ $1 == "weebvr.social" ]] ; then
  1902. exit 1;
  1903. elif [[ $1 == "kemetic.space" ]] ; then
  1904. exit 1;
  1905. elif [[ $1 == "mastodon.fsinf.at" ]] ; then
  1906. exit 1;
  1907. elif [[ $1 == "mastoart.social" ]] ; then
  1908. exit 1;
  1909. elif [[ $1 == "social.trackside.blog" ]] ; then
  1910. exit 1;
  1911. elif [[ $1 == "calckeymusic.social" ]] ; then
  1912. exit 1;
  1913. elif [[ $1 == "fediverse.gay" ]] ; then
  1914. exit 1;
  1915. elif [[ $1 == "friends.thoshis.net" ]] ; then
  1916. exit 1;
  1917. elif [[ $1 == "squid.cafe" ]] ; then
  1918. exit 1;
  1919. elif [[ $1 == "serpent.skin" ]] ; then
  1920. exit 1;
  1921. elif [[ $1 == "key.reo.moe" ]] ; then
  1922. exit 1;
  1923. elif [[ $1 == "mazeldon.world" ]] ; then
  1924. exit 1;
  1925. elif [[ $1 == "woof.tech" ]] ; then
  1926. exit 1;
  1927. elif [[ $1 == "fedi.catboy.agency" ]] ; then
  1928. exit 1;
  1929. elif [[ $1 == "froggie.gay" ]] ; then
  1930. exit 1;
  1931. elif [[ $1 == "brain.d.on-t.work" ]] ; then
  1932. exit 1;
  1933. elif [[ $1 == "offkey.cat" ]] ; then
  1934. exit 1;
  1935. elif [[ $1 == "h-i.social" ]] ; then
  1936. exit 1;
  1937. elif [[ $1 == "dis-le.de" ]] ; then
  1938. exit 1;
  1939. elif [[ $1 == "dis-le.de" ]] ; then
  1940. exit 1;
  1941. elif [[ $1 == "arff.archandle.net" ]] ; then
  1942. exit 1;
  1943. elif [[ $1 == "vuurvis.be" ]] ; then
  1944. exit 1;
  1945. elif [[ $1 == "fedi.catgirlin.space" ]] ; then
  1946. exit 1;
  1947. elif [[ $1 == "dev.joinsharkey.org" ]] ; then
  1948. exit 1;
  1949. elif [[ $1 == "dosei.fun" ]] ; then
  1950. exit 1;
  1951. elif [[ $1 == "hellhound.cc" ]] ; then
  1952. exit 1;
  1953. elif [[ $1 == "fedi.gaykitty.lol" ]] ; then
  1954. exit 1;
  1955. elif [[ $1 == "mastodon.dgfp.club" ]] ; then
  1956. exit 1;
  1957. elif [[ $1 == "social.icod.de" ]] ; then
  1958. exit 1;
  1959. elif [[ $1 == "fi.meyer-guillot.fr" ]] ; then
  1960. exit 1;
  1961. elif [[ $1 == "bahn.social" ]] ; then
  1962. exit 1;
  1963. elif [[ $1 == "waterford.international" ]] ; then
  1964. exit 1;
  1965. elif [[ $1 == "isfeeling.social" ]] ; then
  1966. exit 1;
  1967. elif [[ $1 == "social.minecodes.de" ]] ; then
  1968. exit 1;
  1969. elif [[ $1 == "social.babb.no" ]] ; then
  1970. exit 1;
  1971. elif [[ $1 == "mastodon.sambands.net" ]] ; then
  1972. exit 1;
  1973. elif [[ $1 == "f.iroiro.party" ]] ; then
  1974. exit 1;
  1975. elif [[ $1 == "frnd.nanoscopic.de" ]] ; then
  1976. exit 1;
  1977. elif [[ $1 == "mk.cpluspatch.com" ]] ; then
  1978. exit 1;
  1979. elif [[ $1 == "miauws.life" ]] ; then
  1980. exit 1;
  1981. elif [[ $1 == "marte.city" ]] ; then
  1982. exit 1;
  1983. elif [[ $1 == "thepollen.garden" ]] ; then
  1984. exit 1;
  1985. elif [[ $1 == "edafe.social" ]] ; then
  1986. exit 1;
  1987. elif [[ $1 == "syzito.xyz" ]] ; then
  1988. exit 1;
  1989. elif [[ $1 == "ecoevo.social" ]] ; then
  1990. exit 1;
  1991. elif [[ $1 == "femdom.solutions" ]] ; then
  1992. exit 1;
  1993. elif [[ $1 == "fd00.de" ]] ; then
  1994. exit 1;
  1995. elif [[ $1 == "fedi.kemonomimi.gay" ]] ; then
  1996. exit 1;
  1997. elif [[ $1 == "fedi.derg.world" ]] ; then
  1998. exit 1;
  1999. elif [[ $1 == "nova.masto.host" ]] ; then
  2000. exit 1;
  2001. elif [[ $1 == "climatejustice.global" ]] ; then
  2002. exit 1;
  2003. elif [[ $1 == "verse.averagedood.xyz" ]] ; then
  2004. exit 1;
  2005. elif [[ $1 == "comfy.lgbt" ]] ; then
  2006. exit 1;
  2007. elif [[ $1 == "caseitor.masto.host" ]] ; then
  2008. exit 1;
  2009. elif [[ $1 == "akkoma.flitpix.net" ]] ; then
  2010. exit 1;
  2011. elif [[ $1 == "gock.ca" ]] ; then
  2012. exit 1;
  2013. elif [[ $1 == "mkultra.monster" ]] ; then
  2014. exit 1;
  2015. elif [[ $1 == "cats.city" ]] ; then
  2016. exit 1;
  2017. elif [[ $1 == "buckaroo.city" ]] ; then
  2018. exit 1;
  2019. elif [[ $1 == "meow.woem.cat" ]] ; then
  2020. exit 1;
  2021. elif [[ $1 == "slimegirl.social" ]] ; then
  2022. exit 1;
  2023. elif [[ $1 == "sandbox.mastodon.iftas.org" ]] ; then
  2024. exit 1;
  2025. elif [[ $1 == "soc.nochn.net" ]] ; then
  2026. exit 1;
  2027. elif [[ $1 == "euproject.info" ]] ; then
  2028. exit 1;
  2029. elif [[ $1 == "bunnyanarchy.org" ]] ; then
  2030. exit 1;
  2031. elif [[ $1 == "hello.kittywi.re" ]] ; then
  2032. exit 1;
  2033. elif [[ $1 == "jawa.gay" ]] ; then
  2034. exit 1;
  2035. elif [[ $1 == "transwo.men" ]] ; then
  2036. exit 1;
  2037. elif [[ $1 == "mastodon.ericlathrop.com" ]] ; then
  2038. exit 1;
  2039. elif [[ $1 == "social.diekershoff.de" ]] ; then
  2040. exit 1;
  2041. elif [[ $1 == "itdev.social" ]] ; then
  2042. exit 1;
  2043. elif [[ $1 == "wavebird.party" ]] ; then
  2044. exit 1;
  2045. elif [[ $1 == "rosiemma.nohost.me" ]] ; then
  2046. exit 1;
  2047. elif [[ $1 == "owo.is" ]] ; then
  2048. exit 1;
  2049. elif [[ $1 == "social.meghadeep.com" ]] ; then
  2050. exit 1;
  2051. elif [[ $1 == "social.mecanis.me" ]] ; then
  2052. exit 1;
  2053. elif [[ $1 == "akiba.party" ]] ; then
  2054. exit 1;
  2055. elif [[ $1 == "social.python-gsoc.org" ]] ; then
  2056. exit 1;
  2057. elif [[ $1 == "esperanto.masto.host" ]] ; then
  2058. exit 1;
  2059. elif [[ $1 == "mastodon.hidupmanis.studio" ]] ; then
  2060. exit 1;
  2061. elif [[ $1 == "newsmast.community" ]] ; then
  2062. exit 1;
  2063. elif [[ $1 == "meow.social" ]] ; then
  2064. exit 1;
  2065. elif [[ $1 == "solarsystem.social" ]] ; then
  2066. exit 1;
  2067. elif [[ $1 == "c.ryanccn.dev" ]] ; then
  2068. exit 1;
  2069. elif [[ $1 == "phoenixup.link" ]] ; then
  2070. exit 1;
  2071. elif [[ $1 == "averyfun.party" ]] ; then
  2072. exit 1;
  2073. elif [[ $1 == "awoo.st" ]] ; then
  2074. exit 1;
  2075. elif [[ $1 == "akko.constellatory.net" ]] ; then
  2076. exit 1;
  2077. elif [[ $1 == "pleroma.yuyutsu.one" ]] ; then
  2078. exit 1;
  2079. elif [[ $1 == "ak.kumis.industries" ]] ; then
  2080. exit 1;
  2081. elif [[ $1 == "foggymtndrifter.social" ]] ; then
  2082. exit 1;
  2083. elif [[ $1 == "ijaron.life" ]] ; then
  2084. exit 1;
  2085. elif [[ $1 == "subversive.zone" ]] ; then
  2086. exit 1;
  2087. elif [[ $1 == "xelebre.com" ]] ; then
  2088. exit 1;
  2089. elif [[ $1 == "infodump.ing" ]] ; then
  2090. exit 1;
  2091. elif [[ $1 == "charcha.cc" ]] ; then
  2092. exit 1;
  2093. elif [[ $1 == "catodon.social" ]] ; then
  2094. exit 1;
  2095. elif [[ $1 == "boost.anotherfauxtographer.com" ]] ; then
  2096. exit 1;
  2097. fi
  2098. exit 0;