Player module
This module manages player stats and online player count & list.
It is located at https://web-api.wynncraft.com/api/player
Player stats
Collection of endpoints to gather various data on a defined player:
- GET Player main stats
- GET Player full stats
- GET Player character list
- GET Player character data
- GET Player character ability map
WARNING
Keys in player responses are variable, and if their content is empty they will not be present.
e.g. A player is not online, then server will not be in the response.
Player main stats
GET .../player/<str:username/uuid> 2 minutes TTL
{
"username": str,
"online": bool,
"server": str,
"uuid": str,
"rank": str,
"rankBadge": str, # URL to the badge SVG in the Wynncraft CDN (only path)
"legacyRankColor": {
"main": str,
"sub": str
},
"shortenedRank": str,
"supportRank": str,
"firstJoin": str,
"lastJoin": str,
"playtime": int,
"guild": {
"name": str,
"prefix": str,
"rank": str,
"rankStars": str
},
"global_data": {
"totalLevels": int,
"killedMobs": int,
"chestsFound": int,
"dungeons": {
"total": int,
"list": {
"Dungeon Name": int # Number of total completions on all characters
[...]
}
},
"raids": {
"total": int,
"list": {
"Raid Name": int # Number of total completions on all characters
[...]
}
},
"completedQuests": int,
"pvp": {
"kills": int,
"deaths": int
}
},
"forumLink": {
"forumUsername": str,
"forumId": int,
"gameUsername": str
},
"ranking": {
"Ranking Type": int
[...]
}
}
{
"username": "olinus10",
"online": true,
"server": "WC3",
"uuid": "55e5c45e-432c-471e-8ae2-dbbf41dc9f69",
"rank": "Media",
"rankBadge": "nextgen/badges/rank_media.svg",
"legacyRankColor": {
"main": "#FF55FF",
"sub": "#AA00AA"
},
"supportRank": "champion",
"firstJoin": "2014-07-12T16:53:57.942000",
"lastJoin": "2023-09-28T09:42:20.455000",
"playtime": 5782,
"globalData": {
"totalLevels": 18026,
"killedMobs": 737816,
"chestsFound": 65705,
"dungeons": {
"total": 1554,
"list": {
"Skeleton": 55,
"Spider": 51,
"Animal": 38,
"Zombie": 35,
"Silverfish": 63,
"Ice": 1,
"Jungle": 2,
"Ice Barrows": 44,
"Corrupted Decrepit Sewers": 82,
"Fallen Factory": 26,
"Corrupted Sand-Swept Tomb": 261,
"Corrupted Lost Sanctuary": 55,
"Corrupted Undergrowth Ruins": 409,
"Eldritch Outlook": 22,
"Decrepit Sewers": 36,
"Undergrowth Ruins": 128,
"Galleon's Graveyard": 5,
"Sand-Swept Tomb": 30,
"Corrupted Infested Pit": 30,
"Corrupted Underworld Crypt": 96,
"Lost Sanctuary": 4,
"Infested Pit": 24,
"Corrupted Ice Barrows": 23,
"Underworld Crypt": 34
}
},
"raids": {
"total": 138,
"list": {
"The Canyon Colossus": 57,
"Nest of the Grootslangs": 21,
"The Nameless Anomaly": 39,
"Orphion's Nexus of Light": 21
}
},
"completedQuests": 864,
"pvp": {
"kills": 19,
"deaths": 16
}
},
"forumLink": {
"forumUsername": "olinus10",
"forumId": 29852,
"gameUsername": "olinus10"
},
"ranking": {
"huntedLevel": 3,
"miningLevel": 8,
"cookingLevel": 6,
"farmingLevel": 7,
"fishingLevel": 8,
"jewelingLevel": 5,
"scribingLevel": 8,
"alchemismLevel": 7,
"armouringLevel": 6,
"tailoringLevel": 6,
"combatSoloLevel": 9,
"mergedSoloLevel": 9,
"woodcuttingLevel": 7,
"woodworkingLevel": 5,
"combatGlobalLevel": 2,
"mergedGlobalLevel": 1,
"weaponsmithingLevel": 5,
"professionsSoloLevel": 9,
"professionsGlobalLevel": 1
}
}
Player full stats
GET .../player/<str:username/uuid>?fullResult=True 2 minutes TTL
Show responses
{
"username": str,
"online": bool,
"server": str,
"uuid": str,
"rank": str,
"rankBadge": str, # URL to the badge SVG in the Wynncraft CDN (only path)
"legacyRankColor": {
"main": str,
"sub": str
},
"shortenedRank": str,
"supportRank": str,
"firstJoin": str,
"lastJoin": str,
"playtime": int,
"guild": {
"name": str,
"prefix": str,
"rank": str,
"rankStars": str
},
"global_data": {
"totalLevels": int,
"killedMobs": int,
"chestsFound": int,
"dungeons": {
"total": int,
"list": {
"Dungeon Name": int # Number of total completions on all characters
[...]
}
},
"raids": {
"total": int,
"list": {
"Raid Name": int # Number of total completions on all characters
[...]
}
},
"completedQuests": int,
"pvp": {
"kills": int,
"deaths": int
}
},
"forumLink": {
"forumUsername": str,
"forumId": int,
"gameUsername": str
},
"ranking": {
"Ranking Type": int
[...]
},
"characters": {
"characterUuid": {
"type": str,
"nickname": str,
"level": int,
"xp": int,
"xpPercent": int,
"playtime": int,
"mobsKilled": int,
"chestsFound": int,
"blocksWalked": int,
"itemsIdentified": int,
"logins": int,
"death": int,
"discoveries": int,
"pvp": {
"kills": int,
"deaths": int,
},
"gamemode": [
"hunted",
"hardcore",
[...]
],
"skillPoints": {
"Strength": int,
"Dexterity": int,
"Intelligence": int,
"Defense": int,
"Agility": int
},
"professions": {
"Fishing": {
"level": int,
"xpPercent": int
},
"Mining": {
"level": int,
"xpPercent": int
},
# [...]
},
"dungeons": {
"total": int,
"list": {
"Dungeon Name": int
# [...]
}
},
"raids": {
"total": int,
"list": {
"Raid Name": int
# [...]
}
},
"quests": [
"Quest Name",
[...]
],
},
# [...]
}
}
{
"username": "olinus10",
"online": true,
"server": "WC3",
"uuid": "55e5c45e-432c-471e-8ae2-dbbf41dc9f69",
"rank": "Media",
"rankBadge": "nextgen/badges/rank_media.svg",
"legacyRankColor": {
"main": "#FF55FF",
"sub": "#AA00AA"
},
"supportRank": "champion",
"firstJoin": "2014-07-12T16:53:57.942000",
"lastJoin": "2023-09-28T09:42:20.455000",
"playtime": 5782,
"globalData": {
"totalLevels": 18026,
"killedMobs": 737816,
"chestsFound": 65705,
"dungeons": {
"total": 1554,
"list": {
"Skeleton": 55,
"Spider": 51,
"Animal": 38,
"Zombie": 35,
"Silverfish": 63,
"Ice": 1,
"Jungle": 2,
"Ice Barrows": 44,
"Corrupted Decrepit Sewers": 82,
"Fallen Factory": 26,
"Corrupted Sand-Swept Tomb": 261,
"Corrupted Lost Sanctuary": 55,
"Corrupted Undergrowth Ruins": 409,
"Eldritch Outlook": 22,
"Decrepit Sewers": 36,
"Undergrowth Ruins": 128,
"Galleon's Graveyard": 5,
"Sand-Swept Tomb": 30,
"Corrupted Infested Pit": 30,
"Corrupted Underworld Crypt": 96,
"Lost Sanctuary": 4,
"Infested Pit": 24,
"Corrupted Ice Barrows": 23,
"Underworld Crypt": 34
}
},
"raids": {
"total": 138,
"list": {
"The Canyon Colossus": 57,
"Nest of the Grootslangs": 21,
"The Nameless Anomaly": 39,
"Orphion's Nexus of Light": 21
}
},
"completedQuests": 864,
"pvp": {
"kills": 19,
"deaths": 16
}
},
"forumLink": {
"forumUsername": "olinus10",
"forumId": 29852,
"gameUsername": "olinus10"
},
"ranking": {
"huntedLevel": 3,
"miningLevel": 8,
"cookingLevel": 6,
"farmingLevel": 7,
"fishingLevel": 8,
"jewelingLevel": 5,
"scribingLevel": 8,
"alchemismLevel": 7,
"armouringLevel": 6,
"tailoringLevel": 6,
"combatSoloLevel": 9,
"mergedSoloLevel": 9,
"woodcuttingLevel": 7,
"woodworkingLevel": 5,
"combatGlobalLevel": 2,
"mergedGlobalLevel": 1,
"weaponsmithingLevel": 5,
"professionsSoloLevel": 9,
"professionsGlobalLevel": 1
},
"characters": {
"921d3d41-7250-4e42-acee-ab9041137af7": {
"type": "KNIGHT",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 132094584,
"xpPercent": 53,
"playtime": 762,
"mobsKilled": 77903,
"chestsFound": 3866,
"blocksWalked": -703370710,
"itemsIdentified": 37,
"logins": 3428,
"death": 471,
"discoveries": 543,
"pvp": {
"kills": 7,
"deaths": 9
},
"gamemode": [],
"skillPoints": {
"Strength": 64,
"Dexterity": 31,
"Intelligence": 30,
"Defense": 47,
"Agility": 28
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 100
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 90
},
"Jeweling": {
"level": 98,
"xpPercent": 93
},
"Alchemism": {
"level": 98,
"xpPercent": 82
},
"Cooking": {
"level": 98,
"xpPercent": 5
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 93
},
"Tailoring": {
"level": 98,
"xpPercent": 92
},
"Woodworking": {
"level": 98,
"xpPercent": 92
},
"Armouring": {
"level": 98,
"xpPercent": 91
}
},
"dungeons": {
"total": 121,
"list": {
"Skeleton": 34,
"Spider": 22,
"Animal": 12,
"Zombie": 11,
"Silverfish": 19,
"Ice": 1,
"Jungle": 2,
"Ice Barrows": 1,
"Corrupted Decrepit Sewers": 3,
"Fallen Factory": 1,
"Corrupted Sand-Swept Tomb": 8,
"Corrupted Lost Sanctuary": 2,
"Corrupted Undergrowth Ruins": 3,
"Eldritch Outlook": 1,
"Decrepit Sewers": 1
}
},
"quests": [
"Point of No Return",
"The Hero of Gavel",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"Fantastic Voyage",
"Enter the Dojo",
"The Envoy Part II",
"The Hidden City",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Realm of Light IV - Finding the Light",
"Haven Antiquity",
"WynnExcavation Site D",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"The Order of the Grook",
"Zhight Island",
"WynnExcavation Site C",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Pine Logs II",
"Mini-Quest - Gather Rice IV",
"Mini-Quest - Gather Sorghum",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV"
]
},
"41925a91-069d-46b9-87ce-248b10378758": {
"type": "NINJA",
"nickname": "Wynn Guider Olinus",
"level": 106,
"xp": 6484240,
"xpPercent": 100,
"playtime": 428,
"mobsKilled": 59230,
"chestsFound": 1723,
"blocksWalked": 841416752,
"itemsIdentified": 0,
"logins": 2364,
"death": 371,
"discoveries": 533,
"pvp": {
"kills": 1,
"deaths": 2
},
"gamemode": [],
"skillPoints": {
"Strength": 12,
"Dexterity": 95,
"Intelligence": 6,
"Defense": 60
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 99
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 92
},
"Jeweling": {
"level": 98,
"xpPercent": 91
},
"Alchemism": {
"level": 98,
"xpPercent": 93
},
"Cooking": {
"level": 98,
"xpPercent": 91
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 92
},
"Tailoring": {
"level": 98,
"xpPercent": 93
},
"Woodworking": {
"level": 98,
"xpPercent": 92
},
"Armouring": {
"level": 98,
"xpPercent": 91
}
},
"dungeons": {
"total": 263,
"list": {
"Skeleton": 2,
"Spider": 2,
"Animal": 2,
"Zombie": 2,
"Silverfish": 30,
"Corrupted Decrepit Sewers": 30,
"Undergrowth Ruins": 44,
"Galleon's Graveyard": 3,
"Corrupted Lost Sanctuary": 4,
"Corrupted Undergrowth Ruins": 86,
"Eldritch Outlook": 1,
"Sand-Swept Tomb": 1,
"Corrupted Infested Pit": 4,
"Corrupted Underworld Crypt": 52
}
},
"quests": [
"Point of No Return",
"The Hero of Gavel",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"Fantastic Voyage",
"Enter the Dojo",
"The Envoy Part II",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Realm of Light IV - Finding the Light",
"Haven Antiquity",
"WynnExcavation Site D",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"The Order of the Grook",
"WynnExcavation Site C",
"Zhight Island",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Copper",
"Mini-Quest - Gather Wheat",
"Mini-Quest - Gather Trout",
"Mini-Quest - Gather Icefish II",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV",
"Mini-Quest - Gather Sorghum"
]
},
"3900286f-0b5a-4f02-adcd-207978e133f7": {
"type": "MAGE",
"nickname": "Wynn Guider Olinus",
"level": 106,
"xp": 9843216,
"xpPercent": 100,
"playtime": 497,
"mobsKilled": 82240,
"chestsFound": 30669,
"blocksWalked": 2122349920,
"itemsIdentified": 0,
"logins": 2541,
"death": 242,
"discoveries": 580,
"pvp": {
"kills": 1,
"deaths": 1
},
"gamemode": [],
"skillPoints": {
"Strength": 25,
"Dexterity": 20,
"Intelligence": 54,
"Defense": 49,
"Agility": 20
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 99
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 93
},
"Jeweling": {
"level": 98,
"xpPercent": 91
},
"Alchemism": {
"level": 98,
"xpPercent": 91
},
"Cooking": {
"level": 98,
"xpPercent": 91
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 93
},
"Tailoring": {
"level": 98,
"xpPercent": 93
},
"Woodworking": {
"level": 98,
"xpPercent": 91
},
"Armouring": {
"level": 98,
"xpPercent": 91
}
},
"dungeons": {
"total": 298,
"list": {
"Skeleton": 19,
"Spider": 27,
"Animal": 24,
"Zombie": 22,
"Silverfish": 14,
"Lost Sanctuary": 2,
"Ice Barrows": 2,
"Undergrowth Ruins": 7,
"Infested Pit": 9,
"Sand-Swept Tomb": 5,
"Corrupted Sand-Swept Tomb": 70,
"Corrupted Lost Sanctuary": 24,
"Corrupted Infested Pit": 1,
"Fallen Factory": 5,
"Corrupted Decrepit Sewers": 5,
"Corrupted Ice Barrows": 2,
"Eldritch Outlook": 1,
"Corrupted Undergrowth Ruins": 51,
"Decrepit Sewers": 8
}
},
"quests": [
"Point of No Return",
"Mini-Quest - Slay Dragonlings",
"Mini-Quest - Slay Angels",
"Mini-Quest - Slay Conures",
"One Thousand Meters Under",
"Mini-Quest - Slay Astrochelys Manis",
"Dwarves and Doguns Part IV",
"Mini-Quest - Slay Ifrits",
"Dwarves and Doguns Part III",
"Mini-Quest - Slay Azers",
"Dwarves and Doguns Part II",
"Mini-Quest - Slay Frosted Guards & Cryostone Golems",
"Dwarves and Doguns Part I",
"Mini-Quest - Slay Magma Entities",
"Fantastic Voyage",
"Mini-Quest - Slay Pernix Monkeys",
"The Envoy Part II",
"Enter the Dojo",
"Mini-Quest - Slay Ailuropodas",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"Mini-Quest - Slay Robots",
"The Envoy Part I",
"Mini-Quest - Slay Jinkos",
"From the Bottom",
"The Qira Hive",
"Mini-Quest - Slay Hobgoblins",
"Fallen Delivery",
"Mini-Quest - Slay Felrocs",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Mini-Quest - Slay Myconids",
"Haven Antiquity",
"WynnExcavation Site D",
"Mini-Quest - Slay Dead Villagers",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Mini-Quest - Slay Idols",
"Lost in the Jungle",
"Mini-Quest - Slay Wraiths & Phantasms",
"WynnExcavation Site C",
"Zhight Island",
"Mini-Quest - Slay Lizardmen",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Mini-Quest - Slay Slimes",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Clearing the Camps",
"Canyon Condor",
"Tribal Aggression",
"WynnExcavation Site A",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Wheat",
"Mini-Quest - Gather Gudgeon",
"Mini-Quest - Gather Trout",
"Mini-Quest - Gather Icefish II",
"Mini-Quest - Gather Sorghum",
"Mini-Quest - Gather Molten Eel IV",
"Mini-Quest - Gather Molten Eel III"
]
},
"8d4303bd-feec-4157-b6e2-a566c6a51c59": {
"type": "WARRIOR",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 46935137,
"xpPercent": 19,
"playtime": 365,
"mobsKilled": 36403,
"chestsFound": 607,
"blocksWalked": -867335851,
"itemsIdentified": 0,
"logins": 1970,
"death": 133,
"discoveries": 557,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 65,
"Dexterity": 78,
"Defense": 54,
"Agility": 3
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 0
},
"Woodcutting": {
"level": 98,
"xpPercent": 0
},
"Mining": {
"level": 98,
"xpPercent": 0
},
"Farming": {
"level": 98,
"xpPercent": 0
},
"Scribing": {
"level": 98,
"xpPercent": 3
},
"Jeweling": {
"level": 98,
"xpPercent": 0
},
"Alchemism": {
"level": 98,
"xpPercent": 1
},
"Cooking": {
"level": 98,
"xpPercent": 4
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 2
},
"Tailoring": {
"level": 98,
"xpPercent": 0
},
"Woodworking": {
"level": 96,
"xpPercent": 26
},
"Armouring": {
"level": 98,
"xpPercent": 5
}
},
"dungeons": {
"total": 70,
"list": {
"Decrepit Sewers": 6,
"Infested Pit": 1,
"Underworld Crypt": 5,
"Sand-Swept Tomb": 3,
"Ice Barrows": 3,
"Corrupted Sand-Swept Tomb": 38,
"Eldritch Outlook": 2,
"Corrupted Undergrowth Ruins": 3,
"Undergrowth Ruins": 1,
"Lost Sanctuary": 1,
"Corrupted Decrepit Sewers": 2,
"Galleon's Graveyard": 1,
"Corrupted Infested Pit": 1,
"Corrupted Lost Sanctuary": 1,
"Corrupted Underworld Crypt": 1,
"Corrupted Ice Barrows": 1
}
},
"quests": [
"Point of No Return",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"The Feathers Fly Part II",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"The Feathers Fly Part I",
"Fantastic Voyage",
"Enter the Dojo",
"The Envoy Part II",
"The Hidden City",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Realm of Light IV - Finding the Light",
"WynnExcavation Site D",
"Haven Antiquity",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"The Order of the Grook",
"WynnExcavation Site C",
"Zhight Island",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Tempo Town Trouble",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Carp II",
"Mini-Quest - Gather Spruce Logs",
"Mini-Quest - Gather Spruce Logs II",
"Mini-Quest - Gather Iron II",
"Mini-Quest - Gather Iron",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV"
]
},
"07bcc5d3-756a-4989-ba66-a01c69b6813c": {
"type": "MAGE",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 36996118,
"xpPercent": 15,
"playtime": 356,
"mobsKilled": 24743,
"chestsFound": 872,
"blocksWalked": 1522067988,
"itemsIdentified": 0,
"logins": 1718,
"death": 124,
"discoveries": 580,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 10,
"Dexterity": 82,
"Intelligence": 10,
"Defense": 41
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 1
},
"Woodcutting": {
"level": 99,
"xpPercent": 0
},
"Mining": {
"level": 98,
"xpPercent": 21
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 3
},
"Jeweling": {
"level": 98,
"xpPercent": 4
},
"Alchemism": {
"level": 98,
"xpPercent": 4
},
"Cooking": {
"level": 98,
"xpPercent": 1
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 0
},
"Tailoring": {
"level": 98,
"xpPercent": 1
},
"Woodworking": {
"level": 91,
"xpPercent": 2
},
"Armouring": {
"level": 98,
"xpPercent": 2
}
},
"dungeons": {
"total": 64,
"list": {
"Decrepit Sewers": 4,
"Ice Barrows": 7,
"Undergrowth Ruins": 5,
"Corrupted Sand-Swept Tomb": 38,
"Corrupted Undergrowth Ruins": 8,
"Eldritch Outlook": 1,
"Corrupted Decrepit Sewers": 1
}
},
"quests": [
"Point of No Return",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"Fantastic Voyage",
"The Envoy Part II",
"Enter the Dojo",
"Mixed Feelings",
"Beyond the Grave",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"WynnExcavation Site D",
"Haven Antiquity",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"The Order of the Grook",
"Zhight Island",
"WynnExcavation Site C",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Corrupted Betrayal",
"Crop Failure",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Clearing the Camps",
"Canyon Condor",
"Tribal Aggression",
"WynnExcavation Site A",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Icefish II",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV"
]
},
"dfced062-6e4b-48cc-9923-666ee022c706": {
"type": "ASSASSIN",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 120746831,
"xpPercent": 49,
"playtime": 520,
"mobsKilled": 53285,
"chestsFound": 1042,
"blocksWalked": -1017119999,
"itemsIdentified": 0,
"logins": 2258,
"death": 450,
"discoveries": 611,
"pvp": {
"kills": 9,
"deaths": 4
},
"gamemode": [],
"skillPoints": {
"Strength": 45,
"Intelligence": 50,
"Defense": 55
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 99
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 92
},
"Jeweling": {
"level": 98,
"xpPercent": 93
},
"Alchemism": {
"level": 98,
"xpPercent": 95
},
"Cooking": {
"level": 98,
"xpPercent": 93
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 91
},
"Tailoring": {
"level": 98,
"xpPercent": 92
},
"Woodworking": {
"level": 98,
"xpPercent": 92
},
"Armouring": {
"level": 98,
"xpPercent": 93
}
},
"dungeons": {
"total": 284,
"list": {
"Ice Barrows": 28,
"Corrupted Sand-Swept Tomb": 67,
"Eldritch Outlook": 2,
"Corrupted Undergrowth Ruins": 19,
"Undergrowth Ruins": 62,
"Fallen Factory": 4,
"Decrepit Sewers": 12,
"Infested Pit": 9,
"Underworld Crypt": 13,
"Sand-Swept Tomb": 17,
"Corrupted Decrepit Sewers": 17,
"Corrupted Infested Pit": 12,
"Corrupted Underworld Crypt": 11,
"Corrupted Lost Sanctuary": 6,
"Corrupted Ice Barrows": 5
}
},
"quests": [
"Point of No Return",
"Mini-Quest - Slay Dragonlings",
"Mini-Quest - Slay Conures",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"The Feathers Fly Part II",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"The Feathers Fly Part I",
"Fantastic Voyage",
"Enter the Dojo",
"The Envoy Part II",
"The Hidden City",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Forbidden Prison",
"Realm of Light IV - Finding the Light",
"WynnExcavation Site D",
"Haven Antiquity",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"The Order of the Grook",
"WynnExcavation Site C",
"Zhight Island",
"The Shadow of the Beast",
"Death Whistle",
"Master Piece",
"Corrupted Betrayal",
"Crop Failure",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Kingdom of Sand",
"Meaningful Holiday",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Copper",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV"
]
},
"93f49800-cfa0-4b60-865f-221161d7fc81": {
"type": "HUNTER",
"nickname": "The Guide",
"level": 106,
"xp": 136131718,
"xpPercent": 100,
"playtime": 1036,
"mobsKilled": 169316,
"chestsFound": 21196,
"blocksWalked": 1907106551,
"itemsIdentified": 0,
"logins": 3876,
"death": 423,
"discoveries": 706,
"pvp": {
"kills": 1,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 15,
"Dexterity": 15,
"Intelligence": 47,
"Defense": 68,
"Agility": 55
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 99
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 93
},
"Jeweling": {
"level": 98,
"xpPercent": 92
},
"Alchemism": {
"level": 98,
"xpPercent": 90
},
"Cooking": {
"level": 98,
"xpPercent": 94
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 93
},
"Tailoring": {
"level": 98,
"xpPercent": 92
},
"Woodworking": {
"level": 98,
"xpPercent": 93
},
"Armouring": {
"level": 98,
"xpPercent": 94
}
},
"dungeons": {
"total": 183,
"list": {
"Corrupted Sand-Swept Tomb": 32,
"Infested Pit": 3,
"Fallen Factory": 7,
"Underworld Crypt": 5,
"Sand-Swept Tomb": 4,
"Corrupted Ice Barrows": 7,
"Decrepit Sewers": 3,
"Ice Barrows": 1,
"Eldritch Outlook": 3,
"Corrupted Undergrowth Ruins": 101,
"Corrupted Decrepit Sewers": 3,
"Corrupted Infested Pit": 2,
"Corrupted Underworld Crypt": 4,
"Corrupted Lost Sanctuary": 6,
"Undergrowth Ruins": 2
}
},
"quests": [
"Point of No Return",
"Mini-Quest - Slay Angels",
"Mini-Quest - Slay Conures",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Mini-Quest - Slay Azers",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"Fantastic Voyage",
"Enter the Dojo",
"The Envoy Part II",
"The Hidden City",
"Mixed Feelings",
"Beyond the Grave",
"Desperate Metal",
"The Envoy Part I",
"Mini-Quest - Slay Jinkos",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Realm of Light IV - Finding the Light",
"Haven Antiquity",
"WynnExcavation Site D",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"Mini-Quest - Slay Wraiths & Phantasms",
"The Order of the Grook",
"WynnExcavation Site C",
"Zhight Island",
"The Shadow of the Beast",
"Death Whistle",
"Master Piece",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"Blazing Retribution",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Clearing the Camps",
"Canyon Condor",
"Tribal Aggression",
"WynnExcavation Site A",
"Mini-Quest - Slay Coyotes",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"Mini-Quest - Slay Scarabs",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Mini-Quest - Slay Skeletons",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Mini-Quest - Slay Mooshrooms",
"Tunnel Trouble",
"Mini-Quest - Slay Spiders",
"Poisoning the Pest",
"Mini-Quest - Gather Hops",
"Mini-Quest - Gather Hops II",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV",
"Mini-Quest - Gather Sorghum"
]
},
"ea61c825-f2a6-4752-86c1-d28525896d57": {
"type": "MAGE",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 23496170,
"xpPercent": 9,
"playtime": 397,
"mobsKilled": 26638,
"chestsFound": 1837,
"blocksWalked": -1896429982,
"itemsIdentified": 0,
"logins": 1366,
"death": 64,
"discoveries": 557,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 12,
"Dexterity": 95,
"Intelligence": 12,
"Defense": 51
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 0
},
"Woodcutting": {
"level": 98,
"xpPercent": 0
},
"Mining": {
"level": 98,
"xpPercent": 0
},
"Farming": {
"level": 98,
"xpPercent": 1
},
"Scribing": {
"level": 98,
"xpPercent": 2
},
"Jeweling": {
"level": 98,
"xpPercent": 2
},
"Alchemism": {
"level": 99,
"xpPercent": 1
},
"Cooking": {
"level": 98,
"xpPercent": 7
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 1
},
"Tailoring": {
"level": 98,
"xpPercent": 1
},
"Woodworking": {
"level": 94,
"xpPercent": 6
},
"Armouring": {
"level": 98,
"xpPercent": 2
}
},
"dungeons": {
"total": 19,
"list": {
"Infested Pit": 1,
"Corrupted Underworld Crypt": 4,
"Corrupted Undergrowth Ruins": 13,
"Eldritch Outlook": 1
}
},
"quests": [
"Point of No Return",
"Mini-Quest - Slay Dragonlings",
"Mini-Quest - Slay Angels",
"Mini-Quest - Slay Conures",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"The Feathers Fly Part I",
"Fantastic Voyage",
"Mini-Quest - Slay Pernix Monkeys",
"The Envoy Part II",
"Enter the Dojo",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"Mini-Quest - Slay Robots",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Realm of Light IV - Finding the Light",
"WynnExcavation Site D",
"Haven Antiquity",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"Mini-Quest - Slay Wraiths & Phantasms",
"The Order of the Grook",
"WynnExcavation Site C",
"Zhight Island",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Corrupted Betrayal",
"Crop Failure",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Kingdom of Sand",
"Meaningful Holiday",
"A Sandy Scandal",
"Green Gloop",
"Mini-Quest - Slay Scarabs",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Mini-Quest - Slay Skeletons",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Mini-Quest - Slay Mooshrooms",
"Tunnel Trouble",
"Mini-Quest - Slay Spiders",
"Poisoning the Pest",
"Mini-Quest - Gather Salmon II",
"Mini-Quest - Gather Icefish",
"Mini-Quest - Gather Icefish II",
"Mini-Quest - Gather Jungle Logs II",
"Mini-Quest - Gather Jungle Logs",
"Mini-Quest - Gather Piranhas II",
"Mini-Quest - Gather Koi III",
"Mini-Quest - Gather Kanderstone III",
"Mini-Quest - Gather Copper",
"Mini-Quest - Gather Rice",
"Mini-Quest - Gather Rice II",
"Mini-Quest - Gather Rice III",
"Mini-Quest - Gather Rice IV",
"Mini-Quest - Gather Pine Logs II",
"Mini-Quest - Gather Pine Logs",
"Mini-Quest - Gather Diamonds III",
"Mini-Quest - Gather Diamonds II",
"Mini-Quest - Gather Diamonds",
"Mini-Quest - Gather Bass II",
"Mini-Quest - Gather Bass III",
"Mini-Quest - Gather Sorghum",
"Mini-Quest - Gather Molten Eel IV",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Ore III"
]
},
"98b95cce-00c2-4174-86a9-62623bb6911c": {
"type": "ARCHER",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 66747660,
"xpPercent": 27,
"playtime": 495,
"mobsKilled": 62566,
"chestsFound": 1518,
"blocksWalked": -2066557702,
"itemsIdentified": 0,
"logins": 1928,
"death": 294,
"discoveries": 608,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 33,
"Dexterity": 44,
"Intelligence": 61,
"Defense": 29,
"Agility": 33
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 99
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 1
},
"Jeweling": {
"level": 98,
"xpPercent": 0
},
"Alchemism": {
"level": 98,
"xpPercent": 4
},
"Cooking": {
"level": 98,
"xpPercent": 1
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 4
},
"Tailoring": {
"level": 98,
"xpPercent": 4
},
"Woodworking": {
"level": 98,
"xpPercent": 2
},
"Armouring": {
"level": 98,
"xpPercent": 0
}
},
"dungeons": {
"total": 82,
"list": {
"Lost Sanctuary": 1,
"Underworld Crypt": 5,
"Corrupted Infested Pit": 4,
"Corrupted Underworld Crypt": 7,
"Fallen Factory": 5,
"Galleon's Graveyard": 1,
"Corrupted Undergrowth Ruins": 41,
"Ice Barrows": 2,
"Undergrowth Ruins": 7,
"Eldritch Outlook": 7,
"Decrepit Sewers": 1,
"Infested Pit": 1
}
},
"quests": [
"Point of No Return",
"The Hero of Gavel",
"Mini-Quest - Slay Angels",
"Mini-Quest - Slay Conures",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Mini-Quest - Slay Ifrits",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Mini-Quest - Slay Frosted Guards & Cryostone Golems",
"Dwarves and Doguns Part I",
"Fantastic Voyage",
"Enter the Dojo",
"The Envoy Part II",
"Mixed Feelings",
"Beyond the Grave",
"Desperate Metal",
"Mini-Quest - Slay Robots",
"Mini-Quest - Slay Jinkos",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Forbidden Prison",
"Realm of Light IV - Finding the Light",
"Haven Antiquity",
"WynnExcavation Site D",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Mini-Quest - Slay Idols",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"Mini-Quest - Slay Wraiths & Phantasms",
"The Order of the Grook",
"Zhight Island",
"WynnExcavation Site C",
"The Shadow of the Beast",
"Death Whistle",
"Master Piece",
"Corrupted Betrayal",
"Crop Failure",
"The Maiden Tower",
"A Grave Mistake",
"Mini-Quest - Slay Slimes",
"Rise of the Quartron",
"WynnExcavation Site B",
"Blazing Retribution",
"Fate of the Fallen",
"UndericeÀ",
"Heart of Llevigar",
"Mini-Quest - Slay Creatures of Nesaak Forest",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Kingdom of Sand",
"Meaningful Holiday",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Tempo Town Trouble",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Lava Springs",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Wheat",
"Mini-Quest - Gather Gudgeon",
"Mini-Quest - Gather Copper",
"Mini-Quest - Gather Oak Logs",
"Mini-Quest - Gather Trout",
"Mini-Quest - Gather Sorghum",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV"
]
},
"c75412b6-3e0f-4876-bfe8-b1cc33266f22": {
"type": "SHAMAN",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 193220094,
"xpPercent": 78,
"playtime": 281,
"mobsKilled": 67335,
"chestsFound": 701,
"blocksWalked": -1974789132,
"itemsIdentified": 0,
"logins": 1250,
"death": 126,
"discoveries": 524,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 55,
"Dexterity": 30,
"Intelligence": 55,
"Agility": 60
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 99
},
"Woodcutting": {
"level": 98,
"xpPercent": 99
},
"Mining": {
"level": 98,
"xpPercent": 99
},
"Farming": {
"level": 98,
"xpPercent": 99
},
"Scribing": {
"level": 98,
"xpPercent": 92
},
"Jeweling": {
"level": 98,
"xpPercent": 90
},
"Alchemism": {
"level": 98,
"xpPercent": 94
},
"Cooking": {
"level": 98,
"xpPercent": 90
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 92
},
"Tailoring": {
"level": 98,
"xpPercent": 90
},
"Woodworking": {
"level": 98,
"xpPercent": 92
},
"Armouring": {
"level": 98,
"xpPercent": 91
}
},
"dungeons": {
"total": 126,
"list": {
"Corrupted Decrepit Sewers": 4,
"Corrupted Underworld Crypt": 14,
"Corrupted Sand-Swept Tomb": 7,
"Corrupted Lost Sanctuary": 7,
"Corrupted Undergrowth Ruins": 79,
"Corrupted Infested Pit": 3,
"Corrupted Ice Barrows": 7,
"Eldritch Outlook": 1,
"Fallen Factory": 4
}
},
"quests": [
"Point of No Return",
"The Hero of Gavel",
"One Thousand Meters Under",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"The Feathers Fly Part II",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"The Feathers Fly Part I",
"Fantastic Voyage",
"The Envoy Part II",
"Enter the Dojo",
"The Hidden City",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Forbidden Prison",
"Realm of Light IV - Finding the Light",
"WynnExcavation Site D",
"Haven Antiquity",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Realm of Light III - A Headless History",
"Lost in the Jungle",
"The Order of the Grook",
"Zhight Island",
"WynnExcavation Site C",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"Blazing Retribution",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Tempo Town Trouble",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Lava Springs",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Sorghum",
"Mini-Quest - Gather Molten Eel III",
"Mini-Quest - Gather Molten Eel IV"
]
},
"dedec40f-3cd9-486c-8cc6-131debfddfeb": {
"type": "SKYSEER",
"nickname": "Wynn Guider Olinus",
"level": 70,
"xp": 661833,
"xpPercent": 64,
"playtime": 119,
"mobsKilled": 7525,
"chestsFound": 256,
"blocksWalked": -1895893840,
"itemsIdentified": 0,
"logins": 568,
"death": 41,
"discoveries": 211,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [
"hunted"
],
"skillPoints": {
"Strength": 45,
"Intelligence": 25,
"Defense": 6,
"Agility": 21
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 13
},
"Woodcutting": {
"level": 98,
"xpPercent": 0
},
"Mining": {
"level": 98,
"xpPercent": 1
},
"Farming": {
"level": 98,
"xpPercent": 0
},
"Scribing": {
"level": 98,
"xpPercent": 1
},
"Jeweling": {
"level": 98,
"xpPercent": 1
},
"Alchemism": {
"level": 98,
"xpPercent": 2
},
"Cooking": {
"level": 98,
"xpPercent": 0
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 0
},
"Tailoring": {
"level": 98,
"xpPercent": 9
},
"Woodworking": {
"level": 98,
"xpPercent": 4
},
"Armouring": {
"level": 98,
"xpPercent": 0
}
},
"dungeons": {
"total": 1,
"list": {
"Underworld Crypt": 1
}
},
"quests": [
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"Mini-Quest - Slay Scarabs",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Mini-Quest - Slay Mooshrooms",
"Tunnel Trouble",
"Mini-Quest - Slay Spiders",
"Poisoning the Pest",
"Mini-Quest - Gather Gudgeon",
"Mini-Quest - Gather Copper",
"Mini-Quest - Gather Oak Logs",
"Mini-Quest - Gather Wheat",
"Mini-Quest - Gather Salmon II",
"Mini-Quest - Gather Pine Logs II"
]
},
"578569a6-915d-40c0-bede-8f9d0ad10245": {
"type": "SHAMAN",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 14205753,
"xpPercent": 6,
"playtime": 200,
"mobsKilled": 22779,
"chestsFound": 553,
"blocksWalked": -2059910573,
"itemsIdentified": 0,
"logins": 849,
"death": 93,
"discoveries": 439,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 60,
"Dexterity": 30,
"Intelligence": 48,
"Agility": 53
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 0
},
"Woodcutting": {
"level": 98,
"xpPercent": 0
},
"Mining": {
"level": 98,
"xpPercent": 1
},
"Farming": {
"level": 98,
"xpPercent": 0
},
"Scribing": {
"level": 98,
"xpPercent": 2
},
"Jeweling": {
"level": 98,
"xpPercent": 1
},
"Alchemism": {
"level": 98,
"xpPercent": 0
},
"Cooking": {
"level": 98,
"xpPercent": 3
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 1
},
"Tailoring": {
"level": 98,
"xpPercent": 1
},
"Woodworking": {
"level": 98,
"xpPercent": 1
},
"Armouring": {
"level": 98,
"xpPercent": 2
}
},
"dungeons": {
"total": 7,
"list": {
"Corrupted Decrepit Sewers": 6,
"Eldritch Outlook": 1
}
},
"quests": [
"The Hero of Gavel",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"The Envoy Part II",
"The Hidden City",
"The Envoy Part I",
"The Qira Hive",
"Lost in the Jungle",
"The Mercenary",
"Misadventure on the Sea",
"Dwelling Walls",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Copper",
"Mini-Quest - Gather Rye"
]
},
"006d17e5-4cd2-437a-8af0-c2014e8b9337": {
"type": "MAGE",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 2042874,
"xpPercent": 1,
"playtime": 163,
"mobsKilled": 16705,
"chestsFound": 428,
"blocksWalked": 1258261079,
"itemsIdentified": 0,
"logins": 787,
"death": 147,
"discoveries": 382,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Dexterity": 86,
"Intelligence": 68,
"Defense": 46
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 5
},
"Woodcutting": {
"level": 98,
"xpPercent": 1
},
"Mining": {
"level": 98,
"xpPercent": 1
},
"Farming": {
"level": 98,
"xpPercent": 1
},
"Scribing": {
"level": 98,
"xpPercent": 6
},
"Jeweling": {
"level": 98,
"xpPercent": 2
},
"Alchemism": {
"level": 98,
"xpPercent": 0
},
"Cooking": {
"level": 98,
"xpPercent": 0
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 8
},
"Tailoring": {
"level": 98,
"xpPercent": 1
},
"Woodworking": {
"level": 98,
"xpPercent": 8
},
"Armouring": {
"level": 98,
"xpPercent": 4
}
},
"dungeons": {
"total": 16,
"list": {
"Decrepit Sewers": 1,
"Underworld Crypt": 5,
"Corrupted Undergrowth Ruins": 4,
"Corrupted Decrepit Sewers": 1,
"Corrupted Infested Pit": 1,
"Corrupted Lost Sanctuary": 1,
"Corrupted Underworld Crypt": 1,
"Corrupted Sand-Swept Tomb": 1,
"Corrupted Ice Barrows": 1
}
},
"quests": [
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"Grand Youth",
"Lost Royalty",
"The Order of the Grook",
"Canyon Condor",
"WynnExcavation Site A",
"Meaningful Holiday",
"A Sandy Scandal",
"The Mercenary",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Poisoning the Pest",
"Mini-Quest - Gather Pine Logs II",
"Mini-Quest - Gather Sorghum"
]
},
"3ea3b015-fe89-42e7-ae70-c54e5bceeead": {
"type": "SHAMAN",
"nickname": "Wynn Guider Olinus",
"level": 105,
"xp": 15319359,
"xpPercent": 6,
"playtime": 143,
"mobsKilled": 28000,
"chestsFound": 347,
"blocksWalked": 584466078,
"itemsIdentified": 0,
"logins": 780,
"death": 148,
"discoveries": 392,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Dexterity": 36,
"Intelligence": 84,
"Defense": 80
},
"professions": {
"Fishing": {
"level": 98,
"xpPercent": 0
},
"Woodcutting": {
"level": 98,
"xpPercent": 2
},
"Mining": {
"level": 98,
"xpPercent": 0
},
"Farming": {
"level": 98,
"xpPercent": 0
},
"Scribing": {
"level": 98,
"xpPercent": 4
},
"Jeweling": {
"level": 98,
"xpPercent": 3
},
"Alchemism": {
"level": 98,
"xpPercent": 4
},
"Cooking": {
"level": 98,
"xpPercent": 3
},
"Weaponsmithing": {
"level": 98,
"xpPercent": 2
},
"Tailoring": {
"level": 98,
"xpPercent": 1
},
"Woodworking": {
"level": 94,
"xpPercent": 1
},
"Armouring": {
"level": 98,
"xpPercent": 2
}
},
"dungeons": {
"total": 20,
"list": {
"Corrupted Decrepit Sewers": 10,
"Corrupted Infested Pit": 2,
"Corrupted Lost Sanctuary": 4,
"Corrupted Underworld Crypt": 2,
"Corrupted Undergrowth Ruins": 1,
"Eldritch Outlook": 1
}
},
"quests": [
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Dwarves and Doguns Part I",
"Flight in Distress",
"The Order of the Grook",
"Corrupted Betrayal",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Clearing the Camps",
"Canyon Condor",
"WynnExcavation Site A",
"Tribal Aggression",
"Meaningful Holiday",
"Kingdom of Sand",
"A Sandy Scandal",
"Green Gloop",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Tunnel Trouble",
"Poisoning the Pest",
"Mini-Quest - Gather Pine Logs II",
"Mini-Quest - Gather Rice IV",
"Mini-Quest - Gather Molten Eel IV",
"Mini-Quest - Gather Sorghum"
]
}
}
}
Player character list
GET .../player/<str:username/uuid>/characters 2 minutes TTL
{
"characterUuid": {
"type": str,
"nickname": str,
"totalLevels": int,
"combat": int,
"xpPercent": int,
"gamemode": [
"hunter",
"hardcore",
# [...]
],
},
# [...]
}
{
"e3d35460-0b3f-43a6-a2c8-590d4c080168": {
"type": "NINJA",
"totalLevels": 68,
"combat": 64,
"xpPercent": 84,
"gamemode": []
},
"5aadbcea-5429-4280-882f-ae684fc80fe4": {
"type": "HUNTER",
"nickname": "Zeer",
"totalLevels": 834,
"combat": 106,
"xpPercent": 100,
"gamemode": []
},
"024aff2a-7ee4-4d50-add4-624b8c6b11bf": {
"type": "DARKWIZARD",
"nickname": "Zeer",
"totalLevels": 160,
"combat": 105,
"xpPercent": 6,
"gamemode": []
},
"ba71fd38-e94d-49c2-9bdf-1195a39180de": {
"type": "KNIGHT",
"nickname": "Zeer",
"totalLevels": 106,
"combat": 106,
"xpPercent": 100,
"gamemode": []
},
"ded8d9a2-c80a-42f2-8838-82ffc16197f6": {
"type": "ASSASSIN",
"totalLevels": 1,
"combat": 1,
"xpPercent": 54,
"gamemode": []
},
"24241800-d2ed-4cbb-b6fc-6573c744e6d9": {
"type": "SKYSEER",
"totalLevels": 105,
"combat": 105,
"xpPercent": 89,
"gamemode": []
},
"cf67cf5b-b4d7-4c79-97de-5daea4be188e": {
"type": "NINJA",
"totalLevels": 40,
"combat": 40,
"xpPercent": 35,
"gamemode": []
},
"b1a8f970-5c25-473b-b96f-2795e253877a": {
"type": "SHAMAN",
"totalLevels": 76,
"combat": 74,
"xpPercent": 84,
"gamemode": [
"ironman",
"craftsman",
"hunted",
"hardcore"
]
}
}
Player character data
GET .../player/<str:username/uuid>/characters/<str:characterUuid> 2 minutes TTL
{
"type": str,
"nickname": str,
"level": int,
"xp": int,
"xpPercent": int,
"playtime": int,
"mobsKilled": int,
"chestsFound": int,
"blocksWalked": int,
"itemsIdentified": int,
"logins": int,
"death": int,
"discoveries": int,
"pvp": {
"kills": int,
"deaths": int,
},
"gamemode": [
"hunted",
"hardcore",
# [...]
],
"skillPoints": {
"Strength": int,
"Dexterity": int,
"Intelligence": int,
"Defense": int,
"Agility": int
},
"professions": {
"Fishing": {
"level": int,
"xpPercent": int
},
"Mining": {
"level": int,
"xpPercent": int
},
# [...]
},
"dungeons": {
"total": int,
"list": {
"Dungeon Name": int
# [...]
}
},
"raids": {
"total": int,
"list": {
"Raid Name": int
# [...]
}
},
"quests": [
"Quest Name",
# [...]
],
}
{
"type": "HUNTER",
"nickname": "Zeer",
"level": 106,
"xp": 59366246,
"xpPercent": 100,
"playtime": 2675,
"mobsKilled": 109873,
"chestsFound": 2441,
"blocksWalked": 810082087,
"itemsIdentified": 0,
"logins": 6153,
"death": 181,
"discoveries": 502,
"pvp": {
"kills": 0,
"deaths": 0
},
"gamemode": [],
"skillPoints": {
"Strength": 80,
"Dexterity": 60,
"Agility": 55
},
"professions": {
"Fishing": {
"level": 112,
"xpPercent": 75
},
"Woodcutting": {
"level": 85,
"xpPercent": 11
},
"Mining": {
"level": 109,
"xpPercent": 0
},
"Farming": {
"level": 89,
"xpPercent": 2
},
"Scribing": {
"level": 69,
"xpPercent": 92
},
"Jeweling": {
"level": 110,
"xpPercent": 57
},
"Alchemism": {
"level": 55,
"xpPercent": 19
},
"Cooking": {
"level": 99,
"xpPercent": 90
}
},
"dungeons": {
"total": 253,
"list": {
"Decrepit Sewers": 50,
"Infested Pit": 2,
"Sand-Swept Tomb": 6,
"Ice Barrows": 4,
"Undergrowth Ruins": 6,
"Corrupted Lost Sanctuary": 27,
"Corrupted Undergrowth Ruins": 24,
"Eldritch Outlook": 9,
"Underworld Crypt": 2,
"Fallen Factory": 2,
"Lost Sanctuary": 1,
"Corrupted Ice Barrows": 17,
"Corrupted Sand-Swept Tomb": 18,
"Corrupted Underworld Crypt": 24,
"Corrupted Infested Pit": 25,
"Corrupted Decrepit Sewers": 25,
"Corrupted Galleon's Graveyard": 9,
"Timelost Sanctum": 2
}
},
"quests": [
"Point of No Return",
"One Thousand Meters Under",
"Mini-Quest - Slay Astrochelys Manis",
"Dwarves and Doguns Part IV",
"Dwarves and Doguns Part III",
"Dwarves and Doguns Part II",
"Mini-Quest - Slay Frosted Guards & Cryostone Golems",
"Dwarves and Doguns Part I",
"Mini-Quest - Slay Magma Entities",
"Fantastic Voyage",
"The Envoy Part II",
"Enter the Dojo",
"Beyond the Grave",
"Mixed Feelings",
"Desperate Metal",
"The Envoy Part I",
"From the Bottom",
"The Qira Hive",
"Fallen Delivery",
"The Bigger Picture",
"Flight in Distress",
"Murder Mystery",
"Troubled Tribesmen",
"WynnExcavation Site D",
"Haven Antiquity",
"Grand Youth",
"Memory Paranoia",
"Lost Soles",
"Lost Royalty",
"Lost in the Jungle",
"The Order of the Grook",
"WynnExcavation Site C",
"Zhight Island",
"The Shadow of the Beast",
"Master Piece",
"Death Whistle",
"Crop Failure",
"Corrupted Betrayal",
"The Maiden Tower",
"A Grave Mistake",
"Rise of the Quartron",
"WynnExcavation Site B",
"UndericeÀ",
"Fate of the Fallen",
"Heart of Llevigar",
"Tower of Ascension",
"Mini-Quest - Slay Creatures of Nesaak Forest",
"Clearing the Camps",
"Canyon Condor",
"Tribal Aggression",
"WynnExcavation Site A",
"Kingdom of Sand",
"Meaningful Holiday",
"A Sandy Scandal",
"Green Gloop",
"Mini-Quest - Slay Scarabs",
"The Mercenary",
"Misadventure on the Sea",
"The Corrupted Village",
"Deja Vu",
"Mini-Quest - Slay Skeletons",
"Dwelling Walls",
"The Dark Descent",
"Pit of the Dead",
"Mini-Quest - Slay Mooshrooms",
"Tunnel Trouble",
"Mini-Quest - Slay Spiders",
"Poisoning the Pest"
]
}
Player character ability map
GET .../player/<str:username/uuid>/characters/<str:characterUuid>/abilities 1 hour TTL
{
"pages": int,
"map": [
{
"type": "ability",
"coordinates": {
"x": int,
"y": int
},
"meta": {
"icon": str, # Minecraft legacy item id e.g. 275:67
"page": int,
"id": str # Internal id of the ability, abilities in AT response are refered by the same id
},
"familiy": [ # Ability ids listed here are abilities connected to the current one
"ability1"
# [...]
]
},
{
"type": "connector",
"coordinates": {
"x": int,
"y": int
},
"meta": {
"icon": "connector_up_down",
# Connector icon syntax is both direction clockwise like right_left or right_down_left
"page": int
},
"family": [ # Ability ids listed here are abilities assiciated to this connector
"ability1",
# [...]
]
},
# [...]
]
}
{
"pages": 6,
"map": [
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 1
},
"meta": {
"icon": "275:64",
"page": 1,
"id": "arrowbomb"
},
"family": [
"arrowbomb"
]
},
{
"type": "connector",
"coordinates": {
"x": 5,
"y": 2
},
"meta": {
"icon": "connector_up_down",
"page": 1
},
"family": [
"bowProficiency",
"arrowbomb"
]
},
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 3
},
"meta": {
"icon": "275:45",
"page": 1,
"id": "bowProficiency"
},
"family": [
"bowProficiency"
]
},
{
"type": "connector",
"coordinates": {
"x": 5,
"y": 4
},
"meta": {
"icon": "connector_up_down",
"page": 1
},
"family": [
"directHit",
"bowProficiency"
]
},
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 5
},
"meta": {
"icon": "275:49",
"page": 1,
"id": "directHit"
},
"family": [
"directHit"
]
},
{
"type": "connector",
"coordinates": {
"x": 5,
"y": 6
},
"meta": {
"icon": "connector_up_down",
"page": 1
},
"family": [
"escape",
"directHit"
]
},
{
"type": "connector",
"coordinates": {
"x": 5,
"y": 7
},
"meta": {
"icon": "connector_up_down",
"page": 1
},
"family": [
"escape",
"directHit"
]
},
{
"type": "ability",
"coordinates": {
"x": 3,
"y": 8
},
"meta": {
"icon": "275:45",
"page": 2,
"id": "hastyShots"
},
"family": [
"hastyShots"
]
},
{
"type": "connector",
"coordinates": {
"x": 3,
"y": 9
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"arrowstorm",
"hastyShots"
]
},
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 8
},
"meta": {
"icon": "275:64",
"page": 2,
"id": "escape"
},
"family": [
"escape"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 8
},
"meta": {
"icon": "connector_right_left",
"page": 2
},
"family": [
"hastyShots",
"escape"
]
},
{
"type": "ability",
"coordinates": {
"x": 3,
"y": 10
},
"meta": {
"icon": "275:64",
"page": 2,
"id": "arrowstorm"
},
"family": [
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 10
},
"meta": {
"icon": "connector_right_left",
"page": 2
},
"family": [
"escapeCost1",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 2,
"y": 10
},
"meta": {
"icon": "connector_right_down_left",
"page": 2
},
"family": [
"archerAirPath",
"arrowstorm",
"windyfeet"
]
},
{
"type": "connector",
"coordinates": {
"x": 1,
"y": 10
},
"meta": {
"icon": "connector_right_down",
"page": 2
},
"family": [
"archerAirPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 1,
"y": 11
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerAirPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 1,
"y": 12
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerAirPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 1,
"y": 13
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerAirPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 3,
"y": 11
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerThunderPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 3,
"y": 12
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerThunderPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 3,
"y": 13
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerThunderPath",
"arrowstorm"
]
},
{
"type": "connector",
"coordinates": {
"x": 2,
"y": 10
},
"meta": {
"icon": "connector_right_down_left",
"page": 2
},
"family": [
"windyfeet",
"arrowstorm",
"archerAirPath"
]
},
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 10
},
"meta": {
"icon": "275:45",
"page": 2,
"id": "escapeCost1"
},
"family": [
"escapeCost1"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 10
},
"meta": {
"icon": "connector_right_left",
"page": 2
},
"family": [
"arrowstorm",
"escapeCost1"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 10
},
"meta": {
"icon": "connector_right_left",
"page": 2
},
"family": [
"arrowshield",
"escapeCost1"
]
},
{
"type": "ability",
"coordinates": {
"x": 7,
"y": 10
},
"meta": {
"icon": "275:64",
"page": 2,
"id": "arrowshield"
},
"family": [
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 10
},
"meta": {
"icon": "connector_right_left",
"page": 2
},
"family": [
"escapeCost1",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 10
},
"meta": {
"icon": "connector_right_left",
"page": 2
},
"family": [
"archerWaterPath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 10
},
"meta": {
"icon": "connector_down_left",
"page": 2
},
"family": [
"archerWaterPath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 11
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerWaterPath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 12
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerWaterPath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 13
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerWaterPath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 11
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerFirePath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 12
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerFirePath",
"arrowshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 13
},
"meta": {
"icon": "connector_up_down",
"page": 2
},
"family": [
"archerFirePath",
"arrowshield"
]
},
{
"type": "ability",
"coordinates": {
"x": 2,
"y": 11
},
"meta": {
"icon": "275:49",
"page": 2,
"id": "windyfeet"
},
"family": [
"windyfeet"
]
},
{
"type": "ability",
"coordinates": {
"x": 1,
"y": 14
},
"meta": {
"icon": "275:45",
"page": 3,
"id": "archerAirPath"
},
"family": [
"archerAirPath"
]
},
{
"type": "ability",
"coordinates": {
"x": 3,
"y": 14
},
"meta": {
"icon": "275:45",
"page": 3,
"id": "archerThunderPath"
},
"family": [
"archerThunderPath"
]
},
{
"type": "connector",
"coordinates": {
"x": 3,
"y": 15
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"arrowrain",
"archerThunderPath"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 14
},
"meta": {
"icon": "connector_right_left",
"page": 3
},
"family": [
"archerFirePath",
"archerThunderPath"
]
},
{
"type": "connector",
"coordinates": {
"x": 5,
"y": 14
},
"meta": {
"icon": "connector_right_left",
"page": 3
},
"family": [
"archerFirePath",
"archerThunderPath"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 14
},
"meta": {
"icon": "connector_right_left",
"page": 3
},
"family": [
"archerFirePath",
"archerThunderPath"
]
},
{
"type": "ability",
"coordinates": {
"x": 7,
"y": 14
},
"meta": {
"icon": "275:45",
"page": 3,
"id": "archerFirePath"
},
"family": [
"archerFirePath"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 14
},
"meta": {
"icon": "connector_right_left",
"page": 3
},
"family": [
"archerThunderPath",
"archerFirePath"
]
},
{
"type": "connector",
"coordinates": {
"x": 5,
"y": 14
},
"meta": {
"icon": "connector_right_left",
"page": 3
},
"family": [
"archerThunderPath",
"archerFirePath"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 14
},
"meta": {
"icon": "connector_right_left",
"page": 3
},
"family": [
"archerThunderPath",
"archerFirePath"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 14
},
"meta": {
"icon": "275:45",
"page": 3,
"id": "archerWaterPath"
},
"family": [
"archerWaterPath"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 15
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"phantomDarts",
"archerWaterPath"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 16
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"phantomDarts",
"archerWaterPath"
]
},
{
"type": "ability",
"coordinates": {
"x": 3,
"y": 16
},
"meta": {
"icon": "275:45",
"page": 3,
"id": "arrowrain"
},
"family": [
"arrowrain"
]
},
{
"type": "connector",
"coordinates": {
"x": 3,
"y": 17
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"hitToRename",
"arrowrain"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 17
},
"meta": {
"icon": "275:53",
"page": 3,
"id": "phantomDarts"
},
"family": [
"phantomDarts"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 18
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"focus",
"phantomDarts"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 19
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"focus",
"phantomDarts"
]
},
{
"type": "ability",
"coordinates": {
"x": 3,
"y": 18
},
"meta": {
"icon": "275:49",
"page": 3,
"id": "hitToRename"
},
"family": [
"hitToRename"
]
},
{
"type": "connector",
"coordinates": {
"x": 2,
"y": 18
},
"meta": {
"icon": "connector_right_down",
"page": 3
},
"family": [
"guardianAngels",
"hitToRename"
]
},
{
"type": "connector",
"coordinates": {
"x": 2,
"y": 19
},
"meta": {
"icon": "connector_up_down",
"page": 3
},
"family": [
"guardianAngels",
"hitToRename"
]
},
{
"type": "ability",
"coordinates": {
"x": 2,
"y": 20
},
"meta": {
"icon": "275:57",
"page": 4,
"id": "guardianAngels"
},
"family": [
"guardianAngels"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 20
},
"meta": {
"icon": "275:57",
"page": 4,
"id": "focus"
},
"family": [
"focus"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 20
},
"meta": {
"icon": "connector_right_down",
"page": 4
},
"family": [
"tripleshield",
"focus"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 21
},
"meta": {
"icon": "connector_up_down",
"page": 4
},
"family": [
"tripleshield",
"focus"
]
},
{
"type": "ability",
"coordinates": {
"x": 8,
"y": 22
},
"meta": {
"icon": "275:45",
"page": 4,
"id": "tripleshield"
},
"family": [
"tripleshield"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 22
},
"meta": {
"icon": "connector_down_left",
"page": 4
},
"family": [
"moreFocus",
"tripleshield"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 23
},
"meta": {
"icon": "275:45",
"page": 4,
"id": "moreFocus"
},
"family": [
"moreFocus"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 24
},
"meta": {
"icon": "connector_up_down",
"page": 4
},
"family": [
"concentration",
"moreFocus"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 25
},
"meta": {
"icon": "connector_up_down",
"page": 4
},
"family": [
"concentration",
"moreFocus"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 26
},
"meta": {
"icon": "275:53",
"page": 5,
"id": "concentration"
},
"family": [
"concentration"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 27
},
"meta": {
"icon": "connector_up_down",
"page": 5
},
"family": [
"shockingBomb",
"concentration"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 28
},
"meta": {
"icon": "connector_up_down",
"page": 5
},
"family": [
"shockingBomb",
"concentration"
]
},
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 29
},
"meta": {
"icon": "275:45",
"page": 5,
"id": "arrowShieldCost1"
},
"family": [
"arrowShieldCost1"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"betterArrowShield",
"arrowShieldCost1",
"homingarrows"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"homingarrows",
"arrowShieldCost1",
"betterArrowShield"
]
},
{
"type": "ability",
"coordinates": {
"x": 7,
"y": 29
},
"meta": {
"icon": "275:45",
"page": 5,
"id": "betterArrowShield"
},
"family": [
"betterArrowShield"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"shockingBomb",
"betterArrowShield",
"initiator"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"arrowShieldCost1",
"betterArrowShield",
"homingarrows"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"initiator",
"betterArrowShield",
"shockingBomb"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 30
},
"meta": {
"icon": "connector_up_down",
"page": 5
},
"family": [
"initiator",
"betterArrowShield",
"shockingBomb"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 31
},
"meta": {
"icon": "connector_up_down",
"page": 5
},
"family": [
"initiator",
"betterArrowShield",
"shockingBomb"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"homingarrows",
"betterArrowShield",
"arrowShieldCost1"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 29
},
"meta": {
"icon": "275:49",
"page": 5,
"id": "shockingBomb"
},
"family": [
"shockingBomb"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"initiator",
"shockingBomb",
"betterArrowShield"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 30
},
"meta": {
"icon": "connector_up_down",
"page": 5
},
"family": [
"initiator",
"shockingBomb",
"betterArrowShield"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 31
},
"meta": {
"icon": "connector_up_down",
"page": 5
},
"family": [
"initiator",
"shockingBomb",
"betterArrowShield"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 29
},
"meta": {
"icon": "connector_right_down_left",
"page": 5
},
"family": [
"betterArrowShield",
"shockingBomb",
"initiator"
]
},
{
"type": "ability",
"coordinates": {
"x": 6,
"y": 30
},
"meta": {
"icon": "275:53",
"page": 5,
"id": "homingarrows"
},
"family": [
"homingarrows"
]
},
{
"type": "ability",
"coordinates": {
"x": 6,
"y": 32
},
"meta": {
"icon": "275:45",
"page": 6,
"id": "arrowStormCost2"
},
"family": [
"arrowStormCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 32
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"initiator",
"arrowStormCost2",
"decimator"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 32
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"decimator",
"arrowStormCost2",
"initiator"
]
},
{
"type": "ability",
"coordinates": {
"x": 8,
"y": 32
},
"meta": {
"icon": "275:53",
"page": 6,
"id": "initiator"
},
"family": [
"initiator"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 32
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"arrowStormCost2",
"initiator",
"decimator"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 32
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"decimator",
"initiator",
"arrowStormCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 32
},
"meta": {
"icon": "connector_down_left",
"page": 6
},
"family": [
"phasingBeam",
"initiator"
]
},
{
"type": "ability",
"coordinates": {
"x": 7,
"y": 33
},
"meta": {
"icon": "275:49",
"page": 6,
"id": "decimator"
},
"family": [
"decimator"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 33
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"arrowShieldCost2",
"decimator",
"phasingBeam"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 34
},
"meta": {
"icon": "connector_up_down",
"page": 6
},
"family": [
"arrowShieldCost2",
"decimator",
"phasingBeam"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 33
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"phasingBeam",
"decimator",
"arrowShieldCost2"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 33
},
"meta": {
"icon": "275:49",
"page": 6,
"id": "phasingBeam"
},
"family": [
"phasingBeam"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 33
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"decimator",
"phasingBeam",
"arrowShieldCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 33
},
"meta": {
"icon": "connector_right_down_left",
"page": 6
},
"family": [
"arrowShieldCost2",
"phasingBeam",
"decimator"
]
},
{
"type": "connector",
"coordinates": {
"x": 8,
"y": 34
},
"meta": {
"icon": "connector_up_down",
"page": 6
},
"family": [
"arrowShieldCost2",
"phasingBeam",
"decimator"
]
},
{
"type": "ability",
"coordinates": {
"x": 3,
"y": 35
},
"meta": {
"icon": "275:49",
"page": 6,
"id": "shrapnelBomb"
},
"family": [
"shrapnelBomb"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 35
},
"meta": {
"icon": "connector_right_left",
"page": 6
},
"family": [
"escapeCost2",
"shrapnelBomb"
]
},
{
"type": "ability",
"coordinates": {
"x": 5,
"y": 35
},
"meta": {
"icon": "275:45",
"page": 6,
"id": "escapeCost2"
},
"family": [
"escapeCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 35
},
"meta": {
"icon": "connector_right_left",
"page": 6
},
"family": [
"arrowShieldCost2",
"escapeCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 35
},
"meta": {
"icon": "connector_right_left",
"page": 6
},
"family": [
"arrowShieldCost2",
"escapeCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 4,
"y": 35
},
"meta": {
"icon": "connector_right_left",
"page": 6
},
"family": [
"shrapnelBomb",
"escapeCost2"
]
},
{
"type": "ability",
"coordinates": {
"x": 8,
"y": 35
},
"meta": {
"icon": "275:45",
"page": 6,
"id": "arrowShieldCost2"
},
"family": [
"arrowShieldCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 9,
"y": 35
},
"meta": {
"icon": "connector_down_left",
"page": 6
},
"family": [
"coursingRestraints",
"arrowShieldCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 7,
"y": 35
},
"meta": {
"icon": "connector_right_left",
"page": 6
},
"family": [
"escapeCost2",
"arrowShieldCost2"
]
},
{
"type": "connector",
"coordinates": {
"x": 6,
"y": 35
},
"meta": {
"icon": "connector_right_left",
"page": 6
},
"family": [
"escapeCost2",
"arrowShieldCost2"
]
},
{
"type": "ability",
"coordinates": {
"x": 9,
"y": 36
},
"meta": {
"icon": "275:53",
"page": 6,
"id": "coursingRestraints"
},
"family": [
"coursingRestraints"
]
}
]
}
TIP
The ability map above only list abilities the player has enabled and does the pathfinding on the go, it is recommended to associate this map + the ability tree of the class + the ability map of the class
Online players
Online player list
GET .../player 2 minutes TTL
{
"onlinePlayers": int,
"players": {
"playerName": "WC1",
"playerName": "WC43",
# [...]
}
}
{
"onlinePlayers": 1179,
"players": {
"RoboKill": "WC1",
"slashhex": "WC1",
"Krzaku_TV": "WC1",
"AgentWolf8": "WC1",
"WoodCreature": "WC1",
"CuzImTimer": "WC1",
"Wokeuplikethis": "WC1",
"7StarsMoon": "WC1",
"CXRed": "WC1",
"DemonicShroom": "WC1",
"popfisdj": "WC1",
"CelestialByte": "WC1",
"Cake25217": "WC1",
"6bccy": "WC1",
"_ItsK_": "WC1",
"TheFlyingPotator": "WC1",
"perkoperky": "WC1",
"JackT36": "WC1",
"_Garb0_": "WC1",
"Thorns767": "WC1",
"Scalix843": "WC1",
"FlameRee": "WC1",
"wwpw": "WC1",
"WolfOf_Void": "WC1",
"ArasZii_ProGamer": "WC1",
"Mate4": "WC1",
"Newtonium_": "WC1",
"Glaackiem": "WC1",
"FlyingSnekCannon": "WC1",
"jajestemgod": "WC1",
"nu162": "WC10",
"Gost3k": "WC10",
"KeptInk111": "WC10",
"RongHuang": "WC10",
"AnonFe": "WC10",
"Shredder27": "WC10",
"TattoHarley": "WC10",
"Poyia": "WC10",
"Dracolexandre": "WC10",
"yodayoda610": "WC10",
"Redolite": "WC10",
"Odysir": "WC10",
"CreepieCreep": "WC10",
"BoogerJar": "WC10",
"NorthRambo": "WC10",
"Nazzrinka": "WC10",
"AutumnLeaf_": "WC10",
"yuku65": "WC10",
"cbA0000": "WC10",
"MTZje": "WC10",
"152Ms": "WC10",
"MightySnootz": "WC10",
"joshuamhess": "WC10",
"iNoob": "WC10",
"Glitch9834": "WC10",
"ShadowB1adeDK": "WC10",
"Kazuo9": "WC10",
"soulrifle211": "WC10",
"Selkeer": "WC10",
"exhisa": "WC10",
"icosmos999": "WC10",
"9039": "WC10",
"MarqnBG": "WC10",
"ShadowKemmis": "WC10",
"khipengDream": "WC10",
"Taleisin": "WC10",
"TheInnoke": "WC10",
"POL335245": "WC10",
"Blubbex": "WC11",
"Ionao": "WC11",
"Frustrated_": "WC11",
"Sir_September": "WC11",
"mamegaratya": "WC11",
"PhantomBeast987": "WC11",
"Herobline": "WC11",
"UnableToucan": "WC11",
"AtlasOpus": "WC11",
"DevilAron": "WC11",
"Matmun59": "WC11",
"BezobrazieOp1234": "WC11",
"Elbator": "WC11",
"Puella135": "WC11",
"EnderDaniyal": "WC11",
"Schlooof": "WC11",
"Ninobf": "WC11",
"ShadowKawaii7": "WC11",
"ttoYeong": "WC11",
"chrxnological_": "WC11",
"annakat123": "WC11",
"riggive0408": "WC11",
"WeabooLord": "WC11",
"Eldol": "WC11",
"Gidorah": "WC11",
"ViciousKiwi": "WC11",
"swavyGoodgame": "WC11",
"DJBillybool9": "WC11",
"Ixu": "WC11",
"Guermas": "WC11",
"PepikZ_Youtube": "WC11",
"_Blue_Rose__": "WC12",
"Brosqa": "WC12",
"MedNaou": "WC12",
"SirKiddo": "WC12",
"Sir_Katman": "WC12",
"Samuelblue123": "WC12",
"ArrowRobinGood": "WC12",
"pockt": "WC12",
"AceMallard70310": "WC12",
"KoiWater": "WC12",
"walltime": "WC12",
"Voodoodude18": "WC12",
"TheFuniGami": "WC12",
"Pineapplezz445": "WC12",
"Noneless21": "WC12",
"KengCola": "WC12",
"Pepijn_HvR": "WC12",
"Lada82CZ": "WC12",
"ScientificDuck": "WC12",
"Le_Goulag": "WC12",
"TheVoidness": "WC12",
"WalnutGecko": "WC12",
"Cookiesuwu": "WC12",
"youShallPerish": "WC12",
"Zn1p": "WC12",
"YouXian_": "WC12",
"AlexFwfwfw": "WC12",
"AlmondMeteor919": "WC12",
"Sky_Chasm": "WC12",
"xqy1234": "WC12",
"2kaa": "WC12",
"BobOrMegawave": "WC12",
"BlazerBlade": "WC13",
"CharlieJack": "WC13",
"Ant137": "WC13",
"Nikinator055": "WC13",
"Nacknoock": "WC13",
"TeoDaBest": "WC13",
"ungebrowst": "WC13",
"Jodelle": "WC13",
"Sumire1218": "WC13",
"Vekka": "WC13",
"nkamindayo": "WC13",
"NeantAU": "WC13",
"PenballFed": "WC13",
"Ulmy": "WC13",
"BladeDragan": "WC13",
"Zuid_Holland": "WC13",
"Caroze": "WC13",
"DomSmasher": "WC13",
"M1neStein": "WC14",
"ACraftingFish": "WC14",
"Neovea": "WC14",
"Silenc37": "WC14",
"ZaltojD": "WC14",
"killForSenpai": "WC14",
"TSBlader": "WC14",
"Cwocadile": "WC14",
"stapplease": "WC14",
"DeeBeeSee": "WC14",
"snowhunter17bc": "WC14",
"nightmareIo46": "WC14",
"BlankShots_": "WC14",
"systemgene": "WC14",
"Armangdi": "WC14",
"LukeCGG": "WC14",
"_Boes_": "WC14",
"yuzuu893": "WC14",
"PopUpPoppy": "WC14",
"Goldenboy79": "WC14",
"Fly_Over": "WC14",
"J0rden": "WC14",
"tOAO_Widget": "WC14",
"Chopter10": "WC14",
"Fortnitepro2023": "WC14",
"cePhox": "WC14",
"Vqlts": "WC14",
"gogoal_": "WC14",
"CyberRabbit11": "WC14",
"FloFM": "WC14",
"DoubleRap": "WC14",
"HyGamer": "WC14",
"GIGACAPPUCCINO": "WC15",
"MightyEl": "WC15",
"RBT_Dudee": "WC15",
"Praolipp": "WC15",
"Nur_Lunaru": "WC15",
"Nur_Nico88": "WC15",
"foxpupmal": "WC15",
"Skyquest": "WC15",
"YamiShinda": "WC15",
"Sv3nderman": "WC15",
"Shoawl": "WC15",
"shepi1": "WC15",
"8w7": "WC15",
"_Thinking_Face_": "WC15",
"_LiangFen_": "WC15",
"Larns": "WC15",
"Slendro": "WC15",
"talthewarrior11": "WC15",
"toms2008tt": "WC15",
"Dennistriel": "WC15",
"Funeczek14": "WC15",
"Fecy_The_Orange": "WC15",
"Ultimate_Defence": "WC15",
"TheOnlyBeanMan": "WC15",
"SimonikCD": "WC15",
"Saniel": "WC15",
"EndFrame": "WC15",
"DC2727": "WC15",
"harel4t4": "WC15",
"IhvEgirl": "WC15",
"HKGamerNoob2": "WC15",
"SoMisterG": "WC15",
"Drollings": "WC15",
"Lyncing": "WC15",
"Minecraft22_DK": "WC16",
"BlamedChutoy32": "WC16",
"exOqw": "WC16",
"TheVoidiestVoid": "WC16",
"Teslanator": "WC16",
"Glutzwudel1": "WC16",
"VelehoMeister": "WC16",
"DevilPlays10": "WC16",
"Mensley": "WC16",
"Infinius": "WC17",
"Sushi64O4": "WC17",
"Zephyr_Rosuton": "WC17",
"Myst23": "WC17",
"__Elegant__": "WC17",
"crzandrei": "WC17",
"ultraviiolett": "WC17",
"Rich72127": "WC17",
"ImFizzy": "WC17",
"Wasabi2592": "WC17",
"GommyRune": "WC17",
"KasperskyDrive": "WC17",
"aocheese": "WC17",
"AnaElfe": "WC17",
"Kathaross": "WC17",
"HelmDeepYT": "WC17",
"totoni84": "WC17",
"c410gnp": "WC17",
"Heheszko": "WC17",
"Sandora1910": "WC17",
"IIILampus": "WC17",
"Orcascangame": "WC17",
"dukehootfish": "WC17",
"ItsRhombus84711": "WC17",
"mintsies": "WC17",
"TBone67308": "WC17",
"kelloly": "WC17",
"HojnoEz": "WC17",
"BeatableCloud": "WC17",
"Skydozz_": "WC17",
"kukuruci": "WC17",
"Situcho": "WC18",
"Omnivi": "WC18",
"HqteMood": "WC18",
"qDeqni": "WC18",
"Lazurium": "WC18",
"SilverShipTuna": "WC18",
"_Kiisuke_": "WC18",
"drgoon29": "WC18",
"lilchickapea": "WC18",
"Geld_Tesor": "WC18",
"Alcenola": "WC18",
"Wynnik": "WC18",
"2BigHatGuy": "WC18",
"iamanthony": "WC18",
"Kazuto2000": "WC18",
"DesFrites1Fois": "WC18",
"XDspadesXD": "WC18",
"LePa0523": "WC18",
"CoolBlue375": "WC18",
"AliveAndDead": "WC18",
"Sh3nwn": "WC18",
"PgPgDad": "WC18",
"ProjektDestruct": "WC18",
"oUnlucky": "WC18",
"Ilmuar": "WC18",
"leiwick": "WC18",
"Eca_Shadow": "WC18",
"yaliisa": "WC18",
"nwoof2012": "WC18",
"Alyshu": "WC19",
"OraTheBush": "WC19",
"cqbf": "WC19",
"organya": "WC19",
"Niiruwow": "WC19",
"Nimako": "WC19",
"Asoart": "WC19",
"SandSurge": "WC19",
"Itay_": "WC19",
"hiroyun": "WC19",
"PopogameZ91": "WC19",
"MrIronskull": "WC19",
"TimLi_HK": "WC19",
"ThingSomes": "WC19",
"yoBoiii": "WC19",
"generalZouna": "WC19",
"RandomEyeMotion": "WC19",
"ppfart": "WC2",
"Major_Hack": "WC2",
"LaMDaKiS": "WC2",
"KuroSHR": "WC2",
"xdMchotdog": "WC2",
"skoneez": "WC2",
"Neoaf12": "WC2",
"nilsiov": "WC2",
"a_ZUa380": "WC2",
"a_McJ548": "WC2",
"Wall1010": "WC2",
"wcwis": "WC2",
"Tothrees": "WC2",
"wltsky": "WC2",
"28culture": "WC2",
"WaveySK": "WC20",
"Mellep_": "WC20",
"axolotlPvp": "WC20",
"RentalHobo": "WC20",
"MARCUS_DARK": "WC20",
"Zerophixcv": "WC20",
"ImanePL": "WC20",
"Jeeeeeeeko": "WC20",
"HuyNgu_": "WC20",
"RealRph": "WC20",
"BlueShape": "WC20",
"MN44": "WC20",
"BoatAbundance": "WC20",
"Iaudmrj": "WC20",
"Huyota79": "WC20",
"Hung03": "WC20",
"GumTree1": "WC20",
"Agrafar": "WC20",
"Llanfairpwllgw1": "WC20",
"YanPanenko01": "WC20",
"Fastcjames12": "WC20",
"y4kr3b": "WC20",
"lvara": "WC20",
"TNTYeeter": "WC20",
"Tammitikari": "WC20",
"Topo809": "WC20",
"bluswimp": "WC20",
"NoobisNobilis": "WC20",
"Shufflebutt1234": "WC20",
"MizuKi_Agawa09": "WC20",
"maxibraunschweig": "WC20",
"ViperJr2000": "WC20",
"Mikkelwdc": "WC20",
"Aum_SMZ": "WC20",
"MarcosSegon": "WC21",
"Sihro": "WC21",
"Yuki_Po": "WC21",
"siltybeatle": "WC21",
"RDrever": "WC21",
"Monkey_Suit": "WC21",
"Meastou": "WC21",
"ImAluneth": "WC21",
"Leonns": "WC21",
"Otherator": "WC21",
"Upperator": "WC21",
"GrimTheRedWolf": "WC21",
"FoshyTheFish": "WC21",
"Arthur_Antoft": "WC21",
"NguyenTrungBi": "WC21",
"AlphaMaleSwhan": "WC21",
"angycathy": "WC21",
"SweetBoiz": "WC21",
"Eshreal": "WC21",
"marshmary": "WC21",
"Mathilda__": "WC21",
"AndylamBB": "WC21",
"baole444": "WC21",
"GrizzlyChicken": "WC21",
"RoGrifex": "WC21",
"doodlejunky": "WC21",
"shadow123723": "WC21",
"Kamasarugo4674": "WC21",
"Blxckjackx": "WC21",
"BlueSuperRhino": "WC21",
"Aesmodea": "WC22",
"UprisingReaperMe": "WC22",
"ShineXx668": "WC22",
"SpirantCircle20": "WC22",
"Enter34": "WC22",
"RolEnzo37": "WC22",
"AnimeFAN01": "WC22",
"Fearless_Agent": "WC22",
"DatRedemptionArc": "WC22",
"Pimtari": "WC22",
"XRubio": "WC22",
"Arcticfoxx_": "WC22",
"DeLoKo": "WC22",
"OneLikeOthers": "WC22",
"Ultraman001": "WC22",
"ToxiKat": "WC22",
"HorusTheKing123": "WC22",
"Flyingfish2858": "WC22",
"EnderFriend13": "WC22",
"Pokey23": "WC22",
"HunI123": "WC22",
"ArenaBen": "WC22",
"JustTheSour": "WC22",
"Tellur_IV": "WC22",
"iBanana69": "WC22",
"Greencat_": "WC22",
"Pattylonte": "WC22",
"NotMeKurosu": "WC22",
"SabanekoHinata": "WC22",
"lamelemon": "WC22",
"Eviatarsh": "WC22",
"DayDal": "WC22",
"seYadayone": "WC22",
"LogicalTitan": "WC22",
"Potter1244": "WC23",
"Goldik07": "WC23",
"Akimbo__": "WC23",
"TheOneWhoSeeAll": "WC23",
"Jossoj123": "WC23",
"HangeoverXD": "WC23",
"itsleonardooo_": "WC23",
"Raraaa_": "WC23",
"CoolestMaxi": "WC23",
"Splintze": "WC23",
"Param456": "WC23",
"N00dl3cat": "WC23",
"Harteru": "WC23",
"MamaTi33": "WC23",
"1Grammatically": "WC23",
"realnot12": "WC23",
"Worklivedie": "WC23",
"VortexBeats": "WC23",
"xvaaa": "WC23",
"_Lenna__": "WC23",
"Bosko270": "WC23",
"Viktor00": "WC23",
"Rejyr": "WC23",
"ArcadianAtlas": "WC23",
"Sandrr": "WC23",
"dvirdifk": "WC23",
"ignJerry": "WC23",
"ignViral": "WC23",
"123Ionzo123": "WC23",
"Hiraethyy": "WC23",
"Hansby": "WC23",
"_SpinatPirat": "WC23",
"DivusLuca": "WC23",
"rxbie": "WC23",
"memchick678": "WC23",
"Detlev1": "WC23",
"EZuo": "WC24",
"datdot": "WC24",
"datdotcute": "WC24",
"Krokofant": "WC24",
"AndrQwQ": "WC24",
"theawsimecat": "WC24",
"Dadylife": "WC24",
"knarsrbq": "WC24",
"Calluum": "WC24",
"Obstacles_": "WC24",
"Ioderbidiuzytium": "WC24",
"Julinho": "WC24",
"Wpffle": "WC24",
"Hsi": "WC24",
"Alle_Sandstorm": "WC24",
"Electres": "WC25",
"Croksixx": "WC25",
"Necrilia": "WC25",
"Rachan114514": "WC25",
"ShylyTomb": "WC25",
"LokueloMC": "WC25",
"StelLaMIra": "WC25",
"Petee13": "WC25",
"Minelita": "WC25",
"Ghostf": "WC25",
"farfallinarossa": "WC25",
"ExoticDalah": "WC25",
"zxc6234579": "WC25",
"WesleyvL": "WC25",
"Lonelyman__": "WC25",
"ElPavoGranaino": "WC25",
"Bac3": "WC25",
"NoisyAsh": "WC25",
"BadFeng": "WC25",
"NoHousut": "WC25",
"timPuppy": "WC25",
"MipBip": "WC25",
"kalIuchka": "WC26",
"HolyCringe": "WC26",
"MeLoNarXo": "WC26",
"alexb0ba": "WC26",
"xXvanyaXx2006": "WC26",
"Samujelli": "WC26",
"Canter0nous": "WC26",
"goosePDF": "WC26",
"PGergo3": "WC26",
"Lampinnen": "WC26",
"Blitzluis": "WC26",
"iLeafR": "WC26",
"carryRaphi": "WC26",
"Cashtron527": "WC26",
"Blue_Shadow257": "WC26",
"JBo2": "WC26",
"MixMasters": "WC26",
"ACE80888088": "WC26",
"HarryOtterTM": "WC26",
"WaveBleak": "WC26",
"Lamentte": "WC26",
"Juggernaut321": "WC26",
"DoTry": "WC26",
"heair0": "WC26",
"Luka3006": "WC26",
"Luca8170": "WC26",
"Dikke_Kikker": "WC26",
"skisu": "WC26",
"snermann": "WC26",
"Hong_GooGoo": "WC26",
"KozmunkasJeno": "WC26",
"ClockworkRifle_": "WC26",
"SylviaYeung": "WC27",
"Kingjp03": "WC27",
"BulbChan": "WC27",
"OddlyLargeMan": "WC27",
"FireMarci": "WC27",
"Egg_Egg": "WC27",
"Ho_B": "WC27",
"Mine066184": "WC27",
"xEnvy7": "WC27",
"MagicGnome4": "WC27",
"_Itachey": "WC27",
"Black__Frost": "WC27",
"MMMeggy": "WC27",
"_LeGenDaRyZ_": "WC27",
"Robertos9": "WC27",
"Ulanor": "WC27",
"Grodoudou9": "WC27",
"TrackEnn": "WC27",
"IntelI7": "WC27",
"Calsey": "WC27",
"Link909": "WC27",
"zSkyBlack_": "WC27",
"EvoWoNg": "WC27",
"TheWetGuy": "WC27",
"Lynxect": "WC27",
"Azakari": "WC27",
"LucIsGaming": "WC27",
"aychaich": "WC27",
"MythicKyle": "WC27",
"Asmodehus": "WC27",
"uresHii": "WC27",
"imDomin_": "WC27",
"Tsyarik25": "WC28",
"FlamedWolf": "WC28",
"Phantom4805": "WC28",
"GeFiHo": "WC28",
"Notedes": "WC28",
"Stoltfan": "WC28",
"Pearlent": "WC28",
"CatboyCrystal": "WC28",
"Cocoa_B": "WC28",
"SuperDonut98": "WC28",
"artycobin": "WC28",
"fixinternetman": "WC28",
"Myp3uK_UA": "WC28",
"Alpusha": "WC28",
"Yusheo": "WC28",
"Y_C_": "WC28",
"dubvulture85": "WC28",
"jxb123": "WC28",
"KSA_Warrior": "WC28",
"R4YASF": "WC28",
"qxo56": "WC28",
"Kip557": "WC28",
"CompatPotato13": "WC28",
"lu47": "WC28",
"Atromitos7": "WC28",
"Agugar": "WC28",
"NilsGameIdiot": "WC28",
"Frizav": "WC28",
"Worinof": "WC28",
"Sorata000": "WC28",
"Aknow": "WC29",
"Loletrole": "WC29",
"Kaiko15": "WC29",
"Raidcist": "WC29",
"FubuChuu0510": "WC29",
"MidstormWu1f21": "WC29",
"Valk_Uderfrykte": "WC29",
"_Namark_": "WC29",
"HUXSTRIKE": "WC29",
"KingAnkleShanker": "WC29",
"Pampick": "WC29",
"Unbernable101": "WC29",
"Sikery": "WC29",
"Llamah77": "WC29",
"Nimikoo": "WC29",
"4lcohlicJesus": "WC29",
"BOGPAUKOV": "WC29",
"KiliE2001": "WC29",
"SuperSonicBacca": "WC29",
"Kiyushiiii": "WC3",
"FallPlunk": "WC3",
"Noranomicon": "WC3",
"Alsrb": "WC3",
"OverFears": "WC3",
"giantbabyOwo": "WC3",
"KingTekken": "WC3",
"Captain_Tenne": "WC3",
"koumaCraft": "WC3",
"Acholom": "WC3",
"God_Swords": "WC3",
"Allekuu": "WC3",
"Sleepy_RedWolf": "WC3",
"Kamilini123": "WC3",
"PolishWarrior": "WC3",
"AkarszKorszakllt": "WC3",
"XxOldSchoolxX": "WC3",
"Prokiller1999": "WC3",
"DestXM": "WC3",
"Shiny_Divzer": "WC3",
"Flamara98": "WC3",
"TheCreeperCow": "WC3",
"Muciakx": "WC3",
"Balbabocchers": "WC3",
"_Unbeatable_": "WC3",
"D0m1n6910": "WC3",
"Camull": "WC3",
"Scourge07": "WC3",
"Aron10": "WC3",
"lMM0RTAL": "WC3",
"puritakun": "WC3",
"Matthewhmkay": "WC3",
"Pluisje05": "WC30",
"DJRainbowToxic": "WC30",
"Lounyou": "WC30",
"RinnyVR": "WC30",
"Amor_VincitOmnia": "WC30",
"Ugnat_": "WC30",
"deathfrost_": "WC30",
"perdunilka": "WC30",
"chupikek": "WC30",
"TarzHel": "WC30",
"SSSS_XX": "WC30",
"Carlos99": "WC30",
"Xcodius": "WC30",
"Clipma": "WC30",
"Gundrabur": "WC30",
"Eranyum": "WC30",
"mehudisko": "WC30",
"hakkesaelger": "WC30",
"Nederzin": "WC30",
"McPumpky": "WC30",
"lian39": "WC30",
"DripAdmin": "WC30",
"Triumph_OuO": "WC30",
"Rustagain": "WC30",
"Sergent_Vilner": "WC30",
"duckdafiretruck": "WC30",
"CreepyCat2020": "WC30",
"Plasmawave12": "WC30",
"Ad1zz": "WC30",
"GodClaps": "WC30",
"_Wolf_Tamer_": "WC30",
"lvaraj": "WC30",
"LoyalToast21": "WC30",
"Omni6": "WC30",
"BlockBurst13": "WC30",
"Vellon": "WC31",
"Zepuuu": "WC31",
"BilNyeRussianSpy": "WC31",
"7re": "WC31",
"Ballooned": "WC31",
"MR_B1u3_Sk7": "WC31",
"fireliccio": "WC31",
"buu1031": "WC31",
"Nya_Scythe": "WC31",
"Mautos": "WC31",
"D4rk_K1nG99": "WC31",
"zTouchMeL": "WC31",
"CorgiMaster17": "WC31",
"Eno__": "WC31",
"GavinDB": "WC31",
"Jonathanibo": "WC31",
"_Kvuvba_": "WC31",
"DumbCone": "WC31",
"Exycze": "WC31",
"TNKCroco101": "WC31",
"_NoNitro": "WC31",
"AspectOfTheAsker": "WC31",
"Supermeisje1": "WC31",
"MythicManker": "WC31",
"DarthMaphclapper": "WC31",
"DeDooske": "WC31",
"Quoshu": "WC31",
"Danicool8": "WC31",
"_Sp00ky__": "WC31",
"arcionek": "WC31",
"Sandalphon": "WC32",
"AtaraxiaSeo": "WC32",
"axolotl41": "WC32",
"Troenk": "WC32",
"NoxAko": "WC32",
"Zamaksowany": "WC32",
"Iriya__": "WC32",
"I_AstrayaI_": "WC32",
"Kerokero_": "WC32",
"Veluko": "WC32",
"einavsh": "WC32",
"ValTheM": "WC32",
"Crybbo": "WC32",
"Foxy_Sensei016": "WC32",
"wisedrag": "WC32",
"playedmin16": "WC32",
"InferiorDrag": "WC32",
"COCOCOLDCOCO": "WC32",
"Walbos": "WC32",
"funayoshi1025": "WC32",
"nebosukedao": "WC32",
"BenSmart89": "WC32",
"JimmyAurum": "WC32",
"Jok3rM1P": "WC32",
"DoGe406": "WC32",
"Moltevolde": "WC32",
"Someboii": "WC32",
"FelixtheKage": "WC32",
"oTerminated": "WC32",
"Ingibiter": "WC32",
"cN": "WC32",
"chickenwingsXDD": "WC33",
"Hy1ru": "WC33",
"Chillager037": "WC33",
"tamago256": "WC33",
"kdfg3": "WC33",
"MotherDiana": "WC33",
"LisaHexe": "WC33",
"Alduiz": "WC33",
"dieSchokusnuss": "WC33",
"LemonStruck": "WC33",
"MilkDetergent": "WC33",
"AcridLucky": "WC33",
"BlazeTSG": "WC33",
"TheWynnWizard": "WC33",
"BarryYaoDe": "WC33",
"clv7498": "WC33",
"Keksz4": "WC33",
"Hashizawa": "WC33",
"Hyrou": "WC33",
"theBrunoYT": "WC33",
"jeffrey1607": "WC33",
"Of__Schlagenheim": "WC33",
"Ponfila": "WC33",
"Conventionality": "WC33",
"H1ld": "WC33",
"t356": "WC33",
"Airgamegood": "WC33",
"ThePenguinLord_": "WC33",
"Napoli_Ultras": "WC33",
"IgnitorZA": "WC33",
"ChaseSkies": "WC33",
"Trabies": "WC33",
"M1N1_PunK77": "WC33",
"Goyagi": "WC33",
"CakeDaily": "WC34",
"TheMythicalDeath": "WC34",
"TheNelston": "WC34",
"NoireEiki": "WC34",
"Nova_S0ULz": "WC34",
"kikapokale": "WC34",
"Azrul_": "WC34",
"Bikshrimp": "WC34",
"adrianwckam": "WC34",
"Scandalous2117": "WC34",
"hiMiz815": "WC34",
"ChiroruSqn1": "WC34",
"fishcute": "WC34",
"hikuun": "WC34",
"Niwapan": "WC34",
"MattIsAderp": "WC34",
"Jugulate": "WC34",
"ZorbynTheGreat": "WC34",
"peanuts107": "WC34",
"zNussMonster": "WC34",
"AlternateTitan": "WC34",
"olaly": "WC34",
"Ascabar": "WC34",
"EpicKing": "WC34",
"Remi088": "WC34",
"Zhyitshu": "WC34",
"De_Olijf": "WC34",
"KibaFox59": "WC34",
"kloweechu": "WC34",
"Yoru_Kage": "WC34",
"fastyzoom": "WC34",
"Niderzierer": "WC34",
"NekaiElDog": "WC34",
"Nigerion": "WC34",
"DingLei": "WC34",
"hogemoge": "WC34",
"cosin3": "WC34",
"Glizduch": "WC34",
"entrrr": "WC35",
"Magic_Vince": "WC35",
"nigkoWynnfan": "WC35",
"LordSaxum": "WC35",
"dragon1235636": "WC35",
"SilverEiki": "WC35",
"Mideem": "WC35",
"PaladinsUnited": "WC35",
"qopg": "WC35",
"POSIPI777": "WC35",
"banditaM": "WC35",
"StealWynncraft": "WC35",
"RogueHunt3rz": "WC35",
"MrTaller": "WC35",
"AfricaLite": "WC35",
"Wowzieez": "WC35",
"Lologtakile47": "WC35",
"ESD_UmpaCrumpa": "WC35",
"plucko1": "WC35",
"kapistus1": "WC35",
"fetifflay": "WC35",
"Apocalypse88": "WC35",
"Harrinho": "WC35",
"vandani": "WC35",
"Xuxuxu123": "WC35",
"Cog222": "WC35",
"Otuclop": "WC35",
"Mitrova": "WC35",
"Gaayy_Raaaay": "WC35",
"ba6ypeTKa": "WC35",
"myob333": "WC35",
"Krakensqull": "WC35",
"NaturalDisease": "WC36",
"coolimson": "WC36",
"EpicPuffin08": "WC36",
"X_Gaster": "WC36",
"Phantomshadow1": "WC36",
"yushinc": "WC36",
"mocha129": "WC36",
"Saury69_PVPTw": "WC36",
"YayaJunOO": "WC36",
"TheUndeadSlayer": "WC36",
"Seykiro": "WC36",
"JDaniel1": "WC36",
"liteqx": "WC36",
"EnderTeeny": "WC36",
"CyNaMiNeK": "WC36",
"motsila": "WC36",
"_Hosh1n02_": "WC36",
"Katteee": "WC36",
"Nikiligo": "WC36",
"_Herobrine__": "WC37",
"Tugaschi": "WC37",
"NastyTuna27": "WC37",
"Terivip_": "WC37",
"Sentientcat": "WC37",
"V_Saru": "WC37",
"kilegyek": "WC37",
"blasted999": "WC37",
"hanieh09": "WC37",
"Frankoo02": "WC37",
"AmadeuszPL": "WC37",
"ILLITV": "WC37",
"Banofi": "WC37",
"kisaragisirusu": "WC37",
"SFisch": "WC37",
"DodoPuncher": "WC37",
"0hArbuz": "WC37",
"nemuTea": "WC37",
"Shikarken98": "WC37",
"skiiwie": "WC37",
"Elatedboi": "WC37",
"2Onc": "WC37",
"Egon_Carlos": "WC37",
"G_GDOS": "WC37",
"1TZ_MYST1C": "WC37",
"mellon1006": "WC37",
"skySki": "WC37",
"Zarhel": "WC37",
"Starrekk": "WC37",
"PumaPandora": "WC37",
"Szalotka": "WC37",
"MiniPancake": "WC38",
"8_EM": "WC38",
"O3598": "WC38",
"BlueMaster5988": "WC38",
"Capnet": "WC38",
"lForMeanlies": "WC38",
"aCfR476": "WC38",
"Red_Epicness": "WC38",
"wrathfulalmond": "WC38",
"TamasPSA_": "WC38",
"BryanlordXXX": "WC38",
"IsaacDelta": "WC38",
"BOBmaester1234": "WC38",
"w3zerd": "WC38",
"Kethra134": "WC38",
"nano12x": "WC38",
"Maxx69420": "WC38",
"Blaze282": "WC38",
"Tsukuyomi_OvO": "WC38",
"Winndigo": "WC38",
"FireChaosflo": "WC38",
"octkunn": "WC38",
"CyrusXY": "WC38",
"Arctic_FrostyMC": "WC38",
"Moagle": "WC38",
"Mistic742": "WC38",
"Ferror598": "WC38",
"Miner2015": "WC38",
"vanthoff": "WC38",
"DarkJawFire": "WC38",
"socces": "WC38",
"landream": "WC38",
"TerraQu": "WC39",
"Rainbowave_": "WC39",
"Duudee": "WC39",
"Goldentrom": "WC39",
"J1NX49": "WC39",
"CadianGuardsman": "WC39",
"adriMc": "WC39",
"PerfectSinister": "WC39",
"5dps": "WC39",
"Firelight707": "WC39",
"hlickyalf": "WC39",
"13op": "WC39",
"LunaPookie": "WC39",
"SpookyChems": "WC39",
"Predator360x": "WC39",
"floatfuss": "WC39",
"Kevinovicc": "WC39",
"Unimpressively": "WC39",
"H2076": "WC39",
"Adam714pl": "WC39",
"in537fo": "WC39",
"M3rlijn": "WC39",
"QueenLexi07": "WC39",
"F4BE1": "WC39",
"GhostlyGhost": "WC39",
"Cyber_Alien": "WC39",
"zareu": "WC39",
"knitterf0rhire": "WC39",
"Terminalstim": "WC39",
"Vicvip": "WC39",
"s2Sung0": "WC39",
"aGIANTnoob": "WC39",
"LogicalBird": "WC39",
"DarkSamus9000": "WC39",
"Luxifurrr": "WC39",
"Whaphle": "WC4",
"purpleToki": "WC4",
"Skypedia": "WC4",
"slime2jpdesu": "WC4",
"MURARIAN": "WC4",
"AverageHyperinon": "WC4",
"straticks": "WC4",
"Doggc": "WC4",
"Ssapphiree": "WC4",
"WynncraftFemboy": "WC4",
"takkiHisa": "WC4",
"_Tanguyx": "WC4",
"Lineeeeen": "WC4",
"smilekun": "WC4",
"KVVS": "WC4",
"anpanP": "WC4",
"Mender__": "WC4",
"archineer2021": "WC4",
"Profilexd": "WC4",
"_YoumuKonpaku": "WC4",
"Zoeark": "WC4",
"Lucube128": "WC40",
"yotuba_Vanila": "WC40",
"BenKitty": "WC40",
"Hxkku": "WC40",
"Mawcel": "WC40",
"FillerPiece": "WC40",
"ladon2000": "WC40",
"Rainbow_God1": "WC40",
"Merduh": "WC40",
"ShiningDisco": "WC40",
"Deri0": "WC40",
"T0asterrr": "WC40",
"CDPlayuur": "WC40",
"NoliH": "WC40",
"441x": "WC40",
"Creeper2OOO": "WC40",
"Ogawa_Izumi": "WC40",
"Shlebou": "WC40",
"Tafboy": "WC40",
"Wevel50000": "WC40",
"imperathor02": "WC40",
"TofuBlue0524": "WC40",
"oArex": "WC40",
"Rumbuckers": "WC40",
"VeteranHans": "WC40",
"PartysaurusSVK": "WC40",
"ModernTroglodyte": "WC40",
"441_": "WC40",
"M1RAG3": "WC40",
"KodaGT": "WC40",
"GeportTV": "WC40",
"LICA72": "WC40",
"XtazyLuffy11": "WC41",
"Summoner009": "WC41",
"xGusbusX": "WC41",
"paliy111": "WC41",
"Just_RP": "WC41",
"CrptiicSouls": "WC41",
"tobi1967": "WC41",
"AlphaKnockout": "WC41",
"Saynator": "WC41",
"RafaelGomes": "WC41",
"catopan": "WC41",
"brimsket": "WC41",
"MAGICrrr": "WC41",
"sakana0911": "WC41",
"Mikasabe": "WC41",
"laturi10": "WC41",
"FM_Limao": "WC41",
"Myffinz": "WC41",
"mattron_": "WC41",
"uncherished": "WC41",
"da21a": "WC41",
"Waffleman1344": "WC41",
"Nico740": "WC41",
"ImJayman": "WC41",
"Rasol": "WC41",
"Purplahh": "WC41",
"avivam777": "WC41",
"lifeinpieces": "WC41",
"Ringo_SkyLevel9": "WC41",
"Drukkschah": "WC41",
"piporik91": "WC41",
"Dragonboy18F": "WC41",
"Playboysaile1337": "WC42",
"Scrin445": "WC42",
"Lucky604": "WC42",
"Pandiff": "WC42",
"123banan321": "WC42",
"Thurteen_P": "WC42",
"Meloer": "WC42",
"Bramanzero": "WC42",
"Technikel8": "WC42",
"Scacy": "WC42",
"AhmsordOutskirts": "WC42",
"Crutil": "WC42",
"JKlord_": "WC42",
"AevisGamer": "WC42",
"Rypox": "WC42",
"Cobrax": "WC42",
"PopcornDragon74": "WC42",
"TheEpicistguy": "WC42",
"Eternity_TQ": "WC42",
"AllayJuice": "WC42",
"88ms": "WC42",
"SwimmableGuide9": "WC42",
"Maggieeeee5": "WC42",
"kingdani22": "WC42",
"Jeztier": "WC42",
"Cheeseboilol": "WC42",
"Lari69": "WC42",
"meztiger9346": "WC42",
"Temirina": "WC42",
"realbluelion17": "WC42",
"LethalFurret": "WC42",
"Benji025": "WC42",
"InfamousMaster": "WC42",
"Malsaken": "WC42",
"flurken007": "WC42",
"Fabbianskier": "WC5",
"liiskuu": "WC5",
"Maarcus": "WC5",
"Darexxpvp": "WC5",
"eerror": "WC5",
"poiscaille62": "WC5",
"Ruwufer": "WC5",
"LuCoolUs": "WC5",
"_Bats_": "WC5",
"K3nde": "WC5",
"wixed43": "WC5",
"Wh4ite_": "WC5",
"MRkobaltMLG": "WC5",
"Rombo_": "WC5",
"ErronJax": "WC5",
"nene4949": "WC5",
"Spouter666": "WC6",
"Raxinia": "WC6",
"DrtikEcho": "WC6",
"KwiebS": "WC6",
"RIMUCCHI42": "WC6",
"huu2251": "WC6",
"nrhr555": "WC6",
"nidesan": "WC6",
"Styx_He1ix": "WC6",
"LeTritonius": "WC6",
"xCrafter41": "WC6",
"itedebee": "WC7",
"Coyot": "WC7",
"VHoltz_": "WC7",
"IBALLISTIC09": "WC7",
"lolokko123": "WC7",
"PokemonGamer11": "WC7",
"MemeBard": "WC7",
"TAqWood": "WC7",
"orenGr": "WC7",
"NoHaxJustKittens": "WC7",
"Glacade": "WC7",
"ForgottenP1ckaxe": "WC7",
"VHoooooooooooltz": "WC7",
"sutoreink": "WC7",
"Astrenki": "WC7",
"ToNoize": "WC7",
"Wreki": "WC7",
"Zinnig": "WC7",
"ENORMOUZ": "WC7",
"SaruV": "WC7",
"Filai": "WC7",
"you0123": "WC7",
"Moe_Muyo": "WC7",
"NeialTw": "WC7",
"FirstLoveAgain": "WC7",
"TeleWarp": "WC7",
"kioabc1": "WC7",
"Nynnf": "WC7",
"xiqwh": "WC7",
"GAZtheMiner": "WC7",
"TCommanderRex": "WC7",
"19kss": "WC7",
"The_Cyberiad": "WC7",
"Amorciito": "WC7",
"MoeBlock": "WC7",
"Mayrel": "WC7",
"Burnette": "WC7",
"skarpituki": "WC7",
"ClodDys": "WC8",
"darkdusk234": "WC8",
"Saint_Rage": "WC8",
"withhonor": "WC8",
"Jeck14": "WC8",
"MaiNiie": "WC8",
"BossBernaski8": "WC8",
"AlexJr2006": "WC8",
"imfeg": "WC8",
"Turtle_Ingmar": "WC8",
"SoraSeiei": "WC8",
"LuckyFlow": "WC8",
"twHuntx": "WC8",
"Nickoxdddd": "WC8",
"TGS_PrimeTime": "WC8",
"Ryza_A948": "WC8",
"Tilapiaaaa": "WC8",
"planescaper": "WC8",
"idoswich": "WC8",
"Plus1": "WC8",
"rx782_YN": "WC8",
"PeaceManYo": "WC8",
"SuperLoLo123456": "WC8",
"ComradeLuis": "WC8",
"Kornel6": "WC8",
"angxinying": "WC8",
"RotiBakar_": "WC8",
"Pickle_Man1": "WC8",
"GiantWolf": "WC8",
"angxinyi": "WC8",
"Barvetoo": "WC9",
"Aerialya": "WC9",
"overshotGrunt": "WC9",
"ErType": "WC9",
"_Anonimowy_": "WC9",
"Luismigon": "WC9",
"Endymoin": "WC9",
"bm0D1": "WC9",
"Ranger76": "WC9",
"5haman": "WC9",
"28HoursLater": "WC9",
"Nightire": "WC9",
"JoJiLL_ST": "WC9",
"Softwerker": "WC9",
"vexyo": "WC9"
}
}