commit fed810ddd251bff7372f46c12fcd0689bf03c428
parent ffd9920fb8a72f2179fd4216490451884a475185
Author: Juan F. Meleiro <juan@juanmeleiro.mat.br>
Date: Wed, 31 May 2023 11:30:49 -0300
Fix and aggregate historical record
- aggregate.lua built to aggregate historical data from history.tsv into players.json
- From that, mistakes were probed and fixed in history.tsv
- format.lua Transforms players.json into report format
- merges were just aliases for merging same players with different names
Diffstat:
5 files changed, 4909 insertions(+), 49 deletions(-)
diff --git a/monthly/aggregate.lua b/monthly/aggregate.lua
@@ -0,0 +1,103 @@
+json = require "json"
+
+function split(inputstr, sep)
+ sep=sep or '%s' local t={}
+ for field,s in string.gmatch(inputstr, "([^"..sep.."]*)("..sep.."?)") do
+ table.insert(t,field)
+ if s == "" then
+ return t
+ end
+ end
+end
+
+--------------------------------------------------------------------------------
+-- Parse history.tsv
+
+local fn = "history.tsv"
+local f = io.open(fn)
+local head = f:read()
+local headers = {}
+for h in string.gmatch(head, "[^\t]*") do
+ table.insert(headers, h)
+end
+local lines = f:lines()
+local history = {}
+local names = {}
+for line in lines do
+ table.insert(history, {})
+ i = 1
+ for value in string.gmatch(line, "[^\t]*") do
+ history[#history][headers[i]] = value
+ if headers[i] == "name" then table.insert(names, value) end
+ i = i + 1
+ end
+end
+
+--------------------------------------------------------------------------------
+-- Aggregate history
+
+local players = {}
+for i,h in ipairs(history) do
+ if h.name then
+ players[h.name] = players[h.name] or {}
+ table.insert(players[h.name], h)
+ end
+end
+
+--------------------------------------------------------------------------------
+-- Merge based on aliases
+
+fn = "merges"
+f = io.open(fn)
+lines = f:lines()
+aliases = {}
+
+for l in lines do
+ table.insert(aliases, {})
+ for value in string.gmatch(l, "[^\t]+") do
+ table.insert(aliases[#aliases], value)
+ end
+end
+
+for _,a in ipairs(aliases) do
+ for i = 2, #(a) do
+ if players[a[i]] then
+ for _,ev in ipairs(players[a[i]]) do
+ table.insert(players[a[1]], ev)
+ end
+ players[a[i]] = nil
+ end
+ end
+end
+
+--------------------------------------------------------------------------------
+-- Update keys to latest
+
+for n,h in pairs(players) do
+ latest_name = n
+ latest_registration = ""
+ for _,e in ipairs(h) do
+ if e.registration and e.registration > latest_registration then
+ latest_name = e.name
+ latest_registration = e.registration
+ end
+ end
+ players[n] = nil
+ players[latest_name] = h
+end
+
+newnames = {}
+for n,h in pairs(players) do
+ for _,e in ipairs(h) do
+ newnames[e.name] = true
+ end
+end
+for _,n in ipairs(names) do
+ if not newnames[n] then
+ print(n, "is missing!")
+ return 1
+ end
+end
+
+io.write(json.encode(players))
+
diff --git a/monthly/format.lua b/monthly/format.lua
@@ -0,0 +1,47 @@
+json = require "json"
+fn = "players.json"
+
+f = io.open(fn, "r")
+j = f:read("*all")
+players = json.decode(j)
+f:close()
+
+-- x reason
+-- name
+-- contact
+-- x registration
+-- x deregistration
+-- observations
+
+reasons = {
+ a = "Abandoned",
+ l = "Lawless",
+ v = "Voluntary",
+ d = "Deported",
+ w = "Writ of FAGE",
+ p = "Proposal",
+ r = "Ratification",
+ u = "Uknown",
+ s = "Still registered",
+ b = "Banned",
+ k = "Deregistered emself by mista(k)e",
+ e = "Destroyed",
+ x = "Exiled"
+}
+
+EVENT_FORMAT = " %s %s => %s\n"
+CONTACT_FORMAT = " aka %s <%s>\n"
+
+for n,h in pairs(players) do
+ io.write("===============\n"..n.."\n")
+ for _,e in ipairs(h) do
+ io.write(string.format(" %s <%s> (%s--%s; %s)\n",
+ e.name,
+ e.contact,
+ e.registration,
+ e.deregistration or "now",
+ reasons[e.reason]))
+ end
+ io.write("\n")
+end
+
diff --git a/monthly/history.tsv b/monthly/history.tsv
@@ -1,4 +1,4 @@
-Rune Name Contact Registration Deregistration Observations
+reason name contact registration deregistration observations
u Alexx alexx at world.std.com <= 1994-04-05
u Andy Latto andyl at harlequin.com <= 1994-04-05
u Douglas Jahnke chaotic at ksuvm.ksu.edu <= 1994-04-05
@@ -25,14 +25,14 @@ u TAL kunne at ipno.in2p3.fr 1995-08
u Pascal jreed at waun.tdsnet.com 1995 1995-08
u JonRock 1995-10
u Garth 1995-09 1995-10
-u wutold 1995-10 1095-10
+u wutold 1995-10 1995-10
u Einstein 1995-10
u Jeffrey S. 1995-10-25
u Xanadu A.Bishop at student.anu.edu.au 1995-10-26
-u CoCo 1995-10 1995-11
+u CoCo 1995-10 1995-11
w Kelly 1995-11-07 1995-09-17 The date for Kelly's Writ was recorded as 1995-09-17, and the correct one is unknown
u elJefe eljefe at eastpac.com 1995-11-22
-u Oerjan 1995-09 1995-12
+u Oerjan 1995-09 1995-12
u Zefram zefram at tao.co.uk <= 1995-06-16 1995-12
u Marc Slager 1995-11-22 1995-12
u CoCo 1995-12-03
@@ -40,7 +40,7 @@ u SaltWater gorgonne at becker.u.washington.edu 1995-12-11
u KoJen cogen at ll.mit.edu 1996-01-01
a? Vlad c647100 at showme.missouri.edu 1995-11-14 1996-01-01
a Ian Cabell ian at yak.net 1996-01-02
-u Oerjan 1996-01-03
+u Oerjan 1996-01-03
u Pascal jreed at waun.tdsnet.com 1995-11-15 1996-01-21
v Wes wesc at antitribu.com <= 1995-11-08 1996-02-21
u Dave Bowen david.bowen at cray.com <=1995-01-10 1996-02-21
@@ -55,39 +55,39 @@ u Doug dchatham at utk.edu <= 1996-02-02 1996-04-13
u dcuman shodan at indirect.com <= 1996-01-31 1996-04-23
u Narcisse hap at iglou.com 1996-04 1996-05-21
u Jtael mhough at leland.stanford.edu <= 1996-02-21 1996-07-24
-u Kelly 1995-11-17 1996-07-29
+u Kelly 1995-11-17 1996-07-29
u else...if htowsner at stanford.edu 1996-07-30 1996-08-21 aka Henry
-u Kelly 1996-10 1996-11-07
+u Kelly 1996-10 1996-11-07
a Coren coren at teleport.com 1996-09 1996-12-20
v KoJen cogen at ll.mit.edu 1996-01-2 1997-06-12
v favor chess at watson.ibm.com <= 1995-11-7 1997-06-12
-u Elde elde at hurricane.net <= 1997-04-16 1997-10-4
+u Elde elde at hurricane.net <= 1997-04-16 1997-10-04
v Zefram zefram at tao.co.uk 1996-01-4 1997-10-29
-u Morendil laurent at netdive.com <= 1995-10-11 <=1997-11-3
+u Morendil laurent at netdive.com <= 1995-10-11 <=1997-11-03
v ChrisM cmonsour at Princeton.EDU <= 1995-10-23 1997-11-11
u Blob malcolmr at cse.unsw.edu.au 1996-11 <=1997-11-20
-a Calabresi mcdaniel at law.harvard.edu 1997-12-5
-a Vanyel dpb at cs.brown.edu <= 1996-02-21 1997-12-5
+a Calabresi mcdaniel at law.harvard.edu 1997-12-05
+a Vanyel dpb at cs.brown.edu <= 1996-02-21 1997-12-05
a Vir eer at nwu.edu 1997-09-4 1998-01-13
v Andre engels at win.tue.nl 1994-11 1998-01-22
a Time Agent dAndreasen at pctb.com 1998-01-16 1998-04-16
-v Jester KJarvis at interworx.com.au 1998-01-2 1998-05-1
+v Jester KJarvis at interworx.com.au 1998-01-2 1998-05-01
v Sherlock jfry77 at yahoo.com 1998-01-16 1998-05-14
a Swann saswann at gwis.com 1997-10-29 1998-09-15
v Antimatter rmorganl at fred.fhcrc.org 1998-03-5 1998-10-31
u Harlequin charlequin at yahoo.com 1997-01 1998-11-27
a Proglet proglet at usa.net 1998-11-09 1999-01-15
-v lee lee at pyrzqxgl.org 1998-07-18 1999-02-8
+v lee lee at pyrzqxgl.org 1998-07-18 1999-02-08
w Andre engels at win.tue.nl 1998-11-28 1999-02-13
v Macross macross at bellatlantic.net 1998-05-21 1999-03-22
-u Kelly 1997-03 1999-04-12
+u Kelly 1997-03 1999-04-12
v Vlad c647100 at showme.missouri.edu 1999-01-28 1999-06-20
l Morendil laurent at netdive.com 1997-11-03 1999-06-28
v The Colonel blafard at uclink4.berkeley.edu 1999-08-07 1999-08-08
-l Beefurabi david at kasey.umkc.edu 1999-04-19 1999-09-7
-v Annabel lenore at sdf.lonestar.org 1999-07-29 1999-10-1
+l Beefurabi david at kasey.umkc.edu 1999-04-19 1999-09-07
+v Annabel lenore at sdf.lonestar.org 1999-07-29 1999-10-01
v Kolja A. herrmanns at rhein-neckar.netsurf.de 1997-07-02 1999-12-16
-u Oerjan 1996-04 2000-03-22
+u Oerjan 1996-04 2000-03-22
v elJefe eljefe at eastpac.com 1996-01 2000-04-16
v else...if htowsner at stanford.edu 2000-04-15 2000-05-21 aka Henry
v Sherlock jfry77 at yahoo.com 2000-01-31 2000-07-25
@@ -153,7 +153,7 @@ v Cecilius organist at gmail.com 2006-12-22 2007-03-23
v Goethe kerim at u.washington.edu 2007-02-23 2007-05-14
v Sherlock jfry77 at yahoo.com 2006-02-04 2007-05-14
v Maud m.slone at gmail.com 2007-03-07 2007-05-14
-v Second System Effect c/o Murphy 2007-05-13 2007-05-20
+v Second System Effect c/o Murphy 2007-05-13 2007-05-20
p Human Point Three c/o Murphy 2007-05-14 2007-05-23
p Human Point Four c/o Murphy 2007-05-14 2007-05-23
p Human Point Five c/o Murphy 2007-05-14 2007-05-23
@@ -170,8 +170,8 @@ p arkestra arkestra at gmail.com 2006-03-02 2007-05-31
p GreyKnight greyknight3 at yahoo.com 2006-09-06 2007-05-31
p Peter civilianjones at gmail.com 2006-12-24 2007-05-31
p sproingie cja987 at gmail.com 2006-12-20 2007-05-31
-p Yang Corp <none> 2007-05-21 2007-05-31
-p Yin Corp <none> 2007-05-21 2007-05-31
+p Yang Corp 2007-05-21 2007-05-31
+p Yin Corp 2007-05-21 2007-05-31
- The Hanging Judge c/o Zefram and comex 2007-05-22 2007-06-09
v Peekee agora at peekee.co.uk 2007-08-03 2007-08-12
- The Host c/o Levi and Murphy 2007-08-21 2007-08-30
@@ -224,9 +224,9 @@ a gavin hawkblack13 at gmail.com 2008-10-17 2009-02-16
a oklopol oklopol at gmail.com 2008-10-07 2009-02-16
a pikhq josiahw at gmail.com 2007-09-16 2009-02-16
a Zefram zefram at fysh.org 2007-01-10 2009-02-16
-a Pineapple P pineapple at fysh.org 2007-02-26 2009-02-16
+a Pineapple P pineapple at fysh.org 2007-02-26 2009-02-16
p Protection Racket c/o BobTHJ 2008-06-23 2009-02-22
-p Reformed Bank of Agora c/o BobTHJ 2008-06-23 2009-02-22
+p Reformed Bank of Agora c/o BobTHJ 2008-06-23 2009-02-22
u AFO c/o Murphy 2007-09-17 2009-02-11
v Goethe kerim at u.washington.edu 2008-06-19 2009-04-01
a Elysion boehmejo at msu.edu 2008-10-20 2009-04-07
@@ -237,7 +237,7 @@ v Nameless pr76952a at hotmail.com 2009-04-22 2009-05-13
a w1n5t0n chuckles11489 at gmail.com 2008-11-30 2009-05-17
d Human Point Two quazienomic at gmail.com 2008-06-20 2009-05-26
v root ian.g.kelly at gmail.com 2009-03-27 2009-05-26
-d Bayes none 2008-10-01 2009-05-26
+d Bayes 2008-10-01 2009-05-26
a Billy Pilgrim bad.leprechaun at gmail.com 2008-10-22 2009-06-05
a cmealerjr cdm014 at gmail.com 2009-01-26 2009-06-05
a j agora at jaycampbell.com 2009-12-13 2009-06-05
@@ -270,7 +270,7 @@ a Manu sensoz at gmail.com 2009-05-01 2009-09-27
a OscarMeyr ke3om at verizon.net 2002-03-04 2009-09-27
a Spitemaster bennerguy at gmail.com 2009-03-07 2009-09-27
a thespyguy thespyguy at gmail.com 2009-05-19 2009-09-27
-d Livenomic Partn... livenomic at nomictools.com 2009-09-17 2009-10-10
+d Livenomic Partn... livenomic at nomictools.com 2009-09-17 2009-10-10
l Wooble geoffspear at gmail.com 2007-11-16 2009-10-17
v Walker charles.w.walker at googlemail.com 2009-04-25 2009-10-24
a allispaul allispaul at gmail.com 2009-06-03 2009-11-14
@@ -330,27 +330,18 @@ a Flameshadowxeroshin Flameshadowxeroshin at gmail.com 2011-07-05 2011-12-08
a Math321 math321 at ymail.com 2011-06-28 2011-12-08
a Turiski turiski.nomic at gmail.com 2011-04-20 2011-12-08
v Tiger jonatan.kilhamn at gmail.com 2011-07-12 2012-01-26 Later switched to natalie.kilhamn at gmail.com
-v Mr. Incredible c/o omd 2012-02-16 2012-02-17
-e Tweedledee c/o G. 2012-02-16 2012-02-22
-e Tweedledum c/o G. 2012-02-16 2012-02-22
-v flameshadowxeroshin at gmail.com 2012-01-09 2012-02-28
+v Mr. Incredible c/o omd 2012-02-16 2012-02-17
+e Tweedledee c/o G. 2012-02-16 2012-02-22
+e Tweedledum c/o G. 2012-02-16 2012-02-22
+v FSX flameshadowxeroshin at gmail.com 2012-01-09 2012-02-28
v ehird penguinofthegods at gmail.com 2011-12-05 2012-02-28
v Machiavelli swettt at mail.gvsu.edu 2009-09-01 2012-02-29
-v Golem-1-50 c/o FKA441344 2012-03-04 2012-03-05
-v Ghost spambait3 at yahoo.com 2012-03-31 2012-03-31
+v Golem-1-50 c/o FKA441344 2012-03-04 2012-03-05
+v Ghost spambait3 at yahoo.com 2012-03-31 2012-03-31
v The President c/o the Speaker 2011-03-03 or 2011-07-31 2012-05-13
e Number Two c/o Murphy 2012-02-17 2012-06-05
e The Diplomat c/o Blognomic (blognomic.com) 2012-03-31 2012-06-05
-v "I create a Slave Golem whose name is the full body of this message.
-
-(Preemptive arguments: It's not confusing, merely long.)
-
-On Fri, Jun 8, 2012 at 7:16 PM, Pavitra <celestialcognit...@gmail.com> wrote:
-> On 06/08/2012 07:03 PM, John Smith wrote:
->> For good measure, I transfer Scapegoat to Pavitra.
->
-> I transfer Scapegoat to the number four hundred forty-one thousand three
-> hundred forty-four." c/o omd 2012-06-08 2012-07-13
+v "I create a Slave Golem whose name is the full body of this message.\n(Preemptive arguments: It's not confusing, merely long.)\nOn Fri, Jun 8, 2012 at 7:16 PM, Pavitra <celestialcognit...@gmail.com> wrote:\n> On 06/08/2012 07:03 PM, John Smith wrote:\n>> For good measure, I transfer Scapegoat to Pavitra.\n>\n> I transfer Scapegoat to the number four hundred forty-one thousand three\n> hundred forty-four." c/o omd 2012-06-08 2012-07-13
v Scapegoat c/o the number 441,344 2012-06-08 2012-08-06
v ehird penguinofthegods at googlemail.com 2012-04-09 2012-09-28
a davidcjackman davidcjackman at gmail.com 2012-01-02 2012-10-19
@@ -364,7 +355,7 @@ e Solider-*-* c/o Pavitra 2013-01-16 16 2013-01 Many entities; effectiveness dis
e Ted c/o Italy 2013-01-16 16 2013-01
e a person announcing support or intent to do so c/o G. 2012-09-28 2013-01-22
e Eileen c/o Pavitra 2012-06-05 2013-01-22
-e the Cayman Islands c/o G. 2012-05-04 2013-01-22
+e the Cayman Islands c/o G. 2012-05-04 2013-01-22
e Our Lady of Perpetual Responsibility ? 2012-06-30 2013-01-22
e Ur ? 2012-03-31 2013-01-22
a BobTHJ pidgepot at gmail.com 2012-06-03 2013-04-07
@@ -553,17 +544,17 @@ a CreateSource createsource.nomic at gmail.com 2022-05-14 2022-10-31
s 4st notorious4st at gmail.com 2022-06-25
a Vitor Gonçalves vitorg at tilde.team 2022-07-23 2023-01-20
a Cap'n acadia_but_real at protonmail.com 2022-08-15 2023-01-20
-a Pilgore drpilgore@gmail.com 2022-08-15 2023-01-20
-w nix nixagora@protonmail.com 2022-08-29 2019-10-18
-b Madrid cuddlebeam@gmail.com 2022-09-11 2017-08-25
-a orb hereuplay@gmail.com 2022-10-05 2023-01-20
-s Shy Owl iamashyowl@proton.me 2022-10-07
-s nix agora@nullarch.com 2022-10-09
+a Pilgore drpilgore at gmail.com 2022-08-15 2023-01-20
+w nix nixagora at protonmail.com 2022-08-29 2019-10-18
+b Madrid cuddlebeam at gmail.com 2022-09-11 2017-08-25
+a orb hereuplay at gmail.com 2022-10-05 2023-01-20
+s Shy Owl iamashyowl at proton.me 2022-10-07
+s nix agora at nullarch.com 2022-10-09
a the Astrally Forged irc://libera.chat/AstrallyForged,isnick 2022-10-14 2023-02-21 Also @moonbolt@mst3k.interlinked.me on Fediverse and mailto://theastrallyforged@disroot.org
-s Aced7 cadenomic@gmail.com 2022-10-19
+s Aced7 cadenomic at gmail.com 2022-10-19
a duck 2022-03-12 2022-10-31
s Aspen thoughtsoflifeandlight17 at gmail.com 2022-11-07
-s Marb marb shabu.town 2022-11-27
+s Marb marb at shabu.town 2022-11-27
w ziproot agora.ziproot at erine.email 2022-09-07 2022-11-07
s 4st notorious4st at gmail.com 2023-01-27
s R. Lee sarahestrange0 at gmail.com 2023-01-31
diff --git a/monthly/merges b/monthly/merges
@@ -0,0 +1,11 @@
+Aspen Aris
+Liberonscien x1122334455
+R. Lee V.J. Rada
+P.S.S. Publius Scribonius Scholasticus
+Zachary Watterson Gumball
+Telna Telnaior
+Joe Slam_Joe_Jr_Supreme
+Shelvacu Shel
+else...if Henry
+Warrigal, the Alfonso Machiavelli, the Warrigal
+nch nichdel nix
diff --git a/monthly/players.json b/monthly/players.json
@@ -0,0 +1,4708 @@
+{
+ "Reformed Bank of Agora": [
+ {
+ "reason": "p",
+ "registration": "2008-06-23",
+ "name": "Reformed Bank of Agora",
+ "deregistration": "2009-02-22",
+ "contact": "c/o BobTHJ"
+ }
+ ],
+ "Human Point Twelve": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Twelve",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Vanyel": [
+ {
+ "reason": "a",
+ "registration": "<= 1996-02-21",
+ "name": "Vanyel",
+ "deregistration": "1997-12-05",
+ "contact": "dpb at cs.brown.edu"
+ }
+ ],
+ "Rodlen": [
+ {
+ "reason": "a",
+ "registration": "2009-03-24",
+ "name": "Rodlen",
+ "deregistration": "2009-11-14",
+ "contact": "rodlenjack at gmail.com"
+ }
+ ],
+ "Jason2": [
+ {
+ "reason": "u",
+ "name": "Jason2",
+ "registration": "1995",
+ "contact": ""
+ }
+ ],
+ "Sci_Guy12": [
+ {
+ "reason": "d",
+ "registration": "2016-07-14",
+ "name": "Sci_Guy12",
+ "deregistration": "2017-05-31",
+ "contact": "jwc.science at gmail.com"
+ }
+ ],
+ "P2P Partnership": [
+ {
+ "reason": "d",
+ "registration": "2007-12-22",
+ "name": "P2P Partnership",
+ "deregistration": "2008-01-02",
+ "contact": "c/o root"
+ }
+ ],
+ "Falsifian": [
+ {
+ "reason": "v",
+ "registration": "2019-02-13",
+ "name": "Falsifian",
+ "deregistration": "2022-02-22",
+ "contact": "agora at falsifian.org"
+ }
+ ],
+ "Jester": [
+ {
+ "reason": "v",
+ "registration": "1998-01-2",
+ "name": "Jester",
+ "deregistration": "1998-05-01",
+ "contact": "KJarvis at interworx.com.au"
+ }
+ ],
+ "P.S.S.": [
+ {
+ "reason": "a",
+ "registration": "2017-04-16",
+ "observations": "also known as Publius Scribonius Scholasticus / officially, but technically equivalent: p.scribonius.scholasticus at googlemail.com",
+ "name": "P.S.S.",
+ "deregistration": "2019-09-22",
+ "contact": "pscriboniusscholasticus at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2020-03-01",
+ "observations": "also known as Publius Scribonius Scholasticus",
+ "name": "P.S.S.",
+ "deregistration": "2020-12-31",
+ "contact": "p.scribonius.scholasticus at gmail.com"
+ }
+ ],
+ "Lindrum": [
+ {
+ "reason": "u",
+ "registration": "2001-02-09",
+ "name": "Lindrum",
+ "deregistration": "2001-11-01",
+ "contact": "lindrum at panix.com"
+ }
+ ],
+ "Andon": [
+ {
+ "reason": "a",
+ "registration": "2010-03-01",
+ "name": "Andon",
+ "deregistration": "2010-09-07",
+ "contact": "aozeba at gmail.com"
+ }
+ ],
+ "Quazie": [
+ {
+ "reason": "p",
+ "registration": "2005-02-15",
+ "name": "Quazie",
+ "deregistration": "2007-10-18",
+ "contact": "quazienomic at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2008-06-05",
+ "name": "Quazie",
+ "deregistration": "2009-01-12",
+ "contact": "quazienomic at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2009-04-27",
+ "name": "Quazie",
+ "deregistration": "2010-01-26",
+ "contact": "quazienomic at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-04-12",
+ "name": "Quazie",
+ "deregistration": "2011-07-31",
+ "contact": "quazienomic at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2017-04-15",
+ "name": "Quazie",
+ "deregistration": "2018-10-16",
+ "contact": "quazienomic at gmail.com"
+ }
+ ],
+ "Timothy": [
+ {
+ "reason": "u",
+ "name": "Timothy",
+ "registration": "<= 1994-09-12",
+ "contact": "timothy.ferguson at jcu.edu.au"
+ }
+ ],
+ "Palnatoke": [
+ {
+ "reason": "v",
+ "registration": "1999-07-27",
+ "name": "Palnatoke",
+ "deregistration": "2001-03-27",
+ "contact": "palnatoke at get2net.dk"
+ }
+ ],
+ "The President": [
+ {
+ "reason": "v",
+ "registration": "2011-03-03 or 2011-07-31",
+ "name": "The President",
+ "deregistration": "2012-05-13",
+ "contact": "c/o the Speaker"
+ }
+ ],
+ "Elysion": [
+ {
+ "reason": "u",
+ "registration": "1999-02-23",
+ "name": "Elysion",
+ "deregistration": "2001-11-01",
+ "contact": "elysion at mindspring.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2004-02-10",
+ "name": "Elysion",
+ "deregistration": "2004-09-09",
+ "contact": "boehmejo at msu.edu"
+ },
+ {
+ "reason": "a",
+ "registration": "2008-10-20",
+ "name": "Elysion",
+ "deregistration": "2009-04-07",
+ "contact": "boehmejo at msu.edu"
+ }
+ ],
+ "Benbot²": [
+ {
+ "reason": "a",
+ "registration": "2021-10-03",
+ "name": "Benbot²",
+ "deregistration": "2022-04-08",
+ "contact": "benjaminfrancisrodriguez at gmail.com"
+ }
+ ],
+ "harblcat": [
+ {
+ "reason": "a",
+ "registration": "2008-11-28",
+ "name": "harblcat",
+ "deregistration": "2009-04-19",
+ "contact": "cblair1986 at gmail.com"
+ }
+ ],
+ "Alexx": [
+ {
+ "reason": "u",
+ "name": "Alexx",
+ "registration": "<= 1994-04-05",
+ "contact": "alexx at world.std.com"
+ }
+ ],
+ "allispaul": [
+ {
+ "reason": "a",
+ "registration": "2009-06-03",
+ "name": "allispaul",
+ "deregistration": "2009-11-14",
+ "contact": "allispaul at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2010-02-26",
+ "name": "allispaul",
+ "deregistration": "2010-09-07",
+ "contact": "allispaul at gmail.com"
+ }
+ ],
+ "Jtael": [
+ {
+ "reason": "u",
+ "registration": "<= 1996-02-21",
+ "name": "Jtael",
+ "deregistration": "1996-07-24",
+ "contact": "mhough at leland.stanford.edu"
+ }
+ ],
+ "Mask": [
+ {
+ "reason": "a",
+ "registration": "2021-07-03",
+ "name": "Mask",
+ "deregistration": "2021-09-05",
+ "contact": "OatmealSurprise at protonmail.com"
+ }
+ ],
+ "Ozymandias": [
+ {
+ "reason": "a",
+ "registration": "2012-06-28",
+ "name": "Ozymandias",
+ "deregistration": "2013-04-07",
+ "contact": "ozymandias.haynes at gmail.com"
+ }
+ ],
+ "arkestra": [
+ {
+ "reason": "p",
+ "registration": "2006-03-02",
+ "name": "arkestra",
+ "deregistration": "2007-05-31",
+ "contact": "arkestra at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2008-07-31",
+ "name": "arkestra",
+ "deregistration": "2009-01-12",
+ "contact": "arkestra at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-06-28",
+ "name": "arkestra",
+ "deregistration": "2014-02-12",
+ "contact": "arkestra at gmail.com"
+ }
+ ],
+ "PNP": [
+ {
+ "reason": "d",
+ "registration": "2008-01-21",
+ "name": "PNP",
+ "deregistration": "2009-06-28",
+ "contact": "perlnomic at nomictools.com"
+ }
+ ],
+ "Anthony": [
+ {
+ "reason": "u",
+ "registration": "2000-02-11",
+ "name": "Anthony",
+ "deregistration": "2001-09-10",
+ "contact": "abriggs at iinet.net.au"
+ }
+ ],
+ "Douglas Jahnke": [
+ {
+ "reason": "u",
+ "name": "Douglas Jahnke",
+ "registration": "<= 1994-04-05",
+ "contact": "chaotic at ksuvm.ksu.edu"
+ }
+ ],
+ "The Diplomat": [
+ {
+ "reason": "e",
+ "registration": "2012-03-31",
+ "name": "The Diplomat",
+ "deregistration": "2012-06-05",
+ "contact": "c/o Blognomic (blognomic.com)"
+ }
+ ],
+ "omd": [
+ {
+ "reason": "v",
+ "registration": "2007-05-01",
+ "observations": "Cantus Cygneus submitted 25 Dec, published 28 Dec, but omd deregistered voluntarily 27 Dec",
+ "name": "omd",
+ "deregistration": "2010-12-27",
+ "contact": "comexk at gmail.com"
+ },
+ {
+ "reason": "s",
+ "registration": "2011-02-03",
+ "observations": "officially, but technically equivalent c.ome.xk at gmail.com",
+ "name": "omd",
+ "deregistration": "",
+ "contact": "comexk at gmail.com"
+ }
+ ],
+ "\"I create a Slave Golem whose name is the full body of this message.\\n(Preemptive arguments: It's not confusing, merely long.)\\nOn Fri, Jun 8, 2012 at 7:16 PM, Pavitra <celestialcognit...@gmail.com> wrote:\\n> On 06/08/2012 07:03 PM, John Smith wrote:\\n>> For good measure, I transfer Scapegoat to Pavitra.\\n>\\n> I transfer Scapegoat to the number four hundred forty-one thousand three\\n> hundred forty-four.\"": [
+ {
+ "reason": "v",
+ "registration": "2012-06-08",
+ "name": "\"I create a Slave Golem whose name is the full body of this message.\\n(Preemptive arguments: It's not confusing, merely long.)\\nOn Fri, Jun 8, 2012 at 7:16 PM, Pavitra <celestialcognit...@gmail.com> wrote:\\n> On 06/08/2012 07:03 PM, John Smith wrote:\\n>> For good measure, I transfer Scapegoat to Pavitra.\\n>\\n> I transfer Scapegoat to the number four hundred forty-one thousand three\\n> hundred forty-four.\"",
+ "deregistration": "2012-07-13",
+ "contact": "c/o omd"
+ }
+ ],
+ "Human Point Nine": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Nine",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Flameshadowxeroshin": [
+ {
+ "reason": "a",
+ "registration": "2010-11-10",
+ "name": "Flameshadowxeroshin",
+ "deregistration": "2011-04-06",
+ "contact": "Flameshadowxeroshin at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-07-05",
+ "name": "Flameshadowxeroshin",
+ "deregistration": "2011-12-08",
+ "contact": "Flameshadowxeroshin at gmail.com"
+ }
+ ],
+ "D. Wet": [
+ {
+ "reason": "v",
+ "registration": "2021-07-27",
+ "name": "D. Wet",
+ "deregistration": "2021-09-26",
+ "contact": "d.wet at nomica.nl"
+ }
+ ],
+ "sukil": [
+ {
+ "reason": "a",
+ "registration": "2020-02-12",
+ "name": "sukil",
+ "deregistration": "2020-11-29",
+ "contact": "sukiletxe+agora at gmail.com"
+ }
+ ],
+ "Zefram": [
+ {
+ "reason": "u",
+ "registration": "<= 1995-06-16",
+ "name": "Zefram",
+ "deregistration": "1995-12",
+ "contact": "zefram at tao.co.uk"
+ },
+ {
+ "reason": "v",
+ "registration": "1996-01-4",
+ "name": "Zefram",
+ "deregistration": "1997-10-29",
+ "contact": "zefram at tao.co.uk"
+ },
+ {
+ "reason": "a",
+ "registration": "2007-01-10",
+ "name": "Zefram",
+ "deregistration": "2009-02-16",
+ "contact": "zefram at fysh.org"
+ }
+ ],
+ "Kirt": [
+ {
+ "reason": "u",
+ "name": "Kirt",
+ "registration": "<= 1994-04-05",
+ "contact": "dankmyer at ac.grin.edu"
+ }
+ ],
+ "orb": [
+ {
+ "reason": "a",
+ "registration": "2022-10-05",
+ "name": "orb",
+ "deregistration": "2023-01-20",
+ "contact": "hereuplay at gmail.com"
+ }
+ ],
+ "Stella?": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Stella?",
+ "deregistration": "unknown",
+ "contact": "kunne at cernvm.cern.ch"
+ }
+ ],
+ "Caste8d": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8d",
+ "deregistration": "2009-06-18",
+ "contact": "c/o C-walker"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8d",
+ "deregistration": "2009-07-10",
+ "contact": "c/o C-walker?"
+ }
+ ],
+ "Evantine": [
+ {
+ "reason": "u",
+ "registration": "2001-02-09",
+ "name": "Evantine",
+ "deregistration": "2001-11-01",
+ "contact": "gordonhogenson at hotmail.com"
+ }
+ ],
+ "S.": [
+ {
+ "reason": "u",
+ "registration": "2001-05-30",
+ "name": "S.",
+ "deregistration": "2001-11-17",
+ "contact": "bookfool2001 at hotmail.com"
+ }
+ ],
+ "GreyKnight": [
+ {
+ "reason": "p",
+ "registration": "2006-09-06",
+ "name": "GreyKnight",
+ "deregistration": "2007-05-31",
+ "contact": "greyknight3 at yahoo.com"
+ }
+ ],
+ "Tristan Bredeweg": [
+ {
+ "reason": "d",
+ "registration": "2015-07-28",
+ "name": "Tristan Bredeweg",
+ "deregistration": "2015-08-10",
+ "contact": "trstnbrdwg0 at gmail.com"
+ }
+ ],
+ "Yally": [
+ {
+ "reason": "a",
+ "registration": "2009-02-07",
+ "name": "Yally",
+ "deregistration": "2014-07-22",
+ "contact": "aarongoldfein at gmail.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2016-07-11",
+ "name": "Yally",
+ "deregistration": "2017-05-31",
+ "contact": "aarongoldfein at gmail.com"
+ }
+ ],
+ "Our Lady of Perpetual Responsibility": [
+ {
+ "reason": "e",
+ "registration": "2012-06-30",
+ "name": "Our Lady of Perpetual Responsibility",
+ "deregistration": "2013-01-22",
+ "contact": "?"
+ }
+ ],
+ "Goethe": [
+ {
+ "reason": "v",
+ "registration": "2001-02-04",
+ "name": "Goethe",
+ "deregistration": "2003-03-24",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2003-07-14",
+ "observations": "(Writ of FAGE published 2020-12-1806, resolved by Prop 4882)",
+ "name": "Goethe",
+ "deregistration": "2007-01-22",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2007-02-23",
+ "name": "Goethe",
+ "deregistration": "2007-05-14",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2007-10-27",
+ "name": "Goethe",
+ "deregistration": "2008-05-16",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2008-06-19",
+ "name": "Goethe",
+ "deregistration": "2009-04-01",
+ "contact": "kerim at u.washington.edu"
+ }
+ ],
+ "Andy Latto": [
+ {
+ "reason": "u",
+ "name": "Andy Latto",
+ "registration": "<= 1994-04-05",
+ "contact": "andyl at harlequin.com"
+ }
+ ],
+ "Nameless": [
+ {
+ "reason": "v",
+ "registration": "2009-04-22",
+ "name": "Nameless",
+ "deregistration": "2009-05-13",
+ "contact": "pr76952a at hotmail.com"
+ }
+ ],
+ "G.": [
+ {
+ "reason": "v",
+ "registration": "2009-05-04",
+ "name": "G.",
+ "deregistration": "2009-08-10",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-10-29",
+ "name": "G.",
+ "deregistration": "2011-08-09",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-10-18",
+ "name": "G.",
+ "deregistration": "2014-08-11",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "w",
+ "registration": "2017-06-29",
+ "name": "G.",
+ "deregistration": "2017-06-29",
+ "contact": "kerim at u.washington.edu"
+ },
+ {
+ "reason": "s",
+ "name": "G.",
+ "registration": "2017-08-25",
+ "contact": "kerim at uw.edu"
+ }
+ ],
+ "Offhanded": [
+ {
+ "reason": "a",
+ "registration": "2008-04-29",
+ "name": "Offhanded",
+ "deregistration": "2008-10-02",
+ "contact": "clarion.rain at gmail.com"
+ }
+ ],
+ "ChrisM": [
+ {
+ "reason": "v",
+ "registration": "<= 1995-10-23",
+ "name": "ChrisM",
+ "deregistration": "1997-11-11",
+ "contact": "cmonsour at Princeton.EDU"
+ }
+ ],
+ "Rance": [
+ {
+ "reason": "a",
+ "registration": "2019-04-09",
+ "name": "Rance",
+ "deregistration": "2020-04-23",
+ "contact": "rance_28 at yahoo.com"
+ }
+ ],
+ "dcuman": [
+ {
+ "reason": "u",
+ "registration": "<= 1996-01-31",
+ "name": "dcuman",
+ "deregistration": "1996-04-23",
+ "contact": "shodan at indirect.com"
+ }
+ ],
+ "duck": [
+ {
+ "reason": "a",
+ "registration": "2022-03-12",
+ "name": "duck",
+ "deregistration": "2022-10-31",
+ "contact": ""
+ }
+ ],
+ "Caste8c": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8c",
+ "deregistration": "2009-06-18",
+ "contact": "c/o C-walker"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8c",
+ "deregistration": "2009-07-10",
+ "contact": "c/o C-walker?"
+ }
+ ],
+ "Lance": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Lance",
+ "deregistration": "unknown",
+ "contact": "lab at biostat.mc.duke.edu"
+ }
+ ],
+ "Olipro": [
+ {
+ "reason": "a",
+ "registration": "2008-07-07",
+ "name": "Olipro",
+ "deregistration": "2008-12-07",
+ "contact": "olipro+agora at gmail.com"
+ }
+ ],
+ "Siege": [
+ {
+ "reason": "a",
+ "registration": "2008-11-26",
+ "name": "Siege",
+ "deregistration": "2009-11-14",
+ "contact": "thesiege at gmail.com"
+ }
+ ],
+ "w1n5t0n": [
+ {
+ "reason": "a",
+ "registration": "2008-11-30",
+ "name": "w1n5t0n",
+ "deregistration": "2009-05-17",
+ "contact": "chuckles11489 at gmail.com"
+ }
+ ],
+ "Andre": [
+ {
+ "reason": "v",
+ "registration": "1994-11",
+ "name": "Andre",
+ "deregistration": "1998-01-22",
+ "contact": "engels at win.tue.nl"
+ },
+ {
+ "reason": "w",
+ "registration": "1998-11-28",
+ "name": "Andre",
+ "deregistration": "1999-02-13",
+ "contact": "engels at win.tue.nl"
+ },
+ {
+ "reason": "v",
+ "registration": "2000-08-18",
+ "name": "Andre",
+ "deregistration": "2000-12-06",
+ "contact": "engels at win.tue.nl"
+ }
+ ],
+ "Droowl": [
+ {
+ "reason": "a",
+ "registration": "2011-06-04",
+ "name": "Droowl",
+ "deregistration": "2011-12-08",
+ "contact": "droowl at gmail.com"
+ }
+ ],
+ "Waggie": [
+ {
+ "reason": "v",
+ "name": "Waggie",
+ "registration": "<= 1994-04-05",
+ "contact": "dgwagner at math.uwaterloo.ca"
+ }
+ ],
+ "Alexis": [
+ {
+ "reason": "v",
+ "registration": "2016-09-14",
+ "name": "Alexis",
+ "deregistration": "2017-01-08",
+ "contact": "alercah at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2017-09-27",
+ "name": "Alexis",
+ "deregistration": "2018-02-28",
+ "contact": "alercah at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2020-01-06",
+ "name": "Alexis",
+ "deregistration": "2020-05-03",
+ "contact": "alercah at gmail.com"
+ }
+ ],
+ "a person announcing support or intent to do so": [
+ {
+ "reason": "e",
+ "registration": "2012-09-28",
+ "name": "a person announcing support or intent to do so",
+ "deregistration": "2013-01-22",
+ "contact": "c/o G."
+ }
+ ],
+ "Yang Corp": [
+ {
+ "reason": "p",
+ "registration": "2007-05-21",
+ "name": "Yang Corp",
+ "deregistration": "2007-05-31",
+ "contact": ""
+ }
+ ],
+ "Nathan": [
+ {
+ "reason": "a",
+ "registration": "2020-08-19",
+ "name": "Nathan",
+ "deregistration": "2022-02-22",
+ "contact": "nathans.agora.email at gmail.com"
+ }
+ ],
+ "Max Schutz": [
+ {
+ "reason": "a",
+ "registration": "2012-11-05",
+ "name": "Max Schutz",
+ "deregistration": "2014-02-12",
+ "contact": "maxschutz777 at gmail.com"
+ }
+ ],
+ "Kolja A.": [
+ {
+ "reason": "v",
+ "registration": "1997-07-02",
+ "name": "Kolja A.",
+ "deregistration": "1999-12-16",
+ "contact": "herrmanns at rhein-neckar.netsurf.de"
+ }
+ ],
+ "sproingie": [
+ {
+ "reason": "p",
+ "registration": "2006-12-20",
+ "name": "sproingie",
+ "deregistration": "2007-05-31",
+ "contact": "cja987 at gmail.com"
+ }
+ ],
+ "Lucidiot": [
+ {
+ "reason": "a",
+ "registration": "2020-11-08",
+ "name": "Lucidiot",
+ "deregistration": "2021-06-30",
+ "contact": "Lucidot at brainshit.fr"
+ }
+ ],
+ "Hālian": [
+ {
+ "reason": "p",
+ "registration": "2018-10-20",
+ "name": "Hālian",
+ "deregistration": "2019-09-18",
+ "contact": "halian at safiria.net"
+ }
+ ],
+ "cuddlybanana": [
+ {
+ "reason": "s",
+ "name": "cuddlybanana",
+ "registration": "2021-03-16",
+ "contact": "rose.strong42 at gmail.com"
+ }
+ ],
+ "babelian": [
+ {
+ "reason": "d",
+ "registration": "2017-07-29",
+ "name": "babelian",
+ "deregistration": "2017-09-15",
+ "contact": "kumarraja.ajay at gmail.com"
+ }
+ ],
+ "bd_": [
+ {
+ "reason": "a",
+ "registration": "2007-06-20",
+ "name": "bd_",
+ "deregistration": "2007-12-20",
+ "contact": "bdonlan at fushizen.net"
+ }
+ ],
+ "Golem-1-50": [
+ {
+ "reason": "v",
+ "registration": "2012-03-04",
+ "name": "Golem-1-50",
+ "deregistration": "2012-03-05",
+ "contact": "c/o FKA441344"
+ }
+ ],
+ "Roujo": [
+ {
+ "reason": "v",
+ "registration": "2010-12-16",
+ "name": "Roujo",
+ "deregistration": "2017-05-27",
+ "contact": "jonathan.rouillard at gmail.com"
+ }
+ ],
+ "Ian": [
+ {
+ "reason": "u",
+ "registration": "2001-04-02",
+ "name": "Ian",
+ "deregistration": "2001-10-08",
+ "contact": "oneiros at ferret.lmh.ox.ac.uk"
+ }
+ ],
+ "The Colonel": [
+ {
+ "reason": "v",
+ "registration": "1999-08-07",
+ "name": "The Colonel",
+ "deregistration": "1999-08-08",
+ "contact": "blafard at uclink4.berkeley.edu"
+ }
+ ],
+ "WALRUS": [
+ {
+ "reason": "d",
+ "registration": "2007-12-20",
+ "name": "WALRUS",
+ "deregistration": "2008-01-02",
+ "contact": "c/o pikhq"
+ }
+ ],
+ "Lindar": [
+ {
+ "reason": "a",
+ "registration": "2013-07-08",
+ "name": "Lindar",
+ "deregistration": "2014-02-12",
+ "contact": "lindarthebard at gmail.com"
+ }
+ ],
+ "cdm014": [
+ {
+ "reason": "a",
+ "registration": "2008-06-17",
+ "name": "cdm014",
+ "deregistration": "2009-01-12",
+ "contact": "cdm014 at gmail.com"
+ }
+ ],
+ "Solider-*-*": [
+ {
+ "reason": "e",
+ "registration": "2013-01-16",
+ "observations": "Many entities; effectiveness disputed.",
+ "name": "Solider-*-*",
+ "deregistration": "16 2013-01",
+ "contact": "c/o Pavitra"
+ }
+ ],
+ "CreateSource": [
+ {
+ "reason": "a",
+ "registration": "2022-05-14",
+ "name": "CreateSource",
+ "deregistration": "2022-10-31",
+ "contact": "createsource.nomic at gmail.com"
+ }
+ ],
+ "Keba": [
+ {
+ "reason": "a",
+ "registration": "2010-08-12",
+ "name": "Keba",
+ "deregistration": "2011-03-08",
+ "contact": "agora at kebay.org"
+ }
+ ],
+ "Teh Cltohed Mna Ni Teh Drak Woh Wtaches Adn Nevre Sasy A Wrod Execpt Wehn Psoessed Yb Dmeons Mcuhly Precocupied": [
+ {
+ "reason": "v",
+ "registration": "2008-05-08",
+ "name": "Teh Cltohed Mna Ni Teh Drak Woh Wtaches Adn Nevre Sasy A Wrod Execpt Wehn Psoessed Yb Dmeons Mcuhly Precocupied",
+ "deregistration": "2008-06-24",
+ "contact": "penguinofthegods at gmail.com"
+ }
+ ],
+ "CoCo": [
+ {
+ "reason": "u",
+ "registration": "1995-10",
+ "name": "CoCo",
+ "deregistration": "1995-11",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "name": "CoCo",
+ "registration": "1995-12-03",
+ "contact": ""
+ }
+ ],
+ "Grech": [
+ {
+ "reason": "u",
+ "registration": "2001-02-05",
+ "name": "Grech",
+ "deregistration": "2001-09-10",
+ "contact": "xe5j0y4halv3ev001 at sneakemail.com"
+ }
+ ],
+ "Pakaran": [
+ {
+ "reason": "l",
+ "registration": "2002-10-04",
+ "name": "Pakaran",
+ "deregistration": "2005-04-07",
+ "contact": "windrunner at gmail.com"
+ }
+ ],
+ "Walker": [
+ {
+ "reason": "v",
+ "registration": "2009-04-25",
+ "name": "Walker",
+ "deregistration": "2009-10-24",
+ "contact": "charles.w.walker at googlemail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-12-05",
+ "name": "Walker",
+ "deregistration": "2010-01-30",
+ "contact": "charles.w.walker at googlemail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-03-19",
+ "name": "Walker",
+ "deregistration": "2014-02-12",
+ "contact": "charles.w.walker at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2014-03-26",
+ "name": "Walker",
+ "deregistration": "2014-07-22",
+ "contact": "charles.w.walker at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2019-06-02",
+ "name": "Walker",
+ "deregistration": "2020-04-17",
+ "contact": "charles.w.walker at gmail.com"
+ }
+ ],
+ "Fred": [
+ {
+ "reason": "a",
+ "registration": "2020-07-03",
+ "name": "Fred",
+ "deregistration": "2020-11-20",
+ "contact": "zarathustraincandenza at gmail.com"
+ }
+ ],
+ "Cole Jackson": [
+ {
+ "reason": "a",
+ "registration": "2014-01-26",
+ "name": "Cole Jackson",
+ "deregistration": "2014-05-06",
+ "contact": "colejackson at gmail.com"
+ }
+ ],
+ "KoJen": [
+ {
+ "reason": "u",
+ "name": "KoJen",
+ "registration": "1996-01-01",
+ "contact": "cogen at ll.mit.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "1996-01-2",
+ "name": "KoJen",
+ "deregistration": "1997-06-12",
+ "contact": "cogen at ll.mit.edu"
+ }
+ ],
+ "Math321": [
+ {
+ "reason": "a",
+ "registration": "2011-06-28",
+ "name": "Math321",
+ "deregistration": "2011-12-08",
+ "contact": "math321 at ymail.com"
+ }
+ ],
+ "aranea": [
+ {
+ "reason": "d",
+ "registration": "2014-08-31",
+ "name": "aranea",
+ "deregistration": "2017-05-31",
+ "contact": "aranea at aixea.de"
+ }
+ ],
+ "Noah": [
+ {
+ "reason": "a",
+ "registration": "2021-01-14",
+ "name": "Noah",
+ "deregistration": "2021-06-30",
+ "contact": "blackbeangirl919 at gmail.com"
+ }
+ ],
+ "Bayes": [
+ {
+ "reason": "d",
+ "registration": "2008-10-01",
+ "name": "Bayes",
+ "deregistration": "2009-05-26",
+ "contact": ""
+ }
+ ],
+ "Caste8b": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8b",
+ "deregistration": "2009-06-18",
+ "contact": "c/o C-walker"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8b",
+ "deregistration": "2009-07-10",
+ "contact": "c/o C-walker?"
+ }
+ ],
+ "Magu": [
+ {
+ "reason": "a",
+ "registration": "2003-12-24",
+ "name": "Magu",
+ "deregistration": "2004-04-11",
+ "contact": "mschmahl at acsalaska.net"
+ }
+ ],
+ "Arkady": [
+ {
+ "reason": "a",
+ "registration": "2011-07-18",
+ "name": "Arkady",
+ "deregistration": "2013-05-21",
+ "contact": "arkadyenglish+agora at gmail.com"
+ }
+ ],
+ "Manu": [
+ {
+ "reason": "a",
+ "registration": "2003-03-14",
+ "name": "Manu",
+ "deregistration": "2003-08-20",
+ "contact": "pacu at sympatico.ca"
+ },
+ {
+ "reason": "p",
+ "registration": "2004-12-16",
+ "name": "Manu",
+ "deregistration": "2007-10-18",
+ "contact": "sensoz at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2009-05-01",
+ "name": "Manu",
+ "deregistration": "2009-09-27",
+ "contact": "sensoz at gmail.com"
+ }
+ ],
+ "Gaelan": [
+ {
+ "reason": "s",
+ "registration": "2017-05-15",
+ "observations": "Previously known as Gaelan Steele",
+ "name": "Gaelan",
+ "deregistration": "",
+ "contact": "gbs at canishe.com"
+ }
+ ],
+ "Dvorak Herring": [
+ {
+ "reason": "a",
+ "registration": "2008-09-10",
+ "name": "Dvorak Herring",
+ "deregistration": "2009-09-27",
+ "contact": "dvorak.herring at gmail.com"
+ }
+ ],
+ "Kenyon": [
+ {
+ "reason": "a",
+ "registration": "2018-02-27",
+ "name": "Kenyon",
+ "deregistration": "2018-10-16",
+ "contact": "kprater3.14 at gmail.com"
+ }
+ ],
+ "R. Lee": [
+ {
+ "reason": "v",
+ "registration": "2017-12-29",
+ "observations": "also known as V.J. Rada/Later changed to SarahEstrange0 at gmail.com.",
+ "name": "R. Lee",
+ "deregistration": "2019-07-29",
+ "contact": "edwardostrange at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2019-12-29",
+ "observations": "Later changed to SarahEstrange0 at gmail.com.",
+ "name": "R. Lee",
+ "deregistration": "2020-01-25",
+ "contact": "edwardostrange at gmail.com"
+ },
+ {
+ "reason": "r",
+ "registration": "2020-02-28",
+ "observations": "Later changed to SarahEstrange0 at gmail.com.",
+ "name": "R. Lee",
+ "deregistration": "2020-03-01",
+ "contact": "edwardostrange at gmail.com"
+ },
+ {
+ "reason": "x",
+ "registration": "2020-03-16",
+ "observations": "Later changed to SarahEstrange0 at gmail.com.",
+ "name": "R. Lee",
+ "deregistration": "2020-06-30",
+ "contact": "edwardostrange at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2020-06-30",
+ "name": "R. Lee",
+ "deregistration": "2021-09-19",
+ "contact": "Sarahestrange0 at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2021-10-22",
+ "name": "R. Lee",
+ "deregistration": "2023-01-20",
+ "contact": "Sarahestrange0 at gmail.com"
+ },
+ {
+ "reason": "s",
+ "name": "R. Lee",
+ "registration": "2023-01-31",
+ "contact": "sarahestrange0 at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2017-06-07",
+ "observations": "later known as R. Lee",
+ "name": "V.J. Rada",
+ "deregistration": "2017-08-11",
+ "contact": "vijarada at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2017-09-05",
+ "name": "V.J. Rada",
+ "deregistration": "2017-11-28",
+ "contact": "vijarada at gmail.com"
+ }
+ ],
+ "gavin": [
+ {
+ "reason": "a",
+ "registration": "2008-10-17",
+ "name": "gavin",
+ "deregistration": "2009-02-16",
+ "contact": "hawkblack13 at gmail.com"
+ }
+ ],
+ "Narcisse": [
+ {
+ "reason": "u",
+ "registration": "1996-04",
+ "name": "Narcisse",
+ "deregistration": "1996-05-21",
+ "contact": "hap at iglou.com"
+ }
+ ],
+ "Ur": [
+ {
+ "reason": "e",
+ "registration": "2012-03-31",
+ "name": "Ur",
+ "deregistration": "2013-01-22",
+ "contact": "?"
+ }
+ ],
+ "Randy Olsha": [
+ {
+ "reason": "a",
+ "registration": "2009-04-06",
+ "name": "Randy Olsha",
+ "deregistration": "2009-08-17",
+ "contact": "moronservices at gmail.com"
+ }
+ ],
+ "Veggiekeks": [
+ {
+ "reason": "d",
+ "registration": "2017-05-25",
+ "name": "Veggiekeks",
+ "deregistration": "2017-09-15",
+ "contact": "martinjroensch at gmail.com"
+ }
+ ],
+ "JonnyRotten": [
+ {
+ "reason": "a",
+ "registration": "2009-07-30",
+ "name": "JonnyRotten",
+ "deregistration": "2009-11-17",
+ "contact": "jon.gilmour at gmail.com"
+ }
+ ],
+ "Oerjan": [
+ {
+ "reason": "u",
+ "registration": "1995-09",
+ "name": "Oerjan",
+ "deregistration": "1995-12",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "name": "Oerjan",
+ "registration": "1996-01-03",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "registration": "1996-04",
+ "name": "Oerjan",
+ "deregistration": "2000-03-22",
+ "contact": ""
+ },
+ {
+ "reason": "a",
+ "registration": "2000-07-15",
+ "name": "Oerjan",
+ "deregistration": "2004-11-14",
+ "contact": "oerjan at nvg.ntnu.no"
+ }
+ ],
+ "Yin Corp": [
+ {
+ "reason": "p",
+ "registration": "2007-05-21",
+ "name": "Yin Corp",
+ "deregistration": "2007-05-31",
+ "contact": ""
+ }
+ ],
+ "Spitemaster": [
+ {
+ "reason": "a",
+ "registration": "2009-03-07",
+ "name": "Spitemaster",
+ "deregistration": "2009-09-27",
+ "contact": "bennerguy at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2010-03-08",
+ "name": "Spitemaster",
+ "deregistration": "2010-09-07",
+ "contact": "bennerguy at gmail.com"
+ }
+ ],
+ "Wooble": [
+ {
+ "reason": "v",
+ "registration": "2007-07-03",
+ "name": "Wooble",
+ "deregistration": "2007-09-30",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "l",
+ "registration": "2007-11-16",
+ "name": "Wooble",
+ "deregistration": "2009-10-17",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-11-17",
+ "name": "Wooble",
+ "deregistration": "2010-01-30",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2010-03-21",
+ "name": "Wooble",
+ "deregistration": "2010-04-01",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "k",
+ "registration": "2010-05-02",
+ "name": "Wooble",
+ "deregistration": "2010-11-22",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2010-12-22",
+ "name": "Wooble",
+ "deregistration": "2011-01-31",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-03-03",
+ "name": "Wooble",
+ "deregistration": "2011-04-15",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-05-17",
+ "name": "Wooble",
+ "deregistration": "2011-06-28",
+ "contact": "geoffspear at gmail.com"
+ },
+ {
+ "reason": "w",
+ "registration": "2011-07-29",
+ "name": "Wooble",
+ "deregistration": "2011-09-01",
+ "contact": "wooble at nomictools.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-10-03",
+ "name": "Wooble",
+ "deregistration": "2013-08-12",
+ "contact": "wooble at nomictools.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2013-10-24",
+ "name": "Wooble",
+ "deregistration": "2014-02-28",
+ "contact": "wooble at nomictools.com"
+ }
+ ],
+ "Yoz420": [
+ {
+ "reason": "v",
+ "registration": "2001-03-08",
+ "name": "Yoz420",
+ "deregistration": "2001-06-26",
+ "contact": "tlifschitz at empirix.com"
+ }
+ ],
+ "FSX": [
+ {
+ "reason": "v",
+ "registration": "2012-01-09",
+ "name": "FSX",
+ "deregistration": "2012-02-28",
+ "contact": "flameshadowxeroshin at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2012-04-03",
+ "name": "FSX",
+ "deregistration": "2014-02-12",
+ "contact": "flameshadowxeroshin at gmail.com"
+ }
+ ],
+ "Wofi": [
+ {
+ "reason": "a",
+ "registration": "2011-03-30",
+ "name": "Wofi",
+ "deregistration": "2011-06-26",
+ "contact": "wofi253 at yahoo.com"
+ }
+ ],
+ "Alice": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Alice",
+ "deregistration": "unknown",
+ "contact": "cat at orion.mrc.unm.edu"
+ }
+ ],
+ "Caste8f": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8f",
+ "deregistration": "2009-06-18",
+ "contact": "c/o C-walker"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8f",
+ "deregistration": "2009-07-10",
+ "contact": "c/o C-walker?"
+ }
+ ],
+ "pTang": [
+ {
+ "reason": "a",
+ "registration": "2000-09-21",
+ "name": "pTang",
+ "deregistration": "2002-05-12",
+ "contact": "nau at treyarch.com"
+ }
+ ],
+ "0x44": [
+ {
+ "reason": "v",
+ "registration": "2008-10-10",
+ "name": "0x44",
+ "deregistration": "2008-12-30",
+ "contact": "bnomic at indistinct.org"
+ }
+ ],
+ "P2": [
+ {
+ "reason": "w",
+ "registration": "2008-11-05",
+ "name": "P2",
+ "deregistration": "2008-11-05",
+ "contact": "c/o comex"
+ }
+ ],
+ "FKA441344": [
+ {
+ "reason": "a",
+ "registration": "2012-01-13",
+ "name": "FKA441344",
+ "deregistration": "2013-04-07",
+ "contact": "441344 at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-07-02",
+ "name": "FKA441344",
+ "deregistration": "2014-02-12",
+ "contact": "441344 at gmail.com"
+ }
+ ],
+ "Scapegoat": [
+ {
+ "reason": "v",
+ "registration": "2012-06-08",
+ "name": "Scapegoat",
+ "deregistration": "2012-08-06",
+ "contact": "c/o the number 441,344"
+ }
+ ],
+ "solublefish": [
+ {
+ "reason": "u",
+ "registration": "2001-03-31",
+ "name": "solublefish",
+ "deregistration": "2001-11-12",
+ "contact": "WGarner at Empirix.com"
+ }
+ ],
+ "Jim": [
+ {
+ "reason": "u",
+ "name": "Jim",
+ "registration": "<= 1994-04-05",
+ "contact": "jcs at zycor.lgc.com"
+ }
+ ],
+ "Human Point Three": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Three",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "RedKnight": [
+ {
+ "reason": "a",
+ "registration": "2002-07-21",
+ "name": "RedKnight",
+ "deregistration": "2006-01-19",
+ "contact": "redwallknight at hotmail.com"
+ }
+ ],
+ "Garth": [
+ {
+ "reason": "u",
+ "registration": "1995-09",
+ "name": "Garth",
+ "deregistration": "1995-10",
+ "contact": ""
+ }
+ ],
+ "Calabresi": [
+ {
+ "reason": "a",
+ "name": "Calabresi",
+ "registration": "1997-12-05",
+ "contact": "mcdaniel at law.harvard.edu"
+ }
+ ],
+ "Chester Mealer": [
+ {
+ "reason": "v",
+ "registration": "2014-07-03",
+ "name": "Chester Mealer",
+ "deregistration": "2014-10-24",
+ "contact": "cdm014 at gmail.com"
+ }
+ ],
+ "Nicol": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Nicol",
+ "deregistration": "unknown",
+ "contact": "dnicol at primus.cstp.umkc.edu"
+ }
+ ],
+ "Goddess Eris": [
+ {
+ "reason": "v",
+ "registration": "2000-04-03",
+ "name": "Goddess Eris",
+ "deregistration": "2006-12-13",
+ "contact": "taral at taral.net"
+ }
+ ],
+ "Beefurabi": [
+ {
+ "reason": "l",
+ "registration": "1999-04-19",
+ "name": "Beefurabi",
+ "deregistration": "1999-09-07",
+ "contact": "david at kasey.umkc.edu"
+ }
+ ],
+ "SCHWA": [
+ {
+ "reason": "d",
+ "registration": "2009-06-28",
+ "name": "SCHWA",
+ "deregistration": "2009-11-14",
+ "contact": "c/o Warrigal?"
+ }
+ ],
+ "Human Point Five": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Five",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Left Hand": [
+ {
+ "reason": "d",
+ "registration": "2008-01-12",
+ "name": "Left Hand",
+ "deregistration": "2008-12-08",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "P1": [
+ {
+ "reason": "w",
+ "registration": "2008-11-05",
+ "name": "P1",
+ "deregistration": "2008-11-05",
+ "contact": "c/o comex"
+ }
+ ],
+ "Karl Anderson": [
+ {
+ "reason": "u",
+ "name": "Karl Anderson",
+ "registration": "<= 1994-04-05",
+ "contact": "karl at reed.edu"
+ }
+ ],
+ "Schneidster": [
+ {
+ "reason": "u",
+ "registration": "1999-06-12",
+ "name": "Schneidster",
+ "deregistration": "2001-09-10",
+ "contact": "Et3schneid at aol.com"
+ }
+ ],
+ "aperfectring": [
+ {
+ "reason": "a",
+ "registration": "2013-08-15",
+ "name": "aperfectring",
+ "deregistration": "2014-05-06",
+ "contact": "jstefek at gmail.com"
+ }
+ ],
+ "Ziggy": [
+ {
+ "reason": "v",
+ "registration": "2001-01-14",
+ "name": "Ziggy",
+ "deregistration": "2001-07-09",
+ "contact": "me at davidglasser.net"
+ }
+ ],
+ "Eileen": [
+ {
+ "reason": "e",
+ "registration": "2012-06-05",
+ "name": "Eileen",
+ "deregistration": "2013-01-22",
+ "contact": "c/o Pavitra"
+ }
+ ],
+ "scat": [
+ {
+ "reason": "a",
+ "registration": "2012-05-18",
+ "observations": "Also schrodingers.katana at gmail.com",
+ "name": "scat",
+ "deregistration": "2013-04-07",
+ "contact": "agora at lesidhetree.com"
+ }
+ ],
+ "Billy Pilgrim": [
+ {
+ "reason": "a",
+ "registration": "2008-10-22",
+ "name": "Billy Pilgrim",
+ "deregistration": "2009-06-05",
+ "contact": "bad.leprechaun at gmail.com"
+ }
+ ],
+ "Greycell": [
+ {
+ "reason": "u",
+ "registration": "1996-03",
+ "name": "Greycell",
+ "deregistration": "1996-03-21",
+ "contact": "dshannon at ga.com.au"
+ }
+ ],
+ "Xanadu": [
+ {
+ "reason": "u",
+ "name": "Xanadu",
+ "registration": "1995-10-26",
+ "contact": "A.Bishop at student.anu.edu.au"
+ }
+ ],
+ "The Host": [
+ {
+ "reason": "-",
+ "registration": "2007-08-21",
+ "name": "The Host",
+ "deregistration": "2007-08-30",
+ "contact": "c/o Levi and Murphy"
+ }
+ ],
+ "Taral": [
+ {
+ "reason": "v",
+ "registration": "2007-04-28",
+ "name": "Taral",
+ "deregistration": "2011-02-04",
+ "contact": "taralx at gmail.com"
+ }
+ ],
+ "Wes": [
+ {
+ "reason": "u",
+ "name": "Wes",
+ "registration": "<= 1994-04-05",
+ "contact": "wesc at ichips.intel.com"
+ },
+ {
+ "reason": "v",
+ "registration": "<= 1995-11-08",
+ "name": "Wes",
+ "deregistration": "1996-02-21",
+ "contact": "wesc at antitribu.com"
+ },
+ {
+ "reason": "u",
+ "name": "Wes",
+ "registration": "1996-03-06",
+ "contact": "gecko at magika.com"
+ },
+ {
+ "reason": "u",
+ "registration": "1999-05-18",
+ "name": "Wes",
+ "deregistration": "2001-09-07",
+ "contact": "wesc at antitribu.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2004-04-12",
+ "name": "Wes",
+ "deregistration": "2004-11-14",
+ "contact": "netgecko99 at yahoo.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-01-29",
+ "name": "Wes",
+ "deregistration": "2014-02-12",
+ "contact": "wesc at antitribu.com"
+ }
+ ],
+ "Human Point Six": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Six",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Kyle Anderson": [
+ {
+ "reason": "v",
+ "registration": "2017-08-23",
+ "name": "Kyle Anderson",
+ "deregistration": "24 2017-08",
+ "contact": "kyescott513c at gmail.com"
+ }
+ ],
+ "Fool": [
+ {
+ "reason": "a",
+ "registration": "2013-06-24",
+ "name": "Fool",
+ "deregistration": "2014-07-22",
+ "contact": "fool1901 at gmail.com"
+ }
+ ],
+ "hedgehogcull": [
+ {
+ "reason": "a",
+ "registration": "2007-08-16",
+ "name": "hedgehogcull",
+ "deregistration": "2008-02-01",
+ "contact": "jon at peekee.co.uk"
+ }
+ ],
+ "Antimatter": [
+ {
+ "reason": "v",
+ "registration": "1998-03-5",
+ "name": "Antimatter",
+ "deregistration": "1998-10-31",
+ "contact": "rmorganl at fred.fhcrc.org"
+ }
+ ],
+ "Agora's Child": [
+ {
+ "reason": "d",
+ "registration": "2007-12-03",
+ "name": "Agora's Child",
+ "deregistration": "2008-01-02",
+ "contact": "agoras-child at googlegroups.com"
+ }
+ ],
+ "Kolja": [
+ {
+ "reason": "a",
+ "registration": "2004-02-03",
+ "name": "Kolja",
+ "deregistration": "2006-01-19",
+ "contact": "kolja_nomic at yahoo.de"
+ }
+ ],
+ "Warrigal": [
+ {
+ "reason": "v",
+ "registration": "2008-11-06",
+ "name": "Warrigal",
+ "deregistration": "2009-02-13",
+ "contact": "ihope127+w at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-03-16",
+ "name": "Warrigal",
+ "deregistration": "2009-07-06",
+ "contact": "ihope127+w at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-08-06",
+ "name": "Warrigal",
+ "deregistration": "2009-08-06",
+ "contact": "ihope127+ at gmail.com"
+ },
+ {
+ "reason": "w",
+ "registration": "2020-01-24",
+ "name": "Warrigal",
+ "deregistration": "2020-04-23",
+ "contact": "tannerswett at gmail.com"
+ }
+ ],
+ "Thimblefox": [
+ {
+ "reason": "a",
+ "registration": "2014-02-14",
+ "name": "Thimblefox",
+ "deregistration": "2014-05-06",
+ "contact": "brianblomlie at icloud.com"
+ }
+ ],
+ "Luke Lockhart": [
+ {
+ "reason": "a",
+ "registration": "2009-06-04",
+ "name": "Luke Lockhart",
+ "deregistration": "2009-09-27",
+ "contact": "luke.lockhart at gmail.com"
+ }
+ ],
+ "Peekee": [
+ {
+ "reason": "u",
+ "registration": "1998-12-25",
+ "name": "Peekee",
+ "deregistration": "2001-10-07",
+ "contact": "pkpeekee at hotmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2002-09-06",
+ "name": "Peekee",
+ "deregistration": "2004-04-11",
+ "contact": "peekee at blueyonder.co.uk"
+ },
+ {
+ "reason": "v",
+ "registration": "2007-08-03",
+ "name": "Peekee",
+ "deregistration": "2007-08-12",
+ "contact": "agora at peekee.co.uk"
+ },
+ {
+ "reason": "a",
+ "registration": "2007-09-11",
+ "name": "Peekee",
+ "deregistration": "2008-03-31",
+ "contact": "agora at peekee.co.uk"
+ }
+ ],
+ "jimmy": [
+ {
+ "reason": "w",
+ "registration": "2023-04-09",
+ "name": "jimmy",
+ "deregistration": "2023-04-09",
+ "contact": "bibbapblap2 at gmail.com"
+ }
+ ],
+ "Turiski": [
+ {
+ "reason": "a",
+ "registration": "2011-04-20",
+ "name": "Turiski",
+ "deregistration": "2011-12-08",
+ "contact": "turiski.nomic at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2013-07-26",
+ "name": "Turiski",
+ "deregistration": "30 2013-07",
+ "contact": "turiski.nomic at gmail.com"
+ }
+ ],
+ "loh": [
+ {
+ "reason": "v",
+ "registration": "2001-01-19",
+ "name": "loh",
+ "deregistration": "2001-05-23",
+ "contact": "loh at lohnet.org"
+ }
+ ],
+ "Yachay Wayllukuq": [
+ {
+ "reason": "s",
+ "registration": "2023-03-16",
+ "observations": "a.k.a. Yachay",
+ "name": "Yachay Wayllukuq",
+ "deregistration": "",
+ "contact": "yachaywayllukuq at gmail.com"
+ }
+ ],
+ "Khoyo": [
+ {
+ "reason": "a",
+ "registration": "2013-11-13",
+ "name": "Khoyo",
+ "deregistration": "2015-07-16",
+ "contact": "khoyobegenn at gmail.com"
+ }
+ ],
+ "TB148": [
+ {
+ "reason": "s",
+ "registration": "2023-02-06",
+ "observations": "Initially known as Anthony Brown",
+ "name": "TB148",
+ "deregistration": "",
+ "contact": "tb148 at proton.me"
+ }
+ ],
+ "Agora Nomic": [
+ {
+ "reason": "d",
+ "registration": "2011-06-23",
+ "name": "Agora Nomic",
+ "deregistration": "2013-04-22",
+ "contact": "?"
+ }
+ ],
+ "TABBAT": [
+ {
+ "reason": "a",
+ "registration": "2022-02-07",
+ "name": "TABBAT",
+ "deregistration": "2022-06-04",
+ "contact": "tabchesnut at gmail.com"
+ }
+ ],
+ "Maud": [
+ {
+ "reason": "v",
+ "registration": "1999-04-20",
+ "name": "Maud",
+ "deregistration": "2006-12-13",
+ "contact": "m.slone at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2007-03-07",
+ "name": "Maud",
+ "deregistration": "2007-05-14",
+ "contact": "m.slone at gmail.com"
+ }
+ ],
+ "tmanthe2nd": [
+ {
+ "reason": "d",
+ "registration": "2017-05-13",
+ "name": "tmanthe2nd",
+ "deregistration": "2017-08-27",
+ "contact": "trstnbrdwg0 at gmail.com"
+ }
+ ],
+ "Second System Effect": [
+ {
+ "reason": "v",
+ "registration": "2007-05-13",
+ "name": "Second System Effect",
+ "deregistration": "2007-05-20",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Marb": [
+ {
+ "reason": "s",
+ "name": "Marb",
+ "registration": "2022-11-27",
+ "contact": "marb at shabu.town"
+ }
+ ],
+ "Aced7": [
+ {
+ "reason": "s",
+ "name": "Aced7",
+ "registration": "2022-10-19",
+ "contact": "cadenomic at gmail.com"
+ }
+ ],
+ "Human Point Fourteen": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Fourteen",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "the Astrally Forged": [
+ {
+ "reason": "a",
+ "registration": "2022-10-14",
+ "observations": "Also @moonbolt@mst3k.interlinked.me on Fediverse and mailto://theastrallyforged@disroot.org",
+ "name": "the Astrally Forged",
+ "deregistration": "2023-02-21",
+ "contact": "irc://libera.chat/AstrallyForged,isnick"
+ }
+ ],
+ "P1 - P100": [
+ {
+ "reason": "d",
+ "registration": "2008-11-16",
+ "name": "P1 - P100",
+ "deregistration": "2008-11-25",
+ "contact": "c/o comex"
+ }
+ ],
+ "Bernie": [
+ {
+ "reason": "a",
+ "registration": "2019-04-06",
+ "name": "Bernie",
+ "deregistration": "2020-04-23",
+ "contact": "hidreigon at gmail.com"
+ }
+ ],
+ "Tiger": [
+ {
+ "reason": "a",
+ "registration": "2009-02-02",
+ "observations": "Later switched to natalie.kilhamn at gmail.com",
+ "name": "Tiger",
+ "deregistration": "2011-03-08",
+ "contact": "jonatan.kilhamn at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-07-12",
+ "observations": "Later switched to natalie.kilhamn at gmail.com",
+ "name": "Tiger",
+ "deregistration": "2012-01-26",
+ "contact": "jonatan.kilhamn at gmail.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2013-12-17",
+ "observations": "Later switched to natalie.kilhamn at gmail.com",
+ "name": "Tiger",
+ "deregistration": "2015-08-10",
+ "contact": "jonatan.kilhamn at gmail.com"
+ }
+ ],
+ "Big Brother": [
+ {
+ "reason": "d",
+ "registration": "2007-09-17",
+ "observations": "(Big Brother's registration status was UNDETERMINED per CFJ 1744)",
+ "name": "Big Brother",
+ "deregistration": "2008-01-02",
+ "contact": "c/o comex"
+ }
+ ],
+ "Coren": [
+ {
+ "reason": "u",
+ "registration": "<= 1996-02-21",
+ "name": "Coren",
+ "deregistration": "1996-03",
+ "contact": "coren at teleport.com"
+ },
+ {
+ "reason": "a",
+ "registration": "1996-09",
+ "name": "Coren",
+ "deregistration": "1996-12-20",
+ "contact": "coren at teleport.com"
+ }
+ ],
+ "SeventeenMachine": [
+ {
+ "reason": "a",
+ "registration": "2021-04-17",
+ "name": "SeventeenMachine",
+ "deregistration": "2022-02-22",
+ "contact": "17sagoranomicinbox at gmail.com"
+ }
+ ],
+ "4st": [
+ {
+ "reason": "s",
+ "name": "4st",
+ "registration": "2022-06-25",
+ "contact": "notorious4st at gmail.com"
+ },
+ {
+ "reason": "s",
+ "name": "4st",
+ "registration": "2023-01-27",
+ "contact": "notorious4st at gmail.com"
+ }
+ ],
+ "JTAC": [
+ {
+ "reason": "a",
+ "registration": "2021-01-03",
+ "name": "JTAC",
+ "deregistration": "2021-06-30",
+ "contact": "hmcl.supv at gmail.com"
+ }
+ ],
+ "dahuman": [
+ {
+ "reason": "s",
+ "name": "dahuman",
+ "registration": "2022-04-01",
+ "contact": "hdrussell at outlook.com"
+ }
+ ],
+ "Surprise": [
+ {
+ "reason": "a",
+ "registration": "2021-06-20",
+ "name": "Surprise",
+ "deregistration": "2022-02-22",
+ "contact": "surprisenomic at gmail.com"
+ }
+ ],
+ "juan": [
+ {
+ "reason": "s",
+ "name": "juan",
+ "registration": "2022-03-14",
+ "contact": "juan at juanmeleiro.mat.br"
+ }
+ ],
+ "snail": [
+ {
+ "reason": "s",
+ "registration": "2022-01-29",
+ "observations": "Previously known as secretsnail",
+ "name": "snail",
+ "deregistration": "",
+ "contact": "secretsnail9 at gmail.com"
+ }
+ ],
+ "Ian Cabell": [
+ {
+ "reason": "a",
+ "name": "Ian Cabell",
+ "registration": "1996-01-02",
+ "contact": "ian at yak.net"
+ }
+ ],
+ "Henri": [
+ {
+ "reason": "d",
+ "registration": "2013-05-07",
+ "name": "Henri",
+ "deregistration": "31 2017-05",
+ "contact": "henrib736 at gmail.com"
+ }
+ ],
+ "ATMunn": [
+ {
+ "reason": "v",
+ "registration": "2017-09-21",
+ "name": "ATMunn",
+ "deregistration": "2018-02-09",
+ "contact": "iamingodsarmy at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2018-03-11",
+ "name": "ATMunn",
+ "deregistration": "2022-03-14",
+ "contact": "iamingodsarmy at gmail.com"
+ }
+ ],
+ "Swann": [
+ {
+ "reason": "u",
+ "registration": "1995-11-14",
+ "name": "Swann",
+ "deregistration": "1996-02-23",
+ "contact": "saswann at gwis.com"
+ },
+ {
+ "reason": "a",
+ "registration": "1997-10-29",
+ "name": "Swann",
+ "deregistration": "1998-09-15",
+ "contact": "saswann at gwis.com"
+ }
+ ],
+ "Janet": [
+ {
+ "reason": "s",
+ "registration": "2019-06-02",
+ "observations": "Previously known as Jason. Previous email <jason.e.cobb at gmail.com>",
+ "name": "Janet",
+ "deregistration": "",
+ "contact": "agora at randomcat.org"
+ }
+ ],
+ "grok": [
+ {
+ "reason": "v",
+ "registration": "2017-05-18",
+ "name": "grok",
+ "deregistration": "2017-05-29",
+ "contact": "grokagora at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2017-07-24",
+ "name": "grok",
+ "deregistration": "2017-09-27",
+ "contact": "grokagora at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2020-05-20",
+ "name": "grok",
+ "deregistration": "2021-05-01",
+ "contact": "grokagora at gmail.com"
+ }
+ ],
+ "Joe Piercey": [
+ {
+ "reason": "d",
+ "registration": "2014-10-15",
+ "name": "Joe Piercey",
+ "deregistration": "2015-08-10",
+ "contact": "joerpiercey at gmail.com"
+ }
+ ],
+ "ziproot": [
+ {
+ "reason": "w",
+ "registration": "2022-09-07",
+ "name": "ziproot",
+ "deregistration": "2022-11-07",
+ "contact": "agora.ziproot at erine.email"
+ }
+ ],
+ "BigBobBingo !": [
+ {
+ "reason": "a",
+ "registration": "2021-09-22",
+ "name": "BigBobBingo !",
+ "deregistration": "2022-04-08",
+ "contact": "arran.soule at gmail.com"
+ }
+ ],
+ "Ted": [
+ {
+ "reason": "e",
+ "registration": "2013-01-16",
+ "name": "Ted",
+ "deregistration": "16 2013-01",
+ "contact": "c/o Italy"
+ }
+ ],
+ "Trapdoorspyder": [
+ {
+ "reason": "a",
+ "registration": "2021-09-25",
+ "name": "Trapdoorspyder",
+ "deregistration": "2022-04-08",
+ "contact": "tdsagora at gmail.com"
+ }
+ ],
+ "redtara": [
+ {
+ "reason": "a",
+ "registration": "2021-10-07",
+ "observations": "Formerly Ienpw III",
+ "name": "redtara",
+ "deregistration": "2022-04-08",
+ "contact": "redxtara at gmail.com"
+ }
+ ],
+ "tris": [
+ {
+ "reason": "a",
+ "registration": "2021-11-12",
+ "name": "tris",
+ "deregistration": "2022-04-08",
+ "contact": "trstnbrdwg0 at gmail.com"
+ }
+ ],
+ "Zyborg": [
+ {
+ "reason": "a",
+ "registration": "2020-06-21",
+ "name": "Zyborg",
+ "deregistration": "2020-11-20",
+ "contact": "zyborgmao at gmail.com"
+ }
+ ],
+ "favor": [
+ {
+ "reason": "v",
+ "registration": "<= 1995-11-7",
+ "name": "favor",
+ "deregistration": "1997-06-12",
+ "contact": "chess at watson.ibm.com"
+ }
+ ],
+ "Aspen": [
+ {
+ "reason": "w",
+ "registration": "2016-09-13",
+ "observations": "Formerly Aris",
+ "name": "Aspen",
+ "deregistration": "2022-04-08",
+ "contact": "thoughtsoflifeandlight17 at gmail.com"
+ },
+ {
+ "reason": "s",
+ "name": "Aspen",
+ "registration": "2022-11-07",
+ "contact": "thoughtsoflifeandlight17 at gmail.com"
+ }
+ ],
+ "Annabel": [
+ {
+ "reason": "v",
+ "registration": "1999-07-29",
+ "name": "Annabel",
+ "deregistration": "1999-10-01",
+ "contact": "lenore at sdf.lonestar.org"
+ },
+ {
+ "reason": "v",
+ "registration": "2001-05-16",
+ "name": "Annabel",
+ "deregistration": "2001-05-31",
+ "contact": "lenore at sdf.lonestar.org"
+ }
+ ],
+ "Pat": [
+ {
+ "reason": "a",
+ "registration": "2021-07-23",
+ "name": "Pat",
+ "deregistration": "2022-02-22",
+ "contact": "zettels_traum at tutanota.com"
+ }
+ ],
+ "Telna": [
+ {
+ "reason": "v",
+ "registration": "2021-06-14",
+ "observations": "Formerly Telnaior",
+ "name": "Telna",
+ "deregistration": "2021-10-26",
+ "contact": "agoratelna at iprimus.com.au"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-10-18",
+ "name": "Telnaior",
+ "deregistration": "2014-05-06",
+ "contact": "JDGA at iinet.net.au"
+ },
+ {
+ "reason": "a",
+ "name": "Telnaior",
+ "registration": "2019-01-15",
+ "contact": "jdga at iinet.net.au"
+ },
+ {
+ "reason": "w",
+ "registration": "2019-01-29",
+ "name": "Telnaior",
+ "deregistration": "2019-01-29",
+ "contact": "jdga at iinet.net.au"
+ },
+ {
+ "reason": "a",
+ "registration": "2019-01-29",
+ "name": "Telnaior",
+ "deregistration": "2019-09-22",
+ "contact": "jdga at iinet.net.au"
+ },
+ {
+ "reason": "a",
+ "registration": "2020-03-21",
+ "name": "Telnaior",
+ "deregistration": "2020-11-29",
+ "contact": "JDGA at iinet.net.au"
+ }
+ ],
+ "Jumble": [
+ {
+ "reason": "a",
+ "registration": "2021-03-21",
+ "name": "Jumble",
+ "deregistration": "2021-10-22",
+ "contact": "notajumbleofnumbers at gmail.com"
+ }
+ ],
+ "Schrodinger's Cat": [
+ {
+ "reason": "a",
+ "registration": "2008-06-12",
+ "name": "Schrodinger's Cat",
+ "deregistration": "2008-10-24",
+ "contact": "schrodingers.katana at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2008-11-17",
+ "name": "Schrodinger's Cat",
+ "deregistration": "2009-11-17",
+ "contact": "schrodingers.katana at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-09-15",
+ "name": "Schrodinger's Cat",
+ "deregistration": "2014-05-06",
+ "contact": "agora at lesidhetree.com"
+ }
+ ],
+ "Murphy": [
+ {
+ "reason": "v",
+ "registration": "< 1996-01-23",
+ "name": "Murphy",
+ "deregistration": "2007-09-24",
+ "contact": "emurphy42 at socal.rr.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2007-10-27",
+ "name": "Murphy",
+ "deregistration": "2017-11-17",
+ "contact": "emurphy42 at zoho.com"
+ },
+ {
+ "reason": "s",
+ "registration": "2017-12-17",
+ "observations": "Previously emurphy42 at zoho.com",
+ "name": "Murphy",
+ "deregistration": "",
+ "contact": "murphy.agora at gmail.com"
+ }
+ ],
+ "neil": [
+ {
+ "reason": "a",
+ "registration": "2001-06-24",
+ "name": "neil",
+ "deregistration": "2003-03-02",
+ "contact": "neil at s-z.org"
+ }
+ ],
+ "Pineapple P": [
+ {
+ "reason": "a",
+ "registration": "2007-02-26",
+ "name": "Pineapple P",
+ "deregistration": "2009-02-16",
+ "contact": "pineapple at fysh.org"
+ }
+ ],
+ "Human Point Eight": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Eight",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Florw": [
+ {
+ "reason": "a",
+ "registration": "2011-04-13",
+ "name": "Florw",
+ "deregistration": "2011-07-31",
+ "contact": "florwx at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2012-03-17",
+ "name": "Florw",
+ "deregistration": "2012-10-19",
+ "contact": "florwx at gmail.com"
+ }
+ ],
+ "lee": [
+ {
+ "reason": "v",
+ "registration": "1998-07-18",
+ "name": "lee",
+ "deregistration": "1999-02-08",
+ "contact": "lee at pyrzqxgl.org"
+ },
+ {
+ "reason": "u",
+ "registration": "1999-06-04",
+ "name": "lee",
+ "deregistration": "2000-09-02",
+ "contact": "lee at pyrzqxgl.org"
+ },
+ {
+ "reason": "u",
+ "registration": "2000-12-13",
+ "name": "lee",
+ "deregistration": "2001-07-08",
+ "contact": "lee at pyrzqxgl.org"
+ }
+ ],
+ "Joe [57]": [
+ {
+ "reason": "a",
+ "registration": "2021-01-19",
+ "observations": "Slam_Joe_Jr_Supreme",
+ "name": "Joe [57]",
+ "deregistration": "2021-08-24",
+ "contact": "arran.soule at gmail.com"
+ }
+ ],
+ "Human Point Ten": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Ten",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "thespyguy": [
+ {
+ "reason": "a",
+ "registration": "2009-05-19",
+ "name": "thespyguy",
+ "deregistration": "2009-09-27",
+ "contact": "thespyguy at gmail.com"
+ }
+ ],
+ "Ubercrow": [
+ {
+ "reason": "a",
+ "registration": "2021-01-11",
+ "name": "Ubercrow",
+ "deregistration": "2021-08-24",
+ "contact": "unicationsmith2009 at gmail.com"
+ }
+ ],
+ "gazebo_dude": [
+ {
+ "reason": "v",
+ "registration": "2005-03-12",
+ "name": "gazebo_dude",
+ "deregistration": "2005-04-11",
+ "contact": "no.spoon.neo at gmail.com"
+ }
+ ],
+ "Jeremy": [
+ {
+ "reason": "a",
+ "registration": "2008-01-28",
+ "name": "Jeremy",
+ "deregistration": "2008-06-20",
+ "contact": "koojeremy at gmail.com"
+ }
+ ],
+ "Shy Owl": [
+ {
+ "reason": "a",
+ "registration": "2020-11-11",
+ "name": "Shy Owl",
+ "deregistration": "2021-05-01",
+ "contact": "shy.owlman at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2021-10-03",
+ "name": "Shy Owl",
+ "deregistration": "2021-11-03",
+ "contact": "shy.owlman at gmail.com"
+ },
+ {
+ "reason": "s",
+ "name": "Shy Owl",
+ "registration": "2022-10-07",
+ "contact": "iamashyowl at proton.me"
+ }
+ ],
+ "Tcbapo": [
+ {
+ "reason": "a",
+ "registration": "2020-01-28",
+ "name": "Tcbapo",
+ "deregistration": "2020-07-12",
+ "contact": "tcbapoagora at gmail.com"
+ }
+ ],
+ "Baron von Vaderham": [
+ {
+ "reason": "a",
+ "registration": "2019-02-04",
+ "name": "Baron von Vaderham",
+ "deregistration": "2020-11-29",
+ "contact": "davidseeber at outlook.com"
+ }
+ ],
+ "Marc Slager": [
+ {
+ "reason": "u",
+ "registration": "1995-11-22",
+ "name": "Marc Slager",
+ "deregistration": "1995-12",
+ "contact": ""
+ }
+ ],
+ "root": [
+ {
+ "reason": "v",
+ "registration": "2001-05-13",
+ "name": "root",
+ "deregistration": "2006-12-18",
+ "contact": "kellyia at udel.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2007-05-22",
+ "name": "root",
+ "deregistration": "2009-01-26",
+ "contact": "ian.g.kelly at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-03-27",
+ "name": "root",
+ "deregistration": "2009-05-26",
+ "contact": "ian.g.kelly at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-06-29",
+ "name": "root",
+ "deregistration": "2011-06-29",
+ "contact": "ian.g.kelly at gmail.com"
+ }
+ ],
+ "Charles": [
+ {
+ "reason": "d",
+ "registration": "2016-07-11",
+ "name": "Charles",
+ "deregistration": "2017-05-31",
+ "contact": "charles.w.walker at gmail.com"
+ }
+ ],
+ "Protection Racket": [
+ {
+ "reason": "p",
+ "registration": "2008-06-23",
+ "name": "Protection Racket",
+ "deregistration": "2009-02-22",
+ "contact": "c/o BobTHJ"
+ }
+ ],
+ "ais523": [
+ {
+ "reason": "v",
+ "registration": "2008-04-28",
+ "name": "ais523",
+ "deregistration": "2011-02-04",
+ "contact": "ais523 at bham.ac.uk"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-03-20",
+ "observations": "also callforjudgement at yahoo.co.uk",
+ "name": "ais523",
+ "deregistration": "2017-09-23",
+ "contact": "ais523 at alumni.bham.ac.uk"
+ },
+ {
+ "reason": "s",
+ "name": "ais523",
+ "registration": "2021-06-08",
+ "contact": "callforjudgement at yahoo.co.uk"
+ }
+ ],
+ "D. Margaux": [
+ {
+ "reason": "a",
+ "registration": "2018-08-25",
+ "observations": "Also known as D Margaux.",
+ "name": "D. Margaux",
+ "deregistration": "2020-11-29",
+ "contact": "dmargaux000 at gmail.com"
+ }
+ ],
+ "Shelvacu": [
+ {
+ "reason": "a",
+ "registration": "2020-08-08",
+ "observations": "Also known as Shel.",
+ "name": "Shelvacu",
+ "deregistration": "2020-11-20",
+ "contact": "agora at shelvacu.com"
+ }
+ ],
+ "Stuart": [
+ {
+ "reason": "v",
+ "registration": "2001-02-24",
+ "name": "Stuart",
+ "deregistration": "2001-04-26",
+ "contact": "stuart.presnell at bristol.ac.uk"
+ }
+ ],
+ "Tweedledee": [
+ {
+ "reason": "e",
+ "registration": "2012-02-16",
+ "name": "Tweedledee",
+ "deregistration": "2012-02-22",
+ "contact": "c/o G."
+ },
+ {
+ "reason": "e",
+ "registration": "2013-01-28",
+ "name": "Tweedledee",
+ "deregistration": "2013-04-20",
+ "contact": "?"
+ }
+ ],
+ "Tyler": [
+ {
+ "reason": "a",
+ "registration": "2020-06-06",
+ "name": "Tyler",
+ "deregistration": "2020-11-20",
+ "contact": "tylermeady at gmail.com"
+ }
+ ],
+ "twg": [
+ {
+ "reason": "a",
+ "registration": "2018-05-24",
+ "name": "twg",
+ "deregistration": "2020-12-27",
+ "contact": "me at timon.red"
+ }
+ ],
+ "Human Point Thirteen": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Thirteen",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Eritivus": [
+ {
+ "reason": "r",
+ "registration": "2014-10-11",
+ "name": "Eritivus",
+ "deregistration": "11 2014-10",
+ "contact": "eritivus at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2014-10-19",
+ "name": "Eritivus",
+ "deregistration": "2014-12-16",
+ "contact": "eritivus at gmail.com"
+ }
+ ],
+ "R. Lee (55 times)": [
+ {
+ "reason": "x",
+ "registration": "2020-06-30",
+ "observations": "(The previous two lines represent 56 total deregistrations of R. Lee. / Later changed to SarahEstrange0 at gmail.com.",
+ "name": "R. Lee (55 times)",
+ "deregistration": "2020-06-30",
+ "contact": "edwardostrange at gmail.com"
+ }
+ ],
+ "Bögtil": [
+ {
+ "reason": "v",
+ "registration": "2020-05-22",
+ "name": "Bögtil",
+ "deregistration": "2020-06-20",
+ "contact": "stefan.fjellander at gmail.com"
+ }
+ ],
+ "Cap'n": [
+ {
+ "reason": "a",
+ "registration": "2022-08-15",
+ "name": "Cap'n",
+ "deregistration": "2023-01-20",
+ "contact": "acadia_but_real at protonmail.com"
+ }
+ ],
+ "Jacob Arduino": [
+ {
+ "reason": "a",
+ "registration": "2018-11-12",
+ "name": "Jacob Arduino",
+ "deregistration": "2019-11-19",
+ "contact": "jacobarduino at gmail.com"
+ }
+ ],
+ "teucer": [
+ {
+ "reason": "a",
+ "registration": "2009-06-04",
+ "name": "teucer",
+ "deregistration": "2009-11-14",
+ "contact": "teucer at pobox.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-08-05",
+ "name": "teucer",
+ "deregistration": "2014-02-12",
+ "contact": "teucer at pobox.com"
+ }
+ ],
+ "Corona": [
+ {
+ "reason": "a",
+ "registration": "2017-11-17",
+ "name": "Corona",
+ "deregistration": "2019-08-24",
+ "contact": "liliumalbum.agora at gmail.com"
+ }
+ ],
+ "ehird": [
+ {
+ "reason": "k",
+ "registration": "2008-05-08",
+ "name": "ehird",
+ "deregistration": "2008-06-24",
+ "contact": "penguinofthegods at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2008-08-09",
+ "name": "ehird",
+ "deregistration": "2009-01-26",
+ "contact": "penguinofthegods at googlemail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2009-02-26",
+ "name": "ehird",
+ "deregistration": "2011-10-14",
+ "contact": "penguinofthegods at googlemail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-12-05",
+ "name": "ehird",
+ "deregistration": "2012-02-28",
+ "contact": "penguinofthegods at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2012-04-09",
+ "name": "ehird",
+ "deregistration": "2012-09-28",
+ "contact": "penguinofthegods at googlemail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-01-29",
+ "name": "ehird",
+ "deregistration": "2014-02-12",
+ "contact": "penguinofthegods at gmail.com"
+ }
+ ],
+ "Chuck": [
+ {
+ "reason": "a",
+ "registration": "1993-09-01",
+ "name": "Chuck",
+ "deregistration": "2001-06-08",
+ "contact": "games_na at chuckcarroll.org"
+ }
+ ],
+ "Normish Partnership 2": [
+ {
+ "reason": "d",
+ "registration": "2008-08-12",
+ "name": "Normish Partnership 2",
+ "deregistration": "2010-01-17",
+ "contact": "root at normish.org"
+ }
+ ],
+ "Tarhalindur": [
+ {
+ "reason": "a",
+ "registration": "2018-10-31",
+ "name": "Tarhalindur",
+ "deregistration": "2019-07-13",
+ "contact": "ahzin23 at icstudents.org"
+ }
+ ],
+ "pokes": [
+ {
+ "reason": "a",
+ "registration": "2017-12-11",
+ "name": "pokes",
+ "deregistration": "2019-02-03",
+ "contact": "pokes at botnoise.org"
+ }
+ ],
+ "ProofTechnique": [
+ {
+ "reason": "d",
+ "registration": "2017-09-23",
+ "name": "ProofTechnique",
+ "deregistration": "2017-11-16",
+ "contact": "jhenahan at me.com"
+ }
+ ],
+ "Machiavelli": [
+ {
+ "reason": "v",
+ "registration": "2009-09-01",
+ "name": "Machiavelli",
+ "deregistration": "2012-02-29",
+ "contact": "swettt at mail.gvsu.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2012-04-25",
+ "name": "Machiavelli",
+ "deregistration": "2013-08-25",
+ "contact": "swettt at mail.gvsu.edu"
+ }
+ ],
+ "Blob": [
+ {
+ "reason": "u",
+ "registration": "1996-01-06",
+ "name": "Blob",
+ "deregistration": "1996-03-31",
+ "contact": "malcolmr at cse.unsw.edu.au"
+ },
+ {
+ "reason": "u",
+ "registration": "1996-11",
+ "name": "Blob",
+ "deregistration": "<=1997-11-20",
+ "contact": "malcolmr at cse.unsw.edu.au"
+ },
+ {
+ "reason": "u",
+ "registration": "1997-11-20",
+ "name": "Blob",
+ "deregistration": "2001-09-10",
+ "contact": "malcolmr at cse.unsw.edu.au"
+ },
+ {
+ "reason": "a",
+ "registration": "2003-01-21",
+ "name": "Blob",
+ "deregistration": "2004-02-22",
+ "contact": "malcolmr at cse.unsw.edu.au"
+ }
+ ],
+ "Peter": [
+ {
+ "reason": "p",
+ "registration": "2006-12-24",
+ "name": "Peter",
+ "deregistration": "2007-05-31",
+ "contact": "civilianjones at gmail.com"
+ }
+ ],
+ "Syllepsis": [
+ {
+ "reason": "a",
+ "registration": "2001-02-05",
+ "name": "Syllepsis",
+ "deregistration": "2002-09-30",
+ "contact": "agora at syllepsis.org"
+ }
+ ],
+ "Einstein": [
+ {
+ "reason": "u",
+ "name": "Einstein",
+ "registration": "1995-10",
+ "contact": ""
+ }
+ ],
+ "天火狐": [
+ {
+ "reason": "a",
+ "registration": "2016-11-06",
+ "observations": "Alternative/transliteration: Tenhigitsune",
+ "name": "天火狐",
+ "deregistration": "2019-02-03",
+ "contact": "draconicdarkness at gmail.com"
+ }
+ ],
+ "else...if": [
+ {
+ "reason": "u",
+ "registration": "1996-07-30",
+ "observations": "aka Henry",
+ "name": "else...if",
+ "deregistration": "1996-08-21",
+ "contact": "htowsner at stanford.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "2000-04-15",
+ "observations": "aka Henry",
+ "name": "else...if",
+ "deregistration": "2000-05-21",
+ "contact": "htowsner at stanford.edu"
+ }
+ ],
+ "Brian Greer": [
+ {
+ "reason": "u",
+ "name": "Brian Greer",
+ "registration": "1995-08",
+ "contact": ""
+ }
+ ],
+ "nix": [
+ {
+ "reason": "v",
+ "registration": "2019-07-14",
+ "observations": "known as nichdel, nch, then later (in 2020) nix",
+ "name": "nch",
+ "deregistration": "2019-07-25",
+ "contact": "nichdel at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-08-14",
+ "name": "nichdel",
+ "deregistration": "2014-05-06",
+ "contact": "nichdel at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2014-10-15",
+ "name": "nichdel",
+ "deregistration": "2015-04-06",
+ "contact": "nichdel at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2015-12-01",
+ "name": "nichdel",
+ "deregistration": "2017-05-29",
+ "contact": "nichdel at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2017-06-29",
+ "observations": "known as nichdel, nch, then later (in 2020) nix",
+ "name": "nichdel",
+ "deregistration": "2019-05-24",
+ "contact": "nichdel at gmail.com"
+ },
+ {
+ "reason": "s",
+ "name": "nix",
+ "registration": "2019-10-18",
+ "contact": "nixagora at protonmail.com"
+ },
+ {
+ "reason": "w",
+ "registration": "2022-08-29",
+ "name": "nix",
+ "deregistration": "2019-10-18",
+ "contact": "nixagora at protonmail.com"
+ },
+ {
+ "reason": "s",
+ "name": "nix",
+ "registration": "2022-10-09",
+ "contact": "agora at nullarch.com"
+ }
+ ],
+ "Pavitra": [
+ {
+ "reason": "a",
+ "registration": "2007-08-10",
+ "name": "Pavitra",
+ "deregistration": "2007-12-20",
+ "contact": "celestialcognition at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2008-01-25",
+ "name": "Pavitra",
+ "deregistration": "2010-04-14",
+ "contact": "celestialcognition at gmail.com"
+ }
+ ],
+ "Sprocklem": [
+ {
+ "reason": "d",
+ "registration": "2013-10-19",
+ "name": "Sprocklem",
+ "deregistration": "2017-09-10",
+ "contact": "sprocklem at gmail.com"
+ }
+ ],
+ "Dave Bowen": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Dave Bowen",
+ "deregistration": "unknown",
+ "contact": "david.bowen at cray.com"
+ },
+ {
+ "reason": "u",
+ "registration": "<=1995-01-10",
+ "name": "Dave Bowen",
+ "deregistration": "1996-02-21",
+ "contact": "david.bowen at cray.com"
+ }
+ ],
+ "Proglet": [
+ {
+ "reason": "a",
+ "registration": "1998-11-09",
+ "name": "Proglet",
+ "deregistration": "1999-01-15",
+ "contact": "proglet at usa.net"
+ }
+ ],
+ "Arufonsu": [
+ {
+ "reason": "v",
+ "registration": "2013-12-15",
+ "name": "Arufonsu",
+ "deregistration": "29 2013-12",
+ "contact": "swettt at mail.gvsu.edu"
+ }
+ ],
+ "Vlad": [
+ {
+ "reason": "a?",
+ "registration": "1995-11-14",
+ "name": "Vlad",
+ "deregistration": "1996-01-01",
+ "contact": "c647100 at showme.missouri.edu"
+ },
+ {
+ "reason": "u",
+ "registration": "1996-01",
+ "name": "Vlad",
+ "deregistration": "1996-02-21",
+ "contact": "c647100 at showme.missouri.edu"
+ },
+ {
+ "reason": "v",
+ "registration": "1999-01-28",
+ "name": "Vlad",
+ "deregistration": "1999-06-20",
+ "contact": "c647100 at showme.missouri.edu"
+ }
+ ],
+ "Ouri": [
+ {
+ "reason": "a",
+ "registration": "2018-04-03",
+ "name": "Ouri",
+ "deregistration": "2018-10-16",
+ "contact": "ouri.poupko at gmail.com"
+ }
+ ],
+ "IBA": [
+ {
+ "reason": "d",
+ "registration": "2009-08-21",
+ "name": "IBA",
+ "deregistration": "2010-03-02",
+ "contact": "c/o comex?"
+ }
+ ],
+ "Cuddlebeam": [
+ {
+ "reason": "v",
+ "registration": "2017-05-20",
+ "name": "Cuddlebeam",
+ "deregistration": "2017-07-21",
+ "contact": "cuddlebeam at googlemail.com"
+ }
+ ],
+ "stadjer": [
+ {
+ "reason": "d",
+ "registration": "2015-03-23",
+ "name": "stadjer",
+ "deregistration": "2015-08-10",
+ "contact": "stadjernomic at gmail.com"
+ }
+ ],
+ "Warrigal, the": [
+ {
+ "reason": "d",
+ "registration": "2015-04-25",
+ "observations": "previously Alfonso Machiavelli, the Warrigal",
+ "name": "Warrigal, the",
+ "deregistration": "2017-05-31",
+ "contact": "tannerswett at gmail.com"
+ }
+ ],
+ "modulus": [
+ {
+ "reason": "a",
+ "registration": "2009-04-22",
+ "name": "modulus",
+ "deregistration": "2009-08-24",
+ "contact": "david at miradoiro.com"
+ }
+ ],
+ "Tekneek": [
+ {
+ "reason": "d",
+ "name": "Tekneek",
+ "registration": "2017-05-31",
+ "contact": "tekgora at theglycerintekneek.com2015-06-12"
+ }
+ ],
+ "Tiger Jr.": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Tiger Jr.",
+ "deregistration": "2009-06-18",
+ "contact": "c/o Tiger"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Tiger Jr.",
+ "deregistration": "2009-07-10",
+ "contact": "c/o Tiger?"
+ }
+ ],
+ "ais523's imaginary friend": [
+ {
+ "reason": "e",
+ "registration": "2012-06-29",
+ "name": "ais523's imaginary friend",
+ "deregistration": "2013-04-20",
+ "contact": "?"
+ }
+ ],
+ "Phoenix": [
+ {
+ "reason": "a",
+ "registration": "2009-12-17",
+ "name": "Phoenix",
+ "deregistration": "2010-06-15",
+ "contact": "benuphoenix2 at gmail.com"
+ }
+ ],
+ "Trigon": [
+ {
+ "reason": "a",
+ "registration": "2017-09-24",
+ "name": "Trigon",
+ "deregistration": "2022-10-31",
+ "contact": "reuben.staley at gmail.com"
+ }
+ ],
+ "Madrid": [
+ {
+ "reason": "s",
+ "name": "Madrid",
+ "registration": "2017-08-25",
+ "contact": "cuddlebeam at gmail.com"
+ },
+ {
+ "reason": "b",
+ "registration": "2022-09-11",
+ "name": "Madrid",
+ "deregistration": "2017-08-25",
+ "contact": "cuddlebeam at gmail.com"
+ }
+ ],
+ "William Eisenburg": [
+ {
+ "reason": "a",
+ "registration": "2013-08-14",
+ "name": "William Eisenburg",
+ "deregistration": "2014-05-06",
+ "contact": "william.eisenberg at gmail.com"
+ }
+ ],
+ "Gaelan Steele": [
+ {
+ "reason": "d",
+ "registration": "2015-05-27",
+ "name": "Gaelan Steele",
+ "deregistration": "2015-08-10",
+ "contact": "gbs at canishe.com"
+ }
+ ],
+ "ironiridis": [
+ {
+ "reason": "v",
+ "registration": "2015-05-01",
+ "name": "ironiridis",
+ "deregistration": "2015-07-29",
+ "contact": "ironiridis at gmail.com"
+ }
+ ],
+ "elJefe": [
+ {
+ "reason": "u",
+ "name": "elJefe",
+ "registration": "1995-11-22",
+ "contact": "eljefe at eastpac.com"
+ },
+ {
+ "reason": "v",
+ "registration": "1996-01",
+ "name": "elJefe",
+ "deregistration": "2000-04-16",
+ "contact": "eljefe at eastpac.com"
+ }
+ ],
+ "Sherlock": [
+ {
+ "reason": "v",
+ "registration": "1998-01-16",
+ "name": "Sherlock",
+ "deregistration": "1998-05-14",
+ "contact": "jfry77 at yahoo.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2000-01-31",
+ "name": "Sherlock",
+ "deregistration": "2000-07-25",
+ "contact": "jfry77 at yahoo.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2003-01-29",
+ "name": "Sherlock",
+ "deregistration": "2005-06-21",
+ "contact": "jfry77 at yahoo.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2006-02-04",
+ "name": "Sherlock",
+ "deregistration": "2007-05-14",
+ "contact": "jfry77 at yahoo.com"
+ }
+ ],
+ "Caste8a": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8a",
+ "deregistration": "2009-06-18",
+ "contact": "c/o C-walker"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8a",
+ "deregistration": "2009-07-10",
+ "contact": "c/o C-walker?"
+ }
+ ],
+ "Liberonscien": [
+ {
+ "reason": "a",
+ "registration": "2014-04-23",
+ "observations": "also x1122334455",
+ "name": "Liberonscien",
+ "deregistration": "2014-07-22",
+ "contact": "x1122334455 at Writing.Com"
+ }
+ ],
+ "Pascal": [
+ {
+ "reason": "u",
+ "registration": "1995",
+ "name": "Pascal",
+ "deregistration": "1995-08",
+ "contact": "jreed at waun.tdsnet.com"
+ },
+ {
+ "reason": "u",
+ "registration": "1995-11-15",
+ "name": "Pascal",
+ "deregistration": "1996-01-21",
+ "contact": "jreed at waun.tdsnet.com"
+ }
+ ],
+ "Shredder": [
+ {
+ "reason": "a",
+ "registration": "2014-01-30",
+ "name": "Shredder",
+ "deregistration": "2014-05-06",
+ "contact": "geoff at geoffschmidt.com"
+ }
+ ],
+ "cmealerjr": [
+ {
+ "reason": "a",
+ "registration": "2009-01-26",
+ "name": "cmealerjr",
+ "deregistration": "2009-06-05",
+ "contact": "cdm014 at gmail.com"
+ }
+ ],
+ "Philomory": [
+ {
+ "reason": "a",
+ "registration": "2013-10-18",
+ "name": "Philomory",
+ "deregistration": "2014-05-06",
+ "contact": "philomory at gmail.com"
+ }
+ ],
+ "Ludwig": [
+ {
+ "reason": "a",
+ "registration": "2013-04-08",
+ "name": "Ludwig",
+ "deregistration": "2014-05-06",
+ "contact": "tysger.nomic at gmail.com"
+ }
+ ],
+ "Sam (disputed)": [
+ {
+ "reason": "v",
+ "registration": "2013-08-14",
+ "name": "Sam (disputed)",
+ "deregistration": "2014-03-26",
+ "contact": "c/o Walker"
+ }
+ ],
+ "Primo Corporation": [
+ {
+ "reason": "d",
+ "registration": "2007-05-11",
+ "name": "Primo Corporation",
+ "deregistration": "2007-10-23",
+ "contact": "c/o BobTHJ"
+ }
+ ],
+ "Darth Cliche": [
+ {
+ "reason": "v",
+ "registration": "2009-07-24",
+ "name": "Darth Cliche",
+ "deregistration": "2009-07-31",
+ "contact": "kennercat at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2009-09-22",
+ "name": "Darth Cliche",
+ "deregistration": "2010-01-26",
+ "contact": "kennercat at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2010-12-16",
+ "name": "Darth Cliche",
+ "deregistration": "2011-04-06",
+ "contact": "kennercat at gmail.com"
+ }
+ ],
+ "Michael": [
+ {
+ "reason": "v",
+ "registration": "1993-06-29",
+ "name": "Michael",
+ "deregistration": "2007-03-13",
+ "contact": "michael.norrish at nicta.com.au"
+ }
+ ],
+ "Sheeple": [
+ {
+ "reason": "v",
+ "registration": "2008-11-16",
+ "name": "Sheeple",
+ "deregistration": "2008-12-01",
+ "contact": "c/o ehird"
+ }
+ ],
+ "kcnomic": [
+ {
+ "reason": "a",
+ "registration": "2012-03-25",
+ "name": "kcnomic",
+ "deregistration": "2012-10-19",
+ "contact": "kcnomic at gmail.com"
+ }
+ ],
+ "justine sells": [
+ {
+ "reason": "a",
+ "registration": "2012-06-18",
+ "name": "justine sells",
+ "deregistration": "2013-04-07",
+ "contact": "dudebabe3 at gmail.com"
+ }
+ ],
+ "Tweedledum": [
+ {
+ "reason": "e",
+ "registration": "2012-02-16",
+ "name": "Tweedledum",
+ "deregistration": "2012-02-22",
+ "contact": "c/o G."
+ },
+ {
+ "reason": "e",
+ "registration": "2013-01-28",
+ "name": "Tweedledum",
+ "deregistration": "2013-04-20",
+ "contact": "?"
+ }
+ ],
+ "moonroof": [
+ {
+ "reason": "a",
+ "registration": "2012-07-13",
+ "name": "moonroof",
+ "deregistration": "2013-05-21",
+ "contact": "roycewoodspam at gmail.com"
+ }
+ ],
+ "BuckyBot": [
+ {
+ "reason": "e",
+ "registration": "2012-03-31",
+ "name": "BuckyBot",
+ "deregistration": "2013-04-20",
+ "contact": "c/o Bucky spambait3 at yahoo.com"
+ }
+ ],
+ "Phlogistique": [
+ {
+ "reason": "a",
+ "registration": "2012-06-25",
+ "name": "Phlogistique",
+ "deregistration": "2013-05-21",
+ "contact": "rnoe.rubinstein at gmail.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2014-01-30",
+ "name": "Phlogistique",
+ "deregistration": "2014-02-28",
+ "contact": "noe.rubinstein at gmail.com"
+ }
+ ],
+ "Morendil": [
+ {
+ "reason": "u",
+ "registration": "<= 1995-10-11",
+ "name": "Morendil",
+ "deregistration": "<=1997-11-03",
+ "contact": "laurent at netdive.com"
+ },
+ {
+ "reason": "l",
+ "registration": "1997-11-03",
+ "name": "Morendil",
+ "deregistration": "1999-06-28",
+ "contact": "laurent at netdive.com"
+ }
+ ],
+ "Larry Smithmier": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Larry Smithmier",
+ "deregistration": "unknown",
+ "contact": "smithmierjr at uamont.edu"
+ }
+ ],
+ "Human Point Four": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Four",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Kelly": [
+ {
+ "reason": "w",
+ "registration": "1995-11-07",
+ "observations": "The date for Kelly's Writ was recorded as 1995-09-17, and the correct one is unknown",
+ "name": "Kelly",
+ "deregistration": "1995-09-17",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "registration": "1995-11-17",
+ "name": "Kelly",
+ "deregistration": "1996-07-29",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "registration": "1996-10",
+ "name": "Kelly",
+ "deregistration": "1996-11-07",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "registration": "1997-03",
+ "name": "Kelly",
+ "deregistration": "1999-04-12",
+ "contact": ""
+ },
+ {
+ "reason": "u",
+ "registration": "2000-05-01",
+ "name": "Kelly",
+ "deregistration": "2001-07-10",
+ "contact": "kmartin at pyrzqxgl.org"
+ }
+ ],
+ "Hooloovoo": [
+ {
+ "reason": "u",
+ "registration": "2001-02-22",
+ "name": "Hooloovoo",
+ "deregistration": "2001-10-08",
+ "contact": "mhui421 at hotmail.com"
+ }
+ ],
+ "wutold": [
+ {
+ "reason": "u",
+ "registration": "1995-10",
+ "name": "wutold",
+ "deregistration": "1995-10",
+ "contact": ""
+ }
+ ],
+ "Cainech": [
+ {
+ "reason": "a",
+ "registration": "2004-02-09",
+ "name": "Cainech",
+ "deregistration": "2004-06-19",
+ "contact": "cainech at hotmail.com"
+ }
+ ],
+ "Matt": [
+ {
+ "reason": "u",
+ "name": "Matt",
+ "registration": "<= 1994-04-05",
+ "contact": "pardo at gibbs.oit.unc.edu"
+ }
+ ],
+ "Vir": [
+ {
+ "reason": "a",
+ "registration": "1997-09-4",
+ "name": "Vir",
+ "deregistration": "1998-01-13",
+ "contact": "eer at nwu.edu"
+ }
+ ],
+ "davidcjackman": [
+ {
+ "reason": "a",
+ "registration": "2012-01-02",
+ "name": "davidcjackman",
+ "deregistration": "2012-10-19",
+ "contact": "davidcjackman at gmail.com"
+ }
+ ],
+ "avpx": [
+ {
+ "reason": "a",
+ "registration": "2007-11-24",
+ "name": "avpx",
+ "deregistration": "2008-10-24",
+ "contact": "nickv111 at gmail.com"
+ }
+ ],
+ "Ienpw III": [
+ {
+ "reason": "a",
+ "registration": "2009-08-04",
+ "name": "Ienpw III",
+ "deregistration": "2010-06-15",
+ "contact": "james.m.beirne at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2010-10-02",
+ "name": "Ienpw III",
+ "deregistration": "2011-03-08",
+ "contact": "james.m.beirne at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2013-05-14",
+ "name": "Ienpw III",
+ "deregistration": "2014-02-12",
+ "contact": "james.m.beirne at gmail.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2014-10-08",
+ "name": "Ienpw III",
+ "deregistration": "2015-08-10",
+ "contact": "james.m.beirne at gmail.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2017-05-21",
+ "name": "Ienpw III",
+ "deregistration": "2017-11-16",
+ "contact": "james.m.beirne at gmail.com"
+ }
+ ],
+ "Gustalff Zibrowski": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Gustalff Zibrowski",
+ "deregistration": "unknown",
+ "contact": "clarkc at cpsc.ucalgary.ca"
+ }
+ ],
+ "Harlequin": [
+ {
+ "reason": "u",
+ "registration": "1997-01",
+ "name": "Harlequin",
+ "deregistration": "1998-11-27",
+ "contact": "charlequin at yahoo.com"
+ },
+ {
+ "reason": "u",
+ "registration": "2000-01-10",
+ "name": "Harlequin",
+ "deregistration": "2001-08-20",
+ "contact": "charlequin at yahoo.com"
+ }
+ ],
+ "Ben Daniel": [
+ {
+ "reason": "a",
+ "registration": "2009-04-28",
+ "name": "Ben Daniel",
+ "deregistration": "2009-08-24",
+ "contact": "ben at bendaniel.us"
+ }
+ ],
+ "Bayushi": [
+ {
+ "reason": "a",
+ "registration": "2013-10-19",
+ "name": "Bayushi",
+ "deregistration": "2015-07-16",
+ "contact": "thelas.staloras at gmail.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2017-06-29",
+ "name": "Bayushi",
+ "deregistration": "2017-11-16",
+ "contact": "thelas.staloras at gmail.com"
+ }
+ ],
+ "Time Agent": [
+ {
+ "reason": "a",
+ "registration": "1998-01-16",
+ "name": "Time Agent",
+ "deregistration": "1998-04-16",
+ "contact": "dAndreasen at pctb.com"
+ }
+ ],
+ "Bank of Agora": [
+ {
+ "reason": "d",
+ "registration": "2008-04-14",
+ "name": "Bank of Agora",
+ "deregistration": "2008-06-29",
+ "contact": "c/o Ivan Hope CXXVII"
+ }
+ ],
+ "Elde": [
+ {
+ "reason": "u",
+ "registration": "<= 1997-04-16",
+ "name": "Elde",
+ "deregistration": "1997-10-04",
+ "contact": "elde at hurricane.net"
+ }
+ ],
+ "the Warrigal": [
+ {
+ "reason": "v",
+ "registration": "2014-08-05",
+ "name": "the Warrigal",
+ "deregistration": "2014-11-24",
+ "contact": "tannerswett at gmail.com"
+ }
+ ],
+ "Crito": [
+ {
+ "reason": "v",
+ "registration": "1997-02-19",
+ "name": "Crito",
+ "deregistration": "2002-05-29",
+ "contact": "dalbertz at mrb.state.ma.us"
+ }
+ ],
+ "scshunt": [
+ {
+ "reason": "v",
+ "registration": "2009-03-07",
+ "name": "scshunt",
+ "deregistration": "2011-01-26",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "v",
+ "registration": "2011-03-03",
+ "name": "scshunt",
+ "deregistration": "2013-01-12",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "r",
+ "registration": "2013-04-01",
+ "name": "scshunt",
+ "deregistration": "2013-04-30",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "r",
+ "registration": "2013-04-30",
+ "name": "scshunt",
+ "deregistration": "2013-05-06",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "r",
+ "registration": "2013-05-09",
+ "name": "scshunt",
+ "deregistration": "2013-05-12",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "r",
+ "registration": "2013-05-13",
+ "name": "scshunt",
+ "deregistration": "20 2013-05",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "r",
+ "registration": "2013-05-26",
+ "name": "scshunt",
+ "deregistration": "28 2013-05",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "v",
+ "registration": "2014-01-02",
+ "name": "scshunt",
+ "deregistration": "2014-08-22",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "v",
+ "registration": "2014-10-15",
+ "name": "scshunt",
+ "deregistration": "2015-04-06",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ },
+ {
+ "reason": "d",
+ "registration": "2015-04-23",
+ "name": "scshunt",
+ "deregistration": "2015-08-10",
+ "contact": "scshunt at csclub.uwaterloo.ca"
+ }
+ ],
+ "Steve": [
+ {
+ "reason": "a",
+ "registration": "1994-07-01",
+ "name": "Steve",
+ "deregistration": "2004-06-19",
+ "contact": "gardner at sng.its.monash.edu.au"
+ }
+ ],
+ "David": [
+ {
+ "reason": "u",
+ "registration": "2000-12-18",
+ "name": "David",
+ "deregistration": "2001-09-10",
+ "contact": "David.Dickens at pepperdine.edu"
+ }
+ ],
+ "TAL": [
+ {
+ "reason": "u",
+ "name": "TAL",
+ "registration": "1995-08",
+ "contact": "kunne at ipno.in2p3.fr"
+ }
+ ],
+ "Pilgore": [
+ {
+ "reason": "a",
+ "registration": "2022-08-15",
+ "name": "Pilgore",
+ "deregistration": "2023-01-20",
+ "contact": "drpilgore at gmail.com"
+ }
+ ],
+ "Craig": [
+ {
+ "reason": "a",
+ "registration": "2002-04-25",
+ "name": "Craig",
+ "deregistration": "2003-03-09",
+ "contact": "raganok at intrex.net"
+ },
+ {
+ "reason": "a",
+ "registration": "2009-01-03",
+ "name": "Craig",
+ "deregistration": "2009-04-19",
+ "contact": "teucer at pobox.com"
+ }
+ ],
+ "Human Point Eleven": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Eleven",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Sir Toby": [
+ {
+ "reason": "a",
+ "registration": "2002-02-03",
+ "name": "Sir Toby",
+ "deregistration": "2005-05-20",
+ "contact": "jjweston at kenny.sir-toby.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2008-09-10",
+ "name": "Sir Toby",
+ "deregistration": "2009-04-19",
+ "contact": "jjweston at gmail.com"
+ }
+ ],
+ "Novalis": [
+ {
+ "reason": "u",
+ "registration": "2000-02-14",
+ "name": "Novalis",
+ "deregistration": "2001-09-10",
+ "contact": "turnerd at reed.edu"
+ }
+ ],
+ "Razl": [
+ {
+ "reason": "-",
+ "registration": "2001-02-08",
+ "name": "Razl",
+ "deregistration": "2002-03-25",
+ "contact": "agora at peng.dyndns.org"
+ }
+ ],
+ "ehrid": [
+ {
+ "reason": "d",
+ "registration": "2008-06-09",
+ "name": "ehrid",
+ "deregistration": "2008-06-27",
+ "contact": "c/o ehird"
+ }
+ ],
+ "j": [
+ {
+ "reason": "a",
+ "registration": "2009-12-13",
+ "name": "j",
+ "deregistration": "2009-06-05",
+ "contact": "agora at jaycampbell.com"
+ }
+ ],
+ "Levi": [
+ {
+ "reason": "v",
+ "registration": "2007-03-07",
+ "name": "Levi",
+ "deregistration": "2008-02-17",
+ "contact": "levi.stephen at optusnet.com.au"
+ }
+ ],
+ "Human Point Two": [
+ {
+ "reason": "d",
+ "registration": "2007-04-29",
+ "name": "Human Point Two",
+ "deregistration": "2008-01-02",
+ "contact": "c/o OscarMeyr"
+ },
+ {
+ "reason": "d",
+ "registration": "2008-06-20",
+ "name": "Human Point Two",
+ "deregistration": "2009-05-26",
+ "contact": "quazienomic at gmail.com"
+ }
+ ],
+ "o": [
+ {
+ "reason": "a",
+ "registration": "2016-07-12",
+ "name": "o",
+ "deregistration": "2018-10-16",
+ "contact": "owen at grimoire.ca"
+ },
+ {
+ "reason": "a",
+ "registration": "2019-05-23",
+ "name": "o",
+ "deregistration": "2020-04-09",
+ "contact": "owen at grimoire.ca"
+ }
+ ],
+ "Zachary Watterson": [
+ {
+ "reason": "d",
+ "registration": "2017-03-26",
+ "observations": "also known as Gumball",
+ "name": "Zachary Watterson",
+ "deregistration": "2017-08-27",
+ "contact": "tannerswett at gmail.com"
+ }
+ ],
+ "Eric Scheirer": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Eric Scheirer",
+ "deregistration": "unknown",
+ "contact": "escheire at cim470.mitre.org"
+ }
+ ],
+ "Edmond Dantes": [
+ {
+ "reason": "a",
+ "registration": "2009-08-02",
+ "name": "Edmond Dantes",
+ "deregistration": "2009-11-17",
+ "contact": "dmarketdantes at gmail.com"
+ }
+ ],
+ "Macross": [
+ {
+ "reason": "v",
+ "registration": "1998-05-21",
+ "name": "Macross",
+ "deregistration": "1999-03-22",
+ "contact": "macross at bellatlantic.net"
+ }
+ ],
+ "Iammars": [
+ {
+ "reason": "a",
+ "registration": "2007-12-09",
+ "name": "Iammars",
+ "deregistration": "2008-10-02",
+ "contact": "iammars21 at gmail.com"
+ }
+ ],
+ "Duane": [
+ {
+ "reason": "u",
+ "registration": "<= 1994-04-05",
+ "name": "Duane",
+ "deregistration": "unknown",
+ "contact": "duanew at atlas.com"
+ }
+ ],
+ "Ivan Hope CXXVII": [
+ {
+ "reason": "k",
+ "registration": "2008-01-30",
+ "name": "Ivan Hope CXXVII",
+ "deregistration": "2008-07-14",
+ "contact": "ihope127 at gmail.com"
+ },
+ {
+ "reason": "k",
+ "registration": "2008-08-16",
+ "name": "Ivan Hope CXXVII",
+ "deregistration": "2008-10-07",
+ "contact": "ihope127 at gmail.com"
+ }
+ ],
+ "Jeffrey S.": [
+ {
+ "reason": "u",
+ "registration": "",
+ "name": "Jeffrey S.",
+ "deregistration": "1995-10-25",
+ "contact": ""
+ }
+ ],
+ "Caste8e": [
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8e",
+ "deregistration": "2009-06-18",
+ "contact": "c/o C-walker"
+ },
+ {
+ "reason": "d",
+ "registration": "2009-06-18",
+ "observations": "Questioned",
+ "name": "Caste8e",
+ "deregistration": "2009-07-10",
+ "contact": "c/o C-walker?"
+ }
+ ],
+ "Human Point Seven": [
+ {
+ "reason": "p",
+ "registration": "2007-05-14",
+ "name": "Human Point Seven",
+ "deregistration": "2007-05-23",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "t": [
+ {
+ "reason": "a",
+ "registration": "1999-10-14",
+ "name": "t",
+ "deregistration": "2005-01-05",
+ "contact": "scurra at iki.fi"
+ }
+ ],
+ "oklopol": [
+ {
+ "reason": "a",
+ "registration": "2008-10-07",
+ "name": "oklopol",
+ "deregistration": "2009-02-16",
+ "contact": "oklopol at gmail.com"
+ }
+ ],
+ "pikhq": [
+ {
+ "reason": "a",
+ "registration": "2007-09-16",
+ "name": "pikhq",
+ "deregistration": "2009-02-16",
+ "contact": "josiahw at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2009-03-10",
+ "name": "pikhq",
+ "deregistration": "2009-11-14",
+ "contact": "josiahw at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-10-21",
+ "name": "pikhq",
+ "deregistration": "19 2012-10",
+ "contact": "josiahw at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2019-10-20",
+ "name": "pikhq",
+ "deregistration": "2020-05-30",
+ "contact": "agora at ada.pikhq.com"
+ }
+ ],
+ "gwen": [
+ {
+ "reason": "a",
+ "registration": "2009-05-06",
+ "name": "gwen",
+ "deregistration": "2009-09-27",
+ "contact": "quazienomic at gmail.com"
+ }
+ ],
+ "AFO": [
+ {
+ "reason": "u",
+ "registration": "2007-09-17",
+ "name": "AFO",
+ "deregistration": "2009-02-11",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Ghost": [
+ {
+ "reason": "u",
+ "registration": "<= 1996-02-21",
+ "name": "Ghost",
+ "deregistration": "1996-03-25",
+ "contact": "labrown at dg-rtp.dg.com"
+ },
+ {
+ "reason": "v",
+ "registration": "2012-03-31",
+ "name": "Ghost",
+ "deregistration": "2012-03-31",
+ "contact": "spambait3 at yahoo.com"
+ }
+ ],
+ "Sgeo": [
+ {
+ "reason": "a",
+ "registration": "2008-06-27",
+ "name": "Sgeo",
+ "deregistration": "2011-07-31",
+ "contact": "sgeoster at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-10-21",
+ "name": "Sgeo",
+ "deregistration": "2014-02-12",
+ "contact": "sgeoster at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2022-01-28",
+ "name": "Sgeo",
+ "deregistration": "2022-06-04",
+ "contact": "sgeoster at gmail.com"
+ }
+ ],
+ "Susan": [
+ {
+ "reason": "u",
+ "name": "Susan",
+ "registration": "1995",
+ "contact": ""
+ }
+ ],
+ "Cecilius": [
+ {
+ "reason": "v",
+ "registration": "2002-12-04",
+ "name": "Cecilius",
+ "deregistration": "2003-08-10",
+ "contact": "cecilius at vivace.homelinux.net"
+ },
+ {
+ "reason": "v",
+ "registration": "2006-12-22",
+ "name": "Cecilius",
+ "deregistration": "2007-03-23",
+ "contact": "organist at gmail.com"
+ }
+ ],
+ "SaltWater": [
+ {
+ "reason": "u",
+ "name": "SaltWater",
+ "registration": "1995-12-11",
+ "contact": "gorgonne at becker.u.washington.edu"
+ }
+ ],
+ "Aenet": [
+ {
+ "reason": "a",
+ "registration": "2021-03-16",
+ "name": "Aenet",
+ "deregistration": "2021-08-24",
+ "contact": "aidananthony14 at gmail.com"
+ }
+ ],
+ "cctoide": [
+ {
+ "reason": "a",
+ "registration": "2008-06-30",
+ "name": "cctoide",
+ "deregistration": "2008-11-16",
+ "contact": "cctoide at gmail.com"
+ }
+ ],
+ "Number Two": [
+ {
+ "reason": "e",
+ "registration": "2012-02-17",
+ "name": "Number Two",
+ "deregistration": "2012-06-05",
+ "contact": "c/o Murphy"
+ }
+ ],
+ "Sonny Jim": [
+ {
+ "reason": "a",
+ "registration": "2012-01-23",
+ "name": "Sonny Jim",
+ "deregistration": "2012-10-19",
+ "contact": "sonny_jim at studiofrobel.com"
+ }
+ ],
+ "OscarMeyr": [
+ {
+ "reason": "a",
+ "registration": "2002-03-04",
+ "name": "OscarMeyr",
+ "deregistration": "2009-09-27",
+ "contact": "ke3om at verizon.net"
+ },
+ {
+ "reason": "v",
+ "registration": "2013-07-09",
+ "name": "OscarMeyr",
+ "deregistration": "2014-01-28",
+ "contact": "ben.dov.schultz at gmail.com"
+ }
+ ],
+ "Blaise": [
+ {
+ "reason": "-",
+ "registration": "2001-09-10",
+ "name": "Blaise",
+ "deregistration": "2002-03-11",
+ "contact": "bmbuck at 14850.com"
+ }
+ ],
+ "the Cayman Islands": [
+ {
+ "reason": "e",
+ "registration": "2012-05-04",
+ "name": "the Cayman Islands",
+ "deregistration": "2013-01-22",
+ "contact": "c/o G."
+ }
+ ],
+ "zeckalpha": [
+ {
+ "reason": "a",
+ "registration": "2009-05-30",
+ "name": "zeckalpha",
+ "deregistration": "2009-11-14",
+ "contact": "zeckalpha at gmail.com"
+ }
+ ],
+ "People's Bank of Agora": [
+ {
+ "reason": "a",
+ "registration": "2008-10-14",
+ "name": "People's Bank of Agora",
+ "deregistration": "2009-11-14",
+ "contact": "c/o PNP?"
+ }
+ ],
+ "JonRock": [
+ {
+ "reason": "u",
+ "registration": "",
+ "name": "JonRock",
+ "deregistration": "1995-10",
+ "contact": ""
+ }
+ ],
+ "Doug": [
+ {
+ "reason": "u",
+ "registration": "<= 1996-02-02",
+ "name": "Doug",
+ "deregistration": "1996-04-13",
+ "contact": "dchatham at utk.edu"
+ }
+ ],
+ "P3-P100": [
+ {
+ "reason": "w",
+ "registration": "2008-11-06",
+ "observations": "Each P deregistered in a Writ of FAGE on the recorded date",
+ "name": "P3-P100",
+ "deregistration": "2008-11-06",
+ "contact": "c/o comex"
+ }
+ ],
+ "BobTHJ": [
+ {
+ "reason": "v",
+ "registration": "2007-04-30",
+ "name": "BobTHJ",
+ "deregistration": "2007-10-01",
+ "contact": "pidgepot at gmail.com"
+ },
+ {
+ "reason": "w",
+ "registration": "2007-11-05",
+ "name": "BobTHJ",
+ "deregistration": "2008-01-16",
+ "contact": "pidgepot at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2008-01-17",
+ "name": "BobTHJ",
+ "deregistration": "2010-08-01",
+ "contact": "pidgepot at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2010-12-28",
+ "name": "BobTHJ",
+ "deregistration": "2011-06-26",
+ "contact": "pidgepot at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-07-13",
+ "name": "BobTHJ",
+ "deregistration": "2011-12-08",
+ "contact": "pidgepot at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2012-06-03",
+ "name": "BobTHJ",
+ "deregistration": "2013-04-07",
+ "contact": "pidgepot at gmail.com"
+ }
+ ],
+ "woggle": [
+ {
+ "reason": "a",
+ "registration": "2007-12-23",
+ "name": "woggle",
+ "deregistration": "2010-01-26",
+ "contact": "woggling at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2007-12-23",
+ "name": "woggle",
+ "deregistration": "2010-10-11",
+ "contact": "woggling at gmail.com"
+ },
+ {
+ "reason": "a",
+ "registration": "2011-05-30",
+ "name": "woggle",
+ "deregistration": "2012-10-19",
+ "contact": "woggling at gmail.com"
+ },
+ {
+ "reason": "d",
+ "registration": "2013-01-19",
+ "name": "woggle",
+ "deregistration": "2015-08-10",
+ "contact": "woggling at gmail.com"
+ }
+ ],
+ "L": [
+ {
+ "reason": "a",
+ "registration": "2018-09-20",
+ "name": "L",
+ "deregistration": "2019-08-24",
+ "contact": "prmcd16 at yahoo.com"
+ }
+ ],
+ "Epaeris": [
+ {
+ "reason": "a",
+ "registration": "2010-04-18",
+ "name": "Epaeris",
+ "deregistration": "2010-09-07",
+ "contact": "hermitchipmunk at gmail.com"
+ }
+ ],
+ "Vitor Gonçalves": [
+ {
+ "reason": "a",
+ "registration": "2022-07-23",
+ "name": "Vitor Gonçalves",
+ "deregistration": "2023-01-20",
+ "contact": "vitorg at tilde.team"
+ }
+ ],
+ "Riail": [
+ {
+ "reason": "v",
+ "registration": "2004-05-19",
+ "name": "Riail",
+ "deregistration": "2005-07-29",
+ "contact": "cpatti at gmail.com"
+ }
+ ],
+ "doopy": [
+ {
+ "reason": "a",
+ "registration": "2008-06-15",
+ "name": "doopy",
+ "deregistration": "2008-11-16",
+ "contact": "groberts80906 at gmail.com"
+ }
+ ],
+ "Gondolier": [
+ {
+ "reason": "a",
+ "registration": "2011-06-24",
+ "name": "Gondolier",
+ "deregistration": "2011-11-11",
+ "contact": "gondola43 at gmail.com"
+ }
+ ],
+ "Mr. Incredible": [
+ {
+ "reason": "v",
+ "registration": "2012-02-16",
+ "name": "Mr. Incredible",
+ "deregistration": "2012-02-17",
+ "contact": "c/o omd"
+ }
+ ],
+ "The Hanging Judge": [
+ {
+ "reason": "-",
+ "registration": "2007-05-22",
+ "name": "The Hanging Judge",
+ "deregistration": "2007-06-09",
+ "contact": "c/o Zefram and comex"
+ }
+ ],
+ "Livenomic Partn...": [
+ {
+ "reason": "d",
+ "registration": "2009-09-17",
+ "name": "Livenomic Partn...",
+ "deregistration": "2009-10-10",
+ "contact": "livenomic at nomictools.com"
+ }
+ ]
+}