From 706052149a48edc92f8b0731836967d5b72f1774 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 17 Jun 2026 20:02:53 -0500 Subject: [PATCH] feat: update june 2026 api fixtures --- app/models/clans.py | 11 +- app/models/players.py | 8 +- data/clans/currentwar/INWAR.json | 17 +- data/clans/leaguegroup/ENDED.json | 3 +- data/clans/leaguegroup/INWAR.json | 4 +- data/clans/warlog/WARLOG.json | 3198 ++-- data/leagues/LISTLEAGUESEASONS.json | 795 +- data/leagues/LISTLEAGUETIERS.json | 572 +- data/leagues/league-season/LEAGUESEASON.json | 5196 +++---- data/locations/rankings/players/COUNTRY.json | 182 +- data/players/battlelog/LOG.json | 13528 +++++++++-------- data/players/player/FOUND.json | 2986 ++-- tests/test_api_changes.py | 114 + 13 files changed, 13564 insertions(+), 13050 deletions(-) create mode 100644 tests/test_api_changes.py diff --git a/app/models/clans.py b/app/models/clans.py index 3abafc2..e760c19 100644 --- a/app/models/clans.py +++ b/app/models/clans.py @@ -31,6 +31,7 @@ "any", ] ClanType = Literal["open", "inviteOnly", "closed"] +BattleModifier = Literal["NONE", "HARD_MODE", "MINUS_ONE", "MINUS_TWO", "MINUS_THREE"] class ClanMember(ApiModel): @@ -137,7 +138,7 @@ class ClanWarAttack(ApiModel): stars: int destructionPercentage: int order: int - duration: int | None = None + duration: int class ClanWarMember(ApiModel): @@ -151,8 +152,8 @@ class ClanWarMember(ApiModel): class WarClan(ApiModel): - tag: str - name: str + tag: str | None = None + name: str | None = None badgeUrls: BadgeUrls | None = None clanLevel: int attacks: int | None = None @@ -166,7 +167,7 @@ class ClanWar(ApiModel): state: str teamSize: int | None = None attacksPerMember: int | None = None - battleModifier: str | None = None + battleModifier: BattleModifier | None = None preparationStartTime: str | None = None startTime: str | None = None endTime: str | None = None @@ -179,7 +180,7 @@ class ClanWarLogEntry(ApiModel): endTime: str teamSize: int attacksPerMember: int | None = None - battleModifier: str | None = None + battleModifier: BattleModifier | None = None clan: WarClan opponent: WarClan diff --git a/app/models/players.py b/app/models/players.py index 26226db..272032f 100644 --- a/app/models/players.py +++ b/app/models/players.py @@ -57,15 +57,19 @@ class Player(ApiModel): class BattleLogEntry(ApiModel): - battleType: Literal["ranked", "legend", "homeVillage"] + battleType: Literal["HOME_VILLAGE", "RANKED", "LEGEND"] attack: bool armyShareCode: str | None = None opponentPlayerTag: str + opponentName: str + opponentTownHallLevel: int stars: int destructionPercentage: int lootedResources: list[Resource] = Field(default_factory=list) extraLootedResources: list[Resource] = Field(default_factory=list) availableLoot: list[Resource] = Field(default_factory=list) + battleTime: int + battleTimestamp: str class BattleLogResponse(ItemsResponse[BattleLogEntry]): @@ -77,7 +81,7 @@ class PlayerRanking(ApiModel): name: str expLevel: int rank: int - previousRank: int + previousRank: int | None = None trophies: int attackWins: int | None = None defenseWins: int | None = None diff --git a/data/clans/currentwar/INWAR.json b/data/clans/currentwar/INWAR.json index 3752871..589312b 100644 --- a/data/clans/currentwar/INWAR.json +++ b/data/clans/currentwar/INWAR.json @@ -21,7 +21,7 @@ "members": [ { "tag": "#2PRU8RPCP", - "name": "\u2b50\ufe0fsncmaxi\u2b50\ufe0f", + "name": "⭐️sncmaxi⭐️", "townhallLevel": 12, "mapPosition": 1, "attacks": [ @@ -96,7 +96,7 @@ }, { "tag": "#P0C9UJLPP", - "name": "YoSoyGod\u2764\ufe0f\u1d40\u1d34\u00b9\u00b2\u2081", + "name": "YoSoyGod❤️ᵀᴴ¹²₁", "townhallLevel": 12, "mapPosition": 3, "attacks": [ @@ -148,7 +148,7 @@ }, "opponent": { "tag": "#2QCVRQCQR", - "name": "\u2122 Galaxy", + "name": "™ Galaxy", "badgeUrls": { "small": "https://api-assets.clashofclans.com/badges/70/AEaHm0FmstsRRGTqajAhcz1Mi7ceR2ys7g5PL7p2mvk.png", "large": "https://api-assets.clashofclans.com/badges/512/AEaHm0FmstsRRGTqajAhcz1Mi7ceR2ys7g5PL7p2mvk.png", @@ -161,7 +161,7 @@ "members": [ { "tag": "#9R08QRUU2", - "name": "\u767c\uff2e\uff29\uff34\uff29\uff33\uff28\u2757", + "name": "發NITISH❗", "townhallLevel": 12, "mapPosition": 1, "attacks": [ @@ -236,7 +236,7 @@ }, { "tag": "#PLGGC0L02", - "name": "\uff2b\u5de5\u3057\u3057\u30e2\u5c3a \u30e0", + "name": "K工ししモ尺 ム", "townhallLevel": 12, "mapPosition": 5, "attacks": [ @@ -261,7 +261,7 @@ }, { "tag": "#28R9YGPLP", - "name": "\uff27\uff28\uff2f\uff33\uff34\u00a0\uff26\uff32\uff25\uff21\uff2b", + "name": "GHOST FREAK", "townhallLevel": 12, "mapPosition": 4, "attacks": [ @@ -285,11 +285,12 @@ } } ] - } + }, + "battleModifier": "MINUS_ONE" }, "headers": { "cache-control": "max-age=120", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/clans/leaguegroup/ENDED.json b/data/clans/leaguegroup/ENDED.json index 2ff9208..d78105e 100644 --- a/data/clans/leaguegroup/ENDED.json +++ b/data/clans/leaguegroup/ENDED.json @@ -1,7 +1,7 @@ { "body": { "state": "ended", - "season": "2023-09", + "season": "2023-09-01", "clans": [ { "tag": "#2PP", @@ -805,4 +805,3 @@ }, "response_code": 200 } - diff --git a/data/clans/leaguegroup/INWAR.json b/data/clans/leaguegroup/INWAR.json index 00e4cef..48be784 100644 --- a/data/clans/leaguegroup/INWAR.json +++ b/data/clans/leaguegroup/INWAR.json @@ -1,7 +1,7 @@ { "body": { "state": "inWar", - "season": "2023-06", + "season": "2023-06-02", "clans": [ { "tag": "#2PP", @@ -1909,4 +1909,4 @@ "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/clans/warlog/WARLOG.json b/data/clans/warlog/WARLOG.json index 96f49bc..00262de 100644 --- a/data/clans/warlog/WARLOG.json +++ b/data/clans/warlog/WARLOG.json @@ -1,1658 +1,1658 @@ { "body": { - "items": [ - { - "result": "lose", - "endTime": "20260313T192246.000Z", - "teamSize": 10, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 14, - "stars": 22, - "destructionPercentage": 83.3, - "expEarned": 185 + "items": [ + { + "result": "lose", + "endTime": "20260313T192246.000Z", + "teamSize": 10, + "attacksPerMember": 2, + "battleModifier": "MINUS_THREE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 14, + "stars": 22, + "destructionPercentage": 83.3, + "expEarned": 185 + }, + "opponent": { + "tag": "#YC08RRGQ", + "name": "رياحين القلوب", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/Mo2tulagc8ORWUPubWdZ-laYkC0eYKo5nr9Eu7bcwPI.png", + "large": "https://api-assets.clashofclans.com/badges/512/Mo2tulagc8ORWUPubWdZ-laYkC0eYKo5nr9Eu7bcwPI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/Mo2tulagc8ORWUPubWdZ-laYkC0eYKo5nr9Eu7bcwPI.png" + }, + "clanLevel": 15, + "stars": 30, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#YC08RRGQ", - "name": "رياحين القلوب", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/Mo2tulagc8ORWUPubWdZ-laYkC0eYKo5nr9Eu7bcwPI.png", - "large": "https://api-assets.clashofclans.com/badges/512/Mo2tulagc8ORWUPubWdZ-laYkC0eYKo5nr9Eu7bcwPI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/Mo2tulagc8ORWUPubWdZ-laYkC0eYKo5nr9Eu7bcwPI.png" - }, - "clanLevel": 15, - "stars": 30, - "destructionPercentage": 100 - } - }, - { - "result": "win", - "endTime": "20260301T211640.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 35, - "stars": 60, - "destructionPercentage": 100, - "expEarned": 382 + { + "result": "win", + "endTime": "20260301T211640.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 35, + "stars": 60, + "destructionPercentage": 100, + "expEarned": 382 + }, + "opponent": { + "tag": "#9VG2UGJQ", + "name": "MEGA PERSIAN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/1bheGiyfJRhqIiwh72SrvOrun7IsnUGc18xPrNVVNHI.png", + "large": "https://api-assets.clashofclans.com/badges/512/1bheGiyfJRhqIiwh72SrvOrun7IsnUGc18xPrNVVNHI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/1bheGiyfJRhqIiwh72SrvOrun7IsnUGc18xPrNVVNHI.png" + }, + "clanLevel": 27, + "stars": 21, + "destructionPercentage": 37.8 + } }, - "opponent": { - "tag": "#9VG2UGJQ", - "name": "MEGA PERSIAN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/1bheGiyfJRhqIiwh72SrvOrun7IsnUGc18xPrNVVNHI.png", - "large": "https://api-assets.clashofclans.com/badges/512/1bheGiyfJRhqIiwh72SrvOrun7IsnUGc18xPrNVVNHI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/1bheGiyfJRhqIiwh72SrvOrun7IsnUGc18xPrNVVNHI.png" - }, - "clanLevel": 27, - "stars": 21, - "destructionPercentage": 37.8 - } - }, - { - "result": "lose", - "endTime": "20260227T195848.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 31, - "stars": 55, - "destructionPercentage": 97.4, - "expEarned": 323 + { + "result": "lose", + "endTime": "20260227T195848.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 31, + "stars": 55, + "destructionPercentage": 97.4, + "expEarned": 323 + }, + "opponent": { + "tag": "#9RQ8C2QU", + "name": "穿越星海", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/gIQBrFNZb598YXDUwqwVSyKqaLIhb3N9q29RhSA5j54.png", + "large": "https://api-assets.clashofclans.com/badges/512/gIQBrFNZb598YXDUwqwVSyKqaLIhb3N9q29RhSA5j54.png", + "medium": "https://api-assets.clashofclans.com/badges/200/gIQBrFNZb598YXDUwqwVSyKqaLIhb3N9q29RhSA5j54.png" + }, + "clanLevel": 23, + "stars": 60, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#9RQ8C2QU", - "name": "穿越星海", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/gIQBrFNZb598YXDUwqwVSyKqaLIhb3N9q29RhSA5j54.png", - "large": "https://api-assets.clashofclans.com/badges/512/gIQBrFNZb598YXDUwqwVSyKqaLIhb3N9q29RhSA5j54.png", - "medium": "https://api-assets.clashofclans.com/badges/200/gIQBrFNZb598YXDUwqwVSyKqaLIhb3N9q29RhSA5j54.png" - }, - "clanLevel": 23, - "stars": 60, - "destructionPercentage": 100 - } - }, - { - "result": "win", - "endTime": "20260224T204720.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 34, - "stars": 60, - "destructionPercentage": 100, - "expEarned": 379 + { + "result": "win", + "endTime": "20260224T204720.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 34, + "stars": 60, + "destructionPercentage": 100, + "expEarned": 379 + }, + "opponent": { + "tag": "#L2JYC28L", + "name": "دختران جنگجو", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/vCUm6mQvwFh-N6WIvSZYj_ABac8Y0v298xXhZqsc-Cw.png", + "large": "https://api-assets.clashofclans.com/badges/512/vCUm6mQvwFh-N6WIvSZYj_ABac8Y0v298xXhZqsc-Cw.png", + "medium": "https://api-assets.clashofclans.com/badges/200/vCUm6mQvwFh-N6WIvSZYj_ABac8Y0v298xXhZqsc-Cw.png" + }, + "clanLevel": 26, + "stars": 40, + "destructionPercentage": 85.4 + } }, - "opponent": { - "tag": "#L2JYC28L", - "name": "دختران جنگجو", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/vCUm6mQvwFh-N6WIvSZYj_ABac8Y0v298xXhZqsc-Cw.png", - "large": "https://api-assets.clashofclans.com/badges/512/vCUm6mQvwFh-N6WIvSZYj_ABac8Y0v298xXhZqsc-Cw.png", - "medium": "https://api-assets.clashofclans.com/badges/200/vCUm6mQvwFh-N6WIvSZYj_ABac8Y0v298xXhZqsc-Cw.png" - }, - "clanLevel": 26, - "stars": 40, - "destructionPercentage": 85.4 - } - }, - { - "result": "win", - "endTime": "20260220T192342.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 34, - "stars": 55, - "destructionPercentage": 97.35, - "expEarned": 377 + { + "result": "win", + "endTime": "20260220T192342.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 34, + "stars": 55, + "destructionPercentage": 97.35, + "expEarned": 377 + }, + "opponent": { + "tag": "#8VY92RUC", + "name": "Operation War", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CnjJVAS7VttZc2Kaf-AGTbBLHTTXzKUzEVqtr7Elk0w.png", + "large": "https://api-assets.clashofclans.com/badges/512/CnjJVAS7VttZc2Kaf-AGTbBLHTTXzKUzEVqtr7Elk0w.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CnjJVAS7VttZc2Kaf-AGTbBLHTTXzKUzEVqtr7Elk0w.png" + }, + "clanLevel": 32, + "stars": 55, + "destructionPercentage": 92.75 + } }, - "opponent": { - "tag": "#8VY92RUC", - "name": "Operation War", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CnjJVAS7VttZc2Kaf-AGTbBLHTTXzKUzEVqtr7Elk0w.png", - "large": "https://api-assets.clashofclans.com/badges/512/CnjJVAS7VttZc2Kaf-AGTbBLHTTXzKUzEVqtr7Elk0w.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CnjJVAS7VttZc2Kaf-AGTbBLHTTXzKUzEVqtr7Elk0w.png" - }, - "clanLevel": 32, - "stars": 55, - "destructionPercentage": 92.75 - } - }, - { - "result": "win", - "endTime": "20260218T195119.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 36, - "stars": 54, - "destructionPercentage": 98.65, - "expEarned": 382 + { + "result": "win", + "endTime": "20260218T195119.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 36, + "stars": 54, + "destructionPercentage": 98.65, + "expEarned": 382 + }, + "opponent": { + "tag": "#29CQP9UV", + "name": "Повстанці", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/1zLn1peMgZMqSa-0SJHGeTvXTXTCpUAlOhtc9BgETvM.png", + "large": "https://api-assets.clashofclans.com/badges/512/1zLn1peMgZMqSa-0SJHGeTvXTXTCpUAlOhtc9BgETvM.png", + "medium": "https://api-assets.clashofclans.com/badges/200/1zLn1peMgZMqSa-0SJHGeTvXTXTCpUAlOhtc9BgETvM.png" + }, + "clanLevel": 34, + "stars": 49, + "destructionPercentage": 89.25 + } }, - "opponent": { - "tag": "#29CQP9UV", - "name": "Повстанці", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/1zLn1peMgZMqSa-0SJHGeTvXTXTCpUAlOhtc9BgETvM.png", - "large": "https://api-assets.clashofclans.com/badges/512/1zLn1peMgZMqSa-0SJHGeTvXTXTCpUAlOhtc9BgETvM.png", - "medium": "https://api-assets.clashofclans.com/badges/200/1zLn1peMgZMqSa-0SJHGeTvXTXTCpUAlOhtc9BgETvM.png" - }, - "clanLevel": 34, - "stars": 49, - "destructionPercentage": 89.25 - } - }, - { - "result": "lose", - "endTime": "20260216T203447.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 31, - "stars": 53, - "destructionPercentage": 94.35, - "expEarned": 321 + { + "result": "lose", + "endTime": "20260216T203447.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 31, + "stars": 53, + "destructionPercentage": 94.35, + "expEarned": 321 + }, + "opponent": { + "tag": "#8YU9PRRR", + "name": "ehden team", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/soMh3QLIDIRYYDo8zI7mNuSdhq8NgtnzkJB0zIN3qPU.png", + "large": "https://api-assets.clashofclans.com/badges/512/soMh3QLIDIRYYDo8zI7mNuSdhq8NgtnzkJB0zIN3qPU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/soMh3QLIDIRYYDo8zI7mNuSdhq8NgtnzkJB0zIN3qPU.png" + }, + "clanLevel": 28, + "stars": 54, + "destructionPercentage": 96.4 + } }, - "opponent": { - "tag": "#8YU9PRRR", - "name": "ehden team", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/soMh3QLIDIRYYDo8zI7mNuSdhq8NgtnzkJB0zIN3qPU.png", - "large": "https://api-assets.clashofclans.com/badges/512/soMh3QLIDIRYYDo8zI7mNuSdhq8NgtnzkJB0zIN3qPU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/soMh3QLIDIRYYDo8zI7mNuSdhq8NgtnzkJB0zIN3qPU.png" - }, - "clanLevel": 28, - "stars": 54, - "destructionPercentage": 96.4 - } - }, - { - "result": "lose", - "endTime": "20260214T203622.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 28, - "stars": 56, - "destructionPercentage": 97.8, - "expEarned": 333 + { + "result": "lose", + "endTime": "20260214T203622.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 28, + "stars": 56, + "destructionPercentage": 97.8, + "expEarned": 333 + }, + "opponent": { + "tag": "#822JV9V0", + "name": "iran iau", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/bhItqREHu8aTEpyR8O5-pfcC1iKHowVbOAFmmsy1lOM.png", + "large": "https://api-assets.clashofclans.com/badges/512/bhItqREHu8aTEpyR8O5-pfcC1iKHowVbOAFmmsy1lOM.png", + "medium": "https://api-assets.clashofclans.com/badges/200/bhItqREHu8aTEpyR8O5-pfcC1iKHowVbOAFmmsy1lOM.png" + }, + "clanLevel": 29, + "stars": 58, + "destructionPercentage": 97.4 + } }, - "opponent": { - "tag": "#822JV9V0", - "name": "iran iau", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/bhItqREHu8aTEpyR8O5-pfcC1iKHowVbOAFmmsy1lOM.png", - "large": "https://api-assets.clashofclans.com/badges/512/bhItqREHu8aTEpyR8O5-pfcC1iKHowVbOAFmmsy1lOM.png", - "medium": "https://api-assets.clashofclans.com/badges/200/bhItqREHu8aTEpyR8O5-pfcC1iKHowVbOAFmmsy1lOM.png" - }, - "clanLevel": 29, - "stars": 58, - "destructionPercentage": 97.4 - } - }, - { - "result": "lose", - "endTime": "20260127T203608.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 23, - "stars": 41, - "destructionPercentage": 99.2, - "expEarned": 258 + { + "result": "lose", + "endTime": "20260127T203608.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 23, + "stars": 41, + "destructionPercentage": 99.2, + "expEarned": 258 + }, + "opponent": { + "tag": "#29RR9JCJU", + "name": "#TÜRKİYEM@", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/HzKVHHHx16yRm8jq9uFiywpL3yp6dWHqIaJX711Tga4.png", + "large": "https://api-assets.clashofclans.com/badges/512/HzKVHHHx16yRm8jq9uFiywpL3yp6dWHqIaJX711Tga4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/HzKVHHHx16yRm8jq9uFiywpL3yp6dWHqIaJX711Tga4.png" + }, + "clanLevel": 24, + "stars": 43, + "destructionPercentage": 97.333336 + } }, - "opponent": { - "tag": "#29RR9JCJU", - "name": "#TÜRKİYEM@", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/HzKVHHHx16yRm8jq9uFiywpL3yp6dWHqIaJX711Tga4.png", - "large": "https://api-assets.clashofclans.com/badges/512/HzKVHHHx16yRm8jq9uFiywpL3yp6dWHqIaJX711Tga4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/HzKVHHHx16yRm8jq9uFiywpL3yp6dWHqIaJX711Tga4.png" - }, - "clanLevel": 24, - "stars": 43, - "destructionPercentage": 97.333336 - } - }, - { - "result": "lose", - "endTime": "20260125T195845.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 26, - "stars": 38, - "destructionPercentage": 95.73333, - "expEarned": 259 + { + "result": "lose", + "endTime": "20260125T195845.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 26, + "stars": 38, + "destructionPercentage": 95.73333, + "expEarned": 259 + }, + "opponent": { + "tag": "#29P8JCG98", + "name": "!.HaYaL.!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/lw2hwCaxtDLrT24u1r5iNy-Xn2dYbiMxOnXNK7Esstw.png", + "large": "https://api-assets.clashofclans.com/badges/512/lw2hwCaxtDLrT24u1r5iNy-Xn2dYbiMxOnXNK7Esstw.png", + "medium": "https://api-assets.clashofclans.com/badges/200/lw2hwCaxtDLrT24u1r5iNy-Xn2dYbiMxOnXNK7Esstw.png" + }, + "clanLevel": 28, + "stars": 44, + "destructionPercentage": 98.86667 + } }, - "opponent": { - "tag": "#29P8JCG98", - "name": "!.HaYaL.!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/lw2hwCaxtDLrT24u1r5iNy-Xn2dYbiMxOnXNK7Esstw.png", - "large": "https://api-assets.clashofclans.com/badges/512/lw2hwCaxtDLrT24u1r5iNy-Xn2dYbiMxOnXNK7Esstw.png", - "medium": "https://api-assets.clashofclans.com/badges/200/lw2hwCaxtDLrT24u1r5iNy-Xn2dYbiMxOnXNK7Esstw.png" - }, - "clanLevel": 28, - "stars": 44, - "destructionPercentage": 98.86667 - } - }, - { - "result": "lose", - "endTime": "20260123T193436.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 27, - "stars": 42, - "destructionPercentage": 98.333336, - "expEarned": 259 + { + "result": "lose", + "endTime": "20260123T193436.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 27, + "stars": 42, + "destructionPercentage": 98.333336, + "expEarned": 259 + }, + "opponent": { + "tag": "#8JLY9V8V", + "name": "les guerriersfr", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/i1oLGAC3_qs6Alt0hBLZPjb2wMiad3QrXgCa5RBVku4.png", + "large": "https://api-assets.clashofclans.com/badges/512/i1oLGAC3_qs6Alt0hBLZPjb2wMiad3QrXgCa5RBVku4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/i1oLGAC3_qs6Alt0hBLZPjb2wMiad3QrXgCa5RBVku4.png" + }, + "clanLevel": 30, + "stars": 43, + "destructionPercentage": 99.2 + } }, - "opponent": { - "tag": "#8JLY9V8V", - "name": "les guerriersfr", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/i1oLGAC3_qs6Alt0hBLZPjb2wMiad3QrXgCa5RBVku4.png", - "large": "https://api-assets.clashofclans.com/badges/512/i1oLGAC3_qs6Alt0hBLZPjb2wMiad3QrXgCa5RBVku4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/i1oLGAC3_qs6Alt0hBLZPjb2wMiad3QrXgCa5RBVku4.png" - }, - "clanLevel": 30, - "stars": 43, - "destructionPercentage": 99.2 - } - }, - { - "result": "win", - "endTime": "20260121T200753.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 30, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 309 + { + "result": "win", + "endTime": "20260121T200753.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 30, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 309 + }, + "opponent": { + "tag": "#P99J9GVC", + "name": "ClashClash", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/7fLOX2gJGj-MaluaJX_2GMpgRHE6Op2B5m3NPhnwqt0.png", + "large": "https://api-assets.clashofclans.com/badges/512/7fLOX2gJGj-MaluaJX_2GMpgRHE6Op2B5m3NPhnwqt0.png", + "medium": "https://api-assets.clashofclans.com/badges/200/7fLOX2gJGj-MaluaJX_2GMpgRHE6Op2B5m3NPhnwqt0.png" + }, + "clanLevel": 30, + "stars": 31, + "destructionPercentage": 84.333336 + } }, - "opponent": { - "tag": "#P99J9GVC", - "name": "ClashClash", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/7fLOX2gJGj-MaluaJX_2GMpgRHE6Op2B5m3NPhnwqt0.png", - "large": "https://api-assets.clashofclans.com/badges/512/7fLOX2gJGj-MaluaJX_2GMpgRHE6Op2B5m3NPhnwqt0.png", - "medium": "https://api-assets.clashofclans.com/badges/200/7fLOX2gJGj-MaluaJX_2GMpgRHE6Op2B5m3NPhnwqt0.png" - }, - "clanLevel": 30, - "stars": 31, - "destructionPercentage": 84.333336 - } - }, - { - "result": "win", - "endTime": "20260119T203440.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 28, - "stars": 44, - "destructionPercentage": 98.8, - "expEarned": 310 + { + "result": "win", + "endTime": "20260119T203440.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 28, + "stars": 44, + "destructionPercentage": 98.8, + "expEarned": 310 + }, + "opponent": { + "tag": "#2QJUCY0GL", + "name": "VATAN❤️AŞKI 2", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/smmcKUq2BTonqo5M5kka4-y588ecIilB1FonmgzYnpg.png", + "large": "https://api-assets.clashofclans.com/badges/512/smmcKUq2BTonqo5M5kka4-y588ecIilB1FonmgzYnpg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/smmcKUq2BTonqo5M5kka4-y588ecIilB1FonmgzYnpg.png" + }, + "clanLevel": 14, + "stars": 27, + "destructionPercentage": 65.8 + } }, - "opponent": { - "tag": "#2QJUCY0GL", - "name": "VATAN❤️AŞKI 2", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/smmcKUq2BTonqo5M5kka4-y588ecIilB1FonmgzYnpg.png", - "large": "https://api-assets.clashofclans.com/badges/512/smmcKUq2BTonqo5M5kka4-y588ecIilB1FonmgzYnpg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/smmcKUq2BTonqo5M5kka4-y588ecIilB1FonmgzYnpg.png" - }, - "clanLevel": 14, - "stars": 27, - "destructionPercentage": 65.8 - } - }, - { - "result": "win", - "endTime": "20260117T201522.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 30, - "stars": 43, - "destructionPercentage": 98.666664, - "expEarned": 310 + { + "result": "win", + "endTime": "20260117T201522.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 30, + "stars": 43, + "destructionPercentage": 98.666664, + "expEarned": 310 + }, + "opponent": { + "tag": "#8LYPLQPG", + "name": "العاصفه السوداء", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/V_buoX_qVKvDW6x7z-kPofcUiIEZ50QQKyceFhvY2U0.png", + "large": "https://api-assets.clashofclans.com/badges/512/V_buoX_qVKvDW6x7z-kPofcUiIEZ50QQKyceFhvY2U0.png", + "medium": "https://api-assets.clashofclans.com/badges/200/V_buoX_qVKvDW6x7z-kPofcUiIEZ50QQKyceFhvY2U0.png" + }, + "clanLevel": 26, + "stars": 34, + "destructionPercentage": 82.066666 + } }, - "opponent": { - "tag": "#8LYPLQPG", - "name": "العاصفه السوداء", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/V_buoX_qVKvDW6x7z-kPofcUiIEZ50QQKyceFhvY2U0.png", - "large": "https://api-assets.clashofclans.com/badges/512/V_buoX_qVKvDW6x7z-kPofcUiIEZ50QQKyceFhvY2U0.png", - "medium": "https://api-assets.clashofclans.com/badges/200/V_buoX_qVKvDW6x7z-kPofcUiIEZ50QQKyceFhvY2U0.png" - }, - "clanLevel": 26, - "stars": 34, - "destructionPercentage": 82.066666 - } - }, - { - "result": "lose", - "endTime": "20260115T200814.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 28, - "stars": 35, - "destructionPercentage": 92.933334, - "expEarned": 260 + { + "result": "lose", + "endTime": "20260115T200814.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 28, + "stars": 35, + "destructionPercentage": 92.933334, + "expEarned": 260 + }, + "opponent": { + "tag": "#Y29UQGVQ", + "name": "VATANCILAR", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/9q2kEUsRDx9Cvhp6IWzaddNgc3OK4hel6HGVdkUHu28.png", + "large": "https://api-assets.clashofclans.com/badges/512/9q2kEUsRDx9Cvhp6IWzaddNgc3OK4hel6HGVdkUHu28.png", + "medium": "https://api-assets.clashofclans.com/badges/200/9q2kEUsRDx9Cvhp6IWzaddNgc3OK4hel6HGVdkUHu28.png" + }, + "clanLevel": 30, + "stars": 45, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#Y29UQGVQ", - "name": "VATANCILAR", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/9q2kEUsRDx9Cvhp6IWzaddNgc3OK4hel6HGVdkUHu28.png", - "large": "https://api-assets.clashofclans.com/badges/512/9q2kEUsRDx9Cvhp6IWzaddNgc3OK4hel6HGVdkUHu28.png", - "medium": "https://api-assets.clashofclans.com/badges/200/9q2kEUsRDx9Cvhp6IWzaddNgc3OK4hel6HGVdkUHu28.png" - }, - "clanLevel": 30, - "stars": 45, - "destructionPercentage": 100 - } - }, - { - "result": "lose", - "endTime": "20260113T210034.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 40, - "stars": 58, - "destructionPercentage": 99.45, - "expEarned": 335 + { + "result": "lose", + "endTime": "20260113T210034.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 40, + "stars": 58, + "destructionPercentage": 99.45, + "expEarned": 335 + }, + "opponent": { + "tag": "#Q9QRQJR", + "name": "Lviv Lions CW", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/jomo-cHI1HHaWK4mkMo6zINXxI6dh9Ki3KUWyWc1hzE.png", + "large": "https://api-assets.clashofclans.com/badges/512/jomo-cHI1HHaWK4mkMo6zINXxI6dh9Ki3KUWyWc1hzE.png", + "medium": "https://api-assets.clashofclans.com/badges/200/jomo-cHI1HHaWK4mkMo6zINXxI6dh9Ki3KUWyWc1hzE.png" + }, + "clanLevel": 33, + "stars": 60, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#Q9QRQJR", - "name": "Lviv Lions CW", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/jomo-cHI1HHaWK4mkMo6zINXxI6dh9Ki3KUWyWc1hzE.png", - "large": "https://api-assets.clashofclans.com/badges/512/jomo-cHI1HHaWK4mkMo6zINXxI6dh9Ki3KUWyWc1hzE.png", - "medium": "https://api-assets.clashofclans.com/badges/200/jomo-cHI1HHaWK4mkMo6zINXxI6dh9Ki3KUWyWc1hzE.png" - }, - "clanLevel": 33, - "stars": 60, - "destructionPercentage": 100 - } - }, - { - "result": null, - "endTime": "20260110T230353.000Z", - "teamSize": 15, - "attacksPerMember": 1, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 105, - "stars": 324, - "destructionPercentage": 662.73334, - "expEarned": 0 + { + "result": null, + "endTime": "20260110T230353.000Z", + "teamSize": 15, + "attacksPerMember": 1, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 105, + "stars": 324, + "destructionPercentage": 662.73334, + "expEarned": 0 + }, + "opponent": { + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" + }, + "clanLevel": 0, + "stars": 214, + "destructionPercentage": 0 + } }, - "opponent": { - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" - }, - "clanLevel": 0, - "stars": 214, - "destructionPercentage": 0 - } - }, - { - "result": "win", - "endTime": "20251230T193116.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 29, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 308 + { + "result": "win", + "endTime": "20251230T193116.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 29, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 308 + }, + "opponent": { + "tag": "#92YCQG8G", + "name": "عراق", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/6duAlxMUPr3itBMhwZjES6ScnJLW_Sc2KVBerHWbnX0.png", + "large": "https://api-assets.clashofclans.com/badges/512/6duAlxMUPr3itBMhwZjES6ScnJLW_Sc2KVBerHWbnX0.png", + "medium": "https://api-assets.clashofclans.com/badges/200/6duAlxMUPr3itBMhwZjES6ScnJLW_Sc2KVBerHWbnX0.png" + }, + "clanLevel": 31, + "stars": 42, + "destructionPercentage": 97.26667 + } }, - "opponent": { - "tag": "#92YCQG8G", - "name": "عراق", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/6duAlxMUPr3itBMhwZjES6ScnJLW_Sc2KVBerHWbnX0.png", - "large": "https://api-assets.clashofclans.com/badges/512/6duAlxMUPr3itBMhwZjES6ScnJLW_Sc2KVBerHWbnX0.png", - "medium": "https://api-assets.clashofclans.com/badges/200/6duAlxMUPr3itBMhwZjES6ScnJLW_Sc2KVBerHWbnX0.png" - }, - "clanLevel": 31, - "stars": 42, - "destructionPercentage": 97.26667 - } - }, - { - "result": "win", - "endTime": "20251228T192409.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - }, - "clanLevel": 31, - "attacks": 29, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 308 + { + "result": "win", + "endTime": "20251228T192409.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + }, + "clanLevel": 31, + "attacks": 29, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 308 + }, + "opponent": { + "tag": "#202CQCY8Y", + "name": "Bengal Tiger.", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/1sFQOKuNST36okMcLw2k1hgysRs3lhGj2FuD7aEmWSg.png", + "large": "https://api-assets.clashofclans.com/badges/512/1sFQOKuNST36okMcLw2k1hgysRs3lhGj2FuD7aEmWSg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/1sFQOKuNST36okMcLw2k1hgysRs3lhGj2FuD7aEmWSg.png" + }, + "clanLevel": 30, + "stars": 34, + "destructionPercentage": 86.73333 + } }, - "opponent": { - "tag": "#202CQCY8Y", - "name": "Bengal Tiger.", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/1sFQOKuNST36okMcLw2k1hgysRs3lhGj2FuD7aEmWSg.png", - "large": "https://api-assets.clashofclans.com/badges/512/1sFQOKuNST36okMcLw2k1hgysRs3lhGj2FuD7aEmWSg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/1sFQOKuNST36okMcLw2k1hgysRs3lhGj2FuD7aEmWSg.png" - }, - "clanLevel": 30, - "stars": 34, - "destructionPercentage": 86.73333 - } - }, - { - "result": "win", - "endTime": "20251223T201041.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 29, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 305 + { + "result": "win", + "endTime": "20251223T201041.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 29, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 305 + }, + "opponent": { + "tag": "#R88VJ2Y", + "name": "bpcl", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/3-FLyA2phCuYB396yQarrFN9asnvm0nU3U5WPy3ANNs.png", + "large": "https://api-assets.clashofclans.com/badges/512/3-FLyA2phCuYB396yQarrFN9asnvm0nU3U5WPy3ANNs.png", + "medium": "https://api-assets.clashofclans.com/badges/200/3-FLyA2phCuYB396yQarrFN9asnvm0nU3U5WPy3ANNs.png" + }, + "clanLevel": 26, + "stars": 41, + "destructionPercentage": 95.333336 + } }, - "opponent": { - "tag": "#R88VJ2Y", - "name": "bpcl", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/3-FLyA2phCuYB396yQarrFN9asnvm0nU3U5WPy3ANNs.png", - "large": "https://api-assets.clashofclans.com/badges/512/3-FLyA2phCuYB396yQarrFN9asnvm0nU3U5WPy3ANNs.png", - "medium": "https://api-assets.clashofclans.com/badges/200/3-FLyA2phCuYB396yQarrFN9asnvm0nU3U5WPy3ANNs.png" - }, - "clanLevel": 26, - "stars": 41, - "destructionPercentage": 95.333336 - } - }, - { - "result": "win", - "endTime": "20251220T200526.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 30, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 309 + { + "result": "win", + "endTime": "20251220T200526.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 30, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 309 + }, + "opponent": { + "tag": "#GRLGYPC9", + "name": "LOS MERCENARIOS", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ZCLlNR3wfg9ZldxfMDWeXKXK1i_bxA3qNwsAySN_wk0.png", + "large": "https://api-assets.clashofclans.com/badges/512/ZCLlNR3wfg9ZldxfMDWeXKXK1i_bxA3qNwsAySN_wk0.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ZCLlNR3wfg9ZldxfMDWeXKXK1i_bxA3qNwsAySN_wk0.png" + }, + "clanLevel": 28, + "stars": 35, + "destructionPercentage": 88.066666 + } }, - "opponent": { - "tag": "#GRLGYPC9", - "name": "LOS MERCENARIOS", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ZCLlNR3wfg9ZldxfMDWeXKXK1i_bxA3qNwsAySN_wk0.png", - "large": "https://api-assets.clashofclans.com/badges/512/ZCLlNR3wfg9ZldxfMDWeXKXK1i_bxA3qNwsAySN_wk0.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ZCLlNR3wfg9ZldxfMDWeXKXK1i_bxA3qNwsAySN_wk0.png" - }, - "clanLevel": 28, - "stars": 35, - "destructionPercentage": 88.066666 - } - }, - { - "result": "lose", - "endTime": "20251218T202304.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 38, - "stars": 56, - "destructionPercentage": 96.85, - "expEarned": 324 + { + "result": "lose", + "endTime": "20251218T202304.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 38, + "stars": 56, + "destructionPercentage": 96.85, + "expEarned": 324 + }, + "opponent": { + "tag": "#2LC0Q0JLR", + "name": "Z-KUŞAĞI", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/XS4zb6KZd0HLvZeSrSI13l_IPXk9-DEPWeS4kLCyeVw.png", + "large": "https://api-assets.clashofclans.com/badges/512/XS4zb6KZd0HLvZeSrSI13l_IPXk9-DEPWeS4kLCyeVw.png", + "medium": "https://api-assets.clashofclans.com/badges/200/XS4zb6KZd0HLvZeSrSI13l_IPXk9-DEPWeS4kLCyeVw.png" + }, + "clanLevel": 27, + "stars": 60, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#2LC0Q0JLR", - "name": "Z-KUŞAĞI", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/XS4zb6KZd0HLvZeSrSI13l_IPXk9-DEPWeS4kLCyeVw.png", - "large": "https://api-assets.clashofclans.com/badges/512/XS4zb6KZd0HLvZeSrSI13l_IPXk9-DEPWeS4kLCyeVw.png", - "medium": "https://api-assets.clashofclans.com/badges/200/XS4zb6KZd0HLvZeSrSI13l_IPXk9-DEPWeS4kLCyeVw.png" - }, - "clanLevel": 27, - "stars": 60, - "destructionPercentage": 100 - } - }, - { - "result": "win", - "endTime": "20251216T200231.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 29, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 308 + { + "result": "win", + "endTime": "20251216T200231.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 29, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 308 + }, + "opponent": { + "tag": "#G0GUJ8JG", + "name": "رفقت عمر", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/9AfiYyVh0ZABUJ4AYdWp_Bddsf0qXRWa-60mhSvI0OY.png", + "large": "https://api-assets.clashofclans.com/badges/512/9AfiYyVh0ZABUJ4AYdWp_Bddsf0qXRWa-60mhSvI0OY.png", + "medium": "https://api-assets.clashofclans.com/badges/200/9AfiYyVh0ZABUJ4AYdWp_Bddsf0qXRWa-60mhSvI0OY.png" + }, + "clanLevel": 26, + "stars": 44, + "destructionPercentage": 99.53333 + } }, - "opponent": { - "tag": "#G0GUJ8JG", - "name": "رفقت عمر", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/9AfiYyVh0ZABUJ4AYdWp_Bddsf0qXRWa-60mhSvI0OY.png", - "large": "https://api-assets.clashofclans.com/badges/512/9AfiYyVh0ZABUJ4AYdWp_Bddsf0qXRWa-60mhSvI0OY.png", - "medium": "https://api-assets.clashofclans.com/badges/200/9AfiYyVh0ZABUJ4AYdWp_Bddsf0qXRWa-60mhSvI0OY.png" - }, - "clanLevel": 26, - "stars": 44, - "destructionPercentage": 99.53333 - } - }, - { - "result": "lose", - "endTime": "20251213T192052.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 46, - "stars": 68, - "destructionPercentage": 97.16, - "expEarned": 405 + { + "result": "lose", + "endTime": "20251213T192052.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 46, + "stars": 68, + "destructionPercentage": 97.16, + "expEarned": 405 + }, + "opponent": { + "tag": "#PVU9G0GP", + "name": "Pandansari Army", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CtsXNMny7eqhlVOIoUX2mPCIsgWfk1p5VIOAHRfcwLw.png", + "large": "https://api-assets.clashofclans.com/badges/512/CtsXNMny7eqhlVOIoUX2mPCIsgWfk1p5VIOAHRfcwLw.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CtsXNMny7eqhlVOIoUX2mPCIsgWfk1p5VIOAHRfcwLw.png" + }, + "clanLevel": 16, + "stars": 74, + "destructionPercentage": 99.84 + } }, - "opponent": { - "tag": "#PVU9G0GP", - "name": "Pandansari Army", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CtsXNMny7eqhlVOIoUX2mPCIsgWfk1p5VIOAHRfcwLw.png", - "large": "https://api-assets.clashofclans.com/badges/512/CtsXNMny7eqhlVOIoUX2mPCIsgWfk1p5VIOAHRfcwLw.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CtsXNMny7eqhlVOIoUX2mPCIsgWfk1p5VIOAHRfcwLw.png" - }, - "clanLevel": 16, - "stars": 74, - "destructionPercentage": 99.84 - } - }, - { - "result": null, - "endTime": "20251211T001836.000Z", - "teamSize": 15, - "attacksPerMember": 1, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 104, - "stars": 308, - "destructionPercentage": 647.8, - "expEarned": 0 + { + "result": null, + "endTime": "20251211T001836.000Z", + "teamSize": 15, + "attacksPerMember": 1, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 104, + "stars": 308, + "destructionPercentage": 647.8, + "expEarned": 0 + }, + "opponent": { + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" + }, + "clanLevel": 0, + "stars": 246, + "destructionPercentage": 0 + } }, - "opponent": { - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" - }, - "clanLevel": 0, - "stars": 246, - "destructionPercentage": 0 - } - }, - { - "result": "win", - "endTime": "20251129T204231.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 42, - "stars": 70, - "destructionPercentage": 97.8, - "expEarned": 452 + { + "result": "win", + "endTime": "20251129T204231.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 42, + "stars": 70, + "destructionPercentage": 97.8, + "expEarned": 452 + }, + "opponent": { + "tag": "#2QPVVLRP", + "name": "The80's", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/518p827uO2G8VQg3nwmclfczmLQ7UFAOC2zM414IOdk.png", + "large": "https://api-assets.clashofclans.com/badges/512/518p827uO2G8VQg3nwmclfczmLQ7UFAOC2zM414IOdk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/518p827uO2G8VQg3nwmclfczmLQ7UFAOC2zM414IOdk.png" + }, + "clanLevel": 32, + "stars": 66, + "destructionPercentage": 96.36 + } }, - "opponent": { - "tag": "#2QPVVLRP", - "name": "The80's", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/518p827uO2G8VQg3nwmclfczmLQ7UFAOC2zM414IOdk.png", - "large": "https://api-assets.clashofclans.com/badges/512/518p827uO2G8VQg3nwmclfczmLQ7UFAOC2zM414IOdk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/518p827uO2G8VQg3nwmclfczmLQ7UFAOC2zM414IOdk.png" - }, - "clanLevel": 32, - "stars": 66, - "destructionPercentage": 96.36 - } - }, - { - "result": "lose", - "endTime": "20251126T201314.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 42, - "stars": 60, - "destructionPercentage": 92.48, - "expEarned": 400 + { + "result": "lose", + "endTime": "20251126T201314.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 42, + "stars": 60, + "destructionPercentage": 92.48, + "expEarned": 400 + }, + "opponent": { + "tag": "#82PLVGRY", + "name": "i mulini bianch", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/dfvQzIUt-k8QJUaOU9jkC7tZAWV5_MpqFO7sGeCwBKY.png", + "large": "https://api-assets.clashofclans.com/badges/512/dfvQzIUt-k8QJUaOU9jkC7tZAWV5_MpqFO7sGeCwBKY.png", + "medium": "https://api-assets.clashofclans.com/badges/200/dfvQzIUt-k8QJUaOU9jkC7tZAWV5_MpqFO7sGeCwBKY.png" + }, + "clanLevel": 28, + "stars": 75, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#82PLVGRY", - "name": "i mulini bianch", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/dfvQzIUt-k8QJUaOU9jkC7tZAWV5_MpqFO7sGeCwBKY.png", - "large": "https://api-assets.clashofclans.com/badges/512/dfvQzIUt-k8QJUaOU9jkC7tZAWV5_MpqFO7sGeCwBKY.png", - "medium": "https://api-assets.clashofclans.com/badges/200/dfvQzIUt-k8QJUaOU9jkC7tZAWV5_MpqFO7sGeCwBKY.png" - }, - "clanLevel": 28, - "stars": 75, - "destructionPercentage": 100 - } - }, - { - "result": "win", - "endTime": "20251124T194009.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 49, - "stars": 69, - "destructionPercentage": 95.92, - "expEarned": 454 + { + "result": "win", + "endTime": "20251124T194009.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 49, + "stars": 69, + "destructionPercentage": 95.92, + "expEarned": 454 + }, + "opponent": { + "tag": "#UYGGC898", + "name": "Dutch Knights", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/-GZ6QInDf6WGCIT3YNs6Ht41l_432vAaauYrBu7ZFAk.png", + "large": "https://api-assets.clashofclans.com/badges/512/-GZ6QInDf6WGCIT3YNs6Ht41l_432vAaauYrBu7ZFAk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/-GZ6QInDf6WGCIT3YNs6Ht41l_432vAaauYrBu7ZFAk.png" + }, + "clanLevel": 29, + "stars": 66, + "destructionPercentage": 96.8 + } }, - "opponent": { - "tag": "#UYGGC898", - "name": "Dutch Knights", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/-GZ6QInDf6WGCIT3YNs6Ht41l_432vAaauYrBu7ZFAk.png", - "large": "https://api-assets.clashofclans.com/badges/512/-GZ6QInDf6WGCIT3YNs6Ht41l_432vAaauYrBu7ZFAk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/-GZ6QInDf6WGCIT3YNs6Ht41l_432vAaauYrBu7ZFAk.png" - }, - "clanLevel": 29, - "stars": 66, - "destructionPercentage": 96.8 - } - }, - { - "result": "lose", - "endTime": "20251122T194508.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 38, - "stars": 52, - "destructionPercentage": 96.45, - "expEarned": 331 + { + "result": "lose", + "endTime": "20251122T194508.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 38, + "stars": 52, + "destructionPercentage": 96.45, + "expEarned": 331 + }, + "opponent": { + "tag": "#9LC8J08R", + "name": "Ü30 Kriegs-Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/6S0OcS0v8RXr5Gx6GSNqGy85R1GAx0R0UmvxvbNtBF0.png", + "large": "https://api-assets.clashofclans.com/badges/512/6S0OcS0v8RXr5Gx6GSNqGy85R1GAx0R0UmvxvbNtBF0.png", + "medium": "https://api-assets.clashofclans.com/badges/200/6S0OcS0v8RXr5Gx6GSNqGy85R1GAx0R0UmvxvbNtBF0.png" + }, + "clanLevel": 33, + "stars": 53, + "destructionPercentage": 95.75 + } }, - "opponent": { - "tag": "#9LC8J08R", - "name": "Ü30 Kriegs-Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/6S0OcS0v8RXr5Gx6GSNqGy85R1GAx0R0UmvxvbNtBF0.png", - "large": "https://api-assets.clashofclans.com/badges/512/6S0OcS0v8RXr5Gx6GSNqGy85R1GAx0R0UmvxvbNtBF0.png", - "medium": "https://api-assets.clashofclans.com/badges/200/6S0OcS0v8RXr5Gx6GSNqGy85R1GAx0R0UmvxvbNtBF0.png" - }, - "clanLevel": 33, - "stars": 53, - "destructionPercentage": 95.75 - } - }, - { - "result": "win", - "endTime": "20251119T210738.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 37, - "stars": 56, - "destructionPercentage": 97.9, - "expEarned": 372 + { + "result": "win", + "endTime": "20251119T210738.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 37, + "stars": 56, + "destructionPercentage": 97.9, + "expEarned": 372 + }, + "opponent": { + "tag": "#PU88JYP", + "name": "Polska Fun", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rjXdCxoI-HsrnivKw0EUmGcb-CcVnrmoTpKBpCxRyDk.png", + "large": "https://api-assets.clashofclans.com/badges/512/rjXdCxoI-HsrnivKw0EUmGcb-CcVnrmoTpKBpCxRyDk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rjXdCxoI-HsrnivKw0EUmGcb-CcVnrmoTpKBpCxRyDk.png" + }, + "clanLevel": 34, + "stars": 53, + "destructionPercentage": 95.8 + } }, - "opponent": { - "tag": "#PU88JYP", - "name": "Polska Fun", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rjXdCxoI-HsrnivKw0EUmGcb-CcVnrmoTpKBpCxRyDk.png", - "large": "https://api-assets.clashofclans.com/badges/512/rjXdCxoI-HsrnivKw0EUmGcb-CcVnrmoTpKBpCxRyDk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rjXdCxoI-HsrnivKw0EUmGcb-CcVnrmoTpKBpCxRyDk.png" - }, - "clanLevel": 34, - "stars": 53, - "destructionPercentage": 95.8 - } - }, - { - "result": "win", - "endTime": "20251117T194136.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 30, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 290 + { + "result": "win", + "endTime": "20251117T194136.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 30, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 290 + }, + "opponent": { + "tag": "#8G8P0G89", + "name": "SHAH ALAM MEGA", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/uOOHC02i1Hv7ytZGiCcVXPUUHPAeMasNGoLOlDcPc8k.png", + "large": "https://api-assets.clashofclans.com/badges/512/uOOHC02i1Hv7ytZGiCcVXPUUHPAeMasNGoLOlDcPc8k.png", + "medium": "https://api-assets.clashofclans.com/badges/200/uOOHC02i1Hv7ytZGiCcVXPUUHPAeMasNGoLOlDcPc8k.png" + }, + "clanLevel": 32, + "stars": 36, + "destructionPercentage": 93.333336 + } }, - "opponent": { - "tag": "#8G8P0G89", - "name": "SHAH ALAM MEGA", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/uOOHC02i1Hv7ytZGiCcVXPUUHPAeMasNGoLOlDcPc8k.png", - "large": "https://api-assets.clashofclans.com/badges/512/uOOHC02i1Hv7ytZGiCcVXPUUHPAeMasNGoLOlDcPc8k.png", - "medium": "https://api-assets.clashofclans.com/badges/200/uOOHC02i1Hv7ytZGiCcVXPUUHPAeMasNGoLOlDcPc8k.png" - }, - "clanLevel": 32, - "stars": 36, - "destructionPercentage": 93.333336 - } - }, - { - "result": "win", - "endTime": "20251115T200156.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 27, - "stars": 43, - "destructionPercentage": 99.6, - "expEarned": 296 + { + "result": "win", + "endTime": "20251115T200156.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 27, + "stars": 43, + "destructionPercentage": 99.6, + "expEarned": 296 + }, + "opponent": { + "tag": "#YVLGLJU2", + "name": "THE CRUSADERS", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/vCwsWa7i0-u8_MWngnwnPKjAjTEzYKxyBOEKb8vNkiU.png", + "large": "https://api-assets.clashofclans.com/badges/512/vCwsWa7i0-u8_MWngnwnPKjAjTEzYKxyBOEKb8vNkiU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/vCwsWa7i0-u8_MWngnwnPKjAjTEzYKxyBOEKb8vNkiU.png" + }, + "clanLevel": 28, + "stars": 36, + "destructionPercentage": 90.26667 + } }, - "opponent": { - "tag": "#YVLGLJU2", - "name": "THE CRUSADERS", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/vCwsWa7i0-u8_MWngnwnPKjAjTEzYKxyBOEKb8vNkiU.png", - "large": "https://api-assets.clashofclans.com/badges/512/vCwsWa7i0-u8_MWngnwnPKjAjTEzYKxyBOEKb8vNkiU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/vCwsWa7i0-u8_MWngnwnPKjAjTEzYKxyBOEKb8vNkiU.png" - }, - "clanLevel": 28, - "stars": 36, - "destructionPercentage": 90.26667 - } - }, - { - "result": "lose", - "endTime": "20251113T200116.000Z", - "teamSize": 30, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 47, - "stars": 77, - "destructionPercentage": 92.666664, - "expEarned": 453 + { + "result": "lose", + "endTime": "20251113T200116.000Z", + "teamSize": 30, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 47, + "stars": 77, + "destructionPercentage": 92.666664, + "expEarned": 453 + }, + "opponent": { + "tag": "#2YVPC20UY", + "name": "LOST 6", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/QhS9ad50pc5G5HTsVq1xMfLRz6IhN3FvVc5GA1af_dE.png", + "large": "https://api-assets.clashofclans.com/badges/512/QhS9ad50pc5G5HTsVq1xMfLRz6IhN3FvVc5GA1af_dE.png", + "medium": "https://api-assets.clashofclans.com/badges/200/QhS9ad50pc5G5HTsVq1xMfLRz6IhN3FvVc5GA1af_dE.png" + }, + "clanLevel": 24, + "stars": 83, + "destructionPercentage": 97.4 + } }, - "opponent": { - "tag": "#2YVPC20UY", - "name": "LOST 6", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/QhS9ad50pc5G5HTsVq1xMfLRz6IhN3FvVc5GA1af_dE.png", - "large": "https://api-assets.clashofclans.com/badges/512/QhS9ad50pc5G5HTsVq1xMfLRz6IhN3FvVc5GA1af_dE.png", - "medium": "https://api-assets.clashofclans.com/badges/200/QhS9ad50pc5G5HTsVq1xMfLRz6IhN3FvVc5GA1af_dE.png" - }, - "clanLevel": 24, - "stars": 83, - "destructionPercentage": 97.4 - } - }, - { - "result": null, - "endTime": "20251110T200326.000Z", - "teamSize": 15, - "attacksPerMember": 1, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 104, - "stars": 311, - "destructionPercentage": 650.26666, - "expEarned": 0 + { + "result": null, + "endTime": "20251110T200326.000Z", + "teamSize": 15, + "attacksPerMember": 1, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 104, + "stars": 311, + "destructionPercentage": 650.26666, + "expEarned": 0 + }, + "opponent": { + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" + }, + "clanLevel": 0, + "stars": 238, + "destructionPercentage": 0 + } }, - "opponent": { - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" - }, - "clanLevel": 0, - "stars": 238, - "destructionPercentage": 0 - } - }, - { - "result": "win", - "endTime": "20251031T220435.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 37, - "stars": 56, - "destructionPercentage": 98.55, - "expEarned": 363 + { + "result": "win", + "endTime": "20251031T220435.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 37, + "stars": 56, + "destructionPercentage": 98.55, + "expEarned": 363 + }, + "opponent": { + "tag": "#29PVY0V88", + "name": "BIT DELUXE", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/Z1VqRX2jmJb2_A8ozF92GfRH3YEy_6DSRKG4YtasMOA.png", + "large": "https://api-assets.clashofclans.com/badges/512/Z1VqRX2jmJb2_A8ozF92GfRH3YEy_6DSRKG4YtasMOA.png", + "medium": "https://api-assets.clashofclans.com/badges/200/Z1VqRX2jmJb2_A8ozF92GfRH3YEy_6DSRKG4YtasMOA.png" + }, + "clanLevel": 26, + "stars": 51, + "destructionPercentage": 94.15 + } }, - "opponent": { - "tag": "#29PVY0V88", - "name": "BIT DELUXE", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/Z1VqRX2jmJb2_A8ozF92GfRH3YEy_6DSRKG4YtasMOA.png", - "large": "https://api-assets.clashofclans.com/badges/512/Z1VqRX2jmJb2_A8ozF92GfRH3YEy_6DSRKG4YtasMOA.png", - "medium": "https://api-assets.clashofclans.com/badges/200/Z1VqRX2jmJb2_A8ozF92GfRH3YEy_6DSRKG4YtasMOA.png" - }, - "clanLevel": 26, - "stars": 51, - "destructionPercentage": 94.15 - } - }, - { - "result": "lose", - "endTime": "20251029T195243.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 45, - "stars": 63, - "destructionPercentage": 92.48, - "expEarned": 381 + { + "result": "lose", + "endTime": "20251029T195243.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 45, + "stars": 63, + "destructionPercentage": 92.48, + "expEarned": 381 + }, + "opponent": { + "tag": "#8UJVP8P0", + "name": "Herzblut", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ol0vdpD3CdH8_NeHm1UOPVb7jQt2Q1yfAn5vnOAa29I.png", + "large": "https://api-assets.clashofclans.com/badges/512/ol0vdpD3CdH8_NeHm1UOPVb7jQt2Q1yfAn5vnOAa29I.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ol0vdpD3CdH8_NeHm1UOPVb7jQt2Q1yfAn5vnOAa29I.png" + }, + "clanLevel": 31, + "stars": 65, + "destructionPercentage": 96.24 + } }, - "opponent": { - "tag": "#8UJVP8P0", - "name": "Herzblut", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ol0vdpD3CdH8_NeHm1UOPVb7jQt2Q1yfAn5vnOAa29I.png", - "large": "https://api-assets.clashofclans.com/badges/512/ol0vdpD3CdH8_NeHm1UOPVb7jQt2Q1yfAn5vnOAa29I.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ol0vdpD3CdH8_NeHm1UOPVb7jQt2Q1yfAn5vnOAa29I.png" - }, - "clanLevel": 31, - "stars": 65, - "destructionPercentage": 96.24 - } - }, - { - "result": "win", - "endTime": "20251026T193608.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 38, - "stars": 53, - "destructionPercentage": 97.95, - "expEarned": 357 + { + "result": "win", + "endTime": "20251026T193608.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 38, + "stars": 53, + "destructionPercentage": 97.95, + "expEarned": 357 + }, + "opponent": { + "tag": "#90RPGQQU", + "name": "-black wolf-", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/BHYg7iv5UQhXjXAlxB3SNK2YUSpd_lxg3lZg0E01w9o.png", + "large": "https://api-assets.clashofclans.com/badges/512/BHYg7iv5UQhXjXAlxB3SNK2YUSpd_lxg3lZg0E01w9o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/BHYg7iv5UQhXjXAlxB3SNK2YUSpd_lxg3lZg0E01w9o.png" + }, + "clanLevel": 30, + "stars": 47, + "destructionPercentage": 94.05 + } }, - "opponent": { - "tag": "#90RPGQQU", - "name": "-black wolf-", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/BHYg7iv5UQhXjXAlxB3SNK2YUSpd_lxg3lZg0E01w9o.png", - "large": "https://api-assets.clashofclans.com/badges/512/BHYg7iv5UQhXjXAlxB3SNK2YUSpd_lxg3lZg0E01w9o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/BHYg7iv5UQhXjXAlxB3SNK2YUSpd_lxg3lZg0E01w9o.png" - }, - "clanLevel": 30, - "stars": 47, - "destructionPercentage": 94.05 - } - }, - { - "result": "win", - "endTime": "20251024T191842.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 36, - "stars": 52, - "destructionPercentage": 97, - "expEarned": 361 + { + "result": "win", + "endTime": "20251024T191842.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 36, + "stars": 52, + "destructionPercentage": 97, + "expEarned": 361 + }, + "opponent": { + "tag": "#2QGPJ099V", + "name": "clash academy", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/baX-iItLCBOk1Vhfvm2Q_2AthX25cK-g_3dHGkJCkJk.png", + "large": "https://api-assets.clashofclans.com/badges/512/baX-iItLCBOk1Vhfvm2Q_2AthX25cK-g_3dHGkJCkJk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/baX-iItLCBOk1Vhfvm2Q_2AthX25cK-g_3dHGkJCkJk.png" + }, + "clanLevel": 25, + "stars": 47, + "destructionPercentage": 83.65 + } }, - "opponent": { - "tag": "#2QGPJ099V", - "name": "clash academy", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/baX-iItLCBOk1Vhfvm2Q_2AthX25cK-g_3dHGkJCkJk.png", - "large": "https://api-assets.clashofclans.com/badges/512/baX-iItLCBOk1Vhfvm2Q_2AthX25cK-g_3dHGkJCkJk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/baX-iItLCBOk1Vhfvm2Q_2AthX25cK-g_3dHGkJCkJk.png" - }, - "clanLevel": 25, - "stars": 47, - "destructionPercentage": 83.65 - } - }, - { - "result": "lose", - "endTime": "20251021T232729.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 39, - "stars": 60, - "destructionPercentage": 91.76, - "expEarned": 372 + { + "result": "lose", + "endTime": "20251021T232729.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 39, + "stars": 60, + "destructionPercentage": 91.76, + "expEarned": 372 + }, + "opponent": { + "tag": "#RY2GL2G", + "name": "Los Baccellos", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CB4yZEeAvjxm1yELhTBtEOUgJXD6RfHRI4kvDIbyDok.png", + "large": "https://api-assets.clashofclans.com/badges/512/CB4yZEeAvjxm1yELhTBtEOUgJXD6RfHRI4kvDIbyDok.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CB4yZEeAvjxm1yELhTBtEOUgJXD6RfHRI4kvDIbyDok.png" + }, + "clanLevel": 28, + "stars": 75, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#RY2GL2G", - "name": "Los Baccellos", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CB4yZEeAvjxm1yELhTBtEOUgJXD6RfHRI4kvDIbyDok.png", - "large": "https://api-assets.clashofclans.com/badges/512/CB4yZEeAvjxm1yELhTBtEOUgJXD6RfHRI4kvDIbyDok.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CB4yZEeAvjxm1yELhTBtEOUgJXD6RfHRI4kvDIbyDok.png" - }, - "clanLevel": 28, - "stars": 75, - "destructionPercentage": 100 - } - }, - { - "result": "win", - "endTime": "20251018T224237.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 45, - "stars": 69, - "destructionPercentage": 99.16, - "expEarned": 423 + { + "result": "win", + "endTime": "20251018T224237.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 45, + "stars": 69, + "destructionPercentage": 99.16, + "expEarned": 423 + }, + "opponent": { + "tag": "#2LUP80PYU", + "name": "Angels & Eagles", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/djYpvOy6qqalhwuDAbMBzNzq-v-kk7MLCDNsE9cP4h4.png", + "large": "https://api-assets.clashofclans.com/badges/512/djYpvOy6qqalhwuDAbMBzNzq-v-kk7MLCDNsE9cP4h4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/djYpvOy6qqalhwuDAbMBzNzq-v-kk7MLCDNsE9cP4h4.png" + }, + "clanLevel": 22, + "stars": 69, + "destructionPercentage": 98.48 + } }, - "opponent": { - "tag": "#2LUP80PYU", - "name": "Angels & Eagles", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/djYpvOy6qqalhwuDAbMBzNzq-v-kk7MLCDNsE9cP4h4.png", - "large": "https://api-assets.clashofclans.com/badges/512/djYpvOy6qqalhwuDAbMBzNzq-v-kk7MLCDNsE9cP4h4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/djYpvOy6qqalhwuDAbMBzNzq-v-kk7MLCDNsE9cP4h4.png" - }, - "clanLevel": 22, - "stars": 69, - "destructionPercentage": 98.48 - } - }, - { - "result": "win", - "endTime": "20251016T211445.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 35, - "stars": 53, - "destructionPercentage": 97.45, - "expEarned": 365 + { + "result": "win", + "endTime": "20251016T211445.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 35, + "stars": 53, + "destructionPercentage": 97.45, + "expEarned": 365 + }, + "opponent": { + "tag": "#8VUCYJR8", + "name": "Persian Guys", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/iiLu1FKtbeOEslNYZj4BQR5G6GQ0uswKuuVoa09aqAA.png", + "large": "https://api-assets.clashofclans.com/badges/512/iiLu1FKtbeOEslNYZj4BQR5G6GQ0uswKuuVoa09aqAA.png", + "medium": "https://api-assets.clashofclans.com/badges/200/iiLu1FKtbeOEslNYZj4BQR5G6GQ0uswKuuVoa09aqAA.png" + }, + "clanLevel": 32, + "stars": 49, + "destructionPercentage": 90.5 + } }, - "opponent": { - "tag": "#8VUCYJR8", - "name": "Persian Guys", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/iiLu1FKtbeOEslNYZj4BQR5G6GQ0uswKuuVoa09aqAA.png", - "large": "https://api-assets.clashofclans.com/badges/512/iiLu1FKtbeOEslNYZj4BQR5G6GQ0uswKuuVoa09aqAA.png", - "medium": "https://api-assets.clashofclans.com/badges/200/iiLu1FKtbeOEslNYZj4BQR5G6GQ0uswKuuVoa09aqAA.png" - }, - "clanLevel": 32, - "stars": 49, - "destructionPercentage": 90.5 - } - }, - { - "result": "lose", - "endTime": "20251014T204840.000Z", - "teamSize": 25, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 44, - "stars": 64, - "destructionPercentage": 96.04, - "expEarned": 379 + { + "result": "lose", + "endTime": "20251014T204840.000Z", + "teamSize": 25, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 44, + "stars": 64, + "destructionPercentage": 96.04, + "expEarned": 379 + }, + "opponent": { + "tag": "#GVPUPUJQ", + "name": "اليمن السعيد", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/mEeLGEgze0XTZqjRA9k-PJbRx6hfV4gulE8-lXHB260.png", + "large": "https://api-assets.clashofclans.com/badges/512/mEeLGEgze0XTZqjRA9k-PJbRx6hfV4gulE8-lXHB260.png", + "medium": "https://api-assets.clashofclans.com/badges/200/mEeLGEgze0XTZqjRA9k-PJbRx6hfV4gulE8-lXHB260.png" + }, + "clanLevel": 25, + "stars": 75, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#GVPUPUJQ", - "name": "اليمن السعيد", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/mEeLGEgze0XTZqjRA9k-PJbRx6hfV4gulE8-lXHB260.png", - "large": "https://api-assets.clashofclans.com/badges/512/mEeLGEgze0XTZqjRA9k-PJbRx6hfV4gulE8-lXHB260.png", - "medium": "https://api-assets.clashofclans.com/badges/200/mEeLGEgze0XTZqjRA9k-PJbRx6hfV4gulE8-lXHB260.png" - }, - "clanLevel": 25, - "stars": 75, - "destructionPercentage": 100 - } - }, - { - "result": "win", - "endTime": "20251011T050635.000Z", - "teamSize": 15, - "attacksPerMember": 1, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 104, - "stars": 342, - "destructionPercentage": 660.4, - "expEarned": 0 + { + "result": "win", + "endTime": "20251011T050635.000Z", + "teamSize": 15, + "attacksPerMember": 1, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 104, + "stars": 342, + "destructionPercentage": 660.4, + "expEarned": 0 + }, + "opponent": { + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", + "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" + }, + "clanLevel": 0, + "stars": 223, + "destructionPercentage": 0 + } }, - "opponent": { - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "large": "https://api-assets.clashofclans.com/badges/512/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png", - "medium": "https://api-assets.clashofclans.com/badges/200/H39b_-WLZGtZVWQ0hqTkE-Tn2AaQnQWy_Iz4yBlvL0M.png" - }, - "clanLevel": 0, - "stars": 223, - "destructionPercentage": 0 - } - }, - { - "result": "win", - "endTime": "20250929T193904.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 29, - "stars": 40, - "destructionPercentage": 96.333336, - "expEarned": 286 + { + "result": "win", + "endTime": "20250929T193904.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 29, + "stars": 40, + "destructionPercentage": 96.333336, + "expEarned": 286 + }, + "opponent": { + "tag": "#Q9RJJR0", + "name": "Beer Pandas", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/unLDPC3x7ArZCG3HF3xjVuRjxi0WhMGRL_R46okY_0E.png", + "large": "https://api-assets.clashofclans.com/badges/512/unLDPC3x7ArZCG3HF3xjVuRjxi0WhMGRL_R46okY_0E.png", + "medium": "https://api-assets.clashofclans.com/badges/200/unLDPC3x7ArZCG3HF3xjVuRjxi0WhMGRL_R46okY_0E.png" + }, + "clanLevel": 29, + "stars": 36, + "destructionPercentage": 94.2 + } }, - "opponent": { - "tag": "#Q9RJJR0", - "name": "Beer Pandas", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/unLDPC3x7ArZCG3HF3xjVuRjxi0WhMGRL_R46okY_0E.png", - "large": "https://api-assets.clashofclans.com/badges/512/unLDPC3x7ArZCG3HF3xjVuRjxi0WhMGRL_R46okY_0E.png", - "medium": "https://api-assets.clashofclans.com/badges/200/unLDPC3x7ArZCG3HF3xjVuRjxi0WhMGRL_R46okY_0E.png" - }, - "clanLevel": 29, - "stars": 36, - "destructionPercentage": 94.2 - } - }, - { - "result": "win", - "endTime": "20250927T195645.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 23, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 291 + { + "result": "win", + "endTime": "20250927T195645.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 23, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 291 + }, + "opponent": { + "tag": "#2UCRUQUL", + "name": "los renacidos!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/QOtaaBat2SUAlpySXF19Tc02-3Tsb6EO6zrZTI-ISZ8.png", + "large": "https://api-assets.clashofclans.com/badges/512/QOtaaBat2SUAlpySXF19Tc02-3Tsb6EO6zrZTI-ISZ8.png", + "medium": "https://api-assets.clashofclans.com/badges/200/QOtaaBat2SUAlpySXF19Tc02-3Tsb6EO6zrZTI-ISZ8.png" + }, + "clanLevel": 31, + "stars": 27, + "destructionPercentage": 69.2 + } }, - "opponent": { - "tag": "#2UCRUQUL", - "name": "los renacidos!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/QOtaaBat2SUAlpySXF19Tc02-3Tsb6EO6zrZTI-ISZ8.png", - "large": "https://api-assets.clashofclans.com/badges/512/QOtaaBat2SUAlpySXF19Tc02-3Tsb6EO6zrZTI-ISZ8.png", - "medium": "https://api-assets.clashofclans.com/badges/200/QOtaaBat2SUAlpySXF19Tc02-3Tsb6EO6zrZTI-ISZ8.png" - }, - "clanLevel": 31, - "stars": 27, - "destructionPercentage": 69.2 - } - }, - { - "result": "lose", - "endTime": "20250925T203645.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 32, - "stars": 46, - "destructionPercentage": 89.9, - "expEarned": 312 + { + "result": "lose", + "endTime": "20250925T203645.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 32, + "stars": 46, + "destructionPercentage": 89.9, + "expEarned": 312 + }, + "opponent": { + "tag": "#8JULPYPL", + "name": "matrix 2016", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/D9rQPjW7OSJTwzjDbZbMuCfap_WG2SK4zom83zwzuSE.png", + "large": "https://api-assets.clashofclans.com/badges/512/D9rQPjW7OSJTwzjDbZbMuCfap_WG2SK4zom83zwzuSE.png", + "medium": "https://api-assets.clashofclans.com/badges/200/D9rQPjW7OSJTwzjDbZbMuCfap_WG2SK4zom83zwzuSE.png" + }, + "clanLevel": 23, + "stars": 57, + "destructionPercentage": 98.85 + } }, - "opponent": { - "tag": "#8JULPYPL", - "name": "matrix 2016", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/D9rQPjW7OSJTwzjDbZbMuCfap_WG2SK4zom83zwzuSE.png", - "large": "https://api-assets.clashofclans.com/badges/512/D9rQPjW7OSJTwzjDbZbMuCfap_WG2SK4zom83zwzuSE.png", - "medium": "https://api-assets.clashofclans.com/badges/200/D9rQPjW7OSJTwzjDbZbMuCfap_WG2SK4zom83zwzuSE.png" - }, - "clanLevel": 23, - "stars": 57, - "destructionPercentage": 98.85 - } - }, - { - "result": "win", - "endTime": "20250923T194519.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 28, - "stars": 45, - "destructionPercentage": 100, - "expEarned": 295 + { + "result": "win", + "endTime": "20250923T194519.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 28, + "stars": 45, + "destructionPercentage": 100, + "expEarned": 295 + }, + "opponent": { + "tag": "#PLLP0JCG", + "name": "just 4 WAR", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/vX_D1wN4w2AadARxuf7nvSzC-JPfMNEohlZmusPk8NU.png", + "large": "https://api-assets.clashofclans.com/badges/512/vX_D1wN4w2AadARxuf7nvSzC-JPfMNEohlZmusPk8NU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/vX_D1wN4w2AadARxuf7nvSzC-JPfMNEohlZmusPk8NU.png" + }, + "clanLevel": 32, + "stars": 28, + "destructionPercentage": 77.066666 + } }, - "opponent": { - "tag": "#PLLP0JCG", - "name": "just 4 WAR", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/vX_D1wN4w2AadARxuf7nvSzC-JPfMNEohlZmusPk8NU.png", - "large": "https://api-assets.clashofclans.com/badges/512/vX_D1wN4w2AadARxuf7nvSzC-JPfMNEohlZmusPk8NU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/vX_D1wN4w2AadARxuf7nvSzC-JPfMNEohlZmusPk8NU.png" - }, - "clanLevel": 32, - "stars": 28, - "destructionPercentage": 77.066666 - } - }, - { - "result": "lose", - "endTime": "20250921T203422.000Z", - "teamSize": 20, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 35, - "stars": 55, - "destructionPercentage": 96.85, - "expEarned": 315 + { + "result": "lose", + "endTime": "20250921T203422.000Z", + "teamSize": 20, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 35, + "stars": 55, + "destructionPercentage": 96.85, + "expEarned": 315 + }, + "opponent": { + "tag": "#2LVVG0PU", + "name": "Iran Mazandaran", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/l9X4k6M8FXu4wsRrKFli03nOk4IuAe-oLHPIXHbWlgI.png", + "large": "https://api-assets.clashofclans.com/badges/512/l9X4k6M8FXu4wsRrKFli03nOk4IuAe-oLHPIXHbWlgI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/l9X4k6M8FXu4wsRrKFli03nOk4IuAe-oLHPIXHbWlgI.png" + }, + "clanLevel": 28, + "stars": 60, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#2LVVG0PU", - "name": "Iran Mazandaran", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/l9X4k6M8FXu4wsRrKFli03nOk4IuAe-oLHPIXHbWlgI.png", - "large": "https://api-assets.clashofclans.com/badges/512/l9X4k6M8FXu4wsRrKFli03nOk4IuAe-oLHPIXHbWlgI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/l9X4k6M8FXu4wsRrKFli03nOk4IuAe-oLHPIXHbWlgI.png" - }, - "clanLevel": 28, - "stars": 60, - "destructionPercentage": 100 - } - }, - { - "result": "lose", - "endTime": "20250919T203457.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 30, - "stars": 36, - "destructionPercentage": 95.53333, - "expEarned": 245 + { + "result": "lose", + "endTime": "20250919T203457.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 30, + "stars": 36, + "destructionPercentage": 95.53333, + "expEarned": 245 + }, + "opponent": { + "tag": "#2QR9P29J", + "name": "Forth Wars", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CVweLejhZmfFbC0rQ6spcrAgQ83S7tojVfoGHQ_Zh5w.png", + "large": "https://api-assets.clashofclans.com/badges/512/CVweLejhZmfFbC0rQ6spcrAgQ83S7tojVfoGHQ_Zh5w.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CVweLejhZmfFbC0rQ6spcrAgQ83S7tojVfoGHQ_Zh5w.png" + }, + "clanLevel": 33, + "stars": 45, + "destructionPercentage": 100 + } }, - "opponent": { - "tag": "#2QR9P29J", - "name": "Forth Wars", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CVweLejhZmfFbC0rQ6spcrAgQ83S7tojVfoGHQ_Zh5w.png", - "large": "https://api-assets.clashofclans.com/badges/512/CVweLejhZmfFbC0rQ6spcrAgQ83S7tojVfoGHQ_Zh5w.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CVweLejhZmfFbC0rQ6spcrAgQ83S7tojVfoGHQ_Zh5w.png" - }, - "clanLevel": 33, - "stars": 45, - "destructionPercentage": 100 + { + "result": "win", + "endTime": "20250917T200113.000Z", + "teamSize": 15, + "attacksPerMember": 2, + "battleModifier": "NONE", + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" + }, + "clanLevel": 30, + "attacks": 27, + "stars": 40, + "destructionPercentage": 98.6, + "expEarned": 295 + }, + "opponent": { + "tag": "#YCYUGCCY", + "name": "PERSHIAN GULF✌", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/scfmEvPkHFNsgAIj-130K5HYRnovC17ERVOxv6cTmZQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/scfmEvPkHFNsgAIj-130K5HYRnovC17ERVOxv6cTmZQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/scfmEvPkHFNsgAIj-130K5HYRnovC17ERVOxv6cTmZQ.png" + }, + "clanLevel": 29, + "stars": 40, + "destructionPercentage": 95.8 + } } - }, - { - "result": "win", - "endTime": "20250917T200113.000Z", - "teamSize": 15, - "attacksPerMember": 2, - "battleModifier": "none", - "clan": { - "tag": "#2PP", - "name": "Example Clan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "large": "https://api-assets.clashofclans.com/badges/512/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zOspaki1hwF-SUKT2nqzZVJ69N9-4evgVjsAaof_F6o.png" - }, - "clanLevel": 30, - "attacks": 27, - "stars": 40, - "destructionPercentage": 98.6, - "expEarned": 295 - }, - "opponent": { - "tag": "#YCYUGCCY", - "name": "PERSHIAN GULF✌", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/scfmEvPkHFNsgAIj-130K5HYRnovC17ERVOxv6cTmZQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/scfmEvPkHFNsgAIj-130K5HYRnovC17ERVOxv6cTmZQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/scfmEvPkHFNsgAIj-130K5HYRnovC17ERVOxv6cTmZQ.png" - }, - "clanLevel": 29, - "stars": 40, - "destructionPercentage": 95.8 + ], + "paging": { + "cursors": { + "after": "eyJwb3MiOjUwfQ" } } - ], - "paging": { - "cursors": { - "after": "eyJwb3MiOjUwfQ" - } - } -}, + }, "headers": { "cache-control": "max-age=120", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/leagues/LISTLEAGUESEASONS.json b/data/leagues/LISTLEAGUESEASONS.json index 6d36880..298561d 100644 --- a/data/leagues/LISTLEAGUESEASONS.json +++ b/data/leagues/LISTLEAGUESEASONS.json @@ -1,398 +1,413 @@ { "body": { - "items": [ - { - "id": "2015-07" - }, - { - "id": "2015-08" - }, - { - "id": "2015-09" - }, - { - "id": "2015-10" - }, - { - "id": "2015-11" - }, - { - "id": "2015-12" - }, - { - "id": "2016-01" - }, - { - "id": "2016-02" - }, - { - "id": "2016-03" - }, - { - "id": "2016-04" - }, - { - "id": "2016-05" - }, - { - "id": "2016-06" - }, - { - "id": "2016-07" - }, - { - "id": "2016-08" - }, - { - "id": "2016-09" - }, - { - "id": "2016-10" - }, - { - "id": "2016-11" - }, - { - "id": "2016-12" - }, - { - "id": "2017-01" - }, - { - "id": "2017-02" - }, - { - "id": "2017-03" - }, - { - "id": "2017-04" - }, - { - "id": "2017-05" - }, - { - "id": "2017-06" - }, - { - "id": "2017-07" - }, - { - "id": "2017-08" - }, - { - "id": "2017-09" - }, - { - "id": "2017-10" - }, - { - "id": "2017-11" - }, - { - "id": "2017-12" - }, - { - "id": "2018-01" - }, - { - "id": "2018-02" - }, - { - "id": "2018-03" - }, - { - "id": "2018-04" - }, - { - "id": "2018-05" - }, - { - "id": "2018-06" - }, - { - "id": "2018-07" - }, - { - "id": "2018-08" - }, - { - "id": "2018-09" - }, - { - "id": "2018-10" - }, - { - "id": "2018-11" - }, - { - "id": "2018-12" - }, - { - "id": "2019-01" - }, - { - "id": "2019-02" - }, - { - "id": "2019-03" - }, - { - "id": "2019-04" - }, - { - "id": "2019-05" - }, - { - "id": "2019-06" - }, - { - "id": "2019-07" - }, - { - "id": "2019-08" - }, - { - "id": "2019-09" - }, - { - "id": "2019-10" - }, - { - "id": "2019-11" - }, - { - "id": "2019-12" - }, - { - "id": "2020-01" - }, - { - "id": "2020-02" - }, - { - "id": "2020-03" - }, - { - "id": "2020-04" - }, - { - "id": "2020-05" - }, - { - "id": "2020-06" - }, - { - "id": "2020-07" - }, - { - "id": "2020-08" - }, - { - "id": "2020-09" - }, - { - "id": "2020-10" - }, - { - "id": "2020-11" - }, - { - "id": "2020-12" - }, - { - "id": "2021-01" - }, - { - "id": "2021-02" - }, - { - "id": "2021-03" - }, - { - "id": "2021-04" - }, - { - "id": "2021-05" - }, - { - "id": "2021-06" - }, - { - "id": "2021-07" - }, - { - "id": "2021-08" - }, - { - "id": "2021-09" - }, - { - "id": "2021-10" - }, - { - "id": "2021-11" - }, - { - "id": "2021-12" - }, - { - "id": "2022-01" - }, - { - "id": "2022-02" - }, - { - "id": "2022-03" - }, - { - "id": "2022-04" - }, - { - "id": "2022-05" - }, - { - "id": "2022-06" - }, - { - "id": "2022-07" - }, - { - "id": "2022-08" - }, - { - "id": "2022-09" - }, - { - "id": "2022-10" - }, - { - "id": "2022-11" - }, - { - "id": "2022-12" - }, - { - "id": "2023-01" - }, - { - "id": "2023-02" - }, - { - "id": "2023-03" - }, - { - "id": "2023-04" - }, - { - "id": "2023-05" - }, - { - "id": "2023-06" - }, - { - "id": "2023-07" - }, - { - "id": "2023-08" - }, - { - "id": "2023-09" - }, - { - "id": "2023-10" - }, - { - "id": "2023-11" - }, - { - "id": "2023-12" - }, - { - "id": "2024-01" - }, - { - "id": "2024-02" - }, - { - "id": "2024-03" - }, - { - "id": "2024-04" - }, - { - "id": "2024-05" - }, - { - "id": "2024-06" - }, - { - "id": "2024-07" - }, - { - "id": "2024-08" - }, - { - "id": "2024-09" - }, - { - "id": "2024-10" - }, - { - "id": "2024-11" - }, - { - "id": "2024-12" - }, - { - "id": "2025-01" - }, - { - "id": "2025-02" - }, - { - "id": "2025-03" - }, - { - "id": "2025-04" - }, - { - "id": "2025-05" - }, - { - "id": "2025-06" - }, - { - "id": "2025-07" - }, - { - "id": "2025-08" - }, - { - "id": "2025-10-06" - }, - { - "id": "2025-11-03" - }, - { - "id": "2025-12-01" - }, - { - "id": "2025-12-29" - }, - { - "id": "2026-01-26" - }, - { - "id": "2026-02-23" + "items": [ + { + "id": "2015-07" + }, + { + "id": "2015-08" + }, + { + "id": "2015-09" + }, + { + "id": "2015-10" + }, + { + "id": "2015-11" + }, + { + "id": "2015-12" + }, + { + "id": "2016-01" + }, + { + "id": "2016-02" + }, + { + "id": "2016-03" + }, + { + "id": "2016-04" + }, + { + "id": "2016-05" + }, + { + "id": "2016-06" + }, + { + "id": "2016-07" + }, + { + "id": "2016-08" + }, + { + "id": "2016-09" + }, + { + "id": "2016-10" + }, + { + "id": "2016-11" + }, + { + "id": "2016-12" + }, + { + "id": "2017-01" + }, + { + "id": "2017-02" + }, + { + "id": "2017-03" + }, + { + "id": "2017-04" + }, + { + "id": "2017-05" + }, + { + "id": "2017-06" + }, + { + "id": "2017-07" + }, + { + "id": "2017-08" + }, + { + "id": "2017-09" + }, + { + "id": "2017-10" + }, + { + "id": "2017-11" + }, + { + "id": "2017-12" + }, + { + "id": "2018-01" + }, + { + "id": "2018-02" + }, + { + "id": "2018-03" + }, + { + "id": "2018-04" + }, + { + "id": "2018-05" + }, + { + "id": "2018-06" + }, + { + "id": "2018-07" + }, + { + "id": "2018-08" + }, + { + "id": "2018-09" + }, + { + "id": "2018-10" + }, + { + "id": "2018-11" + }, + { + "id": "2018-12" + }, + { + "id": "2019-01" + }, + { + "id": "2019-02" + }, + { + "id": "2019-03" + }, + { + "id": "2019-04" + }, + { + "id": "2019-05" + }, + { + "id": "2019-06" + }, + { + "id": "2019-07" + }, + { + "id": "2019-08" + }, + { + "id": "2019-09" + }, + { + "id": "2019-10" + }, + { + "id": "2019-11" + }, + { + "id": "2019-12" + }, + { + "id": "2020-01" + }, + { + "id": "2020-02" + }, + { + "id": "2020-03" + }, + { + "id": "2020-04" + }, + { + "id": "2020-05" + }, + { + "id": "2020-06" + }, + { + "id": "2020-07" + }, + { + "id": "2020-08" + }, + { + "id": "2020-09" + }, + { + "id": "2020-10" + }, + { + "id": "2020-11" + }, + { + "id": "2020-12" + }, + { + "id": "2021-01" + }, + { + "id": "2021-02" + }, + { + "id": "2021-03" + }, + { + "id": "2021-04" + }, + { + "id": "2021-05" + }, + { + "id": "2021-06" + }, + { + "id": "2021-07" + }, + { + "id": "2021-08" + }, + { + "id": "2021-09" + }, + { + "id": "2021-10" + }, + { + "id": "2021-11" + }, + { + "id": "2021-12" + }, + { + "id": "2022-01" + }, + { + "id": "2022-02" + }, + { + "id": "2022-03" + }, + { + "id": "2022-04" + }, + { + "id": "2022-05" + }, + { + "id": "2022-06" + }, + { + "id": "2022-07" + }, + { + "id": "2022-08" + }, + { + "id": "2022-09" + }, + { + "id": "2022-10" + }, + { + "id": "2022-11" + }, + { + "id": "2022-12" + }, + { + "id": "2023-01" + }, + { + "id": "2023-02" + }, + { + "id": "2023-03" + }, + { + "id": "2023-04" + }, + { + "id": "2023-05" + }, + { + "id": "2023-06" + }, + { + "id": "2023-07" + }, + { + "id": "2023-08" + }, + { + "id": "2023-09" + }, + { + "id": "2023-10" + }, + { + "id": "2023-11" + }, + { + "id": "2023-12" + }, + { + "id": "2024-01" + }, + { + "id": "2024-02" + }, + { + "id": "2024-03" + }, + { + "id": "2024-04" + }, + { + "id": "2024-05" + }, + { + "id": "2024-06" + }, + { + "id": "2024-07" + }, + { + "id": "2024-08" + }, + { + "id": "2024-09" + }, + { + "id": "2024-10" + }, + { + "id": "2024-11" + }, + { + "id": "2024-12" + }, + { + "id": "2025-01" + }, + { + "id": "2025-02" + }, + { + "id": "2025-03" + }, + { + "id": "2025-04" + }, + { + "id": "2025-05" + }, + { + "id": "2025-06" + }, + { + "id": "2025-07" + }, + { + "id": "2025-08" + }, + { + "id": "2025-10-06" + }, + { + "id": "2025-11-03" + }, + { + "id": "2025-12-01" + }, + { + "id": "2025-12-29" + }, + { + "id": "2026-01-26" + }, + { + "id": "2026-02-23" + }, + { + "id": "2026-03-23" + }, + { + "id": "2026-04-20" + }, + { + "id": "2026-05-18" + }, + { + "id": "2026-06-02" + }, + { + "id": "2026-06-16" + } + ], + "paging": { + "cursors": {} } - ], - "paging": { - "cursors": {} - } -}, + }, "headers": { "cache-control": "max-age=600", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/leagues/LISTLEAGUETIERS.json b/data/leagues/LISTLEAGUETIERS.json index ad24cba..88a5aec 100644 --- a/data/leagues/LISTLEAGUETIERS.json +++ b/data/leagues/LISTLEAGUETIERS.json @@ -1,294 +1,294 @@ { "body": { - "items": [ - { - "id": 105000000, - "name": "Unranked", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/yyYo5DUFeFBZvmMEQh0ZxvG-1sUOZ_S3kDMB7RllXX0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/yyYo5DUFeFBZvmMEQh0ZxvG-1sUOZ_S3kDMB7RllXX0.png" - } - }, - { - "id": 105000001, - "name": "Skeleton League 1", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/CiSJYHyhMuloCpIIJ3n5-xCnRWrEd9vcq_zu6Ahkl3o.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/CiSJYHyhMuloCpIIJ3n5-xCnRWrEd9vcq_zu6Ahkl3o.png" - } - }, - { - "id": 105000002, - "name": "Skeleton League 2", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/CmM-Tihn6ojPGJstmTK_HC-QairrpYLyRhdKhQjkacQ.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/CmM-Tihn6ojPGJstmTK_HC-QairrpYLyRhdKhQjkacQ.png" - } - }, - { - "id": 105000003, - "name": "Skeleton League 3", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/YMnWU25Xs2SvtAkVS2WDDbcUQY-PTfCK9OSvCKJnwJU.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/YMnWU25Xs2SvtAkVS2WDDbcUQY-PTfCK9OSvCKJnwJU.png" - } - }, - { - "id": 105000004, - "name": "Barbarian League 4", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/CoTrW7nhyiNIDCI4WHUK-0BuhOxibwd_tfASdtmMWFE.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/CoTrW7nhyiNIDCI4WHUK-0BuhOxibwd_tfASdtmMWFE.png" - } - }, - { - "id": 105000005, - "name": "Barbarian League 5", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/7Alm6gwA1lYoRn5m8vrXAfbTKIK2fFU7OxfYhYwWJYM.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/7Alm6gwA1lYoRn5m8vrXAfbTKIK2fFU7OxfYhYwWJYM.png" - } - }, - { - "id": 105000006, - "name": "Barbarian League 6", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/pQHVG1p0IboE8Ggp0U1YR7U8dWhVn4YSS1zSPH61F0I.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/pQHVG1p0IboE8Ggp0U1YR7U8dWhVn4YSS1zSPH61F0I.png" - } - }, - { - "id": 105000007, - "name": "Archer League 7", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/x1c7byHQmOHQVKGxAn1sqOW2XOCzTYW-e6OKjq-FBco.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/x1c7byHQmOHQVKGxAn1sqOW2XOCzTYW-e6OKjq-FBco.png" - } - }, - { - "id": 105000008, - "name": "Archer League 8", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/lzneKpnJ_ADL1Xb1rceH7-svqRN1UaLnI7ldd8BbyxI.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/lzneKpnJ_ADL1Xb1rceH7-svqRN1UaLnI7ldd8BbyxI.png" - } - }, - { - "id": 105000009, - "name": "Archer League 9", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/ieEdz9Mqbo7g9iJfXwTnIh7Iwz-37aPEmWma1ENEwXE.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/ieEdz9Mqbo7g9iJfXwTnIh7Iwz-37aPEmWma1ENEwXE.png" - } - }, - { - "id": 105000010, - "name": "Wizard League 10", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/3kJYaYpDwKF8AEkwRLkm-947_t2mAhpEQcZJYulPPIA.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/3kJYaYpDwKF8AEkwRLkm-947_t2mAhpEQcZJYulPPIA.png" - } - }, - { - "id": 105000011, - "name": "Wizard League 11", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/XazuJHG2wjBq39KEA4g4hh1nKJQwVO0fRoVDPHvWwAY.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/XazuJHG2wjBq39KEA4g4hh1nKJQwVO0fRoVDPHvWwAY.png" - } - }, - { - "id": 105000012, - "name": "Wizard League 12", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/A_ZoGbh1g8wYRWygsQ_wMgbVz8GXvvfavKwlSx8C8PQ.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/A_ZoGbh1g8wYRWygsQ_wMgbVz8GXvvfavKwlSx8C8PQ.png" - } - }, - { - "id": 105000013, - "name": "Valkyrie League 13", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/6BwmbzkNm6p2unZonTauFQ_683uNl4NYtoOXJmEs78c.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/6BwmbzkNm6p2unZonTauFQ_683uNl4NYtoOXJmEs78c.png" - } - }, - { - "id": 105000014, - "name": "Valkyrie League 14", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/7AbbZbiV6whmfa6CZtqt6Ml4NgFH1B-UqCxc59ziqfk.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/7AbbZbiV6whmfa6CZtqt6Ml4NgFH1B-UqCxc59ziqfk.png" - } - }, - { - "id": 105000015, - "name": "Valkyrie League 15", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/vT-0ssHYx5zJbBbbjB5NHPXnlHk76MDxJmG7iKmghc4.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/vT-0ssHYx5zJbBbbjB5NHPXnlHk76MDxJmG7iKmghc4.png" - } - }, - { - "id": 105000016, - "name": "Witch League 16", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/a3zg3PSqri2WrWD8tGzKs0hJ5OrND1Rx1SJ45f5O0gE.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/a3zg3PSqri2WrWD8tGzKs0hJ5OrND1Rx1SJ45f5O0gE.png" - } - }, - { - "id": 105000017, - "name": "Witch League 17", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/3mEMvpajLceJ3EKu7u_JIh_cOEsT7wyh701zum9hqCY.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/3mEMvpajLceJ3EKu7u_JIh_cOEsT7wyh701zum9hqCY.png" - } - }, - { - "id": 105000018, - "name": "Witch League 18", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/GeLamlTvRYNnZp5lEW64pyaORN30rCdrxTjU7oJoTN8.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/GeLamlTvRYNnZp5lEW64pyaORN30rCdrxTjU7oJoTN8.png" - } - }, - { - "id": 105000019, - "name": "Golem League 19", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/yS8XBv_a_SNtCpcofsWMFaojRNwO504Py7HyDCBCjYU.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/yS8XBv_a_SNtCpcofsWMFaojRNwO504Py7HyDCBCjYU.png" - } - }, - { - "id": 105000020, - "name": "Golem League 20", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/uizNRh8glQZuAbLdCa-EQSf3oJnge3nqoXHjtQ6O8pw.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/uizNRh8glQZuAbLdCa-EQSf3oJnge3nqoXHjtQ6O8pw.png" - } - }, - { - "id": 105000021, - "name": "Golem League 21", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/WkqDvnK0CXI-Nc0TNTKG_fSuzRYoLRC54HFOdMCxVTI.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/WkqDvnK0CXI-Nc0TNTKG_fSuzRYoLRC54HFOdMCxVTI.png" - } - }, - { - "id": 105000022, - "name": "P.E.K.K.A League 22", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/iTWXPUUFQy0uEb7NDpMTyzGMFOJvlC4SLAqlHYgC8do.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/iTWXPUUFQy0uEb7NDpMTyzGMFOJvlC4SLAqlHYgC8do.png" - } - }, - { - "id": 105000023, - "name": "P.E.K.K.A League 23", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/0eDMQmsiZ0gs8xzViGfVETnYjwzgELTKwYhH3izevT4.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/0eDMQmsiZ0gs8xzViGfVETnYjwzgELTKwYhH3izevT4.png" - } - }, - { - "id": 105000024, - "name": "P.E.K.K.A League 24", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/vxV7LI0votsz0_n-8lW-Lag96D5HwKsEgEk_7247zC4.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/vxV7LI0votsz0_n-8lW-Lag96D5HwKsEgEk_7247zC4.png" - } - }, - { - "id": 105000025, - "name": "Titan League 25", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/JLqVXdNkAGjD_yqMRDgu9KK-hDrulNPjsKU4EugHqX8.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/JLqVXdNkAGjD_yqMRDgu9KK-hDrulNPjsKU4EugHqX8.png" - } - }, - { - "id": 105000026, - "name": "Titan League 26", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/yIfqSgrhiYRcuMbAPCoeCj1FTmfylCLxnrAljEZc8K0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/yIfqSgrhiYRcuMbAPCoeCj1FTmfylCLxnrAljEZc8K0.png" - } - }, - { - "id": 105000027, - "name": "Titan League 27", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/1AhObOl55grQIWnGmn1J9qMWq5pmRA3aBObfYkQEjko.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/1AhObOl55grQIWnGmn1J9qMWq5pmRA3aBObfYkQEjko.png" - } - }, - { - "id": 105000028, - "name": "Dragon League 28", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/YCZ7O_3_c8eCBYvX-92qiWeLc6Md6eNJ5A8O-2vUg7I.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/YCZ7O_3_c8eCBYvX-92qiWeLc6Md6eNJ5A8O-2vUg7I.png" - } - }, - { - "id": 105000029, - "name": "Dragon League 29", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/DIMeRH3N4lrNObA3zAmk_eUin8nvNeLR89qYznnA--s.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/DIMeRH3N4lrNObA3zAmk_eUin8nvNeLR89qYznnA--s.png" - } - }, - { - "id": 105000030, - "name": "Dragon League 30", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/g7m9aF8YoYj9b0olPsyT4eUIxyYEmkqr53wYxWmzpE4.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/g7m9aF8YoYj9b0olPsyT4eUIxyYEmkqr53wYxWmzpE4.png" - } - }, - { - "id": 105000031, - "name": "Electro League 31", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/qVORiRguZ-xMq8L0g7rE1-rZuiA-lKlI8VKuMndRy4w.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/qVORiRguZ-xMq8L0g7rE1-rZuiA-lKlI8VKuMndRy4w.png" - } - }, - { - "id": 105000032, - "name": "Electro League 32", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/iX8uNhG6jBcQATWFS8a0gtidGy9O1PRYtXZZMTtUK3U.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/iX8uNhG6jBcQATWFS8a0gtidGy9O1PRYtXZZMTtUK3U.png" - } - }, - { - "id": 105000033, - "name": "Electro League 33", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png" - } - }, - { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } + "items": [ + { + "id": 105000000, + "name": "Unranked", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/yyYo5DUFeFBZvmMEQh0ZxvG-1sUOZ_S3kDMB7RllXX0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/yyYo5DUFeFBZvmMEQh0ZxvG-1sUOZ_S3kDMB7RllXX0.png" + } + }, + { + "id": 105000001, + "name": "Skeleton League 1", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/CiSJYHyhMuloCpIIJ3n5-xCnRWrEd9vcq_zu6Ahkl3o.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/CiSJYHyhMuloCpIIJ3n5-xCnRWrEd9vcq_zu6Ahkl3o.png" + } + }, + { + "id": 105000002, + "name": "Skeleton League 2", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/CmM-Tihn6ojPGJstmTK_HC-QairrpYLyRhdKhQjkacQ.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/CmM-Tihn6ojPGJstmTK_HC-QairrpYLyRhdKhQjkacQ.png" + } + }, + { + "id": 105000003, + "name": "Skeleton League 3", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/YMnWU25Xs2SvtAkVS2WDDbcUQY-PTfCK9OSvCKJnwJU.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/YMnWU25Xs2SvtAkVS2WDDbcUQY-PTfCK9OSvCKJnwJU.png" + } + }, + { + "id": 105000004, + "name": "Barbarian League 4", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/CoTrW7nhyiNIDCI4WHUK-0BuhOxibwd_tfASdtmMWFE.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/CoTrW7nhyiNIDCI4WHUK-0BuhOxibwd_tfASdtmMWFE.png" + } + }, + { + "id": 105000005, + "name": "Barbarian League 5", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/7Alm6gwA1lYoRn5m8vrXAfbTKIK2fFU7OxfYhYwWJYM.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/7Alm6gwA1lYoRn5m8vrXAfbTKIK2fFU7OxfYhYwWJYM.png" + } + }, + { + "id": 105000006, + "name": "Barbarian League 6", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/pQHVG1p0IboE8Ggp0U1YR7U8dWhVn4YSS1zSPH61F0I.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/pQHVG1p0IboE8Ggp0U1YR7U8dWhVn4YSS1zSPH61F0I.png" + } + }, + { + "id": 105000007, + "name": "Archer League 7", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/x1c7byHQmOHQVKGxAn1sqOW2XOCzTYW-e6OKjq-FBco.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/x1c7byHQmOHQVKGxAn1sqOW2XOCzTYW-e6OKjq-FBco.png" + } + }, + { + "id": 105000008, + "name": "Archer League 8", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/lzneKpnJ_ADL1Xb1rceH7-svqRN1UaLnI7ldd8BbyxI.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/lzneKpnJ_ADL1Xb1rceH7-svqRN1UaLnI7ldd8BbyxI.png" + } + }, + { + "id": 105000009, + "name": "Archer League 9", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/ieEdz9Mqbo7g9iJfXwTnIh7Iwz-37aPEmWma1ENEwXE.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/ieEdz9Mqbo7g9iJfXwTnIh7Iwz-37aPEmWma1ENEwXE.png" + } + }, + { + "id": 105000010, + "name": "Wizard League 10", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/3kJYaYpDwKF8AEkwRLkm-947_t2mAhpEQcZJYulPPIA.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/3kJYaYpDwKF8AEkwRLkm-947_t2mAhpEQcZJYulPPIA.png" + } + }, + { + "id": 105000011, + "name": "Wizard League 11", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/XazuJHG2wjBq39KEA4g4hh1nKJQwVO0fRoVDPHvWwAY.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/XazuJHG2wjBq39KEA4g4hh1nKJQwVO0fRoVDPHvWwAY.png" + } + }, + { + "id": 105000012, + "name": "Wizard League 12", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/A_ZoGbh1g8wYRWygsQ_wMgbVz8GXvvfavKwlSx8C8PQ.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/A_ZoGbh1g8wYRWygsQ_wMgbVz8GXvvfavKwlSx8C8PQ.png" + } + }, + { + "id": 105000013, + "name": "Valkyrie League 13", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/6BwmbzkNm6p2unZonTauFQ_683uNl4NYtoOXJmEs78c.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/6BwmbzkNm6p2unZonTauFQ_683uNl4NYtoOXJmEs78c.png" + } + }, + { + "id": 105000014, + "name": "Valkyrie League 14", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/7AbbZbiV6whmfa6CZtqt6Ml4NgFH1B-UqCxc59ziqfk.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/7AbbZbiV6whmfa6CZtqt6Ml4NgFH1B-UqCxc59ziqfk.png" + } + }, + { + "id": 105000015, + "name": "Valkyrie League 15", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/vT-0ssHYx5zJbBbbjB5NHPXnlHk76MDxJmG7iKmghc4.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/vT-0ssHYx5zJbBbbjB5NHPXnlHk76MDxJmG7iKmghc4.png" + } + }, + { + "id": 105000016, + "name": "Witch League 16", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/a3zg3PSqri2WrWD8tGzKs0hJ5OrND1Rx1SJ45f5O0gE.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/a3zg3PSqri2WrWD8tGzKs0hJ5OrND1Rx1SJ45f5O0gE.png" + } + }, + { + "id": 105000017, + "name": "Witch League 17", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/3mEMvpajLceJ3EKu7u_JIh_cOEsT7wyh701zum9hqCY.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/3mEMvpajLceJ3EKu7u_JIh_cOEsT7wyh701zum9hqCY.png" + } + }, + { + "id": 105000018, + "name": "Witch League 18", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/GeLamlTvRYNnZp5lEW64pyaORN30rCdrxTjU7oJoTN8.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/GeLamlTvRYNnZp5lEW64pyaORN30rCdrxTjU7oJoTN8.png" + } + }, + { + "id": 105000019, + "name": "Golem League 19", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/yS8XBv_a_SNtCpcofsWMFaojRNwO504Py7HyDCBCjYU.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/yS8XBv_a_SNtCpcofsWMFaojRNwO504Py7HyDCBCjYU.png" + } + }, + { + "id": 105000020, + "name": "Golem League 20", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/uizNRh8glQZuAbLdCa-EQSf3oJnge3nqoXHjtQ6O8pw.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/uizNRh8glQZuAbLdCa-EQSf3oJnge3nqoXHjtQ6O8pw.png" + } + }, + { + "id": 105000021, + "name": "Golem League 21", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/WkqDvnK0CXI-Nc0TNTKG_fSuzRYoLRC54HFOdMCxVTI.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/WkqDvnK0CXI-Nc0TNTKG_fSuzRYoLRC54HFOdMCxVTI.png" + } + }, + { + "id": 105000022, + "name": "P.E.K.K.A League 22", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/iTWXPUUFQy0uEb7NDpMTyzGMFOJvlC4SLAqlHYgC8do.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/iTWXPUUFQy0uEb7NDpMTyzGMFOJvlC4SLAqlHYgC8do.png" + } + }, + { + "id": 105000023, + "name": "P.E.K.K.A League 23", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/0eDMQmsiZ0gs8xzViGfVETnYjwzgELTKwYhH3izevT4.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/0eDMQmsiZ0gs8xzViGfVETnYjwzgELTKwYhH3izevT4.png" + } + }, + { + "id": 105000024, + "name": "P.E.K.K.A League 24", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/vxV7LI0votsz0_n-8lW-Lag96D5HwKsEgEk_7247zC4.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/vxV7LI0votsz0_n-8lW-Lag96D5HwKsEgEk_7247zC4.png" + } + }, + { + "id": 105000025, + "name": "Titan League 25", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/JLqVXdNkAGjD_yqMRDgu9KK-hDrulNPjsKU4EugHqX8.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/JLqVXdNkAGjD_yqMRDgu9KK-hDrulNPjsKU4EugHqX8.png" + } + }, + { + "id": 105000026, + "name": "Titan League 26", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/yIfqSgrhiYRcuMbAPCoeCj1FTmfylCLxnrAljEZc8K0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/yIfqSgrhiYRcuMbAPCoeCj1FTmfylCLxnrAljEZc8K0.png" + } + }, + { + "id": 105000027, + "name": "Titan League 27", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/1AhObOl55grQIWnGmn1J9qMWq5pmRA3aBObfYkQEjko.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/1AhObOl55grQIWnGmn1J9qMWq5pmRA3aBObfYkQEjko.png" + } + }, + { + "id": 105000028, + "name": "Dragon League 28", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/YCZ7O_3_c8eCBYvX-92qiWeLc6Md6eNJ5A8O-2vUg7I.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/YCZ7O_3_c8eCBYvX-92qiWeLc6Md6eNJ5A8O-2vUg7I.png" + } + }, + { + "id": 105000029, + "name": "Dragon League 29", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/DIMeRH3N4lrNObA3zAmk_eUin8nvNeLR89qYznnA--s.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/DIMeRH3N4lrNObA3zAmk_eUin8nvNeLR89qYznnA--s.png" + } + }, + { + "id": 105000030, + "name": "Dragon League 30", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/g7m9aF8YoYj9b0olPsyT4eUIxyYEmkqr53wYxWmzpE4.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/g7m9aF8YoYj9b0olPsyT4eUIxyYEmkqr53wYxWmzpE4.png" + } + }, + { + "id": 105000031, + "name": "Electro League 31", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/qVORiRguZ-xMq8L0g7rE1-rZuiA-lKlI8VKuMndRy4w.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/qVORiRguZ-xMq8L0g7rE1-rZuiA-lKlI8VKuMndRy4w.png" + } + }, + { + "id": 105000032, + "name": "Electro League 32", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/iX8uNhG6jBcQATWFS8a0gtidGy9O1PRYtXZZMTtUK3U.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/iX8uNhG6jBcQATWFS8a0gtidGy9O1PRYtXZZMTtUK3U.png" + } + }, + { + "id": 105000033, + "name": "Electro League 33", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png" + } + }, + { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + ], + "paging": { + "cursors": {} } - ], - "paging": { - "cursors": {} - } -}, + }, "headers": { "cache-control": "max-age=600", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/leagues/league-season/LEAGUESEASON.json b/data/leagues/league-season/LEAGUESEASON.json index 59df6a0..dc4e0e3 100644 --- a/data/leagues/league-season/LEAGUESEASON.json +++ b/data/leagues/league-season/LEAGUESEASON.json @@ -1,2607 +1,2607 @@ { "body": { - "items": [ - { - "tag": "#2RRPUCJRC", - "name": "☆★☆★", - "expLevel": 274, - "trophies": 6378, - "attackWins": 224, - "defenseWins": 1, - "rank": 1, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2GYYUU8RV", - "name": "☆★☆★☆★", - "expLevel": 268, - "trophies": 6281, - "attackWins": 224, - "defenseWins": 0, - "rank": 2, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#L20VVGLPQ", - "name": "☆★☆★☆", - "expLevel": 260, - "trophies": 6254, - "attackWins": 224, - "defenseWins": 1, - "rank": 3, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#90RQ0GYR", - "name": "gj", - "expLevel": 246, - "trophies": 6171, - "attackWins": 224, - "defenseWins": 1, - "rank": 4, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#20QPPCVVY", - "name": "Dima⚡️Cyrus", - "expLevel": 249, - "trophies": 6163, - "attackWins": 224, - "defenseWins": 0, - "rank": 5, - "clan": { - "tag": "#LCVUPJV0", - "name": "ProjectSE7VEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9LJ8UGC9L", - "name": "CE Name", - "expLevel": 276, - "trophies": 6131, - "attackWins": 224, - "defenseWins": 0, - "rank": 6, - "clan": { - "tag": "#CY8RV9CJ", - "name": "WAR IS COMING", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", - "large": "https://api-assets.clashofclans.com/badges/512/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#UR09Q9Y2", - "name": "Mega ⚡️ Clayton", - "expLevel": 282, - "trophies": 6110, - "attackWins": 208, - "defenseWins": 0, - "rank": 7, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#P0RYRRPQY", - "name": "David☢️Wei", - "expLevel": 264, - "trophies": 6097, - "attackWins": 224, - "defenseWins": 0, - "rank": 8, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#GJUPVVRY", - "name": "Diego迭戈•GM", - "expLevel": 247, - "trophies": 6092, - "attackWins": 224, - "defenseWins": 0, - "rank": 9, - "clan": { - "tag": "#LCVUPJV0", - "name": "ProjectSE7VEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Y0QJR2VJ", - "name": "☆★☆★☆★☆", - "expLevel": 270, - "trophies": 6052, - "attackWins": 224, - "defenseWins": 0, - "rank": 10, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YJ2CYQ20Q", - "name": "Tompel", - "expLevel": 246, - "trophies": 6034, - "attackWins": 196, - "defenseWins": 0, - "rank": 11, - "clan": { - "tag": "#QJYCJ9CV", - "name": "WhoisKRAVEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#UY8GGGV9", - "name": "TRB Dima", - "expLevel": 272, - "trophies": 6004, - "attackWins": 223, - "defenseWins": 1, - "rank": 12, - "clan": { - "tag": "#LCVUPJV0", - "name": "ProjectSE7VEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#GJ00QPR2Y", - "name": "dima hammertime", - "expLevel": 204, - "trophies": 6000, - "attackWins": 223, - "defenseWins": 0, - "rank": 13, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PYLG0RPGJ", - "name": "Jatin", - "expLevel": 264, - "trophies": 5993, - "attackWins": 224, - "defenseWins": 0, - "rank": 14, - "clan": { - "tag": "#2PUGJQ82G", - "name": "Unlucky Pros", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", - "large": "https://api-assets.clashofclans.com/badges/512/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#20R8QCGCP", - "name": "Nian", - "expLevel": 276, - "trophies": 5992, - "attackWins": 224, - "defenseWins": 0, - "rank": 15, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9V8YQQ2UU", - "name": "™️VÔ TÌNH™️", - "expLevel": 267, - "trophies": 5988, - "attackWins": 216, - "defenseWins": 1, - "rank": 16, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9JJJJ8V02", - "name": "SKY Phoenix", - "expLevel": 277, - "trophies": 5982, - "attackWins": 216, - "defenseWins": 1, - "rank": 17, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PLPL00R99", - "name": "⚜️Vô Tình⚜️", - "expLevel": 265, - "trophies": 5982, - "attackWins": 216, - "defenseWins": 0, - "rank": 18, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9VGGC2YQJ", - "name": "Tom⚡️Rula", - "expLevel": 271, - "trophies": 5972, - "attackWins": 223, - "defenseWins": 1, - "rank": 19, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#RRYV20J9", - "name": "Night King", - "expLevel": 281, - "trophies": 5970, - "attackWins": 165, - "defenseWins": 1, - "rank": 20, - "clan": { - "tag": "#Y0L0QPPC", - "name": "الدسم", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", - "large": "https://api-assets.clashofclans.com/badges/512/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9CLL2GV8V", - "name": "STRONG", - "expLevel": 269, - "trophies": 5968, - "attackWins": 216, - "defenseWins": 0, - "rank": 21, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#QVR2JGCUR", - "name": "江上✨尤克里里", - "expLevel": 230, - "trophies": 5962, - "attackWins": 224, - "defenseWins": 0, - "rank": 22, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2PPJJUCUC", - "name": "Nguyên Soái", - "expLevel": 291, - "trophies": 5959, - "attackWins": 216, - "defenseWins": 1, - "rank": 23, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PGLLVRJRV", - "name": "Nian", - "expLevel": 265, - "trophies": 5955, - "attackWins": 224, - "defenseWins": 0, - "rank": 24, - "clan": { - "tag": "#JYJCJC0U", - "name": "锦瑟", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/icA6o0_94mwHE06txlT7Ti1SkCdJjKt2tm3lmQxg6yI.png", - "large": "https://api-assets.clashofclans.com/badges/512/icA6o0_94mwHE06txlT7Ti1SkCdJjKt2tm3lmQxg6yI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/icA6o0_94mwHE06txlT7Ti1SkCdJjKt2tm3lmQxg6yI.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#90C0PU00", - "name": "༺Quỷ༒Vương༻", - "expLevel": 271, - "trophies": 5940, - "attackWins": 223, - "defenseWins": 1, - "rank": 25, - "clan": { - "tag": "#Y0L0QPPC", - "name": "الدسم", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", - "large": "https://api-assets.clashofclans.com/badges/512/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#V9CPVURG", - "name": "Unike", - "expLevel": 239, - "trophies": 5936, - "attackWins": 221, - "defenseWins": 1, - "rank": 26, - "clan": { - "tag": "#LCVUPJV0", - "name": "ProjectSE7VEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Y82GLQ990", - "name": "McAngel天使❤️", - "expLevel": 274, - "trophies": 5935, - "attackWins": 223, - "defenseWins": 0, - "rank": 27, - "clan": { - "tag": "#2JVUGY980", - "name": "बालेन/ जय नेपाल", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8P228GU8C", - "name": "Snoopy", - "expLevel": 244, - "trophies": 5930, - "attackWins": 224, - "defenseWins": 0, - "rank": 28, - "clan": { - "tag": "#2Q9C9QJR0", - "name": "The Familymen", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", - "large": "https://api-assets.clashofclans.com/badges/512/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", - "medium": "https://api-assets.clashofclans.com/badges/200/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#RJURUU8J", - "name": "❤️Vô Tình❤️", - "expLevel": 264, - "trophies": 5928, - "attackWins": 216, - "defenseWins": 0, - "rank": 29, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2VPC2QR90", - "name": "Tompel", - "expLevel": 257, - "trophies": 5924, - "attackWins": 204, - "defenseWins": 0, - "rank": 30, - "clan": { - "tag": "#9RLLVC0L", - "name": "GeroGeroClan", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/gleInU799fdmj_-HlZa1CUqDbBhS2NwaV-5Of4g5ngs.png", - "large": "https://api-assets.clashofclans.com/badges/512/gleInU799fdmj_-HlZa1CUqDbBhS2NwaV-5Of4g5ngs.png", - "medium": "https://api-assets.clashofclans.com/badges/200/gleInU799fdmj_-HlZa1CUqDbBhS2NwaV-5Of4g5ngs.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8QJLUGYRV", - "name": "MR⚡️YOUSEF⚡️ᶜᴿ⁷", - "expLevel": 277, - "trophies": 5920, - "attackWins": 224, - "defenseWins": 2, - "rank": 31, - "clan": { - "tag": "#28QU2CV9Q", - "name": "الدسم", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#G99V880L", - "name": "☆•• eli ••☆", - "expLevel": 271, - "trophies": 5919, - "attackWins": 195, - "defenseWins": 0, - "rank": 32, - "clan": { - "tag": "#8UGU9U2L", - "name": "iranian pars", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Q9V9LLLQP", - "name": "Name", - "expLevel": 254, - "trophies": 5912, - "attackWins": 223, - "defenseWins": 0, - "rank": 33, - "clan": { - "tag": "#CY8RV9CJ", - "name": "WAR IS COMING", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", - "large": "https://api-assets.clashofclans.com/badges/512/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#C928Q289", - "name": "Small fat hand", - "expLevel": 257, - "trophies": 5910, - "attackWins": 224, - "defenseWins": 1, - "rank": 34, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Q22VV0LC", - "name": "hiroya", - "expLevel": 256, - "trophies": 5909, - "attackWins": 224, - "defenseWins": 0, - "rank": 35, - "clan": { - "tag": "#2RC2LPLPU", - "name": "AintNobody", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2L2QUG02", - "name": "aquaria", - "expLevel": 268, - "trophies": 5905, - "attackWins": 216, - "defenseWins": 0, - "rank": 36, - "clan": { - "tag": "#2CLYJ8L2Y", - "name": "Clarity EOS", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/xkhwCFoZbySuhFKGRC4yOaskj4KiT6-zvxC7MFtfCqU.png", - "large": "https://api-assets.clashofclans.com/badges/512/xkhwCFoZbySuhFKGRC4yOaskj4KiT6-zvxC7MFtfCqU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/xkhwCFoZbySuhFKGRC4yOaskj4KiT6-zvxC7MFtfCqU.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YPY8L22GL", - "name": "Agent Stryker", - "expLevel": 259, - "trophies": 5900, - "attackWins": 208, - "defenseWins": 1, - "rank": 37, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Y0Y0R2QG8", - "name": "❤️Gia - Hân❤️", - "expLevel": 259, - "trophies": 5897, - "attackWins": 216, - "defenseWins": 1, - "rank": 38, - "clan": { - "tag": "#2RC2LPLPU", - "name": "AintNobody", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YRJ2GGVL", - "name": "SST DinOmiKs", - "expLevel": 250, - "trophies": 5895, - "attackWins": 223, - "defenseWins": 0, - "rank": 39, - "clan": { - "tag": "#2GYQ8YY2V", - "name": "Savage Stars", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/1Cgd3Zm-x3ZFpkEQk-F0GEgiie5ZDw_8QdC5MFsOYc4.png", - "large": "https://api-assets.clashofclans.com/badges/512/1Cgd3Zm-x3ZFpkEQk-F0GEgiie5ZDw_8QdC5MFsOYc4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/1Cgd3Zm-x3ZFpkEQk-F0GEgiie5ZDw_8QdC5MFsOYc4.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YRLLR0L9", - "name": "VÔ Tình 02", - "expLevel": 266, - "trophies": 5894, - "attackWins": 216, - "defenseWins": 1, - "rank": 40, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#V9P9LCLP", - "name": "ZOOS STARs", - "expLevel": 276, - "trophies": 5893, - "attackWins": 224, - "defenseWins": 1, - "rank": 41, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#GQYCCCJR8", - "name": "Dima 2.0", - "expLevel": 204, - "trophies": 5892, - "attackWins": 224, - "defenseWins": 1, - "rank": 42, - "clan": { - "tag": "#J8V2YCP9", - "name": "Tajikistan Best", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", - "large": "https://api-assets.clashofclans.com/badges/512/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#JLUJP89Y", - "name": "Hayamwuruk", - "expLevel": 267, - "trophies": 5890, - "attackWins": 194, - "defenseWins": 0, - "rank": 43, - "clan": { - "tag": "#UGLLLJCG", - "name": "HAPPY FAMILY", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/8LfZpl7uS3zl6RUUMKh8KrqQbVPEooLro5WuqVU8HJA.png", - "large": "https://api-assets.clashofclans.com/badges/512/8LfZpl7uS3zl6RUUMKh8KrqQbVPEooLro5WuqVU8HJA.png", - "medium": "https://api-assets.clashofclans.com/badges/200/8LfZpl7uS3zl6RUUMKh8KrqQbVPEooLro5WuqVU8HJA.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2VG8RVCRJ", - "name": "Ar✨橘子呜✨", - "expLevel": 250, - "trophies": 5887, - "attackWins": 208, - "defenseWins": 1, - "rank": 44, - "clan": { - "tag": "#2GVYGVQRG", - "name": "Ares", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/YKiClQD0jZGIMT-umX_7QwAoZmgnuRkwCilU04K7FoM.png", - "large": "https://api-assets.clashofclans.com/badges/512/YKiClQD0jZGIMT-umX_7QwAoZmgnuRkwCilU04K7FoM.png", - "medium": "https://api-assets.clashofclans.com/badges/200/YKiClQD0jZGIMT-umX_7QwAoZmgnuRkwCilU04K7FoM.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YYC09JRCU", - "name": "JO๛AßooD❤️✨", - "expLevel": 257, - "trophies": 5885, - "attackWins": 222, - "defenseWins": 1, - "rank": 45, - "clan": { - "tag": "#2C9VYUUQG", - "name": "TOP⚡️TEAM", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PRJC2PQPP", - "name": "Mega❤️Tobifer 4", - "expLevel": 266, - "trophies": 5884, - "attackWins": 208, - "defenseWins": 1, - "rank": 46, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#99VJ2VPV", - "name": "hiroya☃", - "expLevel": 265, - "trophies": 5880, - "attackWins": 224, - "defenseWins": 1, - "rank": 47, - "clan": { - "tag": "#2RC2LPLPU", - "name": "AintNobody", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#22GCJYL89", - "name": "Vô Tình No.1", - "expLevel": 274, - "trophies": 5879, - "attackWins": 216, - "defenseWins": 0, - "rank": 48, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PV2GJRG8R", - "name": "PRIYANSHU", - "expLevel": 237, - "trophies": 5877, - "attackWins": 222, - "defenseWins": 1, - "rank": 49, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2V22PYPC2", - "name": "M O H A M M A D", - "expLevel": 285, - "trophies": 5876, - "attackWins": 197, - "defenseWins": 0, - "rank": 50, - "clan": { - "tag": "#8UGU9U2L", - "name": "iranian pars", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#LR2C9LRRL", - "name": "☆★☆A M I N☆★☆", - "expLevel": 265, - "trophies": 5874, - "attackWins": 197, - "defenseWins": 2, - "rank": 51, - "clan": { - "tag": "#8UGU9U2L", - "name": "iranian pars", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } + "items": [ + { + "tag": "#2RRPUCJRC", + "name": "☆★☆★", + "expLevel": 274, + "trophies": 6378, + "attackWins": 224, + "defenseWins": 1, + "rank": 1, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2GYYUU8RV", + "name": "☆★☆★☆★", + "expLevel": 268, + "trophies": 6281, + "attackWins": 224, + "defenseWins": 0, + "rank": 2, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#L20VVGLPQ", + "name": "☆★☆★☆", + "expLevel": 260, + "trophies": 6254, + "attackWins": 224, + "defenseWins": 1, + "rank": 3, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#90RQ0GYR", + "name": "gj", + "expLevel": 246, + "trophies": 6171, + "attackWins": 224, + "defenseWins": 1, + "rank": 4, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#20QPPCVVY", + "name": "Dima⚡️Cyrus", + "expLevel": 249, + "trophies": 6163, + "attackWins": 224, + "defenseWins": 0, + "rank": 5, + "clan": { + "tag": "#LCVUPJV0", + "name": "ProjectSE7VEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9LJ8UGC9L", + "name": "CE Name", + "expLevel": 276, + "trophies": 6131, + "attackWins": 224, + "defenseWins": 0, + "rank": 6, + "clan": { + "tag": "#CY8RV9CJ", + "name": "WAR IS COMING", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", + "large": "https://api-assets.clashofclans.com/badges/512/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#UR09Q9Y2", + "name": "Mega ⚡️ Clayton", + "expLevel": 282, + "trophies": 6110, + "attackWins": 208, + "defenseWins": 0, + "rank": 7, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#P0RYRRPQY", + "name": "David☢️Wei", + "expLevel": 264, + "trophies": 6097, + "attackWins": 224, + "defenseWins": 0, + "rank": 8, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#GJUPVVRY", + "name": "Diego迭戈•GM", + "expLevel": 247, + "trophies": 6092, + "attackWins": 224, + "defenseWins": 0, + "rank": 9, + "clan": { + "tag": "#LCVUPJV0", + "name": "ProjectSE7VEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Y0QJR2VJ", + "name": "☆★☆★☆★☆", + "expLevel": 270, + "trophies": 6052, + "attackWins": 224, + "defenseWins": 0, + "rank": 10, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YJ2CYQ20Q", + "name": "Tompel", + "expLevel": 246, + "trophies": 6034, + "attackWins": 196, + "defenseWins": 0, + "rank": 11, + "clan": { + "tag": "#QJYCJ9CV", + "name": "WhoisKRAVEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#UY8GGGV9", + "name": "TRB Dima", + "expLevel": 272, + "trophies": 6004, + "attackWins": 223, + "defenseWins": 1, + "rank": 12, + "clan": { + "tag": "#LCVUPJV0", + "name": "ProjectSE7VEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#GJ00QPR2Y", + "name": "dima hammertime", + "expLevel": 204, + "trophies": 6000, + "attackWins": 223, + "defenseWins": 0, + "rank": 13, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PYLG0RPGJ", + "name": "Jatin", + "expLevel": 264, + "trophies": 5993, + "attackWins": 224, + "defenseWins": 0, + "rank": 14, + "clan": { + "tag": "#2PUGJQ82G", + "name": "Unlucky Pros", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", + "large": "https://api-assets.clashofclans.com/badges/512/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#20R8QCGCP", + "name": "Nian", + "expLevel": 276, + "trophies": 5992, + "attackWins": 224, + "defenseWins": 0, + "rank": 15, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9V8YQQ2UU", + "name": "™️VÔ TÌNH™️", + "expLevel": 267, + "trophies": 5988, + "attackWins": 216, + "defenseWins": 1, + "rank": 16, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9JJJJ8V02", + "name": "SKY Phoenix", + "expLevel": 277, + "trophies": 5982, + "attackWins": 216, + "defenseWins": 1, + "rank": 17, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PLPL00R99", + "name": "⚜️Vô Tình⚜️", + "expLevel": 265, + "trophies": 5982, + "attackWins": 216, + "defenseWins": 0, + "rank": 18, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9VGGC2YQJ", + "name": "Tom⚡️Rula", + "expLevel": 271, + "trophies": 5972, + "attackWins": 223, + "defenseWins": 1, + "rank": 19, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#RRYV20J9", + "name": "Night King", + "expLevel": 281, + "trophies": 5970, + "attackWins": 165, + "defenseWins": 1, + "rank": 20, + "clan": { + "tag": "#Y0L0QPPC", + "name": "الدسم", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", + "large": "https://api-assets.clashofclans.com/badges/512/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9CLL2GV8V", + "name": "STRONG", + "expLevel": 269, + "trophies": 5968, + "attackWins": 216, + "defenseWins": 0, + "rank": 21, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#QVR2JGCUR", + "name": "江上✨尤克里里", + "expLevel": 230, + "trophies": 5962, + "attackWins": 224, + "defenseWins": 0, + "rank": 22, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2PPJJUCUC", + "name": "Nguyên Soái", + "expLevel": 291, + "trophies": 5959, + "attackWins": 216, + "defenseWins": 1, + "rank": 23, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PGLLVRJRV", + "name": "Nian", + "expLevel": 265, + "trophies": 5955, + "attackWins": 224, + "defenseWins": 0, + "rank": 24, + "clan": { + "tag": "#JYJCJC0U", + "name": "锦瑟", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/icA6o0_94mwHE06txlT7Ti1SkCdJjKt2tm3lmQxg6yI.png", + "large": "https://api-assets.clashofclans.com/badges/512/icA6o0_94mwHE06txlT7Ti1SkCdJjKt2tm3lmQxg6yI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/icA6o0_94mwHE06txlT7Ti1SkCdJjKt2tm3lmQxg6yI.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#90C0PU00", + "name": "༺Quỷ༒Vương༻", + "expLevel": 271, + "trophies": 5940, + "attackWins": 223, + "defenseWins": 1, + "rank": 25, + "clan": { + "tag": "#Y0L0QPPC", + "name": "الدسم", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", + "large": "https://api-assets.clashofclans.com/badges/512/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#V9CPVURG", + "name": "Unike", + "expLevel": 239, + "trophies": 5936, + "attackWins": 221, + "defenseWins": 1, + "rank": 26, + "clan": { + "tag": "#LCVUPJV0", + "name": "ProjectSE7VEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Y82GLQ990", + "name": "McAngel天使❤️", + "expLevel": 274, + "trophies": 5935, + "attackWins": 223, + "defenseWins": 0, + "rank": 27, + "clan": { + "tag": "#2JVUGY980", + "name": "बालेन/ जय नेपाल", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8P228GU8C", + "name": "Snoopy", + "expLevel": 244, + "trophies": 5930, + "attackWins": 224, + "defenseWins": 0, + "rank": 28, + "clan": { + "tag": "#2Q9C9QJR0", + "name": "The Familymen", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", + "large": "https://api-assets.clashofclans.com/badges/512/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", + "medium": "https://api-assets.clashofclans.com/badges/200/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#RJURUU8J", + "name": "❤️Vô Tình❤️", + "expLevel": 264, + "trophies": 5928, + "attackWins": 216, + "defenseWins": 0, + "rank": 29, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2VPC2QR90", + "name": "Tompel", + "expLevel": 257, + "trophies": 5924, + "attackWins": 204, + "defenseWins": 0, + "rank": 30, + "clan": { + "tag": "#9RLLVC0L", + "name": "GeroGeroClan", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/gleInU799fdmj_-HlZa1CUqDbBhS2NwaV-5Of4g5ngs.png", + "large": "https://api-assets.clashofclans.com/badges/512/gleInU799fdmj_-HlZa1CUqDbBhS2NwaV-5Of4g5ngs.png", + "medium": "https://api-assets.clashofclans.com/badges/200/gleInU799fdmj_-HlZa1CUqDbBhS2NwaV-5Of4g5ngs.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8QJLUGYRV", + "name": "MR⚡️YOUSEF⚡️ᶜᴿ⁷", + "expLevel": 277, + "trophies": 5920, + "attackWins": 224, + "defenseWins": 2, + "rank": 31, + "clan": { + "tag": "#28QU2CV9Q", + "name": "الدسم", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#G99V880L", + "name": "☆•• eli ••☆", + "expLevel": 271, + "trophies": 5919, + "attackWins": 195, + "defenseWins": 0, + "rank": 32, + "clan": { + "tag": "#8UGU9U2L", + "name": "iranian pars", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Q9V9LLLQP", + "name": "Name", + "expLevel": 254, + "trophies": 5912, + "attackWins": 223, + "defenseWins": 0, + "rank": 33, + "clan": { + "tag": "#CY8RV9CJ", + "name": "WAR IS COMING", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", + "large": "https://api-assets.clashofclans.com/badges/512/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#C928Q289", + "name": "Small fat hand", + "expLevel": 257, + "trophies": 5910, + "attackWins": 224, + "defenseWins": 1, + "rank": 34, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Q22VV0LC", + "name": "hiroya", + "expLevel": 256, + "trophies": 5909, + "attackWins": 224, + "defenseWins": 0, + "rank": 35, + "clan": { + "tag": "#2RC2LPLPU", + "name": "AintNobody", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2L2QUG02", + "name": "aquaria", + "expLevel": 268, + "trophies": 5905, + "attackWins": 216, + "defenseWins": 0, + "rank": 36, + "clan": { + "tag": "#2CLYJ8L2Y", + "name": "Clarity EOS", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/xkhwCFoZbySuhFKGRC4yOaskj4KiT6-zvxC7MFtfCqU.png", + "large": "https://api-assets.clashofclans.com/badges/512/xkhwCFoZbySuhFKGRC4yOaskj4KiT6-zvxC7MFtfCqU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/xkhwCFoZbySuhFKGRC4yOaskj4KiT6-zvxC7MFtfCqU.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YPY8L22GL", + "name": "Agent Stryker", + "expLevel": 259, + "trophies": 5900, + "attackWins": 208, + "defenseWins": 1, + "rank": 37, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Y0Y0R2QG8", + "name": "❤️Gia - Hân❤️", + "expLevel": 259, + "trophies": 5897, + "attackWins": 216, + "defenseWins": 1, + "rank": 38, + "clan": { + "tag": "#2RC2LPLPU", + "name": "AintNobody", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YRJ2GGVL", + "name": "SST DinOmiKs", + "expLevel": 250, + "trophies": 5895, + "attackWins": 223, + "defenseWins": 0, + "rank": 39, + "clan": { + "tag": "#2GYQ8YY2V", + "name": "Savage Stars", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/1Cgd3Zm-x3ZFpkEQk-F0GEgiie5ZDw_8QdC5MFsOYc4.png", + "large": "https://api-assets.clashofclans.com/badges/512/1Cgd3Zm-x3ZFpkEQk-F0GEgiie5ZDw_8QdC5MFsOYc4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/1Cgd3Zm-x3ZFpkEQk-F0GEgiie5ZDw_8QdC5MFsOYc4.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YRLLR0L9", + "name": "VÔ Tình 02", + "expLevel": 266, + "trophies": 5894, + "attackWins": 216, + "defenseWins": 1, + "rank": 40, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#V9P9LCLP", + "name": "ZOOS STARs", + "expLevel": 276, + "trophies": 5893, + "attackWins": 224, + "defenseWins": 1, + "rank": 41, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#GQYCCCJR8", + "name": "Dima 2.0", + "expLevel": 204, + "trophies": 5892, + "attackWins": 224, + "defenseWins": 1, + "rank": 42, + "clan": { + "tag": "#J8V2YCP9", + "name": "Tajikistan Best", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", + "large": "https://api-assets.clashofclans.com/badges/512/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/CA5Wbb0u_guAvM00fbdx8qUclAK9Z-Wq09UZu6VEaIU.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#JLUJP89Y", + "name": "Hayamwuruk", + "expLevel": 267, + "trophies": 5890, + "attackWins": 194, + "defenseWins": 0, + "rank": 43, + "clan": { + "tag": "#UGLLLJCG", + "name": "HAPPY FAMILY", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/8LfZpl7uS3zl6RUUMKh8KrqQbVPEooLro5WuqVU8HJA.png", + "large": "https://api-assets.clashofclans.com/badges/512/8LfZpl7uS3zl6RUUMKh8KrqQbVPEooLro5WuqVU8HJA.png", + "medium": "https://api-assets.clashofclans.com/badges/200/8LfZpl7uS3zl6RUUMKh8KrqQbVPEooLro5WuqVU8HJA.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2VG8RVCRJ", + "name": "Ar✨橘子呜✨", + "expLevel": 250, + "trophies": 5887, + "attackWins": 208, + "defenseWins": 1, + "rank": 44, + "clan": { + "tag": "#2GVYGVQRG", + "name": "Ares", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/YKiClQD0jZGIMT-umX_7QwAoZmgnuRkwCilU04K7FoM.png", + "large": "https://api-assets.clashofclans.com/badges/512/YKiClQD0jZGIMT-umX_7QwAoZmgnuRkwCilU04K7FoM.png", + "medium": "https://api-assets.clashofclans.com/badges/200/YKiClQD0jZGIMT-umX_7QwAoZmgnuRkwCilU04K7FoM.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YYC09JRCU", + "name": "JO๛AßooD❤️✨", + "expLevel": 257, + "trophies": 5885, + "attackWins": 222, + "defenseWins": 1, + "rank": 45, + "clan": { + "tag": "#2C9VYUUQG", + "name": "TOP⚡️TEAM", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PRJC2PQPP", + "name": "Mega❤️Tobifer 4", + "expLevel": 266, + "trophies": 5884, + "attackWins": 208, + "defenseWins": 1, + "rank": 46, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#99VJ2VPV", + "name": "hiroya☃", + "expLevel": 265, + "trophies": 5880, + "attackWins": 224, + "defenseWins": 1, + "rank": 47, + "clan": { + "tag": "#2RC2LPLPU", + "name": "AintNobody", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#22GCJYL89", + "name": "Vô Tình No.1", + "expLevel": 274, + "trophies": 5879, + "attackWins": 216, + "defenseWins": 0, + "rank": 48, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PV2GJRG8R", + "name": "PRIYANSHU", + "expLevel": 237, + "trophies": 5877, + "attackWins": 222, + "defenseWins": 1, + "rank": 49, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2V22PYPC2", + "name": "M O H A M M A D", + "expLevel": 285, + "trophies": 5876, + "attackWins": 197, + "defenseWins": 0, + "rank": 50, + "clan": { + "tag": "#8UGU9U2L", + "name": "iranian pars", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#LR2C9LRRL", + "name": "☆★☆A M I N☆★☆", + "expLevel": 265, + "trophies": 5874, + "attackWins": 197, + "defenseWins": 2, + "rank": 51, + "clan": { + "tag": "#8UGU9U2L", + "name": "iranian pars", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YJRJ9GV8L", + "name": "pastel", + "expLevel": 261, + "trophies": 5873, + "attackWins": 224, + "defenseWins": 0, + "rank": 52, + "clan": { + "tag": "#2JVUGY980", + "name": "बालेन/ जय नेपाल", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#GYQ9CPRP", + "name": "GAKU♥️Rula", + "expLevel": 268, + "trophies": 5872, + "attackWins": 224, + "defenseWins": 0, + "rank": 53, + "clan": { + "tag": "#CVR8YGJC", + "name": "Zoos Family", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PUQLC9LUC", + "name": "VL FREDDY★★★JR⚡", + "expLevel": 250, + "trophies": 5872, + "attackWins": 224, + "defenseWins": 1, + "rank": 54, + "clan": { + "tag": "#2J20VRCPC", + "name": "ᵁᴺᴿ⚝", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ogJ2DGLZ64uW1EvAdZh9wXqITLjOrWNV-P3lLphBEZ4.png", + "large": "https://api-assets.clashofclans.com/badges/512/ogJ2DGLZ64uW1EvAdZh9wXqITLjOrWNV-P3lLphBEZ4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ogJ2DGLZ64uW1EvAdZh9wXqITLjOrWNV-P3lLphBEZ4.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2VCJ9L0VU", + "name": "Lv.β‪√‬gj", + "expLevel": 240, + "trophies": 5871, + "attackWins": 224, + "defenseWins": 1, + "rank": 55, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#P8LGL8V0R", + "name": "MEGA⚡️AXR⭕️R", + "expLevel": 249, + "trophies": 5870, + "attackWins": 219, + "defenseWins": 0, + "rank": 56, + "clan": { + "tag": "#8UGU9U2L", + "name": "iranian pars", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9U9V80U2", + "name": "GAKU♦️Rula", + "expLevel": 258, + "trophies": 5869, + "attackWins": 224, + "defenseWins": 1, + "rank": 57, + "clan": { + "tag": "#CVR8YGJC", + "name": "Zoos Family", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#P92Q889RQ", + "name": "DΣNIZ♛", + "expLevel": 257, + "trophies": 5869, + "attackWins": 187, + "defenseWins": 1, + "rank": 58, + "clan": { + "tag": "#92VULY2R", + "name": "K1 IRANI", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", + "large": "https://api-assets.clashofclans.com/badges/512/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#VGQCY8C9", + "name": "TE Diego", + "expLevel": 257, + "trophies": 5868, + "attackWins": 224, + "defenseWins": 0, + "rank": 59, + "clan": { + "tag": "#2JVUGY980", + "name": "बालेन/ जय नेपाल", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8YQCP89R0", + "name": "Rula⚡️Thunder", + "expLevel": 257, + "trophies": 5867, + "attackWins": 224, + "defenseWins": 1, + "rank": 60, + "clan": { + "tag": "#90PCLP2L", + "name": "V.N. Champions", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/TCVeO_uMyQyX3OC7JSAYWRBkpkRe2j1bUgsiHms8y2c.png", + "large": "https://api-assets.clashofclans.com/badges/512/TCVeO_uMyQyX3OC7JSAYWRBkpkRe2j1bUgsiHms8y2c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/TCVeO_uMyQyX3OC7JSAYWRBkpkRe2j1bUgsiHms8y2c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#LUVJ08GRU", + "name": "TuanTran", + "expLevel": 248, + "trophies": 5866, + "attackWins": 224, + "defenseWins": 0, + "rank": 61, + "clan": { + "tag": "#PG9LCP9P", + "name": "Lava Kings", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/N0-0A9MU2iS84X0n4hDnN8as1kXz9wJCFcP30dnulT8.png", + "large": "https://api-assets.clashofclans.com/badges/512/N0-0A9MU2iS84X0n4hDnN8as1kXz9wJCFcP30dnulT8.png", + "medium": "https://api-assets.clashofclans.com/badges/200/N0-0A9MU2iS84X0n4hDnN8as1kXz9wJCFcP30dnulT8.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#98QQVCVGP", + "name": "Rula❤️Theon", + "expLevel": 267, + "trophies": 5859, + "attackWins": 224, + "defenseWins": 0, + "rank": 62, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#L22J0Q89P", + "name": "ʚ J.S. ɞ✨Lei✨", + "expLevel": 268, + "trophies": 5859, + "attackWins": 224, + "defenseWins": 1, + "rank": 63, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8QG8LV8Q", + "name": "thegreatfotini", + "expLevel": 270, + "trophies": 5859, + "attackWins": 208, + "defenseWins": 0, + "rank": 64, + "clan": { + "tag": "#CVR8YGJC", + "name": "Zoos Family", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#JVQYG9LC", + "name": "ⱣɈ ʕ⁎̯͡⁎ʔ༄", + "expLevel": 285, + "trophies": 5858, + "attackWins": 224, + "defenseWins": 2, + "rank": 65, + "clan": { + "tag": "#2RCLJ0CCR", + "name": "saturn", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#G8QY8Y2R0", + "name": "Bizzy", + "expLevel": 230, + "trophies": 5857, + "attackWins": 224, + "defenseWins": 2, + "rank": 66, + "clan": { + "tag": "#2C9VYUUQG", + "name": "TOP⚡️TEAM", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YR90QJ2R8", + "name": "QWASMI", + "expLevel": 264, + "trophies": 5857, + "attackWins": 224, + "defenseWins": 3, + "rank": 67, + "clan": { + "tag": "#2GRC08RJ", + "name": "ABO_FAHAD COC", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9JG8UVL0", + "name": "AX hiroya", + "expLevel": 268, + "trophies": 5857, + "attackWins": 224, + "defenseWins": 0, + "rank": 68, + "clan": { + "tag": "#2RC2LPLPU", + "name": "AintNobody", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2QQVPPLUV", + "name": "GAKU♣️Rula", + "expLevel": 249, + "trophies": 5856, + "attackWins": 224, + "defenseWins": 1, + "rank": 69, + "clan": { + "tag": "#CVR8YGJC", + "name": "Zoos Family", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2LYUVLLUU", + "name": "♪侯賽因⚜HAK.IQ", + "expLevel": 282, + "trophies": 5855, + "attackWins": 221, + "defenseWins": 0, + "rank": 70, + "clan": { + "tag": "#2JVUGY980", + "name": "बालेन/ जय नेपाल", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8R9PVRY9R", + "name": "DSM♦️YEHIA", + "expLevel": 254, + "trophies": 5855, + "attackWins": 224, + "defenseWins": 2, + "rank": 71, + "clan": { + "tag": "#Y0L0QPPC", + "name": "الدسم", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", + "large": "https://api-assets.clashofclans.com/badges/512/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#YGGJ900PQ", + "name": "Nigerian Prince", + "expLevel": 263, + "trophies": 5850, + "attackWins": 224, + "defenseWins": 1, + "rank": 72, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8GYQLCQ08", + "name": "Mega ♨️ Clayton", + "expLevel": 263, + "trophies": 5850, + "attackWins": 208, + "defenseWins": 1, + "rank": 73, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8RV98L09R", + "name": "AnGRaJ KaRN", + "expLevel": 272, + "trophies": 5848, + "attackWins": 224, + "defenseWins": 0, + "rank": 74, + "clan": { + "tag": "#2PUGJQ82G", + "name": "Unlucky Pros", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", + "large": "https://api-assets.clashofclans.com/badges/512/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PLQVPQRV0", + "name": "ᴳᴱ✨FAIZI", + "expLevel": 296, + "trophies": 5847, + "attackWins": 224, + "defenseWins": 1, + "rank": 75, + "clan": { + "tag": "#2RC2LPLPU", + "name": "AintNobody", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PPCRRR0", + "name": "ZOOS GAKU", + "expLevel": 276, + "trophies": 5846, + "attackWins": 224, + "defenseWins": 0, + "rank": 76, + "clan": { + "tag": "#2JVUGY980", + "name": "बालेन/ जय नेपाल", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Q9J28CP0V", + "name": "小欣", + "expLevel": 245, + "trophies": 5845, + "attackWins": 216, + "defenseWins": 0, + "rank": 77, + "clan": { + "tag": "#2G08888GG", + "name": "烈陽號", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rza2YKMlvQI8fDLGm3suKAoMeyL0oKNIw0qtfV8KSBQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/rza2YKMlvQI8fDLGm3suKAoMeyL0oKNIw0qtfV8KSBQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rza2YKMlvQI8fDLGm3suKAoMeyL0oKNIw0qtfV8KSBQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9220LQ29J", + "name": "ν α ℓ σ .", + "expLevel": 299, + "trophies": 5844, + "attackWins": 224, + "defenseWins": 1, + "rank": 78, + "clan": { + "tag": "#99LC2JRC", + "name": "Jacky's Crue", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/1Zc55CT0eolBqj1kpQ5Dz-ORAUU-KYexfAov3xEta8w.png", + "large": "https://api-assets.clashofclans.com/badges/512/1Zc55CT0eolBqj1kpQ5Dz-ORAUU-KYexfAov3xEta8w.png", + "medium": "https://api-assets.clashofclans.com/badges/200/1Zc55CT0eolBqj1kpQ5Dz-ORAUU-KYexfAov3xEta8w.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#QRGUJLYY8", + "name": "Skyline", + "expLevel": 240, + "trophies": 5844, + "attackWins": 216, + "defenseWins": 1, + "rank": 79, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#VG992902", + "name": "why not?", + "expLevel": 276, + "trophies": 5843, + "attackWins": 224, + "defenseWins": 0, + "rank": 80, + "clan": { + "tag": "#2QQQ9GUCR", + "name": "Ukraine forever", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/m5lIrTRsT-IK96u_lwx87VZfFdpmCMDcBFdUODslwjU.png", + "large": "https://api-assets.clashofclans.com/badges/512/m5lIrTRsT-IK96u_lwx87VZfFdpmCMDcBFdUODslwjU.png", + "medium": "https://api-assets.clashofclans.com/badges/200/m5lIrTRsT-IK96u_lwx87VZfFdpmCMDcBFdUODslwjU.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#2V2VQ9L9", + "name": "tяαѕкi 91", + "expLevel": 277, + "trophies": 5841, + "attackWins": 224, + "defenseWins": 0, + "rank": 81, + "clan": { + "tag": "#28QU2CV9Q", + "name": "الدسم", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", + "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Y00Y9029", + "name": "见识见识x", + "expLevel": 265, + "trophies": 5841, + "attackWins": 224, + "defenseWins": 1, + "rank": 82, + "clan": { + "tag": "#2YUR2CPC9", + "name": "We Are Best", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/kjWcCTqQwUaIUP6Tw0mSFnryKRHAwsRxsmT3BOFeQOI.png", + "large": "https://api-assets.clashofclans.com/badges/512/kjWcCTqQwUaIUP6Tw0mSFnryKRHAwsRxsmT3BOFeQOI.png", + "medium": "https://api-assets.clashofclans.com/badges/200/kjWcCTqQwUaIUP6Tw0mSFnryKRHAwsRxsmT3BOFeQOI.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#29PPPYRR2", + "name": "『2Late4C’ry』", + "expLevel": 269, + "trophies": 5840, + "attackWins": 221, + "defenseWins": 2, + "rank": 83, + "clan": { + "tag": "#2GYLJUGQY", + "name": "KaYaK", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/c7m6pwYIsYS0y0lol-_FWOPe-dUxkCUbYUTzIZ5Q3EM.png", + "large": "https://api-assets.clashofclans.com/badges/512/c7m6pwYIsYS0y0lol-_FWOPe-dUxkCUbYUTzIZ5Q3EM.png", + "medium": "https://api-assets.clashofclans.com/badges/200/c7m6pwYIsYS0y0lol-_FWOPe-dUxkCUbYUTzIZ5Q3EM.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9P8Y8URJL", + "name": "Priyanshu", + "expLevel": 279, + "trophies": 5840, + "attackWins": 208, + "defenseWins": 0, + "rank": 84, + "clan": { + "tag": "#PC9QYGCU", + "name": "BAX flower city", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/zWkZfuOFW7qAf7tKi9DTfxR2uY0Y9_aQNDxh3ZahY_Y.png", + "large": "https://api-assets.clashofclans.com/badges/512/zWkZfuOFW7qAf7tKi9DTfxR2uY0Y9_aQNDxh3ZahY_Y.png", + "medium": "https://api-assets.clashofclans.com/badges/200/zWkZfuOFW7qAf7tKi9DTfxR2uY0Y9_aQNDxh3ZahY_Y.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Q8R009R", + "name": "INVINCIBLE LG", + "expLevel": 272, + "trophies": 5839, + "attackWins": 224, + "defenseWins": 0, + "rank": 85, + "clan": { + "tag": "#LCVUPJV0", + "name": "ProjectSE7VEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#82J0GC9Q", + "name": "Mega ❤️ Clayton", + "expLevel": 267, + "trophies": 5838, + "attackWins": 208, + "defenseWins": 2, + "rank": 86, + "clan": { + "tag": "#YYRV90JU", + "name": "AintNoCupUp!!!", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#29CRQG892", + "name": "RULA ❤️ JACK", + "expLevel": 278, + "trophies": 5838, + "attackWins": 216, + "defenseWins": 1, + "rank": 87, + "clan": { + "tag": "#2RC2LPLPU", + "name": "AintNobody", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#P99Q900VV", + "name": "Varunツ", + "expLevel": 247, + "trophies": 5836, + "attackWins": 224, + "defenseWins": 0, + "rank": 88, + "clan": { + "tag": "#2Q9C9QJR0", + "name": "The Familymen", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", + "large": "https://api-assets.clashofclans.com/badges/512/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", + "medium": "https://api-assets.clashofclans.com/badges/200/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8092QJQCG", + "name": "Hêmëñdrã Sïñgh", + "expLevel": 276, + "trophies": 5836, + "attackWins": 224, + "defenseWins": 1, + "rank": 89, + "clan": { + "tag": "#2PUGJQ82G", + "name": "Unlucky Pros", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", + "large": "https://api-assets.clashofclans.com/badges/512/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", + "medium": "https://api-assets.clashofclans.com/badges/200/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#P20G0CUJY", + "name": "Cronos", + "expLevel": 269, + "trophies": 5835, + "attackWins": 224, + "defenseWins": 2, + "rank": 90, + "clan": { + "tag": "#Q2RY99UU", + "name": "Máquinas 503", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/q3OmLnOBBLdOp7glElMJfOsIq8UA5XmOAuvvVodt3ic.png", + "large": "https://api-assets.clashofclans.com/badges/512/q3OmLnOBBLdOp7glElMJfOsIq8UA5XmOAuvvVodt3ic.png", + "medium": "https://api-assets.clashofclans.com/badges/200/q3OmLnOBBLdOp7glElMJfOsIq8UA5XmOAuvvVodt3ic.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#99809JLY0", + "name": "S.A LZ YA", + "expLevel": 288, + "trophies": 5834, + "attackWins": 196, + "defenseWins": 1, + "rank": 91, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9P2U8GGGJ", + "name": "M O H A M M A D", + "expLevel": 265, + "trophies": 5833, + "attackWins": 187, + "defenseWins": 1, + "rank": 92, + "clan": { + "tag": "#92VULY2R", + "name": "K1 IRANI", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", + "large": "https://api-assets.clashofclans.com/badges/512/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9RGLCULUG", + "name": "╰•★☆ ⱣɈ ☆★•╯", + "expLevel": 260, + "trophies": 5832, + "attackWins": 224, + "defenseWins": 3, + "rank": 93, + "clan": { + "tag": "#2RCLJ0CCR", + "name": "saturn", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9VJU08P9G", + "name": "カタティー", + "expLevel": 296, + "trophies": 5830, + "attackWins": 200, + "defenseWins": 0, + "rank": 94, + "clan": { + "tag": "#29YJPCRGQ", + "name": "お花ふらわー", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/6SVP13dBgvPKvfmtrqNzJ-ZAFBYiyMss_U1e_G6f_Wk.png", + "large": "https://api-assets.clashofclans.com/badges/512/6SVP13dBgvPKvfmtrqNzJ-ZAFBYiyMss_U1e_G6f_Wk.png", + "medium": "https://api-assets.clashofclans.com/badges/200/6SVP13dBgvPKvfmtrqNzJ-ZAFBYiyMss_U1e_G6f_Wk.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#PJP0RGGU9", + "name": "l l", + "expLevel": 267, + "trophies": 5830, + "attackWins": 224, + "defenseWins": 0, + "rank": 95, + "clan": { + "tag": "#2GCYQQQQQ", + "name": "7M", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", + "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#Q0PUJRQ9", + "name": "Black Fire", + "expLevel": 250, + "trophies": 5829, + "attackWins": 221, + "defenseWins": 0, + "rank": 96, + "clan": { + "tag": "#Y898LCJ0", + "name": "#Black Stone#", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#L89UL2R82", + "name": "✨Casper✨", + "expLevel": 237, + "trophies": 5829, + "attackWins": 213, + "defenseWins": 1, + "rank": 97, + "clan": { + "tag": "#LCVUPJV0", + "name": "ProjectSE7VEN", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", + "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#8RY9QJLJ9", + "name": "Mr.WHOisᴿ⁷", + "expLevel": 257, + "trophies": 5829, + "attackWins": 188, + "defenseWins": 2, + "rank": 98, + "clan": { + "tag": "#Q9R2JJ02", + "name": "LoveLy PurPLe", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#P8J02YR2P", + "name": "♠️Vô Tình♠️", + "expLevel": 269, + "trophies": 5828, + "attackWins": 208, + "defenseWins": 2, + "rank": 99, + "clan": { + "tag": "#2YYVLLGR", + "name": "AintSoSerious", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", + "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + }, + { + "tag": "#9YVVU9U2P", + "name": "LKSZ l SH4DEX", + "expLevel": 263, + "trophies": 5827, + "attackWins": 224, + "defenseWins": 0, + "rank": 100, + "clan": { + "tag": "#8YUYUGLV", + "name": "LEKESİZLER", + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/kWUcuwdgyZ-J2PZ0B6akahgeTrW4jrKNI1uikxUL1Ag.png", + "large": "https://api-assets.clashofclans.com/badges/512/kWUcuwdgyZ-J2PZ0B6akahgeTrW4jrKNI1uikxUL1Ag.png", + "medium": "https://api-assets.clashofclans.com/badges/200/kWUcuwdgyZ-J2PZ0B6akahgeTrW4jrKNI1uikxUL1Ag.png" + } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" + } + } + } + ], + "paging": { + "cursors": { + "after": "eyJwb3MiOjEwMH0" } - }, - { - "tag": "#YJRJ9GV8L", - "name": "pastel", - "expLevel": 261, - "trophies": 5873, - "attackWins": 224, - "defenseWins": 0, - "rank": 52, - "clan": { - "tag": "#2JVUGY980", - "name": "बालेन/ जय नेपाल", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#GYQ9CPRP", - "name": "GAKU♥️Rula", - "expLevel": 268, - "trophies": 5872, - "attackWins": 224, - "defenseWins": 0, - "rank": 53, - "clan": { - "tag": "#CVR8YGJC", - "name": "Zoos Family", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PUQLC9LUC", - "name": "VL FREDDY★★★JR⚡", - "expLevel": 250, - "trophies": 5872, - "attackWins": 224, - "defenseWins": 1, - "rank": 54, - "clan": { - "tag": "#2J20VRCPC", - "name": "ᵁᴺᴿ⚝", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ogJ2DGLZ64uW1EvAdZh9wXqITLjOrWNV-P3lLphBEZ4.png", - "large": "https://api-assets.clashofclans.com/badges/512/ogJ2DGLZ64uW1EvAdZh9wXqITLjOrWNV-P3lLphBEZ4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ogJ2DGLZ64uW1EvAdZh9wXqITLjOrWNV-P3lLphBEZ4.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2VCJ9L0VU", - "name": "Lv.β‪√‬gj", - "expLevel": 240, - "trophies": 5871, - "attackWins": 224, - "defenseWins": 1, - "rank": 55, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#P8LGL8V0R", - "name": "MEGA⚡️AXR⭕️R", - "expLevel": 249, - "trophies": 5870, - "attackWins": 219, - "defenseWins": 0, - "rank": 56, - "clan": { - "tag": "#8UGU9U2L", - "name": "iranian pars", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "large": "https://api-assets.clashofclans.com/badges/512/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/fbEQNyTzaMqWvali0P4ZHgepwOJYwun8rVHRe8YgFXg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9U9V80U2", - "name": "GAKU♦️Rula", - "expLevel": 258, - "trophies": 5869, - "attackWins": 224, - "defenseWins": 1, - "rank": 57, - "clan": { - "tag": "#CVR8YGJC", - "name": "Zoos Family", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#P92Q889RQ", - "name": "DΣNIZ♛", - "expLevel": 257, - "trophies": 5869, - "attackWins": 187, - "defenseWins": 1, - "rank": 58, - "clan": { - "tag": "#92VULY2R", - "name": "K1 IRANI", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", - "large": "https://api-assets.clashofclans.com/badges/512/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#VGQCY8C9", - "name": "TE Diego", - "expLevel": 257, - "trophies": 5868, - "attackWins": 224, - "defenseWins": 0, - "rank": 59, - "clan": { - "tag": "#2JVUGY980", - "name": "बालेन/ जय नेपाल", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8YQCP89R0", - "name": "Rula⚡️Thunder", - "expLevel": 257, - "trophies": 5867, - "attackWins": 224, - "defenseWins": 1, - "rank": 60, - "clan": { - "tag": "#90PCLP2L", - "name": "V.N. Champions", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/TCVeO_uMyQyX3OC7JSAYWRBkpkRe2j1bUgsiHms8y2c.png", - "large": "https://api-assets.clashofclans.com/badges/512/TCVeO_uMyQyX3OC7JSAYWRBkpkRe2j1bUgsiHms8y2c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/TCVeO_uMyQyX3OC7JSAYWRBkpkRe2j1bUgsiHms8y2c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#LUVJ08GRU", - "name": "TuanTran", - "expLevel": 248, - "trophies": 5866, - "attackWins": 224, - "defenseWins": 0, - "rank": 61, - "clan": { - "tag": "#PG9LCP9P", - "name": "Lava Kings", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/N0-0A9MU2iS84X0n4hDnN8as1kXz9wJCFcP30dnulT8.png", - "large": "https://api-assets.clashofclans.com/badges/512/N0-0A9MU2iS84X0n4hDnN8as1kXz9wJCFcP30dnulT8.png", - "medium": "https://api-assets.clashofclans.com/badges/200/N0-0A9MU2iS84X0n4hDnN8as1kXz9wJCFcP30dnulT8.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#98QQVCVGP", - "name": "Rula❤️Theon", - "expLevel": 267, - "trophies": 5859, - "attackWins": 224, - "defenseWins": 0, - "rank": 62, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#L22J0Q89P", - "name": "ʚ J.S. ɞ✨Lei✨", - "expLevel": 268, - "trophies": 5859, - "attackWins": 224, - "defenseWins": 1, - "rank": 63, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8QG8LV8Q", - "name": "thegreatfotini", - "expLevel": 270, - "trophies": 5859, - "attackWins": 208, - "defenseWins": 0, - "rank": 64, - "clan": { - "tag": "#CVR8YGJC", - "name": "Zoos Family", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#JVQYG9LC", - "name": "ⱣɈ ʕ⁎̯͡⁎ʔ༄", - "expLevel": 285, - "trophies": 5858, - "attackWins": 224, - "defenseWins": 2, - "rank": 65, - "clan": { - "tag": "#2RCLJ0CCR", - "name": "saturn", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#G8QY8Y2R0", - "name": "Bizzy", - "expLevel": 230, - "trophies": 5857, - "attackWins": 224, - "defenseWins": 2, - "rank": 66, - "clan": { - "tag": "#2C9VYUUQG", - "name": "TOP⚡️TEAM", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YR90QJ2R8", - "name": "QWASMI", - "expLevel": 264, - "trophies": 5857, - "attackWins": 224, - "defenseWins": 3, - "rank": 67, - "clan": { - "tag": "#2GRC08RJ", - "name": "ABO_FAHAD COC", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9JG8UVL0", - "name": "AX hiroya", - "expLevel": 268, - "trophies": 5857, - "attackWins": 224, - "defenseWins": 0, - "rank": 68, - "clan": { - "tag": "#2RC2LPLPU", - "name": "AintNobody", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2QQVPPLUV", - "name": "GAKU♣️Rula", - "expLevel": 249, - "trophies": 5856, - "attackWins": 224, - "defenseWins": 1, - "rank": 69, - "clan": { - "tag": "#CVR8YGJC", - "name": "Zoos Family", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2LYUVLLUU", - "name": "♪侯賽因⚜HAK.IQ", - "expLevel": 282, - "trophies": 5855, - "attackWins": 221, - "defenseWins": 0, - "rank": 70, - "clan": { - "tag": "#2JVUGY980", - "name": "बालेन/ जय नेपाल", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8R9PVRY9R", - "name": "DSM♦️YEHIA", - "expLevel": 254, - "trophies": 5855, - "attackWins": 224, - "defenseWins": 2, - "rank": 71, - "clan": { - "tag": "#Y0L0QPPC", - "name": "الدسم", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", - "large": "https://api-assets.clashofclans.com/badges/512/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/U9YDFBm5UkEFzuc1RSBuHMuOdM8QoU9Uav9D7qcxNuI.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#YGGJ900PQ", - "name": "Nigerian Prince", - "expLevel": 263, - "trophies": 5850, - "attackWins": 224, - "defenseWins": 1, - "rank": 72, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8GYQLCQ08", - "name": "Mega ♨️ Clayton", - "expLevel": 263, - "trophies": 5850, - "attackWins": 208, - "defenseWins": 1, - "rank": 73, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8RV98L09R", - "name": "AnGRaJ KaRN", - "expLevel": 272, - "trophies": 5848, - "attackWins": 224, - "defenseWins": 0, - "rank": 74, - "clan": { - "tag": "#2PUGJQ82G", - "name": "Unlucky Pros", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", - "large": "https://api-assets.clashofclans.com/badges/512/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PLQVPQRV0", - "name": "ᴳᴱ✨FAIZI", - "expLevel": 296, - "trophies": 5847, - "attackWins": 224, - "defenseWins": 1, - "rank": 75, - "clan": { - "tag": "#2RC2LPLPU", - "name": "AintNobody", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PPCRRR0", - "name": "ZOOS GAKU", - "expLevel": 276, - "trophies": 5846, - "attackWins": 224, - "defenseWins": 0, - "rank": 76, - "clan": { - "tag": "#2JVUGY980", - "name": "बालेन/ जय नेपाल", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "large": "https://api-assets.clashofclans.com/badges/512/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/VVQ1hRBUCaGPKxDA3_L1vBELEVrcyy7Saw9d0eo_ZQk.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Q9J28CP0V", - "name": "小欣", - "expLevel": 245, - "trophies": 5845, - "attackWins": 216, - "defenseWins": 0, - "rank": 77, - "clan": { - "tag": "#2G08888GG", - "name": "烈陽號", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rza2YKMlvQI8fDLGm3suKAoMeyL0oKNIw0qtfV8KSBQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/rza2YKMlvQI8fDLGm3suKAoMeyL0oKNIw0qtfV8KSBQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rza2YKMlvQI8fDLGm3suKAoMeyL0oKNIw0qtfV8KSBQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9220LQ29J", - "name": "ν α ℓ σ .", - "expLevel": 299, - "trophies": 5844, - "attackWins": 224, - "defenseWins": 1, - "rank": 78, - "clan": { - "tag": "#99LC2JRC", - "name": "Jacky's Crue", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/1Zc55CT0eolBqj1kpQ5Dz-ORAUU-KYexfAov3xEta8w.png", - "large": "https://api-assets.clashofclans.com/badges/512/1Zc55CT0eolBqj1kpQ5Dz-ORAUU-KYexfAov3xEta8w.png", - "medium": "https://api-assets.clashofclans.com/badges/200/1Zc55CT0eolBqj1kpQ5Dz-ORAUU-KYexfAov3xEta8w.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#QRGUJLYY8", - "name": "Skyline", - "expLevel": 240, - "trophies": 5844, - "attackWins": 216, - "defenseWins": 1, - "rank": 79, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#VG992902", - "name": "why not?", - "expLevel": 276, - "trophies": 5843, - "attackWins": 224, - "defenseWins": 0, - "rank": 80, - "clan": { - "tag": "#2QQQ9GUCR", - "name": "Ukraine forever", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/m5lIrTRsT-IK96u_lwx87VZfFdpmCMDcBFdUODslwjU.png", - "large": "https://api-assets.clashofclans.com/badges/512/m5lIrTRsT-IK96u_lwx87VZfFdpmCMDcBFdUODslwjU.png", - "medium": "https://api-assets.clashofclans.com/badges/200/m5lIrTRsT-IK96u_lwx87VZfFdpmCMDcBFdUODslwjU.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#2V2VQ9L9", - "name": "tяαѕкi 91", - "expLevel": 277, - "trophies": 5841, - "attackWins": 224, - "defenseWins": 0, - "rank": 81, - "clan": { - "tag": "#28QU2CV9Q", - "name": "الدسم", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "large": "https://api-assets.clashofclans.com/badges/512/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png", - "medium": "https://api-assets.clashofclans.com/badges/200/2wTT1cmxO-hgK29Sd6t6BoMoHX3mhVxPBEC6Se5O_rc.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Y00Y9029", - "name": "见识见识x", - "expLevel": 265, - "trophies": 5841, - "attackWins": 224, - "defenseWins": 1, - "rank": 82, - "clan": { - "tag": "#2YUR2CPC9", - "name": "We Are Best", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/kjWcCTqQwUaIUP6Tw0mSFnryKRHAwsRxsmT3BOFeQOI.png", - "large": "https://api-assets.clashofclans.com/badges/512/kjWcCTqQwUaIUP6Tw0mSFnryKRHAwsRxsmT3BOFeQOI.png", - "medium": "https://api-assets.clashofclans.com/badges/200/kjWcCTqQwUaIUP6Tw0mSFnryKRHAwsRxsmT3BOFeQOI.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#29PPPYRR2", - "name": "『2Late4C’ry』", - "expLevel": 269, - "trophies": 5840, - "attackWins": 221, - "defenseWins": 2, - "rank": 83, - "clan": { - "tag": "#2GYLJUGQY", - "name": "KaYaK", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/c7m6pwYIsYS0y0lol-_FWOPe-dUxkCUbYUTzIZ5Q3EM.png", - "large": "https://api-assets.clashofclans.com/badges/512/c7m6pwYIsYS0y0lol-_FWOPe-dUxkCUbYUTzIZ5Q3EM.png", - "medium": "https://api-assets.clashofclans.com/badges/200/c7m6pwYIsYS0y0lol-_FWOPe-dUxkCUbYUTzIZ5Q3EM.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9P8Y8URJL", - "name": "Priyanshu", - "expLevel": 279, - "trophies": 5840, - "attackWins": 208, - "defenseWins": 0, - "rank": 84, - "clan": { - "tag": "#PC9QYGCU", - "name": "BAX flower city", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/zWkZfuOFW7qAf7tKi9DTfxR2uY0Y9_aQNDxh3ZahY_Y.png", - "large": "https://api-assets.clashofclans.com/badges/512/zWkZfuOFW7qAf7tKi9DTfxR2uY0Y9_aQNDxh3ZahY_Y.png", - "medium": "https://api-assets.clashofclans.com/badges/200/zWkZfuOFW7qAf7tKi9DTfxR2uY0Y9_aQNDxh3ZahY_Y.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Q8R009R", - "name": "INVINCIBLE LG", - "expLevel": 272, - "trophies": 5839, - "attackWins": 224, - "defenseWins": 0, - "rank": 85, - "clan": { - "tag": "#LCVUPJV0", - "name": "ProjectSE7VEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#82J0GC9Q", - "name": "Mega ❤️ Clayton", - "expLevel": 267, - "trophies": 5838, - "attackWins": 208, - "defenseWins": 2, - "rank": 86, - "clan": { - "tag": "#YYRV90JU", - "name": "AintNoCupUp!!!", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#29CRQG892", - "name": "RULA ❤️ JACK", - "expLevel": 278, - "trophies": 5838, - "attackWins": 216, - "defenseWins": 1, - "rank": 87, - "clan": { - "tag": "#2RC2LPLPU", - "name": "AintNobody", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#P99Q900VV", - "name": "Varunツ", - "expLevel": 247, - "trophies": 5836, - "attackWins": 224, - "defenseWins": 0, - "rank": 88, - "clan": { - "tag": "#2Q9C9QJR0", - "name": "The Familymen", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", - "large": "https://api-assets.clashofclans.com/badges/512/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png", - "medium": "https://api-assets.clashofclans.com/badges/200/w4_mJS8U8k6aYWMb63bPPtMyrmMqb0fgTaO5Hi9g1oM.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8092QJQCG", - "name": "Hêmëñdrã Sïñgh", - "expLevel": 276, - "trophies": 5836, - "attackWins": 224, - "defenseWins": 1, - "rank": 89, - "clan": { - "tag": "#2PUGJQ82G", - "name": "Unlucky Pros", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", - "large": "https://api-assets.clashofclans.com/badges/512/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png", - "medium": "https://api-assets.clashofclans.com/badges/200/xSnvNNmWGEX12SBe1kmk980elitUQ-lL8mDYkAK6Ncg.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#P20G0CUJY", - "name": "Cronos", - "expLevel": 269, - "trophies": 5835, - "attackWins": 224, - "defenseWins": 2, - "rank": 90, - "clan": { - "tag": "#Q2RY99UU", - "name": "Máquinas 503", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/q3OmLnOBBLdOp7glElMJfOsIq8UA5XmOAuvvVodt3ic.png", - "large": "https://api-assets.clashofclans.com/badges/512/q3OmLnOBBLdOp7glElMJfOsIq8UA5XmOAuvvVodt3ic.png", - "medium": "https://api-assets.clashofclans.com/badges/200/q3OmLnOBBLdOp7glElMJfOsIq8UA5XmOAuvvVodt3ic.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#99809JLY0", - "name": "S.A LZ YA", - "expLevel": 288, - "trophies": 5834, - "attackWins": 196, - "defenseWins": 1, - "rank": 91, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9P2U8GGGJ", - "name": "M O H A M M A D", - "expLevel": 265, - "trophies": 5833, - "attackWins": 187, - "defenseWins": 1, - "rank": 92, - "clan": { - "tag": "#92VULY2R", - "name": "K1 IRANI", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", - "large": "https://api-assets.clashofclans.com/badges/512/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/fG8lVXQps8kelphi71OJGZcK53x_O9ibpAcw0XylqS4.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9RGLCULUG", - "name": "╰•★☆ ⱣɈ ☆★•╯", - "expLevel": 260, - "trophies": 5832, - "attackWins": 224, - "defenseWins": 3, - "rank": 93, - "clan": { - "tag": "#2RCLJ0CCR", - "name": "saturn", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9VJU08P9G", - "name": "カタティー", - "expLevel": 296, - "trophies": 5830, - "attackWins": 200, - "defenseWins": 0, - "rank": 94, - "clan": { - "tag": "#29YJPCRGQ", - "name": "お花ふらわー", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/6SVP13dBgvPKvfmtrqNzJ-ZAFBYiyMss_U1e_G6f_Wk.png", - "large": "https://api-assets.clashofclans.com/badges/512/6SVP13dBgvPKvfmtrqNzJ-ZAFBYiyMss_U1e_G6f_Wk.png", - "medium": "https://api-assets.clashofclans.com/badges/200/6SVP13dBgvPKvfmtrqNzJ-ZAFBYiyMss_U1e_G6f_Wk.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#PJP0RGGU9", - "name": "l l", - "expLevel": 267, - "trophies": 5830, - "attackWins": 224, - "defenseWins": 0, - "rank": 95, - "clan": { - "tag": "#2GCYQQQQQ", - "name": "7M", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "large": "https://api-assets.clashofclans.com/badges/512/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png", - "medium": "https://api-assets.clashofclans.com/badges/200/So0A9MJeUWMPSlvkZve0jTvKuqJOZeqaBXfiDgCwzcQ.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#Q0PUJRQ9", - "name": "Black Fire", - "expLevel": 250, - "trophies": 5829, - "attackWins": 221, - "defenseWins": 0, - "rank": 96, - "clan": { - "tag": "#Y898LCJ0", - "name": "#Black Stone#", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#L89UL2R82", - "name": "✨Casper✨", - "expLevel": 237, - "trophies": 5829, - "attackWins": 213, - "defenseWins": 1, - "rank": 97, - "clan": { - "tag": "#LCVUPJV0", - "name": "ProjectSE7VEN", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "large": "https://api-assets.clashofclans.com/badges/512/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png", - "medium": "https://api-assets.clashofclans.com/badges/200/LaqLjRMGmYbdLSFbNqMWBI_2w2JN6NrzOMjuM9SAm6c.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#8RY9QJLJ9", - "name": "Mr.WHOisᴿ⁷", - "expLevel": 257, - "trophies": 5829, - "attackWins": 188, - "defenseWins": 2, - "rank": 98, - "clan": { - "tag": "#Q9R2JJ02", - "name": "LoveLy PurPLe", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/-4-R6mwFfyV2s_upx6x8BORcMUTnD5i26f6E2EG0YD4.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#P8J02YR2P", - "name": "♠️Vô Tình♠️", - "expLevel": 269, - "trophies": 5828, - "attackWins": 208, - "defenseWins": 2, - "rank": 99, - "clan": { - "tag": "#2YYVLLGR", - "name": "AintSoSerious", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "large": "https://api-assets.clashofclans.com/badges/512/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png", - "medium": "https://api-assets.clashofclans.com/badges/200/ITMHqKCB5FrsQsChyzeA3ZQyUUht4mYShfeIPIiiiug.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - }, - { - "tag": "#9YVVU9U2P", - "name": "LKSZ l SH4DEX", - "expLevel": 263, - "trophies": 5827, - "attackWins": 224, - "defenseWins": 0, - "rank": 100, - "clan": { - "tag": "#8YUYUGLV", - "name": "LEKESİZLER", - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/kWUcuwdgyZ-J2PZ0B6akahgeTrW4jrKNI1uikxUL1Ag.png", - "large": "https://api-assets.clashofclans.com/badges/512/kWUcuwdgyZ-J2PZ0B6akahgeTrW4jrKNI1uikxUL1Ag.png", - "medium": "https://api-assets.clashofclans.com/badges/200/kWUcuwdgyZ-J2PZ0B6akahgeTrW4jrKNI1uikxUL1Ag.png" - } - }, - "leagueTier": { - "id": 105000034, - "name": "Legend League", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/BvEu_UE53UzADvTRiU9AdyOrlvb1RqvBmMau_uX6xm0.png" - } - } - } - ], - "paging": { - "cursors": { - "after": "eyJwb3MiOjEwMH0" } - } -}, + }, "headers": { "cache-control": "max-age=3600", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/locations/rankings/players/COUNTRY.json b/data/locations/rankings/players/COUNTRY.json index 44dee81..229eb68 100644 --- a/data/locations/rankings/players/COUNTRY.json +++ b/data/locations/rankings/players/COUNTRY.json @@ -27,6 +27,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -55,6 +64,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -83,6 +101,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -111,6 +138,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -139,6 +175,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -158,6 +203,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -186,6 +240,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -214,6 +277,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -242,6 +314,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -270,6 +351,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -298,6 +388,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -326,6 +425,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -354,6 +462,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -382,6 +499,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -410,6 +536,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -438,6 +573,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -466,6 +610,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -494,6 +647,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -522,6 +684,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } }, { @@ -550,6 +721,15 @@ "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" } + }, + "leagueTier": { + "id": 105000034, + "name": "Legend I", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leagues/72/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "tiny": "https://api-assets.clashofclans.com/leagues/36/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png", + "medium": "https://api-assets.clashofclans.com/leagues/288/R2zmhyqQ0_lKcDR5EyghXCxgyC9mm_mVMIjAbmGoZtw.png" + } } } ], @@ -564,4 +744,4 @@ "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/players/battlelog/LOG.json b/data/players/battlelog/LOG.json index e6549d5..f6c91fa 100644 --- a/data/players/battlelog/LOG.json +++ b/data/players/battlelog/LOG.json @@ -1,6671 +1,6871 @@ { "body": { - "items": [ - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u4x9-11x8-1x0-1x2-1x1-1x1-1x2-1x9-1x58-1x5-1x4-1x3-11x63-1x87s9x0-2x5", - "opponentPlayerTag": "#PRC2CVYYP", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 1721535 - }, - { - "name": "Elixir", - "amount": 1047425 - }, - { - "name": "DarkElixir", - "amount": 5079 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1721535 - }, - { - "name": "Elixir", - "amount": 1047425 - }, - { - "name": "DarkElixir", - "amount": 5079 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u10x59-1x0-1x1-2x8-1x4-1x2-11x63-1x1-1x3-1x2-1x0s6x0-1x2-3x5", - "opponentPlayerTag": "#YU8GURGPP", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 1587854 - }, - { - "name": "Elixir", - "amount": 1008117 - }, - { - "name": "DarkElixir", - "amount": 5348 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1587854 - }, - { - "name": "Elixir", - "amount": 1008117 - }, - { - "name": "DarkElixir", - "amount": 5348 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-1x58-2x110-1x135-1x1-1x3-1x0-1x4-2x150-8x132-1x97-1x4-1x10-1x6-3x10-11x63s4x35-1x2-1x9-2x10-1x3", - "opponentPlayerTag": "#Q2QCG28RY", - "stars": 2, - "destructionPercentage": 97, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 10477 - }, - { - "name": "Elixir", - "amount": 1463027 - }, - { - "name": "Gold", - "amount": 1783800 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1783800 - }, - { - "name": "Elixir", - "amount": 1463027 - }, - { - "name": "DarkElixir", - "amount": 10477 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u8x63-15x132-1x75-4x7-1x2-1x97-1x4-1x4-1x82-1x1-1x9-1x0-1x10-1x123s7x120-1x70", - "opponentPlayerTag": "#22JCCYVYP", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1734007 - }, - { - "name": "DarkElixir", - "amount": 5767 - }, - { - "name": "Gold", - "amount": 2059035 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 2059035 - }, - { - "name": "Elixir", - "amount": 1734007 - }, - { - "name": "DarkElixir", - "amount": 5767 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u4x120-1x0-1x1-1x2-12x8-1x4-1x10-1x81-3x84-1x1-1x3-4x5-1x91-2x10s11x120", - "opponentPlayerTag": "#LG9PRRUUL", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 2169605 - }, - { - "name": "Elixir", - "amount": 1638082 - }, - { - "name": "DarkElixir", - "amount": 6817 - }, - { - "name": "SourElixir", - "amount": 240 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 2169605 - }, - { - "name": "Elixir", - "amount": 1638082 - }, - { - "name": "DarkElixir", - "amount": 6817 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u14x132-6x7-1x5-1x28-1x2-1x0-1x9-1x1-1x4-1x10-4x120-1x23s11x120", - "opponentPlayerTag": "#2YY09JQJ8", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 1895682 - }, - { - "name": "Elixir", - "amount": 1306751 - }, - { - "name": "DarkElixir", - "amount": 3229 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1895682 - }, - { - "name": "Elixir", - "amount": 1306751 - }, - { - "name": "DarkElixir", - "amount": 3229 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u7x177-3x53-1x24-4x120-1x7-1x1-1x4-1x4-1x8-1x0-1x11s8x120-1x5-1x98", - "opponentPlayerTag": "#2LP88VR8J", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1978836 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "DarkElixir", - "amount": 7317 - }, - { - "name": "Gold", - "amount": 1978829 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1978829 - }, - { - "name": "Elixir", - "amount": 1978836 - }, - { - "name": "DarkElixir", - "amount": 7317 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u1x59-1x65-2x63-2x8-1x81-3x23-15x132-1x120-4x10-4x1-1x0-1x9-1x1-1x3-1x2-5x7-2x5-1x4-1x10-1x28s10x120", - "opponentPlayerTag": "#29UJC0RQ0", - "stars": 2, - "destructionPercentage": 94, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1991604 - }, - { - "name": "Gold", - "amount": 2121203 - }, - { - "name": "DarkElixir", - "amount": 8728 - }, - { - "name": "SourElixir", - "amount": 240 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 2121203 - }, - { - "name": "Elixir", - "amount": 1991604 - }, - { - "name": "DarkElixir", - "amount": 8728 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x1-1x3-15x132-5x7-1x110-1x4-1x4-1x2-1x8-1x0-1x10-2x6-2x0s7x120-2x2", - "opponentPlayerTag": "#P9VPQ2GUY", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x4-1x4-1x135-1x1-1x9-1x12-8x132-4x95-4x7-1x97-1x2-1x0-1x8s6x35-5x120", - "opponentPlayerTag": "#22CYGU2CG", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 1100000 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u1x4-1x11-1x1-1x3-1x0-1x1-1x2-1x8-1x92-2x63-1x81-1x59-1x65-3x23-1x120-7x177-3x110-2x8s2x70-3x35-4x10", - "opponentPlayerTag": "#LJ8909YP0", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 2291732 - }, - { - "name": "Elixir", - "amount": 1928297 - }, - { - "name": "DarkElixir", - "amount": 9618 - }, - { - "name": "SourElixir", - "amount": 240 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 2291732 - }, - { - "name": "Elixir", - "amount": 1928297 - }, - { - "name": "DarkElixir", - "amount": 9618 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u8x177-1x97-1x87-1x0-1x9-1x1-1x3-1x2-1x4-1x4s7x120-2x98", - "opponentPlayerTag": "#80YJPQQR9", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x0-1x9-1x1-1x8-15x132-1x87-5x7-1x2-1x3-1x4-1x4-2x5-1x23-1x28-2x1s9x120-1x98", - "opponentPlayerTag": "#R2QCL9V", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u86x1-1x1-1x1-1x2-1x2-12x12-5x13-1x51-4x4s4x2-1x10", - "opponentPlayerTag": "#QGVUGYYRR", - "stars": 2, - "destructionPercentage": 60, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1775835 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 2369662 - }, - { - "name": "DarkElixir", - "amount": 10517 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 2459290 - }, - { - "name": "Elixir", - "amount": 1865463 - }, - { - "name": "DarkElixir", - "amount": 11072 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u16x132-1x75-1x2-5x7-1x4-1x10-1x1-1x3-1x0-1x9-2x22-2x1s4x10-7x120", - "opponentPlayerTag": "#200RJRYPG", - "stars": 2, - "destructionPercentage": 73, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 660000 - }, - { - "name": "SourElixir", - "amount": 134 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u11x59-1x1-1x9-1x2-1x6-1x4-1x0-1x11-1x23s8x120-1x17-2x5", - "opponentPlayerTag": "#9VR02U9GC", - "stars": 2, - "destructionPercentage": 95, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 923106 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u5x59-1x4-1x10-1x0-1x4-1x1-1x9-1x2-1x8", - "opponentPlayerTag": "#LPQCR89LQ", - "stars": 2, - "destructionPercentage": 56, - "lootedResources": [ - { - "name": "Elixir", - "amount": 878052 - }, - { - "name": "Gold", - "amount": 668939 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "DarkElixir", - "amount": 9680 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 668939 - }, - { - "name": "Elixir", - "amount": 878052 - }, - { - "name": "DarkElixir", - "amount": 9680 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x4-1x4-1x1-1x9-17x8-1x2-1x6-1x10-1x62s11x35", - "opponentPlayerTag": "#89CUULU90", - "stars": 1, - "destructionPercentage": 64, - "lootedResources": [ - { - "name": "Elixir", - "amount": 440000 - }, - { - "name": "Gold", - "amount": 577134 - }, - { - "name": "DarkElixir", - "amount": 8800 - }, - { - "name": "SourElixir", - "amount": 67 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x1-1x3-5x7-1x2-1x0-1x4-1x4-1x10-5x177-1x5-2x110-1x8-1x6-1x1s4x5-5x120-1x70", - "opponentPlayerTag": "#22C20YC2U", - "stars": 2, - "destructionPercentage": 71, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 660000 - }, - { - "name": "Elixir", - "amount": 740509 - }, - { - "name": "DarkElixir", - "amount": 2200 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u1x1-1x3-42x55s2x2", - "opponentPlayerTag": "#2VPQPR", - "stars": 1, - "destructionPercentage": 30, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1013086 - }, - { - "name": "Gold", - "amount": 833252 - }, - { - "name": "DarkElixir", - "amount": 12443 - }, - { - "name": "SourElixir", - "amount": 66 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 833252 - }, - { - "name": "Elixir", - "amount": 1013086 - }, - { - "name": "DarkElixir", - "amount": 12443 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x4-1x4-5x1-1x1-5x7-14x132-1x87-1x0-1x9-1x2-1x8-1x28-1x23-3x5-2x10-1x6s1x10-3x35-1x53-3x120-1x17-1x9", - "opponentPlayerTag": "#9YGJQGUG", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 1100000 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-1x58-1x4-1x10-1x97-8x132-2x110-2x150-1x135-1x0-1x4-1x1-1x3-1x6-3x10-3x1-1x28s4x35-2x10-1x2-1x3-1x9", - "opponentPlayerTag": "#2020UUQ0Q", - "stars": 2, - "destructionPercentage": 99, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1099000 - }, - { - "name": "Gold", - "amount": 1099000 - }, - { - "name": "DarkElixir", - "amount": 10990 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1099000 - }, - { - "name": "Elixir", - "amount": 1099000 - }, - { - "name": "DarkElixir", - "amount": 10990 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-8x132-1x97-1x135-1x0-1x4-1x1-1x3-1x4-1x10-3x10-1x6-3x1-1x28s4x35-2x10-1x2-1x3", - "opponentPlayerTag": "#80YJPQQR9", - "stars": 2, - "destructionPercentage": 83, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 880000 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x135-1x0-1x4-1x1-1x3-8x132-1x97-1x4-1x10-1x6-3x10-1x28-3x1s4x35-2x10-1x9-1x2-1x3", - "opponentPlayerTag": "#22JCR880L", - "stars": 1, - "destructionPercentage": 80, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 879200 - }, - { - "name": "Elixir", - "amount": 672179 - }, - { - "name": "DarkElixir", - "amount": 8792 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1099000 - }, - { - "name": "Elixir", - "amount": 1099000 - }, - { - "name": "DarkElixir", - "amount": 10990 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x97-8x132-1x0-1x4-1x1-1x3-1x135-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x9-1x2-1x3", - "opponentPlayerTag": "#L82CPV9P", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold", - "amount": 1100000 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x0-1x4-1x58-8x132-1x97-2x110-1x135-1x1-1x3-1x28-1x4-1x10-1x6-3x10-3x1s4x35-2x10-1x9-1x2-1x3", - "opponentPlayerTag": "#9VJ0RYY2", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 1097000 - }, - { - "name": "Elixir", - "amount": 1097000 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "DarkElixir", - "amount": 10970 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1097000 - }, - { - "name": "Elixir", - "amount": 1097000 - }, - { - "name": "DarkElixir", - "amount": 10970 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-8x132-1x97-2x110-1x0-1x4-1x1-1x3-1x135-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x2-1x3-1x9", - "opponentPlayerTag": "#2Q2890JU", - "stars": 2, - "destructionPercentage": 79, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 134 - }, - { - "name": "Elixir", - "amount": 660000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold", - "amount": 1015825 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x1-1x3-8x132-1x97-1x135-1x4-1x10-1x28-1x6-3x10-3x1s4x35-2x10-1x2-1x9-1x3", - "opponentPlayerTag": "#PLV0809LU", - "stars": 1, - "destructionPercentage": 66, - "lootedResources": [ - { - "name": "Gold", - "amount": 754334 - }, - { - "name": "SourElixir", - "amount": 133 - }, - { - "name": "Elixir", - "amount": 564455 - }, - { - "name": "DarkElixir", - "amount": 2178 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-3x10-8x132-1x58-2x110-2x150-1x97-1x135-1x0-1x4-1x1-1x3-1x4-1x10-1x6-3x1-1x28s4x35-1x9-1x2-1x3-2x10", - "opponentPlayerTag": "#8QYQUYJLJ", - "stars": 2, - "destructionPercentage": 96, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 10990 - }, - { - "name": "Gold", - "amount": 1099000 - }, - { - "name": "Elixir", - "amount": 1099000 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1099000 - }, - { - "name": "Elixir", - "amount": 1099000 - }, - { - "name": "DarkElixir", - "amount": 10990 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x135-1x1-1x3-1x97-8x132-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x9-1x2-1x3", - "opponentPlayerTag": "#YRL909VU", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-8x132-1x97-2x110-1x135-1x0-1x4-1x1-1x3-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x9-1x2-1x3", - "opponentPlayerTag": "#Y9CYUG8QY", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x110-2x150-1x58-8x132-1x97-1x135-1x0-1x4-1x1-1x3-1x4-1x10-3x1-3x10-1x6-1x28s4x35-2x10-1x2", - "opponentPlayerTag": "#8QCRJVLQR", - "stars": 2, - "destructionPercentage": 65, - "lootedResources": [ - { - "name": "Gold", - "amount": 660000 - }, - { - "name": "Elixir", - "amount": 696837 - }, - { - "name": "DarkElixir", - "amount": 2865 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x1-1x3-1x97-8x132-1x135-1x28-1x4-1x10-1x6-3x10-3x1s4x35-2x10-1x3-1x2", - "opponentPlayerTag": "#9RPQ0C9RG", - "stars": 2, - "destructionPercentage": 60, - "lootedResources": [ - { - "name": "Elixir", - "amount": 880000 - }, - { - "name": "Gold", - "amount": 880000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "SourElixir", - "amount": 133 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-1x58-2x110-1x97-8x132-1x0-1x4-1x1-1x3-2x150-1x135-1x4-1x10-3x1-1x6-3x10-1x28s4x35-2x10-1x3-1x9-1x2", - "opponentPlayerTag": "#UV0V90L", - "stars": 2, - "destructionPercentage": 60, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 660000 - }, - { - "name": "Gold", - "amount": 775406 - }, - { - "name": "DarkElixir", - "amount": 2200 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-1x58-2x110-1x0-1x4-1x1-1x3-1x97-8x132-1x135-2x150-1x4-1x10-3x10-1x28-1x6-3x1s4x35-2x10-1x2-1x3-1x9", - "opponentPlayerTag": "#RCYU00V9", - "stars": 1, - "destructionPercentage": 93, - "lootedResources": [ - { - "name": "Elixir", - "amount": 868850 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 760786 - }, - { - "name": "DarkElixir", - "amount": 8800 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x1-1x3-1x135-1x97-8x132-1x4-1x10-3x10-3x1-1x28-1x6s4x35-2x10-1x2-1x3-1x9", - "opponentPlayerTag": "#G0C88QPYV", - "stars": 2, - "destructionPercentage": 96, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 200 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": true, - "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x97-8x132-1x135-1x0-1x4-1x1-1x3-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x2-1x9", - "opponentPlayerTag": "#Y9VRURPPV", - "stars": 1, - "destructionPercentage": 98, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 880000 - }, - { - "name": "Gold", - "amount": 880000 - }, - { - "name": "DarkElixir", - "amount": 8800 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x4-1x10-1x1-1x9-1x0-1x1-17x8-1x2s1x10-8x35-1x53", - "opponentPlayerTag": "#GY808JL80", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u12x132-1x2-1x2-1x1-1x3-1x6-1x4-5x7-1x28-3x5-2x53-1x135-1x4-1x10-1x10-2x1-1x58s1x5-1x9-9x120", - "opponentPlayerTag": "#9QU000Q2", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Elixir", - "amount": 897977 - }, - { - "name": "DarkElixir", - "amount": 10497 - }, - { - "name": "SourElixir", - "amount": 200 - }, - { - "name": "Gold", - "amount": 799628 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 799628 - }, - { - "name": "Elixir", - "amount": 897977 - }, - { - "name": "DarkElixir", - "amount": 10497 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u8x177-1x97-1x1-1x11-1x0-1x4-1x2-1x4-1x10s11x120", - "opponentPlayerTag": "#CUQL0RP8", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 912343 - }, - { - "name": "SourElixir", - "amount": 330 - }, - { - "name": "Elixir", - "amount": 996967 - }, - { - "name": "DarkElixir", - "amount": 14036 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 912343 - }, - { - "name": "Elixir", - "amount": 996967 - }, - { - "name": "DarkElixir", - "amount": 14036 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x1-1x9-16x132-6x7-1x0-1x4-1x2-1x4-1x10s10x120-1x9", - "opponentPlayerTag": "#99RJ2RLJJ", - "stars": 2, - "destructionPercentage": 93, - "lootedResources": [ - { - "name": "SourElixir", - "amount": 330 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - } - ], - "extraLootedResources": [ - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x10-1x1-1x8-2x7-1x4-1x4-1x0-1x3-7x177-1x87-2x5-1x97-1x2s11x120", - "opponentPlayerTag": "#LG98L9UJ", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 330 - }, - { - "name": "Gold", - "amount": 1100000 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u5x55-1x0-1x9-1x1-1x3-1x58-13x132-5x7-1x2-1x123-1x87-1x4-1x10-1x5-1x28s8x120-1x2-1x5", - "opponentPlayerTag": "#22YJ989V0", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "SourElixir", - "amount": 330 - }, - { - "name": "Gold", - "amount": 1100000 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u16x132-5x7-1x87-1x2-1x1-1x4-1x4-1x10-1x0-1x3-7x10s1x2-2x5-1x120", - "opponentPlayerTag": "#2LCYYVRJP", - "stars": 1, - "destructionPercentage": 87, - "lootedResources": [ - { - "name": "Elixir", - "amount": 852372 - }, - { - "name": "SourElixir", - "amount": 330 - }, - { - "name": "Gold", - "amount": 794170 - }, - { - "name": "DarkElixir", - "amount": 12470 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 903743 - }, - { - "name": "Elixir", - "amount": 976493 - }, - { - "name": "DarkElixir", - "amount": 14470 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u1x0-1x1-1x1-1x3-1x2-1x9-22x22", - "opponentPlayerTag": "#9LJ290GLJ", - "stars": 0, - "destructionPercentage": 35, - "lootedResources": [ - { - "name": "Elixir", - "amount": 794053 - }, - { - "name": "Gold", - "amount": 742403 - }, - { - "name": "DarkElixir", - "amount": 12307 - }, - { - "name": "SourElixir", - "amount": 220 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 881989 - }, - { - "name": "Elixir", - "amount": 946557 - }, - { - "name": "DarkElixir", - "amount": 14571 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x4-1x10-1x1-1x3-1x0-1x4-1x23-1x1-6x10-2x58-4x110-6x132-1x97-5x7-3x5-1x2-1x82s4x35-1x53-3x120-1x2", - "opponentPlayerTag": "#PLV0809LU", - "stars": 1, - "destructionPercentage": 73, - "lootedResources": [ - { - "name": "Elixir", - "amount": 440000 - }, - { - "name": "Gold", - "amount": 764761 - }, - { - "name": "SourElixir", - "amount": 220 - }, - { - "name": "DarkElixir", - "amount": 8800 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u1x1-1x3-2x150-7x132-15x55-1x4-1x10", - "opponentPlayerTag": "#2UL9UV088", - "stars": 1, - "destructionPercentage": 47, - "lootedResources": [ - { - "name": "Elixir", - "amount": 904976 - }, - { - "name": "DarkElixir", - "amount": 14593 - }, - { - "name": "Gold", - "amount": 847616 - } - ], - "extraLootedResources": [ - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 847616 - }, - { - "name": "Elixir", - "amount": 904976 - }, - { - "name": "DarkElixir", - "amount": 14593 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u12x132-1x0-1x11-1x1-1x3-2x95-1x87-4x7-1x123-1x2-1x8-6x4-1x4-1x4s8x120-2x5-1x9", - "opponentPlayerTag": "#URUQGVQQ", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "Gold", - "amount": 1100000 - } - ], - "extraLootedResources": [ - { - "name": "DarkElixir", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "Gold", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "homeVillage", - "attack": false, - "armyShareCode": "u1x2-1x10-3x177-6x7-8x132-1x12-1x1-1x6-1x3-1x4-1x4-1x135s9x120-2x5", - "opponentPlayerTag": "#QRVP2UC00", - "stars": 3, - "destructionPercentage": 100, - "lootedResources": [ - { - "name": "Gold", - "amount": 620427 - }, - { - "name": "Elixir", - "amount": 671222 - }, - { - "name": "DarkElixir", - "amount": 12597 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 620427 - }, - { - "name": "Elixir", - "amount": 671222 - }, - { - "name": "DarkElixir", - "amount": 12597 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - }, - { - "battleType": "ranked", - "attack": false, - "armyShareCode": "u1x2-2x5-5x7-3x26-1x6-1x1-1x8-5x177-1x97-1x135-1x0-1x9-1x4-1x10-1x23-3x1-1x10-1x82s1x9-4x35-2x10-1x120-1x5-1x2", - "opponentPlayerTag": "#9L2C000YP", - "stars": 1, - "destructionPercentage": 99, - "lootedResources": [ - { - "name": "Gold", - "amount": 880000 - }, - { - "name": "Elixir", - "amount": 880000 - }, - { - "name": "DarkElixir", - "amount": 8800 - } - ], - "extraLootedResources": [ - { - "name": "Gold", - "amount": 0 - }, - { - "name": "Elixir", - "amount": 0 - }, - { - "name": "DarkElixir", - "amount": 0 - } - ], - "availableLoot": [ - { - "name": "Diamonds", - "amount": 0 - }, - { - "name": "Gold", - "amount": 1100000 - }, - { - "name": "Elixir", - "amount": 1100000 - }, - { - "name": "DarkElixir", - "amount": 11000 - }, - { - "name": "Gold2", - "amount": 0 - }, - { - "name": "Elixir2", - "amount": 0 - }, - { - "name": "Medals", - "amount": 0 - }, - { - "name": "BankedGold", - "amount": 0 - }, - { - "name": "BankedElixir", - "amount": 0 - }, - { - "name": "BankedDarkElixir", - "amount": 0 - }, - { - "name": "CapitalResource", - "amount": 0 - }, - { - "name": "CapitalReward", - "amount": 0 - }, - { - "name": "BankedGold2", - "amount": 0 - }, - { - "name": "BankedElixir2", - "amount": 0 - }, - { - "name": "SourElixir", - "amount": 0 - }, - { - "name": "EventTokens", - "amount": 0 - }, - { - "name": "CommonOre", - "amount": 0 - }, - { - "name": "RareOre", - "amount": 0 - }, - { - "name": "EpicOre", - "amount": 0 - }, - { - "name": "ClanEventResource", - "amount": 0 - }, - { - "name": "SparkyStone", - "amount": 0 - }, - { - "name": "Stars", - "amount": 0 - } - ] - } - ] -}, + "items": [ + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u4x9-11x8-1x0-1x2-1x1-1x1-1x2-1x9-1x58-1x5-1x4-1x3-11x63-1x87s9x0-2x5", + "opponentPlayerTag": "#PRC2CVYYP", + "opponentName": "Opponent VYYP", + "opponentTownHallLevel": 14, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 1721535 + }, + { + "name": "Elixir", + "amount": 1047425 + }, + { + "name": "DarkElixir", + "amount": 5079 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1721535 + }, + { + "name": "Elixir", + "amount": 1047425 + }, + { + "name": "DarkElixir", + "amount": 5079 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 120, + "battleTimestamp": "2026-06-16T15:00:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u10x59-1x0-1x1-2x8-1x4-1x2-11x63-1x1-1x3-1x2-1x0s6x0-1x2-3x5", + "opponentPlayerTag": "#YU8GURGPP", + "opponentName": "Opponent RGPP", + "opponentTownHallLevel": 15, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 1587854 + }, + { + "name": "Elixir", + "amount": 1008117 + }, + { + "name": "DarkElixir", + "amount": 5348 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1587854 + }, + { + "name": "Elixir", + "amount": 1008117 + }, + { + "name": "DarkElixir", + "amount": 5348 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 121, + "battleTimestamp": "2026-06-16T14:43:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-1x58-2x110-1x135-1x1-1x3-1x0-1x4-2x150-8x132-1x97-1x4-1x10-1x6-3x10-11x63s4x35-1x2-1x9-2x10-1x3", + "opponentPlayerTag": "#Q2QCG28RY", + "opponentName": "Opponent 28RY", + "opponentTownHallLevel": 16, + "stars": 2, + "destructionPercentage": 97, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 10477 + }, + { + "name": "Elixir", + "amount": 1463027 + }, + { + "name": "Gold", + "amount": 1783800 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1783800 + }, + { + "name": "Elixir", + "amount": 1463027 + }, + { + "name": "DarkElixir", + "amount": 10477 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 122, + "battleTimestamp": "2026-06-16T14:26:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u8x63-15x132-1x75-4x7-1x2-1x97-1x4-1x4-1x82-1x1-1x9-1x0-1x10-1x123s7x120-1x70", + "opponentPlayerTag": "#22JCCYVYP", + "opponentName": "Opponent YVYP", + "opponentTownHallLevel": 17, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1734007 + }, + { + "name": "DarkElixir", + "amount": 5767 + }, + { + "name": "Gold", + "amount": 2059035 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 2059035 + }, + { + "name": "Elixir", + "amount": 1734007 + }, + { + "name": "DarkElixir", + "amount": 5767 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 123, + "battleTimestamp": "2026-06-16T14:09:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u4x120-1x0-1x1-1x2-12x8-1x4-1x10-1x81-3x84-1x1-1x3-4x5-1x91-2x10s11x120", + "opponentPlayerTag": "#LG9PRRUUL", + "opponentName": "Opponent RUUL", + "opponentTownHallLevel": 18, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 2169605 + }, + { + "name": "Elixir", + "amount": 1638082 + }, + { + "name": "DarkElixir", + "amount": 6817 + }, + { + "name": "SourElixir", + "amount": 240 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 2169605 + }, + { + "name": "Elixir", + "amount": 1638082 + }, + { + "name": "DarkElixir", + "amount": 6817 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 124, + "battleTimestamp": "2026-06-16T13:52:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u14x132-6x7-1x5-1x28-1x2-1x0-1x9-1x1-1x4-1x10-4x120-1x23s11x120", + "opponentPlayerTag": "#2YY09JQJ8", + "opponentName": "Opponent JQJ8", + "opponentTownHallLevel": 14, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 1895682 + }, + { + "name": "Elixir", + "amount": 1306751 + }, + { + "name": "DarkElixir", + "amount": 3229 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1895682 + }, + { + "name": "Elixir", + "amount": 1306751 + }, + { + "name": "DarkElixir", + "amount": 3229 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 125, + "battleTimestamp": "2026-06-16T13:35:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u7x177-3x53-1x24-4x120-1x7-1x1-1x4-1x4-1x8-1x0-1x11s8x120-1x5-1x98", + "opponentPlayerTag": "#2LP88VR8J", + "opponentName": "Opponent VR8J", + "opponentTownHallLevel": 15, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1978836 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "DarkElixir", + "amount": 7317 + }, + { + "name": "Gold", + "amount": 1978829 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1978829 + }, + { + "name": "Elixir", + "amount": 1978836 + }, + { + "name": "DarkElixir", + "amount": 7317 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 126, + "battleTimestamp": "2026-06-16T13:18:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u1x59-1x65-2x63-2x8-1x81-3x23-15x132-1x120-4x10-4x1-1x0-1x9-1x1-1x3-1x2-5x7-2x5-1x4-1x10-1x28s10x120", + "opponentPlayerTag": "#29UJC0RQ0", + "opponentName": "Opponent 0RQ0", + "opponentTownHallLevel": 16, + "stars": 2, + "destructionPercentage": 94, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1991604 + }, + { + "name": "Gold", + "amount": 2121203 + }, + { + "name": "DarkElixir", + "amount": 8728 + }, + { + "name": "SourElixir", + "amount": 240 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 2121203 + }, + { + "name": "Elixir", + "amount": 1991604 + }, + { + "name": "DarkElixir", + "amount": 8728 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 127, + "battleTimestamp": "2026-06-16T13:01:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u1x1-1x3-15x132-5x7-1x110-1x4-1x4-1x2-1x8-1x0-1x10-2x6-2x0s7x120-2x2", + "opponentPlayerTag": "#P9VPQ2GUY", + "opponentName": "Opponent 2GUY", + "opponentTownHallLevel": 17, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 128, + "battleTimestamp": "2026-06-16T12:44:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u1x4-1x4-1x135-1x1-1x9-1x12-8x132-4x95-4x7-1x97-1x2-1x0-1x8s6x35-5x120", + "opponentPlayerTag": "#22CYGU2CG", + "opponentName": "Opponent U2CG", + "opponentTownHallLevel": 18, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 1100000 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 129, + "battleTimestamp": "2026-06-16T12:27:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u1x4-1x11-1x1-1x3-1x0-1x1-1x2-1x8-1x92-2x63-1x81-1x59-1x65-3x23-1x120-7x177-3x110-2x8s2x70-3x35-4x10", + "opponentPlayerTag": "#LJ8909YP0", + "opponentName": "Opponent 9YP0", + "opponentTownHallLevel": 14, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 2291732 + }, + { + "name": "Elixir", + "amount": 1928297 + }, + { + "name": "DarkElixir", + "amount": 9618 + }, + { + "name": "SourElixir", + "amount": 240 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 2291732 + }, + { + "name": "Elixir", + "amount": 1928297 + }, + { + "name": "DarkElixir", + "amount": 9618 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 130, + "battleTimestamp": "2026-06-16T12:10:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u8x177-1x97-1x87-1x0-1x9-1x1-1x3-1x2-1x4-1x4s7x120-2x98", + "opponentPlayerTag": "#80YJPQQR9", + "opponentName": "Opponent QQR9", + "opponentTownHallLevel": 15, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 131, + "battleTimestamp": "2026-06-16T11:53:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u1x0-1x9-1x1-1x8-15x132-1x87-5x7-1x2-1x3-1x4-1x4-2x5-1x23-1x28-2x1s9x120-1x98", + "opponentPlayerTag": "#R2QCL9V", + "opponentName": "Opponent CL9V", + "opponentTownHallLevel": 16, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 132, + "battleTimestamp": "2026-06-16T11:36:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u86x1-1x1-1x1-1x2-1x2-12x12-5x13-1x51-4x4s4x2-1x10", + "opponentPlayerTag": "#QGVUGYYRR", + "opponentName": "Opponent YYRR", + "opponentTownHallLevel": 17, + "stars": 2, + "destructionPercentage": 60, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1775835 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 2369662 + }, + { + "name": "DarkElixir", + "amount": 10517 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 2459290 + }, + { + "name": "Elixir", + "amount": 1865463 + }, + { + "name": "DarkElixir", + "amount": 11072 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 133, + "battleTimestamp": "2026-06-16T11:19:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u16x132-1x75-1x2-5x7-1x4-1x10-1x1-1x3-1x0-1x9-2x22-2x1s4x10-7x120", + "opponentPlayerTag": "#200RJRYPG", + "opponentName": "Opponent RYPG", + "opponentTownHallLevel": 18, + "stars": 2, + "destructionPercentage": 73, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 660000 + }, + { + "name": "SourElixir", + "amount": 134 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 134, + "battleTimestamp": "2026-06-16T11:02:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u11x59-1x1-1x9-1x2-1x6-1x4-1x0-1x11-1x23s8x120-1x17-2x5", + "opponentPlayerTag": "#9VR02U9GC", + "opponentName": "Opponent U9GC", + "opponentTownHallLevel": 14, + "stars": 2, + "destructionPercentage": 95, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 923106 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 135, + "battleTimestamp": "2026-06-16T10:45:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u5x59-1x4-1x10-1x0-1x4-1x1-1x9-1x2-1x8", + "opponentPlayerTag": "#LPQCR89LQ", + "opponentName": "Opponent 89LQ", + "opponentTownHallLevel": 15, + "stars": 2, + "destructionPercentage": 56, + "lootedResources": [ + { + "name": "Elixir", + "amount": 878052 + }, + { + "name": "Gold", + "amount": 668939 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "DarkElixir", + "amount": 9680 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 668939 + }, + { + "name": "Elixir", + "amount": 878052 + }, + { + "name": "DarkElixir", + "amount": 9680 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 136, + "battleTimestamp": "2026-06-16T10:28:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u1x4-1x4-1x1-1x9-17x8-1x2-1x6-1x10-1x62s11x35", + "opponentPlayerTag": "#89CUULU90", + "opponentName": "Opponent LU90", + "opponentTownHallLevel": 16, + "stars": 1, + "destructionPercentage": 64, + "lootedResources": [ + { + "name": "Elixir", + "amount": 440000 + }, + { + "name": "Gold", + "amount": 577134 + }, + { + "name": "DarkElixir", + "amount": 8800 + }, + { + "name": "SourElixir", + "amount": 67 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 137, + "battleTimestamp": "2026-06-16T10:11:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u1x1-1x3-5x7-1x2-1x0-1x4-1x4-1x10-5x177-1x5-2x110-1x8-1x6-1x1s4x5-5x120-1x70", + "opponentPlayerTag": "#22C20YC2U", + "opponentName": "Opponent YC2U", + "opponentTownHallLevel": 17, + "stars": 2, + "destructionPercentage": 71, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 660000 + }, + { + "name": "Elixir", + "amount": 740509 + }, + { + "name": "DarkElixir", + "amount": 2200 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 138, + "battleTimestamp": "2026-06-16T09:54:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u1x1-1x3-42x55s2x2", + "opponentPlayerTag": "#2VPQPR", + "opponentName": "Opponent PQPR", + "opponentTownHallLevel": 18, + "stars": 1, + "destructionPercentage": 30, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1013086 + }, + { + "name": "Gold", + "amount": 833252 + }, + { + "name": "DarkElixir", + "amount": 12443 + }, + { + "name": "SourElixir", + "amount": 66 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 833252 + }, + { + "name": "Elixir", + "amount": 1013086 + }, + { + "name": "DarkElixir", + "amount": 12443 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 139, + "battleTimestamp": "2026-06-16T09:37:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u1x4-1x4-5x1-1x1-5x7-14x132-1x87-1x0-1x9-1x2-1x8-1x28-1x23-3x5-2x10-1x6s1x10-3x35-1x53-3x120-1x17-1x9", + "opponentPlayerTag": "#9YGJQGUG", + "opponentName": "Opponent QGUG", + "opponentTownHallLevel": 14, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 1100000 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 140, + "battleTimestamp": "2026-06-16T09:20:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-1x58-1x4-1x10-1x97-8x132-2x110-2x150-1x135-1x0-1x4-1x1-1x3-1x6-3x10-3x1-1x28s4x35-2x10-1x2-1x3-1x9", + "opponentPlayerTag": "#2020UUQ0Q", + "opponentName": "Opponent UQ0Q", + "opponentTownHallLevel": 15, + "stars": 2, + "destructionPercentage": 99, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1099000 + }, + { + "name": "Gold", + "amount": 1099000 + }, + { + "name": "DarkElixir", + "amount": 10990 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1099000 + }, + { + "name": "Elixir", + "amount": 1099000 + }, + { + "name": "DarkElixir", + "amount": 10990 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 141, + "battleTimestamp": "2026-06-16T09:03:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-8x132-1x97-1x135-1x0-1x4-1x1-1x3-1x4-1x10-3x10-1x6-3x1-1x28s4x35-2x10-1x2-1x3", + "opponentPlayerTag": "#80YJPQQR9", + "opponentName": "Opponent QQR9", + "opponentTownHallLevel": 16, + "stars": 2, + "destructionPercentage": 83, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 880000 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 142, + "battleTimestamp": "2026-06-16T08:46:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x135-1x0-1x4-1x1-1x3-8x132-1x97-1x4-1x10-1x6-3x10-1x28-3x1s4x35-2x10-1x9-1x2-1x3", + "opponentPlayerTag": "#22JCR880L", + "opponentName": "Opponent 880L", + "opponentTownHallLevel": 17, + "stars": 1, + "destructionPercentage": 80, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 879200 + }, + { + "name": "Elixir", + "amount": 672179 + }, + { + "name": "DarkElixir", + "amount": 8792 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1099000 + }, + { + "name": "Elixir", + "amount": 1099000 + }, + { + "name": "DarkElixir", + "amount": 10990 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 143, + "battleTimestamp": "2026-06-16T08:29:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x97-8x132-1x0-1x4-1x1-1x3-1x135-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x9-1x2-1x3", + "opponentPlayerTag": "#L82CPV9P", + "opponentName": "Opponent PV9P", + "opponentTownHallLevel": 18, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold", + "amount": 1100000 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 144, + "battleTimestamp": "2026-06-16T08:12:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x0-1x4-1x58-8x132-1x97-2x110-1x135-1x1-1x3-1x28-1x4-1x10-1x6-3x10-3x1s4x35-2x10-1x9-1x2-1x3", + "opponentPlayerTag": "#9VJ0RYY2", + "opponentName": "Opponent RYY2", + "opponentTownHallLevel": 14, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 1097000 + }, + { + "name": "Elixir", + "amount": 1097000 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "DarkElixir", + "amount": 10970 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1097000 + }, + { + "name": "Elixir", + "amount": 1097000 + }, + { + "name": "DarkElixir", + "amount": 10970 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 145, + "battleTimestamp": "2026-06-16T07:55:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-8x132-1x97-2x110-1x0-1x4-1x1-1x3-1x135-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x2-1x3-1x9", + "opponentPlayerTag": "#2Q2890JU", + "opponentName": "Opponent 90JU", + "opponentTownHallLevel": 15, + "stars": 2, + "destructionPercentage": 79, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 134 + }, + { + "name": "Elixir", + "amount": 660000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold", + "amount": 1015825 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 146, + "battleTimestamp": "2026-06-16T07:38:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x1-1x3-8x132-1x97-1x135-1x4-1x10-1x28-1x6-3x10-3x1s4x35-2x10-1x2-1x9-1x3", + "opponentPlayerTag": "#PLV0809LU", + "opponentName": "Opponent 09LU", + "opponentTownHallLevel": 16, + "stars": 1, + "destructionPercentage": 66, + "lootedResources": [ + { + "name": "Gold", + "amount": 754334 + }, + { + "name": "SourElixir", + "amount": 133 + }, + { + "name": "Elixir", + "amount": 564455 + }, + { + "name": "DarkElixir", + "amount": 2178 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 147, + "battleTimestamp": "2026-06-16T07:21:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-3x10-8x132-1x58-2x110-2x150-1x97-1x135-1x0-1x4-1x1-1x3-1x4-1x10-1x6-3x1-1x28s4x35-1x9-1x2-1x3-2x10", + "opponentPlayerTag": "#8QYQUYJLJ", + "opponentName": "Opponent YJLJ", + "opponentTownHallLevel": 17, + "stars": 2, + "destructionPercentage": 96, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 10990 + }, + { + "name": "Gold", + "amount": 1099000 + }, + { + "name": "Elixir", + "amount": 1099000 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1099000 + }, + { + "name": "Elixir", + "amount": 1099000 + }, + { + "name": "DarkElixir", + "amount": 10990 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 148, + "battleTimestamp": "2026-06-16T07:04:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x135-1x1-1x3-1x97-8x132-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x9-1x2-1x3", + "opponentPlayerTag": "#YRL909VU", + "opponentName": "Opponent 09VU", + "opponentTownHallLevel": 18, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 149, + "battleTimestamp": "2026-06-16T06:47:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-8x132-1x97-2x110-1x135-1x0-1x4-1x1-1x3-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x9-1x2-1x3", + "opponentPlayerTag": "#Y9CYUG8QY", + "opponentName": "Opponent G8QY", + "opponentTownHallLevel": 14, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 150, + "battleTimestamp": "2026-06-16T06:30:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x110-2x150-1x58-8x132-1x97-1x135-1x0-1x4-1x1-1x3-1x4-1x10-3x1-3x10-1x6-1x28s4x35-2x10-1x2", + "opponentPlayerTag": "#8QCRJVLQR", + "opponentName": "Opponent VLQR", + "opponentTownHallLevel": 15, + "stars": 2, + "destructionPercentage": 65, + "lootedResources": [ + { + "name": "Gold", + "amount": 660000 + }, + { + "name": "Elixir", + "amount": 696837 + }, + { + "name": "DarkElixir", + "amount": 2865 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 151, + "battleTimestamp": "2026-06-16T06:13:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x1-1x3-1x97-8x132-1x135-1x28-1x4-1x10-1x6-3x10-3x1s4x35-2x10-1x3-1x2", + "opponentPlayerTag": "#9RPQ0C9RG", + "opponentName": "Opponent C9RG", + "opponentTownHallLevel": 16, + "stars": 2, + "destructionPercentage": 60, + "lootedResources": [ + { + "name": "Elixir", + "amount": 880000 + }, + { + "name": "Gold", + "amount": 880000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "SourElixir", + "amount": 133 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 152, + "battleTimestamp": "2026-06-16T05:56:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-1x58-2x110-1x97-8x132-1x0-1x4-1x1-1x3-2x150-1x135-1x4-1x10-3x1-1x6-3x10-1x28s4x35-2x10-1x3-1x9-1x2", + "opponentPlayerTag": "#UV0V90L", + "opponentName": "Opponent V90L", + "opponentTownHallLevel": 17, + "stars": 2, + "destructionPercentage": 60, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 660000 + }, + { + "name": "Gold", + "amount": 775406 + }, + { + "name": "DarkElixir", + "amount": 2200 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 153, + "battleTimestamp": "2026-06-16T05:39:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-1x58-2x110-1x0-1x4-1x1-1x3-1x97-8x132-1x135-2x150-1x4-1x10-3x10-1x28-1x6-3x1s4x35-2x10-1x2-1x3-1x9", + "opponentPlayerTag": "#RCYU00V9", + "opponentName": "Opponent 00V9", + "opponentTownHallLevel": 18, + "stars": 1, + "destructionPercentage": 93, + "lootedResources": [ + { + "name": "Elixir", + "amount": 868850 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 760786 + }, + { + "name": "DarkElixir", + "amount": 8800 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 154, + "battleTimestamp": "2026-06-16T05:22:00Z" + }, + { + "battleType": "RANKED", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x0-1x4-1x1-1x3-1x135-1x97-8x132-1x4-1x10-3x10-3x1-1x28-1x6s4x35-2x10-1x2-1x3-1x9", + "opponentPlayerTag": "#G0C88QPYV", + "opponentName": "Opponent QPYV", + "opponentTownHallLevel": 14, + "stars": 2, + "destructionPercentage": 96, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 200 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 155, + "battleTimestamp": "2026-06-16T05:05:00Z" + }, + { + "battleType": "LEGEND", + "attack": true, + "armyShareCode": "u1x2-2x5-5x7-2x150-1x58-2x110-1x97-8x132-1x135-1x0-1x4-1x1-1x3-1x4-1x10-1x6-3x10-3x1-1x28s4x35-2x10-1x2-1x9", + "opponentPlayerTag": "#Y9VRURPPV", + "opponentName": "Opponent RPPV", + "opponentTownHallLevel": 15, + "stars": 1, + "destructionPercentage": 98, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 880000 + }, + { + "name": "Gold", + "amount": 880000 + }, + { + "name": "DarkElixir", + "amount": 8800 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 156, + "battleTimestamp": "2026-06-16T04:48:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u1x4-1x10-1x1-1x9-1x0-1x1-17x8-1x2s1x10-8x35-1x53", + "opponentPlayerTag": "#GY808JL80", + "opponentName": "Opponent JL80", + "opponentTownHallLevel": 16, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 157, + "battleTimestamp": "2026-06-16T04:31:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u12x132-1x2-1x2-1x1-1x3-1x6-1x4-5x7-1x28-3x5-2x53-1x135-1x4-1x10-1x10-2x1-1x58s1x5-1x9-9x120", + "opponentPlayerTag": "#9QU000Q2", + "opponentName": "Opponent 00Q2", + "opponentTownHallLevel": 17, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Elixir", + "amount": 897977 + }, + { + "name": "DarkElixir", + "amount": 10497 + }, + { + "name": "SourElixir", + "amount": 200 + }, + { + "name": "Gold", + "amount": 799628 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 799628 + }, + { + "name": "Elixir", + "amount": 897977 + }, + { + "name": "DarkElixir", + "amount": 10497 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 158, + "battleTimestamp": "2026-06-16T04:14:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u8x177-1x97-1x1-1x11-1x0-1x4-1x2-1x4-1x10s11x120", + "opponentPlayerTag": "#CUQL0RP8", + "opponentName": "Opponent 0RP8", + "opponentTownHallLevel": 18, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 912343 + }, + { + "name": "SourElixir", + "amount": 330 + }, + { + "name": "Elixir", + "amount": 996967 + }, + { + "name": "DarkElixir", + "amount": 14036 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 912343 + }, + { + "name": "Elixir", + "amount": 996967 + }, + { + "name": "DarkElixir", + "amount": 14036 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 159, + "battleTimestamp": "2026-06-16T03:57:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u1x1-1x9-16x132-6x7-1x0-1x4-1x2-1x4-1x10s10x120-1x9", + "opponentPlayerTag": "#99RJ2RLJJ", + "opponentName": "Opponent RLJJ", + "opponentTownHallLevel": 14, + "stars": 2, + "destructionPercentage": 93, + "lootedResources": [ + { + "name": "SourElixir", + "amount": 330 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + } + ], + "extraLootedResources": [ + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 160, + "battleTimestamp": "2026-06-16T03:40:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u1x10-1x1-1x8-2x7-1x4-1x4-1x0-1x3-7x177-1x87-2x5-1x97-1x2s11x120", + "opponentPlayerTag": "#LG98L9UJ", + "opponentName": "Opponent L9UJ", + "opponentTownHallLevel": 15, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 330 + }, + { + "name": "Gold", + "amount": 1100000 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 161, + "battleTimestamp": "2026-06-16T03:23:00Z" + }, + { + "battleType": "LEGEND", + "attack": false, + "armyShareCode": "u5x55-1x0-1x9-1x1-1x3-1x58-13x132-5x7-1x2-1x123-1x87-1x4-1x10-1x5-1x28s8x120-1x2-1x5", + "opponentPlayerTag": "#22YJ989V0", + "opponentName": "Opponent 89V0", + "opponentTownHallLevel": 16, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "SourElixir", + "amount": 330 + }, + { + "name": "Gold", + "amount": 1100000 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 162, + "battleTimestamp": "2026-06-16T03:06:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u16x132-5x7-1x87-1x2-1x1-1x4-1x4-1x10-1x0-1x3-7x10s1x2-2x5-1x120", + "opponentPlayerTag": "#2LCYYVRJP", + "opponentName": "Opponent VRJP", + "opponentTownHallLevel": 17, + "stars": 1, + "destructionPercentage": 87, + "lootedResources": [ + { + "name": "Elixir", + "amount": 852372 + }, + { + "name": "SourElixir", + "amount": 330 + }, + { + "name": "Gold", + "amount": 794170 + }, + { + "name": "DarkElixir", + "amount": 12470 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 903743 + }, + { + "name": "Elixir", + "amount": 976493 + }, + { + "name": "DarkElixir", + "amount": 14470 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 163, + "battleTimestamp": "2026-06-16T02:49:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u1x0-1x1-1x1-1x3-1x2-1x9-22x22", + "opponentPlayerTag": "#9LJ290GLJ", + "opponentName": "Opponent 0GLJ", + "opponentTownHallLevel": 18, + "stars": 0, + "destructionPercentage": 35, + "lootedResources": [ + { + "name": "Elixir", + "amount": 794053 + }, + { + "name": "Gold", + "amount": 742403 + }, + { + "name": "DarkElixir", + "amount": 12307 + }, + { + "name": "SourElixir", + "amount": 220 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 881989 + }, + { + "name": "Elixir", + "amount": 946557 + }, + { + "name": "DarkElixir", + "amount": 14571 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 164, + "battleTimestamp": "2026-06-16T02:32:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u1x4-1x10-1x1-1x3-1x0-1x4-1x23-1x1-6x10-2x58-4x110-6x132-1x97-5x7-3x5-1x2-1x82s4x35-1x53-3x120-1x2", + "opponentPlayerTag": "#PLV0809LU", + "opponentName": "Opponent 09LU", + "opponentTownHallLevel": 14, + "stars": 1, + "destructionPercentage": 73, + "lootedResources": [ + { + "name": "Elixir", + "amount": 440000 + }, + { + "name": "Gold", + "amount": 764761 + }, + { + "name": "SourElixir", + "amount": 220 + }, + { + "name": "DarkElixir", + "amount": 8800 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 165, + "battleTimestamp": "2026-06-16T02:15:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u1x1-1x3-2x150-7x132-15x55-1x4-1x10", + "opponentPlayerTag": "#2UL9UV088", + "opponentName": "Opponent V088", + "opponentTownHallLevel": 15, + "stars": 1, + "destructionPercentage": 47, + "lootedResources": [ + { + "name": "Elixir", + "amount": 904976 + }, + { + "name": "DarkElixir", + "amount": 14593 + }, + { + "name": "Gold", + "amount": 847616 + } + ], + "extraLootedResources": [ + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 847616 + }, + { + "name": "Elixir", + "amount": 904976 + }, + { + "name": "DarkElixir", + "amount": 14593 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 166, + "battleTimestamp": "2026-06-16T01:58:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u12x132-1x0-1x11-1x1-1x3-2x95-1x87-4x7-1x123-1x2-1x8-6x4-1x4-1x4s8x120-2x5-1x9", + "opponentPlayerTag": "#URUQGVQQ", + "opponentName": "Opponent GVQQ", + "opponentTownHallLevel": 16, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "Gold", + "amount": 1100000 + } + ], + "extraLootedResources": [ + { + "name": "DarkElixir", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "Gold", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 167, + "battleTimestamp": "2026-06-16T01:41:00Z" + }, + { + "battleType": "HOME_VILLAGE", + "attack": false, + "armyShareCode": "u1x2-1x10-3x177-6x7-8x132-1x12-1x1-1x6-1x3-1x4-1x4-1x135s9x120-2x5", + "opponentPlayerTag": "#QRVP2UC00", + "opponentName": "Opponent UC00", + "opponentTownHallLevel": 17, + "stars": 3, + "destructionPercentage": 100, + "lootedResources": [ + { + "name": "Gold", + "amount": 620427 + }, + { + "name": "Elixir", + "amount": 671222 + }, + { + "name": "DarkElixir", + "amount": 12597 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 620427 + }, + { + "name": "Elixir", + "amount": 671222 + }, + { + "name": "DarkElixir", + "amount": 12597 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 168, + "battleTimestamp": "2026-06-16T01:24:00Z" + }, + { + "battleType": "RANKED", + "attack": false, + "armyShareCode": "u1x2-2x5-5x7-3x26-1x6-1x1-1x8-5x177-1x97-1x135-1x0-1x9-1x4-1x10-1x23-3x1-1x10-1x82s1x9-4x35-2x10-1x120-1x5-1x2", + "opponentPlayerTag": "#9L2C000YP", + "opponentName": "Opponent 00YP", + "opponentTownHallLevel": 18, + "stars": 1, + "destructionPercentage": 99, + "lootedResources": [ + { + "name": "Gold", + "amount": 880000 + }, + { + "name": "Elixir", + "amount": 880000 + }, + { + "name": "DarkElixir", + "amount": 8800 + } + ], + "extraLootedResources": [ + { + "name": "Gold", + "amount": 0 + }, + { + "name": "Elixir", + "amount": 0 + }, + { + "name": "DarkElixir", + "amount": 0 + } + ], + "availableLoot": [ + { + "name": "Diamonds", + "amount": 0 + }, + { + "name": "Gold", + "amount": 1100000 + }, + { + "name": "Elixir", + "amount": 1100000 + }, + { + "name": "DarkElixir", + "amount": 11000 + }, + { + "name": "Gold2", + "amount": 0 + }, + { + "name": "Elixir2", + "amount": 0 + }, + { + "name": "Medals", + "amount": 0 + }, + { + "name": "BankedGold", + "amount": 0 + }, + { + "name": "BankedElixir", + "amount": 0 + }, + { + "name": "BankedDarkElixir", + "amount": 0 + }, + { + "name": "CapitalResource", + "amount": 0 + }, + { + "name": "CapitalReward", + "amount": 0 + }, + { + "name": "BankedGold2", + "amount": 0 + }, + { + "name": "BankedElixir2", + "amount": 0 + }, + { + "name": "SourElixir", + "amount": 0 + }, + { + "name": "EventTokens", + "amount": 0 + }, + { + "name": "CommonOre", + "amount": 0 + }, + { + "name": "RareOre", + "amount": 0 + }, + { + "name": "EpicOre", + "amount": 0 + }, + { + "name": "ClanEventResource", + "amount": 0 + }, + { + "name": "SparkyStone", + "amount": 0 + }, + { + "name": "Stars", + "amount": 0 + } + ], + "battleTime": 169, + "battleTimestamp": "2026-06-16T01:07:00Z" + } + ] + }, "headers": { "cache-control": "max-age=60", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/data/players/player/FOUND.json b/data/players/player/FOUND.json index 718fb24..cb7c105 100644 --- a/data/players/player/FOUND.json +++ b/data/players/player/FOUND.json @@ -1,1524 +1,1524 @@ { "body": { - "tag": "#2PP", - "name": "Example Player", - "townHallLevel": 18, - "expLevel": 260, - "trophies": 750, - "bestTrophies": 6085, - "warStars": 3125, - "attackWins": 0, - "defenseWins": 0, - "builderHallLevel": 10, - "builderBaseTrophies": 4704, - "bestBuilderBaseTrophies": 4846, - "role": "leader", - "warPreference": "in", - "donations": 55, - "donationsReceived": 59, - "clanCapitalContributions": 3743578, - "clan": { "tag": "#2PP", - "name": "Example Clan", - "clanLevel": 31, - "badgeUrls": { - "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", - "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" - } - }, - "leagueTier": { - "id": 105000033, - "name": "Electro League 33", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/leaguetiers/125/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png", - "large": "https://api-assets.clashofclans.com/leaguetiers/326/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png" - } - }, - "builderBaseLeague": { - "id": 44000033, - "name": "Platinum League II" - }, - "currentLeagueGroupTag": "#2YYCYCC", - "currentLeagueSeasonId": 1773032400, - "previousLeagueGroupTag": "#2PGCG0J", - "previousLeagueSeasonId": 1772427600, - "achievements": [ - { - "name": "Bigger Coffers", - "stars": 3, - "value": 19, - "target": 10, - "info": "Upgrade a Gold Storage to level 10", - "completionInfo": "Highest Gold Storage level: 19", - "village": "home" - }, - { - "name": "Get those Goblins!", - "stars": 3, - "value": 225, - "target": 150, - "info": "Win 150 Stars on the Campaign Map", - "completionInfo": "Stars in Campaign Map: 225", - "village": "home" - }, - { - "name": "Bigger & Better", - "stars": 3, - "value": 18, - "target": 8, - "info": "Upgrade Town Hall to level 8", - "completionInfo": "Current Town Hall level: 18", - "village": "home" - }, - { - "name": "Nice and Tidy", - "stars": 3, - "value": 11908, - "target": 500, - "info": "Remove 500 obstacles (trees, rocks, bushes)", - "completionInfo": "Total obstacles removed: 11908", - "village": "home" - }, - { - "name": "Discover New Troops", - "stars": 3, - "value": 1, - "target": 1, - "info": "Unlock Dragon in the Barracks", - "completionInfo": null, - "village": "home" - }, - { - "name": "Gold Grab", - "stars": 3, - "value": 2000000000, - "target": 100000000, - "info": "Steal 100000000 Gold", - "completionInfo": "Total Gold looted: 2000000000", - "village": "home" - }, - { - "name": "Elixir Escapade", - "stars": 3, - "value": 2000000000, - "target": 100000000, - "info": "Steal 100000000 elixir", - "completionInfo": "Total Elixir looted: 2000000000", - "village": "home" - }, - { - "name": "Sweet Victory!", - "stars": 3, - "value": 6085, - "target": 1250, - "info": "Achieve a total of 1250 trophies in Multiplayer battles", - "completionInfo": "Trophy record: 6085", - "village": "home" - }, - { - "name": "Empire Builder", - "stars": 3, - "value": 14, - "target": 4, - "info": "Upgrade Clan Castle to level 4", - "completionInfo": "Current Clan Castle level: 14", - "village": "home" - }, - { - "name": "Wall Buster", - "stars": 3, - "value": 237199, - "target": 2000, - "info": "Destroy 2000 Walls in Multiplayer battles", - "completionInfo": "Total Walls destroyed: 237199", - "village": "home" - }, - { - "name": "Humiliator", - "stars": 3, - "value": 8139, - "target": 2000, - "info": "Destroy 2000 Town Halls in Multiplayer battles", - "completionInfo": "Total Town Halls destroyed: 8139", - "village": "home" - }, - { - "name": "Union Buster", - "stars": 3, - "value": 37596, - "target": 2500, - "info": "Destroy 2500 Builder's Huts in Multiplayer battles", - "completionInfo": "Total Builder's Huts destroyed: 37596", - "village": "home" - }, - { - "name": "Conqueror", - "stars": 3, - "value": 9743, - "target": 5000, - "info": "Win 5000 Multiplayer battles", - "completionInfo": "Total multiplayer battles won: 9743", - "village": "home" - }, - { - "name": "Unbreakable", - "stars": 3, - "value": 2075, - "target": 500, - "info": "Successfully defend against 500 attacks", - "completionInfo": "Total defenses won: 2075", - "village": "home" - }, - { - "name": "Friend in Need", - "stars": 3, - "value": 510308, - "target": 25000, - "info": "Donate 25000 capacity worth of reinforcements to Clanmates", - "completionInfo": "Total capacity donated: 510308", - "village": "home" - }, - { - "name": "Mortar Mauler", - "stars": 3, - "value": 29975, - "target": 5000, - "info": "Destroy 5000 Mortars in Multiplayer battles", - "completionInfo": "Total Mortars destroyed: 29975", - "village": "home" - }, - { - "name": "Heroic Heist", - "stars": 3, - "value": 50000047, - "target": 1000000, - "info": "Steal 1000000 Dark Elixir", - "completionInfo": "Total Dark Elixir looted: 50000047", - "village": "home" - }, - { - "name": "League All-Star", - "stars": 3, - "value": 22, - "target": 1, - "info": "Become a Champion!", - "completionInfo": null, - "village": "home" - }, - { - "name": "X-Bow Exterminator", - "stars": 3, - "value": 25526, - "target": 2500, - "info": "Destroy 2500 X-Bows in Multiplayer battles", - "completionInfo": "Total X-Bows destroyed: 25526", - "village": "home" - }, - { - "name": "Firefighter", - "stars": 3, - "value": 17084, - "target": 5000, - "info": "Destroy 5000 Inferno Towers in Multiplayer battles", - "completionInfo": "Total Inferno Towers destroyed: 17084", - "village": "home" - }, - { - "name": "War Hero", - "stars": 3, - "value": 3125, - "target": 1000, - "info": "Score 1000 Stars for your clan in Clan War battles", - "completionInfo": "Total Stars scored for clan in Clan War battles: 3125", - "village": "home" - }, - { - "name": "Clan War Wealth", - "stars": 3, - "value": 2000000000, - "target": 100000000, - "info": "Collect 100000000 Gold from the Clan Castle", - "completionInfo": "Total Gold collected in Clan War bonuses: 2000000000", - "village": "home" - }, - { - "name": "Anti-Artillery", - "stars": 3, - "value": 5902, - "target": 2000, - "info": "Destroy 2000 Eagle or Inferno Artilleries in Multiplayer battles", - "completionInfo": "Total Eagle or Inferno Artilleries destroyed: 5902", - "village": "home" - }, - { - "name": "Sharing is caring", - "stars": 3, - "value": 17762, - "target": 10000, - "info": "Donate 10000 Spell storage capacity worth of Spells", - "completionInfo": "Total Spell capacity donated: 17762", - "village": "home" - }, - { - "name": "Keep Your Account Safe!", - "stars": 0, - "value": 0, - "target": 1, - "info": "Protect your Village by connecting to a social network", - "completionInfo": "Completed!", - "village": "home" - }, - { - "name": "Master Engineering", - "stars": 3, - "value": 10, - "target": 8, - "info": "Upgrade Builder Hall to level 8", - "completionInfo": "Current Builder Hall level: 10", - "village": "builderBase" - }, - { - "name": "Next Generation Model", - "stars": 3, - "value": 1, - "target": 1, - "info": "Unlock Power P.E.K.K.A in the Builder Barracks", - "completionInfo": null, - "village": "builderBase" - }, - { - "name": "Un-Build It", - "stars": 3, - "value": 3335, - "target": 2000, - "info": "Destroy 2000 Builder Halls in Builder Battles", - "completionInfo": "Total Builder Halls destroyed: 3335", - "village": "builderBase" - }, - { - "name": "Champion Builder", - "stars": 3, - "value": 4846, - "target": 3000, - "info": "Achieve a total of 3000 trophies in Builder Battles", - "completionInfo": "Builder Trophy record: 4846", - "village": "builderBase" - }, - { - "name": "High Gear", - "stars": 3, - "value": 3, - "target": 3, - "info": "Gear Up 3 buildings using the Master Builder", - "completionInfo": "Total buildings geared up: 3", - "village": "builderBase" - }, - { - "name": "Hidden Treasures", - "stars": 3, - "value": 1, - "target": 1, - "info": "Rebuild Battle Machine", - "completionInfo": null, - "village": "builderBase" - }, - { - "name": "Games Champion", - "stars": 3, - "value": 251800, - "target": 100000, - "info": "Earn 100000 points in Clan Games", - "completionInfo": "Total Clan Games points: 251800", - "village": "home" - }, - { - "name": "Dragon Slayer", - "stars": 1, - "value": 2, - "target": 1, - "info": "Slay the Giant Dragon on the Campaign Map", - "completionInfo": null, - "village": "home" - }, - { - "name": "War League Legend", - "stars": 3, - "value": 1255, - "target": 250, - "info": "Score 250 Stars for your clan in War League battles", - "completionInfo": "Total Stars scored for clan in War League battles: 1255", - "village": "home" - }, - { - "name": "Keep Your Account Safe!", - "stars": 0, - "value": 0, - "target": 1, - "info": "Connect your account to Supercell ID for safe keeping.", - "completionInfo": "Completed!", - "village": "home" - }, - { - "name": "Well Seasoned", - "stars": 3, - "value": 265430, - "target": 50000, - "info": "Earn 50000 points in Season Challenges", - "completionInfo": "Total Season Challenges points: 265430", - "village": "home" - }, - { - "name": "Shattered and Scattered", - "stars": 3, - "value": 10269, - "target": 4000, - "info": "Destroy 4000 Scattershots in Multiplayer battles", - "completionInfo": "Total Scattershots destroyed: 10269", - "village": "home" - }, - { - "name": "Not So Easy This Time", - "stars": 3, - "value": 5192, - "target": 2000, - "info": "Destroy 2000 weaponized Town Halls in Multiplayer battles", - "completionInfo": "Weaponized Town Halls destroyed: 5192", - "village": "home" - }, - { - "name": "Bust This!", - "stars": 3, - "value": 23548, - "target": 2500, - "info": "Destroy 2500 weaponized Builder's Huts in Multiplayer battles", - "completionInfo": "Total weaponized Builder's Huts destroyed: 23548", - "village": "home" - }, - { - "name": "Superb Work", - "stars": 3, - "value": 565, - "target": 250, - "info": "Boost a Super Troop 250 times", - "completionInfo": "Total times Super Troops boosted: 565", - "village": "home" - }, - { - "name": "Siege Sharer", - "stars": 2, - "value": 3916, - "target": 5000, - "info": "Donate 5000 Siege Machines", - "completionInfo": "Total Siege Machines donated: 3916", - "village": "home" - }, - { - "name": "Aggressive Capitalism", - "stars": 3, - "value": 3159880, - "target": 1000000, - "info": "Loot 1000000 Capital Gold during Raid attacks", - "completionInfo": "Total Capital Gold looted: 3159880", - "village": "clanCapital" - }, - { - "name": "Most Valuable Clanmate", - "stars": 3, - "value": 3743578, - "target": 2000000, - "info": "Contribute 2000000 Capital Gold to upgrades in the Clan Capital", - "completionInfo": "Total Capital Gold contributed: 3743578", - "village": "clanCapital" - }, - { - "name": "Counterspell", - "stars": 3, - "value": 7292, - "target": 4000, - "info": "Destroy 4000 Spell Towers in Multiplayer Battles", - "completionInfo": "Total Spell Towers Destroyed: 7292", - "village": "home" - }, - { - "name": "Monolith Masher", - "stars": 3, - "value": 3562, - "target": 2000, - "info": "Destroy 2000 Monoliths in Multiplayer Battles", - "completionInfo": "Total Monoliths Destroyed: 3562", - "village": "home" - }, - { - "name": "Ungrateful Child", - "stars": 0, - "value": 0, - "target": 1, - "info": "Defeat M.O.M.M.A on the Campaign Map", - "completionInfo": null, - "village": "home" - }, - { - "name": "Supercharger", - "stars": 3, - "value": 99, - "target": 75, - "info": "Supercharge buildings 75 times", - "completionInfo": "Total Supercharges: 99", - "village": "home" - }, - { - "name": "Multi-Archer Tower Terminator", - "stars": 2, - "value": 1933, - "target": 5000, - "info": "Destroy 5000 Multi-Archer Towers in Multiplayer Battles", - "completionInfo": "Total Multi-Archer Towers Destroyed: 1933", - "village": "home" - }, - { - "name": "Ricochet Cannon Crusher", - "stars": 2, - "value": 1929, - "target": 5000, - "info": "Destroy 5000 Ricochet Cannons in Multiplayer Battles", - "completionInfo": "Total Ricochet Cannons Destroyed: 1929", - "village": "home" - }, - { - "name": "Firespitter Finisher", - "stars": 2, - "value": 1210, - "target": 4000, - "info": "Destroy 4000 Firespitters in Multiplayer Battles", - "completionInfo": "Total Firespitters Destroyed: 1210", - "village": "home" - }, - { - "name": "Multi-Gear Tower Trampler", - "stars": 2, - "value": 564, - "target": 2000, - "info": "Destroy 2000 Multi-Gear Towers in Multiplayer Battles", - "completionInfo": "Total Multi-Gear Towers Destroyed: 564", - "village": "home" + "name": "Example Player", + "townHallLevel": 18, + "expLevel": 260, + "trophies": 750, + "bestTrophies": 6085, + "warStars": 3125, + "attackWins": 0, + "defenseWins": 0, + "builderHallLevel": 10, + "builderBaseTrophies": 4704, + "bestBuilderBaseTrophies": 4846, + "role": "leader", + "warPreference": "in", + "donations": 55, + "donationsReceived": 59, + "clanCapitalContributions": 3743578, + "clan": { + "tag": "#2PP", + "name": "Example Clan", + "clanLevel": 31, + "badgeUrls": { + "small": "https://api-assets.clashofclans.com/badges/70/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "large": "https://api-assets.clashofclans.com/badges/512/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png", + "medium": "https://api-assets.clashofclans.com/badges/200/rUTlb1JZ2mWUsbWlYXukHVWZDU3WiSdWsa3pjTWPcD4.png" + } }, - { - "name": "Crafting Connoisseur", - "stars": 1, - "value": 21, - "target": 25, - "info": "Upgrade Crafted Defenses 25 times", - "completionInfo": "Total Crafted Defense upgrades: 21", - "village": "home" + "leagueTier": { + "id": 105000033, + "name": "Electro League 33", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/leaguetiers/125/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png", + "large": "https://api-assets.clashofclans.com/leaguetiers/326/VFqkaQimExWtSmIf9PC8WEpj4Vd58oLjPWyZqfVb5VE.png" + } }, - { - "name": "Crafter’s Nightmare", - "stars": 2, - "value": 358, - "target": 2000, - "info": "Destroy 2000 Crafted Defenses in Multiplayer Battles", - "completionInfo": "Total Crafted Defenses Destroyed: 358", - "village": "home" + "builderBaseLeague": { + "id": 44000033, + "name": "Platinum League II" }, - { - "name": "League Follower", - "stars": 3, - "value": 33, - "target": 12, - "info": "Reach League Wizard 12", - "completionInfo": null, - "village": "home" - } - ], - "playerHouse": { - "elements": [ + "currentLeagueGroupTag": "#2YYCYCC", + "currentLeagueSeasonId": 1773032400, + "previousLeagueGroupTag": "#2PGCG0J", + "previousLeagueSeasonId": 1772427600, + "achievements": [ { - "type": "ground", - "id": 82000090 + "name": "Bigger Coffers", + "stars": 3, + "value": 19, + "target": 10, + "info": "Upgrade a Gold Storage to level 10", + "completionInfo": "Highest Gold Storage level: 19", + "village": "home" }, { - "type": "walls", - "id": 82000053 + "name": "Get those Goblins!", + "stars": 3, + "value": 225, + "target": 150, + "info": "Win 150 Stars on the Campaign Map", + "completionInfo": "Stars in Campaign Map: 225", + "village": "home" }, { - "type": "roof", - "id": 82000009 + "name": "Bigger & Better", + "stars": 3, + "value": 18, + "target": 8, + "info": "Upgrade Town Hall to level 8", + "completionInfo": "Current Town Hall level: 18", + "village": "home" }, { - "type": "decoration", - "id": 82000063 - } - ] - }, - "labels": [ - { - "id": 57000006, - "name": "Base Designing", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/labels/64/gwTgG4oOwkse3eCpFL05AFArJMmMULIlecXNrl1Mv2g.png", - "medium": "https://api-assets.clashofclans.com/labels/128/gwTgG4oOwkse3eCpFL05AFArJMmMULIlecXNrl1Mv2g.png" - } - }, - { - "id": 57000016, - "name": "Newbie", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/labels/64/PcgplBTQo2W_PXYqMi0i6g6nrNMjzCM8Ipd_umSnuHw.png", - "medium": "https://api-assets.clashofclans.com/labels/128/PcgplBTQo2W_PXYqMi0i6g6nrNMjzCM8Ipd_umSnuHw.png" - } - }, - { - "id": 57000017, - "name": "Amateur Attacker", - "iconUrls": { - "small": "https://api-assets.clashofclans.com/labels/64/8Q08M2dj1xz1Zx-sAre6QO14hOX2aiEvg-FaGGSX-7M.png", - "medium": "https://api-assets.clashofclans.com/labels/128/8Q08M2dj1xz1Zx-sAre6QO14hOX2aiEvg-FaGGSX-7M.png" + "name": "Nice and Tidy", + "stars": 3, + "value": 11908, + "target": 500, + "info": "Remove 500 obstacles (trees, rocks, bushes)", + "completionInfo": "Total obstacles removed: 11908", + "village": "home" + }, + { + "name": "Discover New Troops", + "stars": 3, + "value": 1, + "target": 1, + "info": "Unlock Dragon in the Barracks", + "completionInfo": null, + "village": "home" + }, + { + "name": "Gold Grab", + "stars": 3, + "value": 2000000000, + "target": 100000000, + "info": "Steal 100000000 Gold", + "completionInfo": "Total Gold looted: 2000000000", + "village": "home" + }, + { + "name": "Elixir Escapade", + "stars": 3, + "value": 2000000000, + "target": 100000000, + "info": "Steal 100000000 elixir", + "completionInfo": "Total Elixir looted: 2000000000", + "village": "home" + }, + { + "name": "Sweet Victory!", + "stars": 3, + "value": 6085, + "target": 1250, + "info": "Achieve a total of 1250 trophies in Multiplayer battles", + "completionInfo": "Trophy record: 6085", + "village": "home" + }, + { + "name": "Empire Builder", + "stars": 3, + "value": 14, + "target": 4, + "info": "Upgrade Clan Castle to level 4", + "completionInfo": "Current Clan Castle level: 14", + "village": "home" + }, + { + "name": "Wall Buster", + "stars": 3, + "value": 237199, + "target": 2000, + "info": "Destroy 2000 Walls in Multiplayer battles", + "completionInfo": "Total Walls destroyed: 237199", + "village": "home" + }, + { + "name": "Humiliator", + "stars": 3, + "value": 8139, + "target": 2000, + "info": "Destroy 2000 Town Halls in Multiplayer battles", + "completionInfo": "Total Town Halls destroyed: 8139", + "village": "home" + }, + { + "name": "Union Buster", + "stars": 3, + "value": 37596, + "target": 2500, + "info": "Destroy 2500 Builder's Huts in Multiplayer battles", + "completionInfo": "Total Builder's Huts destroyed: 37596", + "village": "home" + }, + { + "name": "Conqueror", + "stars": 3, + "value": 9743, + "target": 5000, + "info": "Win 5000 Multiplayer battles", + "completionInfo": "Total multiplayer battles won: 9743", + "village": "home" + }, + { + "name": "Unbreakable", + "stars": 3, + "value": 2075, + "target": 500, + "info": "Successfully defend against 500 attacks", + "completionInfo": "Total defenses won: 2075", + "village": "home" + }, + { + "name": "Friend in Need", + "stars": 3, + "value": 510308, + "target": 25000, + "info": "Donate 25000 capacity worth of reinforcements to Clanmates", + "completionInfo": "Total capacity donated: 510308", + "village": "home" + }, + { + "name": "Mortar Mauler", + "stars": 3, + "value": 29975, + "target": 5000, + "info": "Destroy 5000 Mortars in Multiplayer battles", + "completionInfo": "Total Mortars destroyed: 29975", + "village": "home" + }, + { + "name": "Heroic Heist", + "stars": 3, + "value": 50000047, + "target": 1000000, + "info": "Steal 1000000 Dark Elixir", + "completionInfo": "Total Dark Elixir looted: 50000047", + "village": "home" + }, + { + "name": "League All-Star", + "stars": 3, + "value": 22, + "target": 1, + "info": "Become a Champion!", + "completionInfo": null, + "village": "home" + }, + { + "name": "X-Bow Exterminator", + "stars": 3, + "value": 25526, + "target": 2500, + "info": "Destroy 2500 X-Bows in Multiplayer battles", + "completionInfo": "Total X-Bows destroyed: 25526", + "village": "home" + }, + { + "name": "Firefighter", + "stars": 3, + "value": 17084, + "target": 5000, + "info": "Destroy 5000 Inferno Towers in Multiplayer battles", + "completionInfo": "Total Inferno Towers destroyed: 17084", + "village": "home" + }, + { + "name": "War Hero", + "stars": 3, + "value": 3125, + "target": 1000, + "info": "Score 1000 Stars for your clan in Clan War battles", + "completionInfo": "Total Stars scored for clan in Clan War battles: 3125", + "village": "home" + }, + { + "name": "Clan War Wealth", + "stars": 3, + "value": 2000000000, + "target": 100000000, + "info": "Collect 100000000 Gold from the Clan Castle", + "completionInfo": "Total Gold collected in Clan War bonuses: 2000000000", + "village": "home" + }, + { + "name": "Anti-Artillery", + "stars": 3, + "value": 5902, + "target": 2000, + "info": "Destroy 2000 Eagle or Inferno Artilleries in Multiplayer battles", + "completionInfo": "Total Eagle or Inferno Artilleries destroyed: 5902", + "village": "home" + }, + { + "name": "Sharing is caring", + "stars": 3, + "value": 17762, + "target": 10000, + "info": "Donate 10000 Spell storage capacity worth of Spells", + "completionInfo": "Total Spell capacity donated: 17762", + "village": "home" + }, + { + "name": "Keep Your Account Safe!", + "stars": 0, + "value": 0, + "target": 1, + "info": "Protect your Village by connecting to a social network", + "completionInfo": "Completed!", + "village": "home" + }, + { + "name": "Master Engineering", + "stars": 3, + "value": 10, + "target": 8, + "info": "Upgrade Builder Hall to level 8", + "completionInfo": "Current Builder Hall level: 10", + "village": "builderBase" + }, + { + "name": "Next Generation Model", + "stars": 3, + "value": 1, + "target": 1, + "info": "Unlock Power P.E.K.K.A in the Builder Barracks", + "completionInfo": null, + "village": "builderBase" + }, + { + "name": "Un-Build It", + "stars": 3, + "value": 3335, + "target": 2000, + "info": "Destroy 2000 Builder Halls in Builder Battles", + "completionInfo": "Total Builder Halls destroyed: 3335", + "village": "builderBase" + }, + { + "name": "Champion Builder", + "stars": 3, + "value": 4846, + "target": 3000, + "info": "Achieve a total of 3000 trophies in Builder Battles", + "completionInfo": "Builder Trophy record: 4846", + "village": "builderBase" + }, + { + "name": "High Gear", + "stars": 3, + "value": 3, + "target": 3, + "info": "Gear Up 3 buildings using the Master Builder", + "completionInfo": "Total buildings geared up: 3", + "village": "builderBase" + }, + { + "name": "Hidden Treasures", + "stars": 3, + "value": 1, + "target": 1, + "info": "Rebuild Battle Machine", + "completionInfo": null, + "village": "builderBase" + }, + { + "name": "Games Champion", + "stars": 3, + "value": 251800, + "target": 100000, + "info": "Earn 100000 points in Clan Games", + "completionInfo": "Total Clan Games points: 251800", + "village": "home" + }, + { + "name": "Dragon Slayer", + "stars": 1, + "value": 2, + "target": 1, + "info": "Slay the Giant Dragon on the Campaign Map", + "completionInfo": null, + "village": "home" + }, + { + "name": "War League Legend", + "stars": 3, + "value": 1255, + "target": 250, + "info": "Score 250 Stars for your clan in War League battles", + "completionInfo": "Total Stars scored for clan in War League battles: 1255", + "village": "home" + }, + { + "name": "Keep Your Account Safe!", + "stars": 0, + "value": 0, + "target": 1, + "info": "Connect your account to Supercell ID for safe keeping.", + "completionInfo": "Completed!", + "village": "home" + }, + { + "name": "Well Seasoned", + "stars": 3, + "value": 265430, + "target": 50000, + "info": "Earn 50000 points in Season Challenges", + "completionInfo": "Total Season Challenges points: 265430", + "village": "home" + }, + { + "name": "Shattered and Scattered", + "stars": 3, + "value": 10269, + "target": 4000, + "info": "Destroy 4000 Scattershots in Multiplayer battles", + "completionInfo": "Total Scattershots destroyed: 10269", + "village": "home" + }, + { + "name": "Not So Easy This Time", + "stars": 3, + "value": 5192, + "target": 2000, + "info": "Destroy 2000 weaponized Town Halls in Multiplayer battles", + "completionInfo": "Weaponized Town Halls destroyed: 5192", + "village": "home" + }, + { + "name": "Bust This!", + "stars": 3, + "value": 23548, + "target": 2500, + "info": "Destroy 2500 weaponized Builder's Huts in Multiplayer battles", + "completionInfo": "Total weaponized Builder's Huts destroyed: 23548", + "village": "home" + }, + { + "name": "Superb Work", + "stars": 3, + "value": 565, + "target": 250, + "info": "Boost a Super Troop 250 times", + "completionInfo": "Total times Super Troops boosted: 565", + "village": "home" + }, + { + "name": "Siege Sharer", + "stars": 2, + "value": 3916, + "target": 5000, + "info": "Donate 5000 Siege Machines", + "completionInfo": "Total Siege Machines donated: 3916", + "village": "home" + }, + { + "name": "Aggressive Capitalism", + "stars": 3, + "value": 3159880, + "target": 1000000, + "info": "Loot 1000000 Capital Gold during Raid attacks", + "completionInfo": "Total Capital Gold looted: 3159880", + "village": "clanCapital" + }, + { + "name": "Most Valuable Clanmate", + "stars": 3, + "value": 3743578, + "target": 2000000, + "info": "Contribute 2000000 Capital Gold to upgrades in the Clan Capital", + "completionInfo": "Total Capital Gold contributed: 3743578", + "village": "clanCapital" + }, + { + "name": "Counterspell", + "stars": 3, + "value": 7292, + "target": 4000, + "info": "Destroy 4000 Spell Towers in Multiplayer Battles", + "completionInfo": "Total Spell Towers Destroyed: 7292", + "village": "home" + }, + { + "name": "Monolith Masher", + "stars": 3, + "value": 3562, + "target": 2000, + "info": "Destroy 2000 Monoliths in Multiplayer Battles", + "completionInfo": "Total Monoliths Destroyed: 3562", + "village": "home" + }, + { + "name": "Ungrateful Child", + "stars": 0, + "value": 0, + "target": 1, + "info": "Defeat M.O.M.M.A on the Campaign Map", + "completionInfo": null, + "village": "home" + }, + { + "name": "Supercharger", + "stars": 3, + "value": 99, + "target": 75, + "info": "Supercharge buildings 75 times", + "completionInfo": "Total Supercharges: 99", + "village": "home" + }, + { + "name": "Multi-Archer Tower Terminator", + "stars": 2, + "value": 1933, + "target": 5000, + "info": "Destroy 5000 Multi-Archer Towers in Multiplayer Battles", + "completionInfo": "Total Multi-Archer Towers Destroyed: 1933", + "village": "home" + }, + { + "name": "Ricochet Cannon Crusher", + "stars": 2, + "value": 1929, + "target": 5000, + "info": "Destroy 5000 Ricochet Cannons in Multiplayer Battles", + "completionInfo": "Total Ricochet Cannons Destroyed: 1929", + "village": "home" + }, + { + "name": "Firespitter Finisher", + "stars": 2, + "value": 1210, + "target": 4000, + "info": "Destroy 4000 Firespitters in Multiplayer Battles", + "completionInfo": "Total Firespitters Destroyed: 1210", + "village": "home" + }, + { + "name": "Multi-Gear Tower Trampler", + "stars": 2, + "value": 564, + "target": 2000, + "info": "Destroy 2000 Multi-Gear Towers in Multiplayer Battles", + "completionInfo": "Total Multi-Gear Towers Destroyed: 564", + "village": "home" + }, + { + "name": "Crafting Connoisseur", + "stars": 1, + "value": 21, + "target": 25, + "info": "Upgrade Crafted Defenses 25 times", + "completionInfo": "Total Crafted Defense upgrades: 21", + "village": "home" + }, + { + "name": "Crafter’s Nightmare", + "stars": 2, + "value": 358, + "target": 2000, + "info": "Destroy 2000 Crafted Defenses in Multiplayer Battles", + "completionInfo": "Total Crafted Defenses Destroyed: 358", + "village": "home" + }, + { + "name": "League Follower", + "stars": 3, + "value": 33, + "target": 12, + "info": "Reach League Wizard 12", + "completionInfo": null, + "village": "home" } - } - ], - "troops": [ - { - "name": "Barbarian", - "level": 12, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Archer", - "level": 12, - "maxLevel": 14, - "village": "home" - }, - { - "name": "Goblin", - "level": 9, - "maxLevel": 9, - "village": "home" - }, - { - "name": "Giant", - "level": 13, - "maxLevel": 14, - "village": "home" - }, - { - "name": "Wall Breaker", - "level": 12, - "maxLevel": 14, - "village": "home" - }, - { - "name": "Balloon", - "level": 12, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Wizard", - "level": 14, - "maxLevel": 14, - "village": "home" - }, - { - "name": "Healer", - "level": 11, - "maxLevel": 11, - "village": "home" - }, - { - "name": "Dragon", - "level": 12, - "maxLevel": 12, - "village": "home" - }, - { - "name": "P.E.K.K.A", - "level": 11, - "maxLevel": 13, - "village": "home" - }, - { - "name": "Minion", - "level": 13, - "maxLevel": 14, - "village": "home" - }, - { - "name": "Hog Rider", - "level": 13, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Valkyrie", - "level": 11, - "maxLevel": 11, - "village": "home" - }, - { - "name": "Golem", - "level": 14, - "maxLevel": 14, - "village": "home" - }, - { - "name": "Witch", - "level": 7, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Lava Hound", - "level": 7, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Bowler", - "level": 9, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Baby Dragon", - "level": 11, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Miner", - "level": 10, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Super Barbarian", - "level": 1, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Super Archer", - "level": 1, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Super Wall Breaker", - "level": 1, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Super Giant", - "level": 1, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Raged Barbarian", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Sneaky Archer", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Beta Minion", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Boxer Giant", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Bomber", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Power P.E.K.K.A", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Cannon Cart", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Drop Ship", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Baby Dragon", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Night Witch", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Wall Wrecker", - "level": 5, - "maxLevel": 6, - "village": "home" - }, - { - "name": "Battle Blimp", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Yeti", - "level": 6, - "maxLevel": 7, - "village": "home" - }, - { - "name": "Sneaky Goblin", - "level": 1, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Super Miner", - "level": 1, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Rocket Balloon", - "level": 1, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Ice Golem", - "level": 9, - "maxLevel": 9, - "village": "home" - }, - { - "name": "Electro Dragon", - "level": 8, - "maxLevel": 9, - "village": "home" - }, - { - "name": "Stone Slammer", - "level": 5, - "maxLevel": 6, - "village": "home" - }, - { - "name": "Inferno Dragon", - "level": 1, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Super Valkyrie", - "level": 1, - "maxLevel": 11, - "village": "home" - }, - { - "name": "Dragon Rider", - "level": 5, - "maxLevel": 6, - "village": "home" - }, - { - "name": "Super Witch", - "level": 1, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Hog Glider", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Siege Barracks", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Ice Hound", - "level": 1, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Super Bowler", - "level": 1, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Super Dragon", - "level": 1, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Headhunter", - "level": 3, - "maxLevel": 3, - "village": "home" - }, - { - "name": "Super Wizard", - "level": 1, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Super Minion", - "level": 1, - "maxLevel": 11, - "village": "home" - }, - { - "name": "Log Launcher", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Flame Flinger", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Battle Drill", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Electro Titan", - "level": 4, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Apprentice Warden", - "level": 4, - "maxLevel": 4, - "village": "home" - }, - { - "name": "Super Hog Rider", - "level": 1, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Electrofire Wizard", - "level": 20, - "maxLevel": 20, - "village": "builderBase" - }, - { - "name": "Root Rider", - "level": 3, - "maxLevel": 3, - "village": "home" - }, - { - "name": "Druid", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Thrower", - "level": 4, - "maxLevel": 4, - "village": "home" - }, - { - "name": "Troop Launcher", - "level": 3, - "maxLevel": 4, - "village": "home" - }, - { - "name": "Super Yeti", - "level": 1, - "maxLevel": 7, - "village": "home" - }, - { - "name": "Furnace", - "level": 4, - "maxLevel": 4, - "village": "home" - }, - { - "name": "Meteor Golem", - "level": 1, - "maxLevel": 3, - "village": "home" - }, - { - "name": "L.A.S.S.I", - "level": 15, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Mighty Yak", - "level": 15, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Electro Owl", - "level": 15, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Unicorn", - "level": 15, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Phoenix", - "level": 10, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Poison Lizard", - "level": 10, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Diggy", - "level": 10, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Frosty", - "level": 13, - "maxLevel": 15, - "village": "home" - }, - { - "name": "Spirit Fox", - "level": 10, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Angry Jelly", - "level": 10, - "maxLevel": 10, - "village": "home" - }, - { - "name": "Sneezy", - "level": 5, - "maxLevel": 10, - "village": "home" - } - ], - "heroes": [ - { - "name": "Barbarian King", - "level": 100, - "maxLevel": 105, - "equipment": [ + ], + "playerHouse": { + "elements": [ { - "name": "Spiky Ball", - "level": 27, - "maxLevel": 27, - "village": "home" + "type": "ground", + "id": 82000090 }, { - "name": "Earthquake Boots", - "level": 18, - "maxLevel": 18, - "village": "home" - } - ], - "village": "home" - }, - { - "name": "Archer Queen", - "level": 105, - "maxLevel": 105, - "equipment": [ - { - "name": "Action Figure", - "level": 20, - "maxLevel": 27, - "village": "home" + "type": "walls", + "id": 82000053 }, { - "name": "Magic Mirror", - "level": 20, - "maxLevel": 27, - "village": "home" - } - ], - "village": "home" - }, - { - "name": "Grand Warden", - "level": 75, - "maxLevel": 80, - "equipment": [ - { - "name": "Rage Gem", - "level": 18, - "maxLevel": 18, - "village": "home" + "type": "roof", + "id": 82000009 }, { - "name": "Fireball", - "level": 27, - "maxLevel": 27, - "village": "home" + "type": "decoration", + "id": 82000063 } - ], - "village": "home" + ] }, - { - "name": "Battle Machine", - "level": 35, - "maxLevel": 35, - "village": "builderBase" - }, - { - "name": "Royal Champion", - "level": 51, - "maxLevel": 55, - "equipment": [ - { - "name": "Rocket Spear", - "level": 27, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Electro Boots", - "level": 27, - "maxLevel": 27, - "village": "home" + "labels": [ + { + "id": 57000006, + "name": "Base Designing", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/labels/64/gwTgG4oOwkse3eCpFL05AFArJMmMULIlecXNrl1Mv2g.png", + "medium": "https://api-assets.clashofclans.com/labels/128/gwTgG4oOwkse3eCpFL05AFArJMmMULIlecXNrl1Mv2g.png" } - ], - "village": "home" - }, - { - "name": "Battle Copter", - "level": 35, - "maxLevel": 35, - "village": "builderBase" - }, - { - "name": "Minion Prince", - "level": 85, - "maxLevel": 95, - "equipment": [ - { - "name": "Metal Pants", - "level": 1, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Dark Orb", - "level": 11, - "maxLevel": 18, - "village": "home" + }, + { + "id": 57000016, + "name": "Newbie", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/labels/64/PcgplBTQo2W_PXYqMi0i6g6nrNMjzCM8Ipd_umSnuHw.png", + "medium": "https://api-assets.clashofclans.com/labels/128/PcgplBTQo2W_PXYqMi0i6g6nrNMjzCM8Ipd_umSnuHw.png" } - ], - "village": "home" - }, - { - "name": "Dragon Duke", - "level": 1, - "maxLevel": 25, - "equipment": [ - { - "name": "Flame Blower", - "level": 1, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Fire Heart", - "level": 1, - "maxLevel": 18, - "village": "home" + }, + { + "id": 57000017, + "name": "Amateur Attacker", + "iconUrls": { + "small": "https://api-assets.clashofclans.com/labels/64/8Q08M2dj1xz1Zx-sAre6QO14hOX2aiEvg-FaGGSX-7M.png", + "medium": "https://api-assets.clashofclans.com/labels/128/8Q08M2dj1xz1Zx-sAre6QO14hOX2aiEvg-FaGGSX-7M.png" } - ], - "village": "home" - } - ], - "heroEquipment": [ - { - "name": "Giant Gauntlet", - "level": 26, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Rocket Spear", - "level": 27, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Spiky Ball", - "level": 27, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Frozen Arrow", - "level": 26, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Heroic Torch", - "level": 1, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Fireball", - "level": 27, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Snake Bracelet", - "level": 1, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Dark Crown", - "level": 1, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Magic Mirror", - "level": 20, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Electro Boots", - "level": 27, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Lavaloon Puppet", - "level": 2, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Action Figure", - "level": 20, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Meteor Staff", - "level": 1, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Frost Flake", - "level": 1, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Stick Horse", - "level": 1, - "maxLevel": 27, - "village": "home" - }, - { - "name": "Barbarian Puppet", - "level": 17, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Rage Vial", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Archer Puppet", - "level": 17, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Invisibility Vial", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Eternal Tome", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Life Gem", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Seeking Shield", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Royal Gem", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Earthquake Boots", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Hog Rider Puppet", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Vampstache", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Haste Vial", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Giant Arrow", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Healer Puppet", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Rage Gem", - "level": 18, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Healing Tome", - "level": 5, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Henchmen Puppet", - "level": 17, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Dark Orb", - "level": 11, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Metal Pants", - "level": 1, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Noble Iron", - "level": 1, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Fire Heart", - "level": 1, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Stun Blaster", - "level": 1, - "maxLevel": 18, - "village": "home" - }, - { - "name": "Flame Blower", - "level": 1, - "maxLevel": 18, - "village": "home" - } - ], - "spells": [ - { - "name": "Lightning Spell", - "level": 11, - "maxLevel": 13, - "village": "home" - }, - { - "name": "Healing Spell", - "level": 11, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Rage Spell", - "level": 6, - "maxLevel": 6, - "village": "home" - }, - { - "name": "Jump Spell", - "level": 5, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Freeze Spell", - "level": 7, - "maxLevel": 7, - "village": "home" - }, - { - "name": "Poison Spell", - "level": 12, - "maxLevel": 12, - "village": "home" - }, - { - "name": "Earthquake Spell", - "level": 5, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Haste Spell", - "level": 6, - "maxLevel": 7, - "village": "home" - }, - { - "name": "Clone Spell", - "level": 8, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Skeleton Spell", - "level": 8, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Bat Spell", - "level": 6, - "maxLevel": 8, - "village": "home" - }, - { - "name": "Invisibility Spell", - "level": 4, - "maxLevel": 4, - "village": "home" - }, - { - "name": "Recall Spell", - "level": 5, - "maxLevel": 6, - "village": "home" - }, - { - "name": "Overgrowth Spell", - "level": 4, - "maxLevel": 4, - "village": "home" - }, - { - "name": "Revive Spell", - "level": 2, - "maxLevel": 5, - "village": "home" - }, - { - "name": "Ice Block Spell", - "level": 1, - "maxLevel": 5, - "village": "home" - } - ] -}, + } + ], + "troops": [ + { + "name": "Barbarian", + "level": 12, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Archer", + "level": 12, + "maxLevel": 14, + "village": "home" + }, + { + "name": "Goblin", + "level": 9, + "maxLevel": 9, + "village": "home" + }, + { + "name": "Giant", + "level": 13, + "maxLevel": 14, + "village": "home" + }, + { + "name": "Wall Breaker", + "level": 12, + "maxLevel": 14, + "village": "home" + }, + { + "name": "Balloon", + "level": 12, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Wizard", + "level": 14, + "maxLevel": 14, + "village": "home" + }, + { + "name": "Healer", + "level": 11, + "maxLevel": 11, + "village": "home" + }, + { + "name": "Dragon", + "level": 12, + "maxLevel": 12, + "village": "home" + }, + { + "name": "P.E.K.K.A", + "level": 11, + "maxLevel": 13, + "village": "home" + }, + { + "name": "Minion", + "level": 13, + "maxLevel": 14, + "village": "home" + }, + { + "name": "Hog Rider", + "level": 13, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Valkyrie", + "level": 11, + "maxLevel": 11, + "village": "home" + }, + { + "name": "Golem", + "level": 14, + "maxLevel": 14, + "village": "home" + }, + { + "name": "Witch", + "level": 7, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Lava Hound", + "level": 7, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Bowler", + "level": 9, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Baby Dragon", + "level": 11, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Miner", + "level": 10, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Super Barbarian", + "level": 1, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Super Archer", + "level": 1, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Super Wall Breaker", + "level": 1, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Super Giant", + "level": 1, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Raged Barbarian", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Sneaky Archer", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Beta Minion", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Boxer Giant", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Bomber", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Power P.E.K.K.A", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Cannon Cart", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Drop Ship", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Baby Dragon", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Night Witch", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Wall Wrecker", + "level": 5, + "maxLevel": 6, + "village": "home" + }, + { + "name": "Battle Blimp", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Yeti", + "level": 6, + "maxLevel": 7, + "village": "home" + }, + { + "name": "Sneaky Goblin", + "level": 1, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Super Miner", + "level": 1, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Rocket Balloon", + "level": 1, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Ice Golem", + "level": 9, + "maxLevel": 9, + "village": "home" + }, + { + "name": "Electro Dragon", + "level": 8, + "maxLevel": 9, + "village": "home" + }, + { + "name": "Stone Slammer", + "level": 5, + "maxLevel": 6, + "village": "home" + }, + { + "name": "Inferno Dragon", + "level": 1, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Super Valkyrie", + "level": 1, + "maxLevel": 11, + "village": "home" + }, + { + "name": "Dragon Rider", + "level": 5, + "maxLevel": 6, + "village": "home" + }, + { + "name": "Super Witch", + "level": 1, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Hog Glider", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Siege Barracks", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Ice Hound", + "level": 1, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Super Bowler", + "level": 1, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Super Dragon", + "level": 1, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Headhunter", + "level": 3, + "maxLevel": 3, + "village": "home" + }, + { + "name": "Super Wizard", + "level": 1, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Super Minion", + "level": 1, + "maxLevel": 11, + "village": "home" + }, + { + "name": "Log Launcher", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Flame Flinger", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Battle Drill", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Electro Titan", + "level": 4, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Apprentice Warden", + "level": 4, + "maxLevel": 4, + "village": "home" + }, + { + "name": "Super Hog Rider", + "level": 1, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Electrofire Wizard", + "level": 20, + "maxLevel": 20, + "village": "builderBase" + }, + { + "name": "Root Rider", + "level": 3, + "maxLevel": 3, + "village": "home" + }, + { + "name": "Druid", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Thrower", + "level": 4, + "maxLevel": 4, + "village": "home" + }, + { + "name": "Troop Launcher", + "level": 3, + "maxLevel": 4, + "village": "home" + }, + { + "name": "Super Yeti", + "level": 1, + "maxLevel": 7, + "village": "home" + }, + { + "name": "Furnace", + "level": 4, + "maxLevel": 4, + "village": "home" + }, + { + "name": "Meteor Golem", + "level": 1, + "maxLevel": 3, + "village": "home" + }, + { + "name": "L.A.S.S.I", + "level": 15, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Mighty Yak", + "level": 15, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Electro Owl", + "level": 15, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Unicorn", + "level": 15, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Phoenix", + "level": 10, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Poison Lizard", + "level": 10, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Diggy", + "level": 10, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Frosty", + "level": 13, + "maxLevel": 15, + "village": "home" + }, + { + "name": "Spirit Fox", + "level": 10, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Angry Jelly", + "level": 10, + "maxLevel": 10, + "village": "home" + }, + { + "name": "Sneezy", + "level": 5, + "maxLevel": 10, + "village": "home" + } + ], + "heroes": [ + { + "name": "Barbarian King", + "level": 100, + "maxLevel": 105, + "equipment": [ + { + "name": "Spiky Ball", + "level": 27, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Earthquake Boots", + "level": 18, + "maxLevel": 18, + "village": "home" + } + ], + "village": "home" + }, + { + "name": "Archer Queen", + "level": 105, + "maxLevel": 105, + "equipment": [ + { + "name": "Action Figure", + "level": 20, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Magic Mirror", + "level": 20, + "maxLevel": 27, + "village": "home" + } + ], + "village": "home" + }, + { + "name": "Grand Warden", + "level": 75, + "maxLevel": 80, + "equipment": [ + { + "name": "Rage Gem", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Fireball", + "level": 27, + "maxLevel": 27, + "village": "home" + } + ], + "village": "home" + }, + { + "name": "Battle Machine", + "level": 35, + "maxLevel": 35, + "village": "builderBase" + }, + { + "name": "Royal Champion", + "level": 51, + "maxLevel": 55, + "equipment": [ + { + "name": "Rocket Spear", + "level": 27, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Electro Boots", + "level": 27, + "maxLevel": 27, + "village": "home" + } + ], + "village": "home" + }, + { + "name": "Battle Copter", + "level": 35, + "maxLevel": 35, + "village": "builderBase" + }, + { + "name": "Minion Prince", + "level": 85, + "maxLevel": 95, + "equipment": [ + { + "name": "Metal Pants", + "level": 1, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Dark Orb", + "level": 11, + "maxLevel": 18, + "village": "home" + } + ], + "village": "home" + }, + { + "name": "Dragon Duke", + "level": 1, + "maxLevel": 25, + "equipment": [ + { + "name": "Flame Blower", + "level": 1, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Fire Heart", + "level": 1, + "maxLevel": 18, + "village": "home" + } + ], + "village": "home" + } + ], + "heroEquipment": [ + { + "name": "Giant Gauntlet", + "level": 26, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Rocket Spear", + "level": 27, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Spiky Ball", + "level": 27, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Frozen Arrow", + "level": 26, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Heroic Torch", + "level": 1, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Fireball", + "level": 27, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Snake Bracelet", + "level": 1, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Dark Crown", + "level": 1, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Magic Mirror", + "level": 20, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Electro Boots", + "level": 27, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Lavaloon Puppet", + "level": 2, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Action Figure", + "level": 20, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Meteor Staff", + "level": 1, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Frost Flake", + "level": 1, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Stick Horse", + "level": 1, + "maxLevel": 27, + "village": "home" + }, + { + "name": "Barbarian Puppet", + "level": 17, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Rage Vial", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Archer Puppet", + "level": 17, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Invisibility Vial", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Eternal Tome", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Life Gem", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Seeking Shield", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Royal Gem", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Earthquake Boots", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Hog Rider Puppet", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Vampstache", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Haste Vial", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Giant Arrow", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Healer Puppet", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Rage Gem", + "level": 18, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Healing Tome", + "level": 5, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Henchmen Puppet", + "level": 17, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Dark Orb", + "level": 11, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Metal Pants", + "level": 1, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Noble Iron", + "level": 1, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Fire Heart", + "level": 1, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Stun Blaster", + "level": 1, + "maxLevel": 18, + "village": "home" + }, + { + "name": "Flame Blower", + "level": 1, + "maxLevel": 18, + "village": "home" + } + ], + "spells": [ + { + "name": "Lightning Spell", + "level": 11, + "maxLevel": 13, + "village": "home" + }, + { + "name": "Healing Spell", + "level": 11, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Rage Spell", + "level": 6, + "maxLevel": 6, + "village": "home" + }, + { + "name": "Jump Spell", + "level": 5, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Freeze Spell", + "level": 7, + "maxLevel": 7, + "village": "home" + }, + { + "name": "Poison Spell", + "level": 12, + "maxLevel": 12, + "village": "home" + }, + { + "name": "Earthquake Spell", + "level": 5, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Haste Spell", + "level": 6, + "maxLevel": 7, + "village": "home" + }, + { + "name": "Clone Spell", + "level": 8, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Skeleton Spell", + "level": 8, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Bat Spell", + "level": 6, + "maxLevel": 8, + "village": "home" + }, + { + "name": "Invisibility Spell", + "level": 4, + "maxLevel": 4, + "village": "home" + }, + { + "name": "Recall Spell", + "level": 5, + "maxLevel": 6, + "village": "home" + }, + { + "name": "Overgrowth Spell", + "level": 4, + "maxLevel": 4, + "village": "home" + }, + { + "name": "Revive Spell", + "level": 2, + "maxLevel": 5, + "village": "home" + }, + { + "name": "Ice Block Spell", + "level": 1, + "maxLevel": 5, + "village": "home" + } + ] + }, "headers": { "cache-control": "max-age=60", "content-type": "application/json; charset=utf-8" }, "response_code": 200 -} \ No newline at end of file +} diff --git a/tests/test_api_changes.py b/tests/test_api_changes.py new file mode 100644 index 0000000..35d69bc --- /dev/null +++ b/tests/test_api_changes.py @@ -0,0 +1,114 @@ +import json +import unittest + +from app.models import ( + BattleLogResponse, + ClanWar, + ClanWarLeagueGroup, + ClanWarLogResponse, + LeagueSeasonListResponse, + Player, + PlayerRankingListResponse, +) +from app.routes.common import read_wrapped_fixture +from app.routes.leagues import get_league_group +from app.routes.players import get_battle_log +from main import app + + +def fixture_body(path: str): + return read_wrapped_fixture(path)["body"] + + +class ApiChangeTests(unittest.IsolatedAsyncioTestCase): + async def test_battlelog_route_exposes_new_fields_and_legend_type(self): + response = await get_battle_log("#2PP") + body = json.loads(response.body) + BattleLogResponse.model_validate(body) + + entries = body["items"] + self.assertTrue(entries) + self.assertIn("LEGEND", {entry["battleType"] for entry in entries}) + + required_fields = { + "battleType", + "attack", + "armyShareCode", + "opponentPlayerTag", + "opponentName", + "opponentTownHallLevel", + "stars", + "destructionPercentage", + "lootedResources", + "extraLootedResources", + "availableLoot", + "battleTime", + "battleTimestamp", + } + self.assertLessEqual(required_fields, set(entries[0])) + + async def test_league_group_route_accepts_string_path_season_ids(self): + player = fixture_body("players/player/FOUND.json") + response = await get_league_group( + player["currentLeagueGroupTag"], + str(player["currentLeagueSeasonId"]), + player["tag"], + ) + body = json.loads(response.body) + self.assertEqual(response.status_code, 200) + self.assertTrue(body["members"]) + + def test_league_seasons_include_full_date_ids(self): + body = fixture_body("leagues/LISTLEAGUESEASONS.json") + LeagueSeasonListResponse.model_validate(body) + season_ids = {item["id"] for item in body["items"]} + self.assertIn("2026-06-02", season_ids) + self.assertIn("2026-06-16", season_ids) + + def test_changed_fixtures_validate_against_models(self): + BattleLogResponse.model_validate(fixture_body("players/battlelog/LOG.json")) + Player.model_validate(fixture_body("players/player/FOUND.json")) + PlayerRankingListResponse.model_validate(fixture_body("locations/rankings/players/COUNTRY.json")) + PlayerRankingListResponse.model_validate(fixture_body("leagues/league-season/LEAGUESEASON.json")) + LeagueSeasonListResponse.model_validate(fixture_body("leagues/LISTLEAGUESEASONS.json")) + + for path in ("clans/leaguegroup/INWAR.json", "clans/leaguegroup/ENDED.json"): + body = fixture_body(path) + ClanWarLeagueGroup.model_validate(body) + self.assertRegex(body["season"], r"^\d{4}-\d{2}-\d{2}$") + + def test_openapi_contains_new_schema_fields(self): + schemas = app.openapi()["components"]["schemas"] + + battlelog_props = schemas["BattleLogEntry"]["properties"] + self.assertEqual(battlelog_props["battleType"]["enum"], ["HOME_VILLAGE", "RANKED", "LEGEND"]) + self.assertEqual(battlelog_props["opponentName"]["type"], "string") + self.assertEqual(battlelog_props["opponentTownHallLevel"]["type"], "integer") + self.assertEqual(battlelog_props["battleTime"]["type"], "integer") + self.assertEqual(battlelog_props["battleTimestamp"]["type"], "string") + + attack_props = schemas["ClanWarAttack"]["properties"] + self.assertEqual(attack_props["duration"]["type"], "integer") + + battle_modifier_schema = schemas["ClanWar"]["properties"]["battleModifier"]["anyOf"][0] + self.assertEqual( + battle_modifier_schema["enum"], + ["NONE", "HARD_MODE", "MINUS_ONE", "MINUS_TWO", "MINUS_THREE"], + ) + + ranking_props = schemas["PlayerRanking"]["properties"] + self.assertIn("leagueTier", ranking_props) + + season_props = schemas["LeagueSeason"]["properties"] + self.assertEqual(season_props["id"]["type"], "string") + + def test_war_fixtures_use_current_battle_modifier_values(self): + current_war = fixture_body("clans/currentwar/INWAR.json") + ClanWar.model_validate(current_war) + self.assertEqual(current_war["battleModifier"], "MINUS_ONE") + + war_log = fixture_body("clans/warlog/WARLOG.json") + ClanWarLogResponse.model_validate(war_log) + values = {entry["battleModifier"] for entry in war_log["items"]} + self.assertIn("NONE", values) + self.assertIn("MINUS_THREE", values)